blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
95550b316479a0319930a2de2ccf5c2aec65759a
0cb85cd0c88a9b9f0cca4472742c2bf9febef2d8
/ProductCore/basegui/wingui/WinCtrls.h
ea5d67a60b521876d1e63e4c9affbda1d2bad8c3
[]
no_license
seth1002/antivirus-1
9dfbadc68e16e51f141ac8b3bb283c1d25792572
3752a3b20e1a8390f0889f6192ee6b851e99e8a4
refs/heads/master
2020-07-15T00:30:19.131934
2016-07-21T13:59:11
2016-07-21T13:59:11
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
74,254
h
WinCtrls.h
// WinCtrls.h: interface for the CWinCtrls class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_WINCTRLS_H__5401AE0F_38DD_4399_883A_F072CC926781__INCLUDED_) #define AFX_WINCTRLS_H__5401AE0F_38DD_4399_883A_F072CC926781__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include <richedit.h> #include <ExDispid.h> #include "WinLang.h" ////////////////////////////////////////////////////////////////////// extern HINSTANCE g_hInstance; extern HCURSOR g_curHandId; extern HCURSOR g_curTrackCol; void SetNearestFocusItem(CItemBase * pItem); bool IsKeybBtnDownReal(bool bRadio = false); bool IsLeftMouseDownReal(); ////////////////////////////////////////////////////////////////////// #define DECLARE_WND_AVPCLASS_EX(WndClassName, OrigWndClassName, Cursor, style) \ virtual CWndClassInfo& GetWndClassInfo() \ { \ static CWndClassInfo wc = \ { \ { sizeof(WNDCLASSEX), style, StartWindowProc, \ 0, 0, NULL, NULL, NULL, NULL, NULL, WndClassName, NULL }, \ OrigWndClassName, NULL, Cursor, TRUE, 0, _T("") \ }; \ return wc; \ } #define DECLARE_WND_AVPCLASS(WndClassName, OrigWndClassName, Cursor) \ DECLARE_WND_AVPCLASS_EX(WndClassName, OrigWndClassName, Cursor, 0) #define DECLARE_DLG_AVPCLASS(WndClassName) \ virtual CWndClassInfo& GetWndClassInfo() \ { \ static CWndClassInfo wc = \ { \ { sizeof(WNDCLASSEX), 0, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, WndClassName, NULL }, \ NULL, NULL, IDC_ARROW, TRUE, 0, _T("") \ }; \ return wc; \ } #define AVP_REFLECT_NOTIFICATIONS() \ if( !(uMsg == WM_NOTIFY && \ (((NMHDR *)lParam)->code == TTN_GETDISPINFOA || \ ((NMHDR *)lParam)->code == TTN_GETDISPINFOW)) ) \ REFLECT_NOTIFICATIONS() ////////////////////////////////////////////////////////////////////// // CItemWindowRtn class CItemWindowRtn { public: virtual void wrtn_OnUpdateTextProp() = 0; virtual void wrtn_OnAdjustBordSize(RECT& rc) = 0; public: CItemWindowRtn(); virtual CItemBase * _item() = 0; virtual HWND _hwnd() = 0; HBRUSH GetParentBackgroundBrush(); COLORREF GetParentBackgroundColor(); HWND GetParentWindow(); void UpdateWindowProps(int flags, tDWORD nStateMask = 0); void DrawParentContent(HDC dc, RECT *rc = NULL); protected: bool _MsgMenu(POINT& ptMenu); void _MsgMouseMove(POINT& pt); void _MsgPaint(); void StartTrackMouseLeave(); protected: DWORD m_nStyles; DWORD m_nStylesEx; bool m_bTrackMouseEvent; }; ////////////////////////////////////////////////////////////////////// // CItemWindowT template <class TWinImpl, class TItemBase = CItemBase> class ATL_NO_VTABLE CItemWindowT : public TWinImpl, public TItemBase, public CItemWindowRtn { public: typedef TWinImpl WinImplClass; typedef TItemBase GuiImplClass; CItemBase * _item() { return this; } HWND _hwnd() { return m_hWnd; } void wrtn_OnUpdateTextProp() { OnUpdateTextProp(); } void wrtn_OnAdjustBordSize(RECT& rc) { OnAdjustBordSize(rc); } CItemWindowT() { m_nFlags |= STYLE_WINDOW; } void Cleanup() { if( IsWindow() ) DestroyWindow(); TItemBase::Cleanup(); } HWND GetWindow() { return m_hWnd; } HBRUSH GetParentBackgroundBrush() { return CItemWindowRtn::GetParentBackgroundBrush(); } COLORREF GetParentBackgroundColor() { return CItemWindowRtn::GetParentBackgroundColor(); } HWND GetParentWindow() { return CItemWindowRtn::GetParentWindow(); } void InitItem(LPCSTR strType) { TItemBase::InitItem(strType); RECT rcFrame = {0, 0, 10, 10}; TWinImpl::Create(m_pRoot, GetParentWindow(), GetWndClassInfo(), rcFrame, m_nStyles, m_nStylesEx, GetItemId()); } void ApplyStyle(LPCSTR strStyle) { TItemBase::ApplyStyle(strStyle); sswitch(strStyle) scase(STR_PID_NOBORDER) m_nStylesEx &= ~WS_EX_CLIENTEDGE; sbreak; send } void OnUpdateTextProp() { TWinImpl::SetWindowTextW(m_pRoot, m_pRoot->LocalizeStr(TOR(cStrObj,()), OnGetDisplayText())); TItemBase::OnUpdateTextProp(); } void OnUpdateProps(int flags = UPDATE_FLAG_ALL, tDWORD nStateMask = 0, RECT * rc = NULL) { UpdateWindowProps(flags, nStateMask); TItemBase::OnUpdateProps(flags, nStateMask, rc); } void UpdateWindowProps(int flags = UPDATE_FLAG_ALL, tDWORD nStateMask = 0) { CItemWindowRtn::UpdateWindowProps(flags, nStateMask); } void Focus(bool bFocus) { if( bFocus ) SetFocus(); } void InvalidateEx(RECT *rc) { InvalidateRect(rc); } void Update(RECT *rc) { TItemBase::Update(rc); if( m_hWnd && IsWindowVisible() ) { InvalidateRect(rc); if( m_lockUpdate ) m_nState |= ISTATE_NEED_UPDATE; else UpdateWindow(); } } void DrawBackground(HDC dc, RECT& rcClient, RECT * prcClip) { if( m_pBackground ) TItemBase::DrawBackground(dc, rcClient, prcClip); else { m_nState |= ISTATE_DRAW_CONTENT; TWinImpl::SendMessage(WM_ERASEBKGND, (WPARAM)dc, 0); m_nState &= ~ISTATE_DRAW_CONTENT; } } void SetTabOrder(CItemBase * pItem, bool bAfter) { HWND hAfter = pItem ? pItem->GetWindow() : NULL; if( !bAfter && hAfter ) hAfter = ::GetWindow(hAfter, GW_HWNDPREV); SetWindowPos(hAfter, 0, 0, 0, 0, SWP_NOACTIVATE|SWP_NOCOPYBITS|SWP_NOMOVE|SWP_NOSIZE); } bool IsTabstop() { return !!(m_nStyles & WS_TABSTOP); } virtual CWndClassInfo& GetWndClassInfo(){ return *(CWndClassInfo*)NULL; } protected: bool ctl_IsFocused() { return ::GetFocus() == m_hWnd; } void ctl_GetText(cStrObj& strText) { TWinImpl::GetWindowTextW(m_pRoot, strText); } void ctl_SetText(LPCWSTR strText) { TWinImpl::SetWindowTextW(m_pRoot, strText); } protected: BEGIN_MSG_MAP(CItemWindowT) switch(uMsg) { case WM_LBUTTONDOWN: case WM_LBUTTONUP: case WM_MBUTTONDOWN: case WM_MBUTTONUP: case WM_MOUSEMOVE: case WM_RBUTTONDOWN: case WM_RBUTTONUP: ((CWinRoot *)m_pRoot)->RelayTipEvent(m_pCurrentMsg); break; } switch(uMsg) { case WM_LBUTTONDOWN: case WM_LBUTTONUP: case WM_MBUTTONDOWN: case WM_MBUTTONUP: case WM_RBUTTONDOWN: case WM_RBUTTONUP: case WM_NCLBUTTONDOWN: case WM_NCLBUTTONUP: case WM_NCMBUTTONDOWN: case WM_NCMBUTTONUP: case WM_NCRBUTTONDOWN: case WM_NCRBUTTONUP: case WM_KEYDOWN: case WM_KEYUP: case WM_KILLFOCUS: ((CWinRoot *)m_pRoot)->RelayBalloonEvent(m_pCurrentMsg); break; } MESSAGE_HANDLER(WM_SETFOCUS, OnSetFocus) MESSAGE_HANDLER(WM_KILLFOCUS, OnKillFocus) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMsgMouseMove) MESSAGE_HANDLER(WM_MOUSELEAVE, OnMsgMouseLeave) MESSAGE_HANDLER(WM_MOUSEACTIVATE, OnMsgMouseActivate) MESSAGE_HANDLER(WM_CONTEXTMENU, OnMsgMenu) MESSAGE_HANDLER(WM_SETCURSOR, OnSetCursor) MESSAGE_HANDLER(WM_LBUTTONDBLCLK, OnLButtonDblClk) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUp) MESSAGE_HANDLER(WM_NOTIFY, OnNotify) MESSAGE_HANDLER(WM_DESTROY, OnDestroy) MESSAGE_HANDLER(WM_KEYDOWN, OnKEYDOWN) MESSAGE_HANDLER(WM_DRAWITEM, OnDrawItem) MESSAGE_HANDLER(WM_MEASUREITEM, OnMeasureItem) MESSAGE_HANDLER(WM_QUERYENDSESSION, OnQueryEndSession) MESSAGE_HANDLER(WM_MOUSEWHEEL, OnMouseWheel) MESSAGE_HANDLER(WM_NCPAINT, OnNcPaint) DEFAULT_REFLECTION_HANDLER() END_MSG_MAP() LRESULT OnQueryEndSession(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { PR_TRACE((g_root, prtIMPORTANT, "GUI(Win)::CItemWindowT(%s)::WM_QUERYENDSESSION(wParam=0x%X, lParam=0x%X)", m_strItemId.c_str(), wParam, lParam)); return TRUE; } LRESULT OnMouseWheel(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { int zDelta = GET_WHEEL_DELTA_WPARAM(wParam); CItemBase * pSwitcer = m_pRoot->m_pTrackItem ? m_pRoot->m_pTrackItem->GetByFlagsAndState(STYLE_SHEET_ITEM|STYLE_ENUM, ISTATE_ALL, NULL, gbfasUpToParent) : NULL; if( !pSwitcer || (pSwitcer->m_nFlags & STYLE_TOP_ITEM) ) return bHandled = FALSE, 0; if( zDelta != 0 ) pSwitcer->SetNextPage(zDelta > 0); return 0; } LRESULT OnMeasureItem(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { LPMEASUREITEMSTRUCT lpInfo = (LPMEASUREITEMSTRUCT)lParam; if( lpInfo->CtlType == ODT_MENU ) return CPopupMenu::MeasureItem(lpInfo); bHandled = FALSE; return 0; } LRESULT OnDrawItem(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { LPDRAWITEMSTRUCT lpInfo = (LPDRAWITEMSTRUCT)lParam; if( lpInfo->CtlType == ODT_MENU ) return CPopupMenu::DrawItem(lpInfo); bHandled = FALSE; return 0; } LRESULT OnKEYDOWN(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { bHandled = FALSE; return 0; } LRESULT OnNcPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { bHandled = !!m_lockUpdate; return 0; } LRESULT OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { _MsgPaint(); return S_OK; } LRESULT OnPaintEx(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { if( m_pOwner ) m_pOwner->m_nState |= ISTATE_DRAW_CONTENT; LRESULT nResult = DefWindowProc(uMsg, wParam, lParam); if( m_pOwner ) m_pOwner->m_nState &= ~ISTATE_DRAW_CONTENT; return nResult; } LRESULT OnPaintEmpty(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { PAINTSTRUCT ps; HDC dc = BeginPaint(&ps); EndPaint(&ps); return S_OK; } LRESULT OnHookDraw(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { bHandled = TRUE; HookDrawBegin(/*(HBRUSH)::GetStockObject(WHITE_BRUSH)*//*GetParentBackgroundBrush()*/this); LRESULT bRet = DefWindowProc(uMsg, wParam, lParam); HookDrawEnd(); return bRet; } LRESULT OnEraseBkgnd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { if( m_nState & ISTATE_DRAW_CONTENT ) return bHandled = FALSE, FALSE; return TRUE; } LRESULT OnSetFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { OnFocus(true); bHandled = FALSE; return S_OK; } LRESULT OnKillFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { OnFocus(false); bHandled = FALSE; return S_OK; } LRESULT OnCtlBkColor(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { return ( LRESULT )GetParentBackgroundBrush(); } LRESULT OnCtlBkColorT( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled ) { ::SetBkMode((HDC)wParam, TRANSPARENT); if( m_pFont ) ::SetTextColor((HDC)wParam, m_pFont->GetColor()); return ( LRESULT )GetParentBackgroundBrush(); } LRESULT OnMsgMenu(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { POINT ptMenu = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; if( !_MsgMenu(ptMenu) ) bHandled = FALSE; return 0; } LRESULT OnMsgMouseMove( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled ) { bHandled = FALSE; POINT pt = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; _MsgMouseMove(pt); return 0; } LRESULT OnMsgMouseLeave( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled ) { m_bTrackMouseEvent = false; m_pRoot->SetTrackItem(NULL); return bHandled = FALSE, 0; } LRESULT OnMsgMouseActivate( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled ) { if( m_nFlags & STYLE_NOACTIVATE ) return MA_NOACTIVATE; return bHandled = FALSE, MA_ACTIVATE; } LRESULT OnSetCursor(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { CItemBase *pTrackItem = m_pRoot->m_pTrackItem; if( pTrackItem && (pTrackItem->m_nState & ISTATE_DISABLED) ) bHandled = FALSE; else if( pTrackItem && (pTrackItem->m_nFlags & STYLE_CLICKABLE) ) SetCursor(g_curHandId); else bHandled = FALSE; return 0; } LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { CItemBase * pTrackItem = m_pRoot->m_pTrackItem; m_pRoot->m_pClicking = pTrackItem; if( pTrackItem && (pTrackItem->m_nFlags & STYLE_CLICKABLE) ) { if( pTrackItem->m_nFlags & STYLE_BUTTON_LIKE ) { m_pRoot->m_pSelected = pTrackItem; pTrackItem->Select(true); } else if( pTrackItem->m_nFlags & STYLE_CHECKBOX_LIKE ) { if( pTrackItem->m_nState & ISTATE_SELECTED ) { m_pRoot->m_pSelected = NULL; pTrackItem->Select(false); } else { m_pRoot->m_pSelected = pTrackItem; pTrackItem->Select(true); } } else if( pTrackItem->m_nFlags & STYLE_ENUM_VALUE ) pTrackItem->Select(); } return bHandled = FALSE, 0; } LRESULT OnLButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { if( CItemBase *&pSelected = m_pRoot->m_pSelected ) if( pSelected->m_nFlags & STYLE_BUTTON_LIKE ) pSelected->Select(false), pSelected = NULL; if( CItemBase * pTrackItem = m_pRoot->m_pTrackItem ) if( m_pRoot->m_pClicking == pTrackItem && pTrackItem->m_pRoot && pTrackItem->m_nFlags & STYLE_CLICKABLE ) pTrackItem->Click(); m_pRoot->m_pClicking = NULL; return bHandled = FALSE, 0; } LRESULT OnLButtonDblClk(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { CItemBase *pTrackItem = m_pRoot->m_pTrackItem; if( pTrackItem && (pTrackItem->m_nFlags & STYLE_CLICKABLE) ) SendMessage(WM_LBUTTONDOWN, wParam, lParam); CItemBase * pItem = pTrackItem ? pTrackItem : this; pItem->DblClick(); return bHandled = FALSE, 0; } LRESULT OnNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { NMHDR * pHdr = (NMHDR *)lParam; switch( pHdr->code ) { case TTN_SHOW: case TTN_GETDISPINFOW: case TTN_GETDISPINFOA: bHandled = TRUE; return ((CWinRoot *)m_pRoot)->ProcessTipEvent(pHdr, this); } return bHandled = FALSE, 0; } LRESULT OnDestroy(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { if( !m_strTipText.empty() ) { m_pRoot->EnableToolTip(this, false); m_strTipText.erase(); } return bHandled = FALSE, 0; } }; ////////////////////////////////////////////////////////////////////// // CDialogBase class ATL_NO_VTABLE CDialogBase : public CDialogImplBaseT<CWindowL> { public: HWND Create(CRootItem * pRoot, HWND hWndParent, CWndClassInfo& pCI, RECT& rcPos, DWORD dwStyle = 0, DWORD dwExStyle = 0, UINT nID = 0); }; template <class TWindow = CWindowL> class ATL_NO_VTABLE CControlBaseT : public CWindowImplBaseT<TWindow> { public: HWND Create(CRootItem * pRoot, HWND hWndParent, CWndClassInfo& pCI, RECT& rcPos, DWORD dwStyle = 0, DWORD dwExStyle = 0, UINT nID = 0) { if( !(m_bAnsi ? RegisterWindowA(&pCI) : RegisterWindowW(&pCI)) ) return NULL; if( pCI.m_lpszOrigName ) m_pfnSuperWindowProc = pCI.pWndProc; else m_pfnSuperWindowProc = m_bAnsi ? ::DefWindowProcA : ::DefWindowProcW; _Module.AddCreateWndData(&m_thunk.cd, this); m_hWnd = CreateWnd(dwExStyle, (LPVOID)pCI.m_wc.lpszClassName, dwStyle, rcPos, hWndParent, nID); return m_hWnd; } public: static LRESULT CALLBACK StartWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { CControlBaseT* pThis = (CControlBaseT*)_Module.ExtractCreateWndData(); if( !pThis && uMsg == WM_NCCREATE ) { WNDPROC pProc; if( m_bAnsi ) { CREATESTRUCTA &cs = *(CREATESTRUCTA *)lParam; WNDCLASSEXA wce; wce.cbSize = sizeof(wce); ::GetClassInfoExA(NULL, cs.lpszClass, &wce); pProc = wce.lpfnWndProc; ::SetWindowLongPtrA(hWnd, GWLP_WNDPROC, (LONG)pProc); } else { CREATESTRUCTW &cs = *(CREATESTRUCTW *)lParam; WNDCLASSEXW wce; wce.cbSize = sizeof(wce); GetClassInfoExW(NULL, cs.lpszClass, &wce); pProc = wce.lpfnWndProc; ::SetWindowLongPtrW(hWnd, GWLP_WNDPROC, (LONG)pProc); } return pProc(hWnd, uMsg, wParam, lParam); } pThis->m_hWnd = hWnd; pThis->m_thunk.Init(WindowProc, pThis); DWORD dwOldProtect; #if _ATL_VER >= 0x0800 ::VirtualProtect(pThis->m_thunk.thunk.pThunk, sizeof(*pThis->m_thunk.thunk.pThunk), PAGE_EXECUTE_READWRITE, &dwOldProtect); WNDPROC pProc = (WNDPROC)(pThis->m_thunk.thunk.pThunk); #else ::VirtualProtect(&pThis->m_thunk.thunk, sizeof(pThis->m_thunk.thunk), PAGE_EXECUTE_READWRITE, &dwOldProtect); WNDPROC pProc = (WNDPROC)&(pThis->m_thunk.thunk); #endif if( m_bAnsi ) (WNDPROC)::SetWindowLongPtrA(hWnd, GWLP_WNDPROC, (LONG)pProc); else (WNDPROC)::SetWindowLongPtrW(hWnd, GWLP_WNDPROC, (LONG)pProc); return pProc(hWnd, uMsg, wParam, lParam); } static LRESULT CALLBACK WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { CControlBaseT* pThis = (CControlBaseT*)hWnd; #if (_ATL_VER >= 0x0700) POINT pnt = { 0, 0 }; ATL::_ATL_MSG msg( pThis->m_hWnd, uMsg, wParam, lParam, 0, pnt, TRUE ); const ATL::_ATL_MSG* pOldMsg = pThis->m_pCurrentMsg; #else MSG msg = { pThis->m_hWnd, uMsg, wParam, lParam, 0, { 0, 0 } }; const MSG* pOldMsg = pThis->m_pCurrentMsg; #endif LRESULT lRes; pThis->m_pCurrentMsg = &msg; BOOL bRet = pThis->ProcessWindowMessage(pThis->m_hWnd, uMsg, wParam, lParam, lRes, 0); pThis->m_pCurrentMsg = pOldMsg; // do the default processing if message was not handled if( bRet ) return lRes; if( pThis->m_bAnsi ) lRes = ::CallWindowProcA(pThis->m_pfnSuperWindowProc, pThis->m_hWnd, uMsg, wParam, lParam); else lRes = ::CallWindowProcW(pThis->m_pfnSuperWindowProc, pThis->m_hWnd, uMsg, wParam, lParam); if( uMsg == WM_NCDESTROY ) { pThis->m_hWnd = NULL; pThis->OnFinalMessage(hWnd); } return lRes; } }; typedef CControlBaseT<> CControlBase; template <class TItemBase = CItemBase> class ATL_NO_VTABLE CItemControl : public CItemWindowT<CControlBase, TItemBase> { }; ////////////////////////////////////////////////////////////////////// // CButtonImpl template <class TItemBase = CItemBase> class CButtonImpl : public CItemControl<TItemBase> { public: typedef CItemControl<TItemBase> TBase; DECLARE_WND_AVPCLASS_EX("AVP.Button", "BUTTON", NULL, CS_PARENTDC|CS_HREDRAW|CS_VREDRAW); CButtonImpl() : m_bRealLButtonDown(0) {} protected: BEGIN_MSG_MAP(CButtonImpl) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUp) MESSAGE_HANDLER(OCM_COMMAND, OnCommand) MESSAGE_HANDLER(OCM_CTLCOLORBTN, OnCtlBkColorT) MESSAGE_HANDLER(OCM_CTLCOLORSTATIC, OnCtlBkColorT) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { m_bRealLButtonDown = IsLeftMouseDownReal(); return bHandled = FALSE, 0; } LRESULT OnLButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { bHandled = TRUE; return DefWindowProc(uMsg, wParam, lParam); } LRESULT OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { if( HIWORD(wParam) == BN_CLICKED && ::IsWindowEnabled(m_hWnd) && ::IsWindowVisible(m_hWnd) && (m_bRealLButtonDown || IsKeybBtnDownReal(!!(m_nFlags & STYLE_ENUM_VALUE))) ) { m_pRoot->m_pClicking = NULL; Click(); } m_bRealLButtonDown = 0; return bHandled = FALSE, 0; } bool IsResizeble(bool bHorz){ return false; } bool DrawParentBackgroundT(HDC dc, RECT * rcDraw = NULL) { if( GUI_ISSTYLE_SIMPLE(m_pRoot) && m_pRoot->IsThemed() && ((CWinRoot *)m_pRoot)->_DrawThemeParentBackground ) if( !((CWinRoot *)m_pRoot)->_DrawThemeParentBackground(m_hWnd, dc, rcDraw) ) return true; return TBase::DrawParentBackground(dc, rcDraw); } void OnUpdateProps(int flags, tDWORD nStateMask, RECT * rc) { if( (nStateMask & ISTATE_HIDE) && !(m_nState & ISTATE_HIDE) ) SetWindowTextW(m_pRoot, m_pRoot->LocalizeStr(TOR(cStrObj,()), OnGetDisplayText())); TBase::OnUpdateProps(flags, nStateMask, rc); if( (nStateMask & ISTATE_HIDE) && (m_nState & ISTATE_HIDE) ) SetWindowTextW(m_pRoot, L""); if( !(m_nStyles & BS_OWNERDRAW) && (nStateMask & ISTATE_DEFAULT) ) { bool bOn = !!(m_nState & ISTATE_DEFAULT); DWORD nStyle = GetWindowLong(GWL_STYLE); DWORD nNewStyle = bOn ? (nStyle|BS_DEFPUSHBUTTON) : (nStyle & ~BS_DEFPUSHBUTTON); SendMessage(BM_SETSTYLE, nNewStyle, TRUE); } } unsigned m_bRealLButtonDown : 1; }; ////////////////////////////////////////////////////////////////////// // CButton class CButton : public CButtonImpl<> { public: typedef CButtonImpl<> TBase; BEGIN_MSG_MAP(CButton) MESSAGE_HANDLER(WM_PAINT, OnPaintEx) CHAIN_MSG_MAP(TBase) END_MSG_MAP() CButton() { m_nStyles = WS_CHILD|BS_PUSHBUTTON|WS_TABSTOP; m_nFlags |= STYLE_CLICKABLE|TEXT_SINGLELINE; } void GetAddSize(SIZE& szAdd){ szAdd.cx += 16; } }; ////////////////////////////////////////////////////////////////////// // CBitmapButton class CBitmapButton : public CButtonImpl<> { public: typedef CButtonImpl<> TBase; CBitmapButton() { m_nStyles = WS_CHILD|BS_PUSHBUTTON|WS_TABSTOP|BS_OWNERDRAW; m_nFlags |= STYLE_CLICKABLE|STYLE_TRANSPARENT; } BEGIN_MSG_MAP(CBitmapButton) MESSAGE_HANDLER(OCM_DRAWITEM, OnDrawItem) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) CHAIN_MSG_MAP(TBase) END_MSG_MAP() void GetAddSize(SIZE& szAdd){} LRESULT OnDrawItem(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { DRAWITEMSTRUCT * pDi = (DRAWITEMSTRUCT *)lParam; if( pDi->itemState & ODS_SELECTED ) m_nState |= ISTATE_SELECTED; else m_nState &= ~ISTATE_SELECTED; if( pDi->itemState & ODS_FOCUS ) m_nState |= ISTATE_FOCUSED; else m_nState &= ~ISTATE_FOCUSED; DrawButton(pDi->hDC, pDi->rcItem); bHandled = false; return 0; } virtual void DrawButton(HDC dc, RECT& rcDraw) { if( !m_pBackground ) return; HDC hDcTemp = NULL; if( m_pBackground->IsTransparent() ) { //if( ((CWinRoot *)m_pRoot)->m_nOsVer < GUI_OSVER_WINXP ) hDcTemp = m_pRoot->GetTempDC(rcDraw, NULL); DrawParentBackground(hDcTemp ? hDcTemp : dc, &rcDraw); } m_pBackground->Draw(hDcTemp ? hDcTemp : dc, rcDraw, NULL, m_pBackground.GetImage(GetStateImage())); if( hDcTemp ) m_pRoot->CopyTempDC(hDcTemp, dc, rcDraw); if( m_nState & ISTATE_FOCUSED ) { RECT rcFrame = rcDraw; InflateRect(&rcFrame, -3, -3); DrawFocusRect(dc, &rcFrame); } } }; ////////////////////////////////////////////////////////////////////// // CXPButton class CXPButton : public CBitmapButton, public CXPBrush { public: CXPButton(){ m_nStyles |= WS_TABSTOP; } void OnInit(); void DrawButton(HDC dc, RECT& rcDraw); void GetAddSize(SIZE& szAdd){ szAdd.cx += 16; } }; ////////////////////////////////////////////////////////////////////// // CItemWndFocusT template <class WndImplT, class TItemBase = CItemBase> class CItemWndFocusT : public TItemBase { public: typedef CItemWndFocusT<WndImplT, TItemBase> ThisT; class FocusWnd : public WndImplT { public: bool Create(HWND hWndParent, UINT nID = 0) { RECT rcFrame = {-100, -100, 0, 0}; if( !WndImplT::Create(m_pRoot, hWndParent, GetWndClassInfo(), rcFrame, m_nStyles|WS_VISIBLE, m_nStylesEx, nID) ) return false; OnUpdateProps(0, ISTATE_HIDE, NULL); return true; } void SetStyle(tDWORD nStyles) { m_nStyles = nStyles; } virtual void OnFocus(bool bFocusted) { OWNEROFMEMBER_PTR(ThisT, m_focus)->Focus(bFocusted); } virtual void Click(bool bForce) { OWNEROFMEMBER_PTR(ThisT, m_focus)->Click(bForce); } void OnUpdateProps(int flags, tDWORD nStateMask, RECT * rc) { WndImplT::OnUpdateProps(flags & ~(UPDATE_FLAG_POSITION|UPDATE_FLAG_SIZE), nStateMask, rc); } }; friend class FocusWnd; FocusWnd m_focus; void Cleanup() { if( m_focus.m_pRoot ) { m_focus.m_pParent = NULL; m_focus.Cleanup(); m_focus.m_pRoot = NULL; } TItemBase::Cleanup(); } bool IsTabstop() { return !!(m_nFlags & STYLE_CLICKABLE); } void SetTabOrder(CItemBase * pItem, bool bAfter) { if( m_focus.GetWindow() ) m_focus.SetTabOrder(pItem, bAfter); } HWND GetWindow() { return m_focus.GetWindow(); } void InitItem(LPCSTR strType) { TItemBase::InitItem(strType); if( IsTabstop() && m_pOwner ) { m_focus.m_pRoot = m_pRoot; m_focus.m_pOwner = m_pOwner; m_focus.m_pParent = m_pParent; m_focus.Create(m_pOwner->GetWindow(), GetItemId()); } } void OnInited() { TItemBase::OnInited(); m_focus.m_nState |= ISTATE_INITED; } void OnUpdateProps(int flags, tDWORD nStateMask, RECT * rc) { TItemBase::OnUpdateProps(flags, nStateMask, rc); if( !m_focus.m_hWnd ) return; if( nStateMask & ISTATE_DISABLED ) m_focus.Enable(!(m_nState & ISTATE_DISABLED)); if( nStateMask & ISTATE_HIDE ) m_focus.Show(!(m_nState & ISTATE_HIDE)); } void OnFocus(bool bFocusted) { TItemBase::OnFocus(bFocusted); if( m_focus.m_hWnd ) m_focus.Focus(bFocusted); } }; ////////////////////////////////////////////////////////////////////// // CHotlink class CHotlink : public CItemWndFocusT<CButtonImpl<> > { public: typedef CItemWndFocusT<CButtonImpl<> > TBase; CHotlink() { m_focus.SetStyle(WS_CHILD|WS_TABSTOP|BS_GROUPBOX); m_nFlags |= STYLE_CLICKABLE; } protected: void OnInit(); void DrawItem(HDC dc, RECT& rcFrame); void OnFocus(bool bFocusted); void OnAdjustUpdateRect(RECT& rcUpdate); }; ////////////////////////////////////////////////////////////////////// // CGroup class CGroup : public CItemWndFocusT<CButtonImpl<CGroupItem>, CGroupItem> { public: CGroup() { m_focus.SetStyle(WS_CHILD|WS_TABSTOP|BS_GROUPBOX); } }; ////////////////////////////////////////////////////////////////////// // CChkRadLink class CChkRadLink : public CBitmapButton { public: CChkRadLink(); void DrawButton(HDC dc, RECT& rcDraw); }; ////////////////////////////////////////////////////////////////////// // CChkRadBase class CChkRadBase : public CButtonImpl<CRefsItem> { public: typedef CButtonImpl<CRefsItem> TBase; typedef CRefsItemLinkT<CChkRadLink> TRef; CChkRadBase() : m_pLinkFont(NULL) { m_nStyles = WS_CHILD|WS_TABSTOP|BS_TOP|BS_LEFT|BS_MULTILINE; m_nFlags |= STYLE_CLICKABLE|STYLE_DRAW_CONTENT|STYLE_TRANSPARENT; } ~CChkRadBase() { if( m_pLinkFont ) m_pLinkFont->Destroy(); } RefData * _RefCreate() { return new TRef(); } public: BEGIN_MSG_MAP(CChkRadBase) AVP_REFLECT_NOTIFICATIONS() MESSAGE_HANDLER(WM_PAINT, OnPaint) MESSAGE_HANDLER(WM_UPDATEUISTATE, OnUpdateUIState) MESSAGE_HANDLER(WM_ENABLE, OnUpdateUIState) MESSAGE_HANDLER(BM_SETSTATE, OnUpdateUIState) MESSAGE_HANDLER(BM_SETCHECK, OnUpdateUIState) MESSAGE_HANDLER(WM_SETFOCUS, OnSetFocus) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnUpdateUIState(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSetFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); public: bool Draw(HDC dc, RECT* rcUpdate); void DrawItem(HDC dc, RECT& rcFrame); bool DrawParentBackground(HDC dc, RECT * rcDraw); tDWORD GetFontFlags() { return TBase::GetFontFlags() & ~TEXT_HOTLIGHT; } void GetAddSize(SIZE& szAdd); bool IsOut(){ return true; } bool OnClicked(CItemBase* pItem); void OnAdjustClientRect(RECT& rcClient); void OnFocus(bool bFocusted); void OnApplyBlockStyles(); public: CFontStyle * m_pLinkFont; }; ////////////////////////////////////////////////////////////////////// // CCheck class CCheck : public CChkRadBase { public: CCheck(); void DrawContent(HDC dc, RECT& rcClient); bool SetValue(const cVariant &pValue); bool GetValue(cVariant &pValue); tTYPE_ID GetType(){ return tid_DWORD; } void InitProps(CItemProps& strProps, CSinkCreateCtx * pCtx); }; ////////////////////////////////////////////////////////////////////// // CRadio class CRadio : public CChkRadBase { public: CRadio(); void InitProps(CItemProps& strProps, CSinkCreateCtx * pCtx); void DrawContent(HDC dc, RECT& rcClient); void OnInit(); void OnUpdateProps(int flags, tDWORD nStateMask, RECT * rc); tTYPE_ID GetType(){ return tid_UNK; } bool SetValue(const cVariant& pValue) { return m_Val = pValue, true; } bool GetValue(cVariant& pValue) { return pValue = m_Val, true; } cVariant m_Val; }; ////////////////////////////////////////////////////////////////////// // CLockButton class CLockButton : public CButtonImpl<> { public: typedef CButtonImpl<> TBase; BEGIN_MSG_MAP(CButtonImpl<>) MESSAGE_HANDLER(OCM_DRAWITEM, OnDrawItem) CHAIN_MSG_MAP(TBase) END_MSG_MAP() CLockButton() : m_bLocked(false), m_bMandatoried(false) { m_nStyles = WS_CHILD|WS_TABSTOP|BS_PUSHBUTTON|BS_OWNERDRAW; m_nFlags |= STYLE_CLICKABLE|TEXT_SINGLELINE; } void GetAddSize(SIZE& szAdd){} bool SetValue(const cVariant &pValue); bool GetValue(cVariant &pValue); bool IsOut(){ return true; } bool OnClicked(CItemBase *); LRESULT OnDrawItem(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); void SetLock(bool bLock); void SetMandatory(bool bMandatory); protected: bool m_bLocked; bool m_bMandatoried; }; ////////////////////////////////////////////////////////////////////// // CGroupBox class CGroupBox : public CItemControl<CGroupItem> { public: typedef CItemControl<CGroupItem> TBase; DECLARE_WND_AVPCLASS("AVP.GroupBox", "BUTTON", NULL); BEGIN_MSG_MAP(CGroupBox) MESSAGE_HANDLER(OCM_CTLCOLORBTN, OnBkColor) MESSAGE_HANDLER(OCM_CTLCOLORSTATIC, OnBkColor) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_PAINT, OnPaintEmpty) MESSAGE_HANDLER(WM_ENABLE, OnUpdateUIState) MESSAGE_HANDLER(OCM_COMMAND, OnCommand) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnBkColor( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled ); LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnUpdateUIState(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); public: CGroupBox(); void InitItem(LPCSTR strType); void DrawItem(HDC dc, RECT& rcFrame); }; ////////////////////////////////////////////////////////////////////// // CProgress class CProgress : public CItemControl<> { public: typedef CItemControl<> TBase; DECLARE_WND_AVPCLASS("AVP.Progress", PROGRESS_CLASS, NULL); CProgress() { m_nStyles = WS_CHILD; } protected: bool SetValue(const cVariant &pValue) { tDWORD nValue = pValue.ToDWORD(); ::SendMessage(m_hWnd, PBM_SETPOS, nValue == -1 ? 0 : nValue, 0); return true; } bool GetValue(cVariant &pValue) { pValue = (tDWORD)::SendMessage(m_hWnd, PBM_GETPOS, 0, 0); return true; } tTYPE_ID GetType() { return tid_DWORD; } bool IsResizeble(bool bHorz) { return bHorz; } bool IsAdjustable(bool bHorz) { return false; } }; ////////////////////////////////////////////////////////////////////// // CCombo class CCombo : public CItemControl<CComboItem> { public: typedef CItemControl<CComboItem> TBase; DECLARE_WND_AVPCLASS("AVP.ComboBox", "COMBOBOX", NULL); CCombo(); void OnUpdateProps(int flags, tDWORD nStateMask, RECT * rc); void InitItem(LPCSTR strType); void InitProps(CItemProps& strProps, CSinkCreateCtx * pCtx); void GetAddSize(SIZE& szAdd) { szAdd.cy += 8; } protected: BEGIN_MSG_MAP(CCombo) MESSAGE_HANDLER(WM_COMMAND, OnCommand) MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUp) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { return DefWindowProc(); } public: tSIZE_T ctl_GetCurSel() { return ::SendMessage(m_hWnd, CB_GETCURSEL, (WPARAM)0, ( LPARAM )0); } void ctl_SetCurSel(tSIZE_T nIdx) { ::SendMessage(m_hWnd, CB_SETCURSEL, (WPARAM)nIdx, ( LPARAM )0); } tSIZE_T ctl_GetItemsCount() { return ::SendMessage(m_hWnd, CB_GETCOUNT, 0, 0); } void ctl_DeleteItem(tSIZE_T nIdx) { ::SendMessage(m_hWnd, CB_DELETESTRING, (WPARAM)nIdx, 0); } void ctl_DeleteAllItems() { ::SendMessage(m_hWnd, CB_RESETCONTENT, 0, 0); } void ctl_GetTextByPos(tSIZE_T nIdx, cStrObj& strText); tSIZE_T ctl_FindByName(LPCWSTR strName); tSIZE_T ctl_AddItem(LPCWSTR strName); tPTR ctl_GetItemData(tSIZE_T nIdx); void ctl_SetItemData(tSIZE_T nIdx, tPTR pData); tDWORD m_nDropLines; }; ////////////////////////////////////////////////////////////////////// // CSlider class CSlider : public CItemControl<CSliderItem> { public: typedef CItemControl<CSliderItem> TBase; DECLARE_WND_AVPCLASS("AVP.Slider", TRACKBAR_CLASS, NULL); public: CSlider(); void ApplyStyle(LPCSTR strStyle); void OnInited(); protected: void ctl_SetRange(tSIZE_T nMin, tSIZE_T nMax); void ctl_SetPos(tSIZE_T nPos); tSIZE_T ctl_GetPos(); bool ctl_IsVert(); protected: BEGIN_MSG_MAP(CSlider) MESSAGE_HANDLER(OCM_VSCROLL, OnScroll) MESSAGE_HANDLER(OCM_HSCROLL, OnScroll) MESSAGE_HANDLER(OCM_CTLCOLORSTATIC, OnCtlBkColorT) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnScroll(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { _DataChanged(); return bHandled = FALSE, 0; } }; ////////////////////////////////////////////////////////////////////// // CTab class CTab : public CItemControl<CTabItem>, public CXPBrush { public: typedef CItemControl<CTabItem> TBase; DECLARE_WND_AVPCLASS("AVP.Tab", WC_TABCONTROL, NULL); protected: BEGIN_MSG_MAP( CTab ) MESSAGE_HANDLER(OCM_NOTIFY, OnNotifyCtrl) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_PAINT, OnPaint) CHAIN_MSG_MAP(TBase) END_MSG_MAP() protected: LRESULT OnNotifyCtrl(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnEraseBkgnd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); protected: tSIZE_T ctl_GetCurSel(); void ctl_SetCurSel(tSIZE_T nIdx); void ctl_SetItem(tSIZE_T nIdx, LPCSTR strText, CItemBase * pItem); tSIZE_T ctl_GetItemCount(); void ctl_DeleteItem(tSIZE_T nIdx); void ctl_DeleteAllItems(); void ctl_AdjustRect(RECT& rcClient); protected: void OnInit(); void Cleanup(); CItemBase * CreateChild(LPCSTR strItemId, LPCSTR strItemType); void InitProps(CItemProps& strProps, CSinkCreateCtx * pCtx); void DrawItem(HDC dc, RECT& rcFrame); void DrawTabItem(HDC dc, RECT& rcItem, int nItem, int nState); COLORREF m_clBg; }; ////////////////////////////////////////////////////////////////////// // CIPAddressCtrl class CIPAddressCtrl : public CItemControl<CIPAddrEditItem> { public: CIPAddressCtrl(); virtual ~CIPAddressCtrl(); typedef CItemControl<CIPAddrEditItem> TBase; DECLARE_WND_AVPCLASS("AVP.IPAddress", WC_IPADDRESS, NULL); protected: BEGIN_MSG_MAP(CIPAddressCtrl) MESSAGE_HANDLER(WM_GETFONT, OnGetFont) MESSAGE_HANDLER(WM_SETFONT, OnSetFont) MESSAGE_HANDLER(OCM_COMMAND, OnCommand) CHAIN_MSG_MAP(TBase) END_MSG_MAP() void InitItem(LPCSTR strType); void InitProps(CItemProps& strProps, CSinkCreateCtx * pCtx); LRESULT OnGetFont(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSetFont(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); public: void GetAddSize(SIZE& szAdd); bool SetValue(const cVariant &pValue); bool GetValue(cVariant &pValue); protected: HFONT m_hFont; }; ////////////////////////////////////////////////////////////////////// // CEdit class CEditRtn : public CControlBase { public: CEditRtn() : m_bInternalTextOp(0) {} BOOL SetWindowTextW(CRootItem * pRoot, LPCWSTR strText) { m_bInternalTextOp = 1; BOOL res = CControlBase::SetWindowTextW(pRoot, strText); m_bInternalTextOp = 0; return res; } void GetWindowTextW(CRootItem * pRoot, cStrObj& strText) const { m_bInternalTextOp = 1; CControlBase::GetWindowTextW(pRoot, strText); m_bInternalTextOp = 0; } HWND Create(CRootItem * pRoot, HWND hWndParent, CWndClassInfo& pCI, RECT& rcPos, DWORD dwStyle = 0, DWORD dwExStyle = 0, UINT nID = 0); mutable unsigned m_bInternalTextOp : 1; }; class CEdit : public CItemWindowT<CEditRtn, CEditItem> { public: typedef CItemWindowT<CEditRtn, CEditItem> TBase; DECLARE_WND_AVPCLASS("EDIT", "EDIT", NULL); CEdit(); protected: BEGIN_MSG_MAP(CEdit) MESSAGE_HANDLER(OCM_COMMAND, OnCommand) if( m_nCompress ) MESSAGE_HANDLER(OCM_CTLCOLORSTATIC, OnCtlBkColorT) if( m_nStyles & ES_READONLY ) MESSAGE_HANDLER(OCM_CTLCOLORSTATIC, OnCtlBkColor) MESSAGE_HANDLER(WM_MOVE, OnMove) MESSAGE_HANDLER(WM_SIZE, OnSize) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_NCCALCSIZE, OnNcCalcSize) MESSAGE_HANDLER(WM_NCPAINT, OnNcPaint) MESSAGE_HANDLER(WM_GETTEXTLENGTH, OnPswdProtectCheck) MESSAGE_HANDLER(WM_GETTEXT, OnPswdProtectCheck) MESSAGE_HANDLER(WM_SETTEXT, OnPswdProtectCheck) MESSAGE_HANDLER(EM_SETPASSWORDCHAR, OnPswdProtectCheck) MESSAGE_HANDLER(WM_CHAR, OnChar) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMsgMenu(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnPswdProtectCheck(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnNcCalcSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnNcPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnChar(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); void UpdateSpin(); void SetRange(POINT& ptLim); void GetAddSize(SIZE& szAdd); void ApplyStyle(LPCSTR strStyle); void Cleanup(); void InitItem(LPCSTR strType); void OnInited(); void OnUpdateProps(int flags, tDWORD nStateMask, RECT * rc); protected: void ctl_ReplaceText(LPCWSTR strText, tSIZE_T nFrom, tSIZE_T nTo = -1); void ctl_ReplaceSelText(LPCWSTR strText); void ctl_SetSelText(tSIZE_T nFrom, tSIZE_T nTo, bool bAsync = false); bool ctl_IsMultiline(); bool ctl_IsNumber(); bool ctl_IsReadonly(); protected: unsigned m_bShowMenu : 1; unsigned m_bAutoComplete : 1; unsigned m_bUpdateSpin : 1; HWND m_hSpin; SIZE m_szSpin; }; ////////////////////////////////////////////////////////////////////// // CTimeEditBox class CTimeEditBox : public CItemControl<> { public: typedef CItemControl<> TBase; DECLARE_WND_AVPCLASS("AVP.TimeEdit", DATETIMEPICK_CLASS, NULL); CTimeEditBox(); protected: BEGIN_MSG_MAP(CTimeEditBox) MESSAGE_HANDLER(OCM_NOTIFY, OnNotify) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); public: void OnInit(); void GetAddSize(SIZE& szAdd); void ApplyStyle(LPCSTR strStyle); tTYPE_ID GetType() { return tid_DWORD; } bool IsOut(){ return true; } bool SetValue(const cVariant &pValue); bool GetValue(cVariant &pValue); private: tBOOL m_bSeconds; tDWORD m_nType; }; ////////////////////////////////////////////////////////////////////// // CRichEditImpl class CRichEditImpl : public CItemControl<CRichEditItem> { public: typedef CItemControl<CRichEditItem> TBase; CRichEditImpl(); void InitItem(LPCSTR strType); void ApplyStyle(LPCSTR strStyle); protected: DECLARE_WND_AVPCLASS("AVP.RichEdit", "RichEdit20A", NULL); BEGIN_MSG_MAP(CRichEditImpl) MESSAGE_HANDLER(OCM_NOTIFY, OnNotifyCtrl) MESSAGE_HANDLER(WM_SETFOCUS, OnSetFocus) MESSAGE_HANDLER(WM_KILLFOCUS, OnKillFocus) MESSAGE_HANDLER(WM_CREATE, OnCreate) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_PAINT, OnPaint) MESSAGE_HANDLER(WM_NCPAINT, OnNcPaint) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUp) MESSAGE_HANDLER(WM_LBUTTONDBLCLK, OnLButtonDblClk) MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove) MESSAGE_HANDLER(WM_SHOWWINDOW, OnShowWindow) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnNotifyCtrl(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSetFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnKillFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnEraseBkgnd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnNcPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonDblClk(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnKeyDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMouseMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnShowWindow(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); public: void OnApplyBlockStyles(); void ApplyRefStyles(); void ApplyBoldStyles(); void SetRichBlockStyle(DWORD dwMask, DWORD dwEffect, CHARRANGE& chrRange); void OnCalcTextSize(HDC dc, SIZE& sz, tDWORD nFlags); void OnUpdateProps(int flags, tDWORD nStateMask, RECT * rc); void UpdateRefsText(LPCSTR strText, bool bFull = true); protected: void ConvertCharformat2LogFont(HDC hDc, const CHARFORMAT2& cf, LOGFONT& lf); void CalcTextSize(CHARRANGE& cr, SIZE& size); void CalcSingleLineRect(CHARRANGE& cr, RECT& rect); void DrawFocusRect(); public: unsigned m_bNoFocus : 1; unsigned m_bLBClick : 1; unsigned m_bStylesApplied : 1; CHARRANGE m_curLink; size_t m_indSelLink; }; ////////////////////////////////////////////////////////////////////// // CGridCtrlImpl class CGridCtrlImpl : public CItemControl<CListItem> { public: CGridCtrlImpl() { m_nFlags |= STYLE_DRAW_BACKGROUND|STYLE_DRAW_CONTENT|STYLE_TRANSPARENT/*|STYLE_CUSTOMCHILDREN*/; m_nStyles |= WS_VSCROLL|WS_HSCROLL|WS_TABSTOP|LVS_NOCOLUMNHEADER; m_nStylesEx = WS_EX_CLIENTEDGE; } typedef CItemControl<CListItem> TBase; DECLARE_WND_AVPCLASS_EX("AVP.List", "SysListView32", IDC_ARROW, CS_DBLCLKS); void OnUpdateScrollInfo(cScrollInfo& info) { SCROLLINFO si; si.cbSize = sizeof(si); si.nMin = 0; si.fMask = SIF_RANGE|SIF_PAGE|SIF_POS; si.nPage = info.nPage; si.nPos = info.nPos; si.nMax = info.nMax; SetScrollInfo(info.nType == stVScroll ? SB_VERT : SB_HORZ, &si, TRUE); } bool OnColumnTrack(cColumn& col, tDWORD posX) { if(::GetCapture() != NULL) return false; ::SetCapture(m_hWnd); // Цикл обработки сообщений long size = col.m_Size.cx, newsize; bool bContinue = true; while(bContinue) { MSG msg; ::GetMessage(&msg, NULL, 0, 0); if(::GetCapture() != m_hWnd) break; switch(msg.message) { case WM_MOUSEMOVE: newsize = size + GET_X_LPARAM(msg.lParam) - posX; if( newsize < 0 ) newsize = 0; col.ChangeSize(newsize - col.m_Size.cx); ::SetCursor(g_curTrackCol); Update(NULL); break; case WM_KEYDOWN: if(msg.wParam != VK_ESCAPE) break; case WM_RBUTTONDOWN: case WM_LBUTTONUP: bContinue = false; break; default: ::DispatchMessage(&msg); }; } ::ReleaseCapture(); return true; } bool OnDragItem(cRowId* row, cColumn* col, POINT& pt) { if(::GetCapture() != NULL) return false; ::SetCapture(m_hWnd); MSG msg; bool bContinue = true, bSelect = false; while(bContinue) { ::GetMessage(&msg, NULL, 0, 0); if(::GetCapture() != m_hWnd) break; switch(msg.message) { case WM_MOUSEMOVE: pt.x = GET_X_LPARAM(msg.lParam); pt.y = GET_Y_LPARAM(msg.lParam); bContinue = DragItem(row, col, pt, false); break; case WM_KEYDOWN: if(msg.wParam != VK_ESCAPE) break; case WM_LBUTTONUP: pt.x = GET_X_LPARAM(msg.lParam); pt.y = GET_Y_LPARAM(msg.lParam); bSelect = true; case WM_RBUTTONDOWN: bContinue = false; break; case WM_TIMER: continue; default: ::DispatchMessage(&msg); }; } ::ReleaseCapture(); return DragItem(row, col, pt, true); } void OnSetCursor(enCursorType type) { if( type == ctResize ) { if( !g_curTrackCol ) // g_curTrackCol = ::LoadCursor(_Module.m_hInst, MAKEINTRESOURCE(IDC_TRACKCOL)); g_curTrackCol = ::LoadCursor(NULL, IDC_SIZEWE); ::SetCursor(g_curTrackCol); } else if( type == ctNo ) ::SetCursor(::LoadCursor(NULL, IDC_NO)); else if( type == ctDragCol || type == ctHand ) ::SetCursor(::LoadCursor(NULL, IDC_HAND)); else if( type == ctDefault ) ::SetCursor(::LoadCursor(NULL, IDC_ARROW)); } void OnGetViewSize(SIZE& szView) { RECT rcClient; GetClientRect(&rcClient); szView.cx = RECT_CX(rcClient); szView.cy = RECT_CY(rcClient); } void OnFocus(bool bFocusted) { TBase::OnFocus(bFocusted); TBase::Update(NULL); } protected: BEGIN_MSG_MAP(CItemControl) MESSAGE_HANDLER(WM_PAINT, OnPaint) MESSAGE_HANDLER(WM_ERASEBKGND, OnDummy) MESSAGE_HANDLER(WM_VSCROLL, OnScroll) MESSAGE_HANDLER(WM_HSCROLL, OnScroll) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnButtonDown) MESSAGE_HANDLER(WM_RBUTTONDOWN, OnButtonDown) MESSAGE_HANDLER(WM_LBUTTONDBLCLK, OnButtonDown) MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown) MESSAGE_HANDLER(WM_GETDLGCODE, OnDlgCode) MESSAGE_HANDLER(WM_MOUSEWHEEL, OnMouseWheel) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove) MESSAGE_HANDLER(WM_WINDOWPOSCHANGING, OnDummy) MESSAGE_HANDLER(WM_SHOWWINDOW, OnShow) MESSAGE_HANDLER(WM_SIZE, OnSize) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnShow(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { m_bWasLoad = FALSE; bHandled = TRUE; return TRUE; } LRESULT OnDummy(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { bHandled = TRUE; return TRUE; } LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { SIZE sz = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; CListItem::OnSize(sz); bHandled = TRUE; return TRUE; } LRESULT OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { _MsgPaint(); bHandled = TRUE; return S_OK; } LRESULT OnMouseMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { POINT pt = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; OnOver(pt); bHandled = TRUE; LRESULT lResult = 0; TBase::ProcessWindowMessage(m_hWnd, uMsg, wParam, lParam, lResult); return TRUE; } LRESULT OnMouseWheel(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { bHandled = TRUE; Scroll(stVScroll, (((short)HIWORD(wParam)) > 0) ? sdPrev : sdNext, 0); return DLGC_WANTARROWS; } LRESULT OnDlgCode(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { bHandled = TRUE; return DLGC_WANTARROWS; } LRESULT OnButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { if( !(m_nState & ISTATE_FOCUSED) ) SetFocus(); POINT pt = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; tDWORD state = (wParam&MK_CONTROL)?fControl:0|(wParam&MK_SHIFT)?fShift:0; if( uMsg == WM_LBUTTONDBLCLK ) state |= fDouble; else state |= (uMsg == WM_LBUTTONDOWN) ? fLButton : fRButton; OnCliked(pt, state); if( uMsg != WM_LBUTTONDBLCLK ) TBase::OnLButtonDown(uMsg, wParam, lParam, bHandled); bHandled = TRUE; return 0; } RECT GetCheckRect(RECT rcCell, bool bCentered); LRESULT OnKeyDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { tDWORD state = 0; if( GetKeyState(VK_CONTROL) & (1<<15) ) state |= fControl; enUserAction act = sdUnknown; switch(wParam) { case VK_LEFT: act = sdLeft; break; case VK_RIGHT: act = sdRight; break; case VK_UP: act = sdPrev; break; case VK_DOWN: act = sdNext; break; case VK_PRIOR: act = sdPagePrev; break; case VK_NEXT: act = sdPageNext; break; case VK_HOME: act = sdHome; break; case VK_END: act = sdEnd; break; case VK_SPACE: act = sdSpace; break; case VK_DELETE: act = sdDelete; break; case VK_RETURN: act = sdEnter; break; case 'A': if( !(m_flags & fSingleSel) && (state & fControl) ) { SelectRange(0, m_nAllSize); Update(NULL); } break; case 'F': if( state & fControl ) FindRows(eShowDlg); break; case 'C': case VK_INSERT: if( state & fControl ) CopyToClipboard(); break; case VK_F3: FindRows(!(GetKeyState(VK_SHIFT) & 0x80000000) ? 0 : eFindUp); break; case VK_ADD: if( state & fControl ) AutoFitColumn(m_cols, true); break; } if( act != sdUnknown ) { if( GetKeyState(VK_SHIFT) & (1<<15) ) state |= fShift; TBase::OnKeyDown(act, state); } return 0; } LRESULT OnScroll(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { enScrollType type = (uMsg == WM_VSCROLL) ? stVScroll : stHScroll; enUserAction dir = sdExactPos; tDWORD pos = 0; switch(LOWORD(wParam)) { case SB_TOP: dir = sdHome; break; case SB_BOTTOM: dir = sdEnd; break; case SB_LINEUP: dir = sdPrev; break; case SB_LINEDOWN: dir = sdNext; break; case SB_PAGEUP: dir = sdPagePrev; break; case SB_PAGEDOWN: dir = sdPageNext; break; case SB_THUMBPOSITION: case SB_THUMBTRACK: { SCROLLINFO si; si.cbSize = sizeof(si); si.fMask = SIF_TRACKPOS; ::GetScrollInfo(m_hWnd, (uMsg == WM_VSCROLL) ? SB_VERT : SB_HORZ, &si); pos = si.nTrackPos;; dir = sdExactPos; break; } case SB_ENDSCROLL: return 0; } Scroll(type, dir, pos); return bHandled = TRUE, 0; } void CopyToClipboard() { cStrObj sCopyText; cRowId nItem; while( GetSelectedItem(nItem) != invalidIndex ) MakeCopyString(nItem, m_cols, sCopyText); if( sCopyText.empty() ) return; HGLOBAL hglbCopy = GlobalAlloc(GMEM_MOVEABLE, sCopyText.memsize(cCP_UNICODE)); if( !hglbCopy ) return; void* lptstrCopy = GlobalLock(hglbCopy); wcscpy((wchar_t*)lptstrCopy, sCopyText.data()); GlobalUnlock(hglbCopy); if( OpenClipboard() ) { EmptyClipboard(); SetClipboardData(CF_UNICODETEXT, hglbCopy); CloseClipboard(); } } }; ////////////////////////////////////////////////////////////////////// // CTreeImpl class CTreeImpl : public CItemControl<CTreeItem> { public: typedef CItemControl<CTreeItem> TBase; DECLARE_WND_AVPCLASS("AVP.Tree", WC_TREEVIEW, NULL); public: CTreeImpl(); cTreeItem * AppendItem(cTreeItem * pParent, cTreeItem * pItem, cTreeItem * pAfter = NULL); void DeleteItem(cTreeItem * pItem); cTreeItem * GetParentItem(cTreeItem * pItem); cTreeItem * GetChildItem(cTreeItem * pItem); cTreeItem * GetNextItem(cTreeItem * pItem); cTreeItem * GetSelectionItem(); cTreeItem * TreeHitTest(POINT &pt, tUINT * pnFlags); void SelectItem(cTreeItem * pItem); void ExpandItem(cTreeItem * pItem, bool bExpand); void SetItemCheckState(cTreeItem * pItem, bool bChecked = true); void SortChildren(cTreeItem * pItem, bool bRecurse); void SetImageList(hImageList hImages); void UpdateView(int nFlags); bool AddStateIcon(CIcon * pIcon); void DeleteChildItems(cTreeItem * pParent); protected: BEGIN_MSG_MAP(CTreeImpl) MESSAGE_HANDLER(OCM_NOTIFY, OnNotifyCtrl) MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) END_MSG_MAP() LRESULT OnNotifyCtrl(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnKeyDown(UINT uMsg, WPARAM wParam, LPARAM Param, BOOL& bHandled); LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); static int CALLBACK _CompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort); protected: void OnInit(); void Destroy(); void ApplyStyle(LPCSTR strStyle); void _GetItemInfo(TVITEMA& item, bool bAnsi); cTreeItem * _GetItemData(hTreeItem hItem); void _UpdateItemStateIconState(tDWORD &state, tDWORD &stateMask); bool _CreateStateImageList(); void _DestroyStateImageList(); void _AddCheckboxIcon(HIMAGELIST hList, bool bChecked, tDWORD nState); protected: HCURSOR m_hOldCursor; BOOL m_bExpanding; HIMAGELIST m_hStateImgList; unsigned m_fSetSel : 1; }; ////////////////////////////////////////////////////////////////////// // CDialogControl class CDialogControl : public CItemWindowT<CDialogBase, CDialogControlItem> { public: typedef CItemWindowT<CDialogBase, CDialogControlItem> TBase; DECLARE_DLG_AVPCLASS(NULL) CDialogControl() { m_nStyles = WS_CHILD|WS_TABSTOP; m_nStylesEx = WS_EX_CONTROLPARENT; } BEGIN_MSG_MAP(CDialogControl) MESSAGE_HANDLER(WM_HELP, OnHelp) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_PAINT, OnPaint) if( uMsg != WM_CTLCOLORDLG ) AVP_REFLECT_NOTIFICATIONS() CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnHelp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); void InitItem(LPCSTR strType) { TBase::InitItem(strType); if( m_pRoot->IsThemed() && (!(m_pRoot->m_nGuiFlags & GUIFLAG_ADMIN) || (m_pParent && m_pParent->m_strItemType == GUI_ITEMT_TAB) )) static_cast<CWinRoot*>(m_pRoot)->EnableThemeDialogTexture(m_hWnd); if( !GUI_ISSTYLE_SIMPLE(m_pRoot) && m_pParent && m_pParent->m_pBackground ) m_pBackground = m_pParent->m_pBackground; } }; ////////////////////////////////////////////////////////////////////// // CPropertySheetPage class CPropertySheetPage : public CDialogControl { public: CPropertySheetPage() { m_nFlags |= STYLE_TOP_ITEM; } BEGIN_MSG_MAP(CPropertySheetPage) MESSAGE_HANDLER(WM_SIZE, OnSize) CHAIN_MSG_MAP(CDialogControl) END_MSG_MAP() LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { SIZE l_szNew = {LOWORD(lParam), HIWORD(lParam)}; if( (l_szNew.cx - m_szSize.cx) || (l_szNew.cy - m_szSize.cy) ) Resize(l_szNew.cx - m_szSize.cx, l_szNew.cy - m_szSize.cy, false); return 0; } }; ////////////////////////////////////////////////////////////////////// class CDialogItemImpl : public CItemWindowT<CDialogBase, CDialogItem> { public: DECLARE_DLG_AVPCLASS("") typedef CItemWindowT<CDialogBase, CDialogItem> TBase; CDialogItemImpl(); bool IsActive(); void Activate(); void GetParentRect(RECT& rcParent, CItemBase* pOwner = NULL); void ModalEnableParent(bool bEnable); protected: BEGIN_MSG_MAP(CDialogItemImpl) MESSAGE_HANDLER(WM_HELP, OnHelp) MESSAGE_HANDLER(WM_PAINT, OnPaint) MESSAGE_HANDLER(WM_SIZE, OnSize) MESSAGE_HANDLER(WM_WINDOWPOSCHANGING, OnWindowPosChanging) MESSAGE_HANDLER(WM_GETMINMAXINFO, OnGetMinmaxInfo) MESSAGE_HANDLER(WM_COMMAND, OnCommand) MESSAGE_HANDLER(WM_SYSCOMMAND, OnSysCommand) MESSAGE_HANDLER(WM_CLOSE, OnClose) MESSAGE_HANDLER(WM_QUERYENDSESSION, OnQueryEndSession) MESSAGE_HANDLER(WM_DESTROY, OnDestroy) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove) MESSAGE_HANDLER(WM_NCMOUSEMOVE, OnMouseMove) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog) MESSAGE_HANDLER(WM_ACTIVATE, OnActivate) MESSAGE_HANDLER(WM_MOUSELEAVE, OnMouseLeave) MESSAGE_HANDLER(WM_TIMER, OnTimer) MESSAGE_HANDLER(DM_GETDEFID, OnGetDefId) MESSAGE_HANDLER(OCM_SYSCOLORCHANGE, OnSysColorChange) AVP_REFLECT_NOTIFICATIONS() CHAIN_MSG_MAP(TBase) END_MSG_MAP() void InitItem(LPCSTR strType); void InitProps(CItemProps& strProps, CSinkCreateCtx * pCtx); void Cleanup(); void ApplyStyle(LPCSTR strStyle); void DrawBackground(HDC dc, RECT& rcClient, RECT * prcClip); void Close(tDWORD nAction); void SetShowMode(eShow eShowMode); bool SetNextDlgItem(bool bGroup, bool bBackward); bool PreTranslateMessage(MSG& msg); void ReLoad(); void OnUpdateProps(int flags, tDWORD nStateMask = 0, RECT * rc = NULL); void OnAdjustBordSize(RECT& rc); LRESULT OnHelp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnWindowPosChanging(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnGetDefId(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSysCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnClose(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnQueryEndSession(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnDestroy(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSysColorChange(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnGetMinmaxInfo(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnActivate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMouseMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMouseLeave(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled){ return FALSE; } LRESULT OnTimer(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); void OnFinalMessage(HWND); protected: bool _CloseDlg(); tUINT _GetDlgPosOffset(); bool _CheckDlgPosOffset(); void _InitDlgRect(RECT& rcFrame); void _UpdateRgn(); protected: void ctl_SetTransparentValue(tBYTE nAlpha); tDWORD ctl_SetTransparentTimer(tDWORD nInterval); void ctl_KillTransparentTimer(tDWORD nId); protected: unsigned m_bInited : 1; unsigned m_bEndSession : 1; unsigned m_bEnableParent : 1; unsigned m_bMouseOver : 1; unsigned m_bGripperOn : 1; tDWORD m_nCurShowState; protected: class CVoidWndImpl : public CItemControl<CItemBase> { public: DECLARE_WND_AVPCLASS("AVP.Void", NULL, NULL); }; CVoidWndImpl m_HiddenParent; }; ////////////////////////////////////////////////////////////////////// // CPopupMenu #define MENU_ICON_MARGIN 23 #define MENU_LINE_HEIGHT 23 class CPopupMenu : public CPopupMenuItem { public: CPopupMenu() : m_hFont(NULL), m_pCheck(NULL){} ~CPopupMenu(); static void CleanSeparators(HMENU hMenu); static LRESULT DrawItem(LPDRAWITEMSTRUCT lpInfo); static LRESULT MeasureItem(LPMEASUREITEMSTRUCT lpInfo); protected: HMENU ctl_GetRootItem(); HMENU ctl_AddItem(HMENU hMenu, CItemBase * pItem, bool bSub = false); tDWORD ctl_Track(POINT& pt); void ctl_TrackEnd(); void ctl_CleanSeps(HMENU hMenu) { CleanSeparators(hMenu); } protected: HFONT m_hFont; CMenuHnd m_hMenu; CIcon* m_pCheck; }; ////////////////////////////////////////////////////////////////////// // CTrayIcon extern const UINT WM_TASKBAR_CREATED; extern const UINT KWS_TRAY_MESSAGE; class CTrayIcon : public CTrayItem, public CWindowImpl<CTrayIcon, CWindowL, CWinTraits<WS_POPUP, 0> > { public: DECLARE_WND_CLASS("AVP.Tray"); class CChanger : public CRootTaskBase { public: CChanger(CRootItem *pRoot, UINT uID); ~CChanger(); virtual void do_work(); NOTIFYICONDATAW m_nid; bool * m_pbEnd; }; public: CTrayIcon(); HWND GetWindow(){ return m_hWnd; } void Cleanup(); void InitItem(LPCSTR strType); void Click(bool bForce = false, bool rClick = false); protected: void OnInit(); void OnUpdateProps(int flags, tDWORD nStateMask = 0, RECT * rc = NULL); void TimerRefresh(tDWORD nTimerSpin); protected: void ShowBalloon(LPCSTR szText, LPCSTR szTitle, LPCSTR szValue, tDWORD uTimeout, tDWORD dwIconType); LPCSTR GetBalloonText(); BEGIN_MSG_MAP(CTrayIcon) MESSAGE_HANDLER(KWS_TRAY_MESSAGE, OnTrayMessage) MESSAGE_HANDLER(WM_CONTEXTMENU, OnMenu) MESSAGE_HANDLER(WM_RBUTTONUP, OnMenu) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnSelDefItem) MESSAGE_HANDLER(WM_TASKBAR_CREATED, OnTaskbarCreated) MESSAGE_HANDLER(WM_CLOSE, OnClose) END_MSG_MAP() protected: LRESULT OnTrayMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnTaskbarCreated(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); // Internal event handlers LRESULT OnMenu(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSelDefItem(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnClose(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); private: tString m_strBalloonText; UINT m_uID; static UINT g_uTrayCount; }; ////////////////////////////////////////////////////////////////////// class CWinCreditsCtrl : public CItemControl<> { typedef CItemControl<> TBase; DECLARE_WND_AVPCLASS_EX("AVP.Credits", NULL, NULL, CS_DBLCLKS); BEGIN_MSG_MAP(CWinCreditsCtrl) MESSAGE_HANDLER(WM_PAINT, OnPaint) //MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUp) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMouseMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); void OnInit(); void DrawItem(HDC dc, RECT& rcFrame); public: CWinCreditsCtrl(); ~CWinCreditsCtrl(); void Scroll(); bool IsCaptured() { return m_mousecaptured; } private: struct CSItem { tString m_sname; int m_height; CFontStyle* m_pFont; SIZE m_margin; CSItem() : m_sname(""), m_height(0), m_pFont(NULL) { m_margin.cx = m_margin.cy = 0; } CSItem(tString nm, CFontStyle* pF, int hi, SIZE sz) : m_sname(nm), m_pFont(pF), m_height(hi), m_margin(sz) {} }; struct CreditSection { CSItem m_csTitle; cVector<CSItem> m_vCredits; int CalcTotalHeight(); }; enum DCType { dc_scr = 0, dc_capt, dc_work, dc_mask }; cVector<CreditSection> m_vSections; cVector<int> m_vStartSect; HDC m_dc[dc_mask + 1]; HBITMAP m_hbmp[dc_mask + 1]; HBITMAP m_hbmp_old[dc_mask + 1]; int m_TitleHi, m_nScrollY, m_nBlendCaption, m_cur_section; SIZE m_szWorkBmp; UINT_PTR m_TimerID; typedef BOOL WINAPI AlphaBlend_FUNC(HDC hdcDest, int nXOriginDest, int nYOriginDest, int nWidthDest, int nHeightDest, HDC hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc, BLENDFUNCTION blendFunction); HMODULE m_hIma32; AlphaBlend_FUNC* m_pfnAlphaBlend; void SetScroll(int y); void NormalizeScroll(); bool m_mousecaptured; int m_mousey; int m_mousetime; typedef double speed_t; speed_t m_speedy; speed_t m_scroll; bool m_accmode; CImagePng m_png; bool m_pngact; //////////////////////////////////// void DrawOneStep(HDC dc, RECT rcFrame); void CreateCompDC(HDC hDC, int nItem, int cx, int cy); void DeleteCompDC(int nItem); void SetCreditsTimer(); void KillCreditsTimer(); void UpdateCreditsDC(HDC dc, RECT rcFrame); void DrawCaption(HDC ParentDc, RECT rc, int isection); int CreditSection2WorkDC(const CreditSection& cs, int top); int GetSectionByScrollY(int ScrollY); bool GetItemByScrollY(int ScrollY, int& sect, int& item); }; ////////////////////////////////////////////////////////////////////// // CWinHTMLCtrl class CDocHostUIHandlerDispImpl; class CWinHTMLCtrl : public CItemWindowT< CControlBaseT< CAxWindowT<CWindowL> >, CHTMLItem > , public IDispEventImpl<0, CWinHTMLCtrl, &DIID_DWebBrowserEvents2, &LIBID_SHDocVw, 1, 0> { public: typedef CItemWindowT< CControlBaseT< CAxWindowT<CWindowL> >, CHTMLItem > TBase; #ifndef ATLAXWIN_CLASS #define ATLAXWIN_CLASS "AtlAxWin" #endif DECLARE_WND_AVPCLASS("AVP.HTMLCtrl", ATLAXWIN_CLASS, NULL); CWinHTMLCtrl(); virtual ~CWinHTMLCtrl(); virtual bool Navigate(LPCSTR szUrl); virtual bool Submit(LPCSTR szFormName = NULL); void InitItem(LPCSTR strType); void Cleanup(); void OnInited(); void ApplyStyle(LPCSTR strStyle); void OnUpdateProps(int flags = UPDATE_FLAG_ALL, tDWORD nStateMask = 0, RECT * rc = NULL); BEGIN_SINK_MAP(CWinHTMLCtrl) SINK_ENTRY_EX(0, DIID_DWebBrowserEvents2, DISPID_BEFORENAVIGATE2, BeforeNavigate2) SINK_ENTRY_EX(0, DIID_DWebBrowserEvents2, DISPID_NAVIGATECOMPLETE2, NavigateComplete2) END_SINK_MAP() STDMETHOD_(void, BeforeNavigate2)( IDispatch *pDisp, VARIANT *URL, VARIANT *Flags, VARIANT *TargetFrameName, VARIANT *PostData, VARIANT *Headers, VARIANT_BOOL *Cancel); STDMETHOD_(void, NavigateComplete2)( IDispatch *pDisp, VARIANT *URL); protected: void RenderText(); bool NeedScroll(CComQIPtr<IHTMLDocument2>& pDoc); void GetHTMLDocument(CComQIPtr<IHTMLDocument2>& pDoc); protected: CComQIPtr<IWebBrowser2> m_pWB2; CDocHostUIHandlerDispImpl* m_pDocHostUI; bool m_bNavigateComplete; SIZE m_szScroll; }; ////////////////////////////////////////////////////////////////////// class CSlideShowCtrl : public CItemBase { public: CSlideShowCtrl(); //override void OnInit(); void TimerRefresh(tDWORD nTimerSpin); void DrawChildren(HDC dc, RECT* rcUpdate); bool OnClicked(CItemBase* pItem); SINK_MAP_BEGIN() // SINK_STATIC_ANY(_CmnSink) { pItem->AttachSink(&_CmnSink, false); } SINK_MAP_END(CItemBase) class CMySink : public CItemSink { public: void OnInitProps(CItemProps& strProps) { // m_aItemsDelay[m_pItem->m_nPos]=(int)strProps.Get(STR_PID_DELAY).GetLong(); } }; CMySink _CmnSink; protected: virtual void InitProps(CItemProps& strProps, CSinkCreateCtx * pCtx); bool IsAutoSlideShow(){return (m_nDelay && m_aItems.size ());} void GoNextSlide(); struct GDIHelper { typedef BOOL WINAPI AlphaBlend_FUNC(HDC hdcDest, int nXOriginDest, int nYOriginDest, int nWidthDest, int nHeightDest, HDC hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc, BLENDFUNCTION blendFunction); GDIHelper() { SetNull(); m_hIma32 = ::LoadLibrary(_T("Msimg32.dll")); if( m_hIma32 ) m_pfnAlphaBlend = (AlphaBlend_FUNC *)::GetProcAddress(m_hIma32, "AlphaBlend"); } ~GDIHelper() { Clear(); if (m_hIma32) ::FreeLibrary(m_hIma32); m_hIma32 = NULL; } HMODULE m_hIma32; AlphaBlend_FUNC* m_pfnAlphaBlend; HDC m_DC; HBITMAP m_hBitmap; HBITMAP m_hPrevBitmap; void SetNull(){m_DC=NULL; m_hBitmap=NULL; m_hPrevBitmap=NULL;} GDIHelper& operator=(GDIHelper& src) { Clear(); m_DC = src.m_DC; m_hBitmap = src.m_hBitmap; m_hPrevBitmap = src.m_hPrevBitmap; src.SetNull(); return *this; } void Clear() { if(m_DC) { if (m_hPrevBitmap) ::SelectObject(m_DC, m_hPrevBitmap); ::DeleteDC(m_DC); } if (m_hBitmap) DeleteObject(m_hBitmap); m_DC = NULL; m_hBitmap = NULL; m_hPrevBitmap = NULL; } bool IsValid() { return m_DC!=NULL; } /* HDC CWinRoot::GetTempDC(RECT& rcFrame, RECT* rcUpdate) { SIZE szNew = {RECT_CX(rcFrame), RECT_CY(rcFrame)}; bool bInit = true; if( !m_hTmpDC ) { m_szTmpBmp = szNew; m_hTmpDC = ::CreateCompatibleDC(GetDesktopDC()); GetLastError(); } else if( m_szTmpBmp.cx < szNew.cx || m_szTmpBmp.cy < szNew.cy ) { m_szTmpBmp.cx = max(m_szTmpBmp.cx, szNew.cx); m_szTmpBmp.cy = max(m_szTmpBmp.cy, szNew.cy); ::SelectObject(m_hTmpDC, m_hTmpOldBmp); m_hTmpBmp.Cleanup(); } else bInit = false; if( bInit ) { m_hTmpBmp = ::CreateCompatibleBitmap(GetDesktopDC(), m_szTmpBmp.cx, m_szTmpBmp.cy); m_hTmpOldBmp = (HBITMAP)::SelectObject(m_hTmpDC, m_hTmpBmp); } ::SetViewportOrgEx(m_hTmpDC, -rcFrame.left, -rcFrame.top, NULL); if( rcUpdate ) ::IntersectClipRect(m_hTmpDC, rcUpdate->left, rcUpdate->top, rcUpdate->right, rcUpdate->bottom); else ::IntersectClipRect(m_hTmpDC, 0, 0, szNew.cx, szNew.cy); return m_hTmpDC; } */ bool CreateTransparentDC(HDC dc, RECT& rcClient) { int iWidth = rcClient.right-rcClient.left; int iHeight = rcClient.bottom-rcClient.top; Clear(); m_DC = ::CreateCompatibleDC(dc); m_hBitmap = ::CreateCompatibleBitmap(dc, rcClient.right-rcClient.left, rcClient.bottom-rcClient.top); m_hPrevBitmap = (HBITMAP)::SelectObject(m_DC, m_hBitmap); ::SetViewportOrgEx (m_DC, -rcClient.left, -rcClient.top, NULL); ::BitBlt(m_DC, rcClient.left,rcClient.top,iWidth, iHeight, dc, rcClient.left,rcClient.top,SRCCOPY); return IsValid(); } void BlendTo(HDC dc, RECT& rcClient, BYTE iAlpha) { int iWidth = rcClient.right-rcClient.left; int iHeight = rcClient.bottom-rcClient.top; // BitBlt(dc, rcClient.left,rcClient.top,iWidth, iHeight, m_DC, rcClient.left,rcClient.top,SRCCOPY); // return; BLENDFUNCTION bf = { AC_SRC_OVER, 0, iAlpha, 0 }; if (m_pfnAlphaBlend) m_pfnAlphaBlend(dc, rcClient.left,rcClient.top, iWidth, iHeight, m_DC, rcClient.left,rcClient.top, iWidth, iHeight, bf); } }; GDIHelper m_MemDC, m_OldDC, m_ActiveDC; bool m_bAnimateInProgress; int m_iCurrentSlide; int m_iFrame; int m_nDelay; tDWORD m_dwLastTimeSpin; }; ////////////////////////////////////////////////////////////////////// // CSplitCtrl class CSplitCtrl : public CItemControl<CSplitterItem> { public: typedef CItemControl<CSplitterItem> TBase; DECLARE_WND_AVPCLASS("AVP.Splitter", NULL, NULL); CSplitCtrl(); ~CSplitCtrl(); // CItemBase void ApplyStyle(LPCSTR strStyle); protected: BEGIN_MSG_MAP(CSplitCtrl) MESSAGE_HANDLER(WM_PAINT, OnPaint) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_SETCURSOR, OnSetCursor) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUp) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnEraseBkgnd(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSetCursor(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonDown(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonUp(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled); LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& bHandled); private: HCURSOR m_hCursor; POINT m_ptStart; }; ////////////////////////////////////////////////////////////////////// // CHexViewCtrl class CHexViewCtrl : public CItemControl<CHexViewItem> { public: typedef CItemControl<CHexViewItem> TBase; DECLARE_WND_AVPCLASS("AVP.HexViewer", NULL, NULL); CHexViewCtrl(); protected: BEGIN_MSG_MAP(CHexViewCtrl) MESSAGE_HANDLER(WM_PAINT, OnPaint) MESSAGE_HANDLER(WM_SIZE, OnSize) MESSAGE_HANDLER(WM_VSCROLL, OnVScroll) MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown) MESSAGE_HANDLER(WM_MOUSEWHEEL, OnMouseWhell) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_RBUTTONDOWN, OnRButtonDown) MESSAGE_HANDLER(WM_GETDLGCODE, OnDlgCode) MESSAGE_HANDLER(WM_SETFOCUS, OnSetFocus) MESSAGE_HANDLER(WM_KILLFOCUS, OnKillFocus) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove) CHAIN_MSG_MAP(TBase) END_MSG_MAP() LRESULT OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnVScroll(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnKeyDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMouseWhell(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnRButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnDlgCode(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnSetFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnKillFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnMouseMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); protected: // virtual overwrite CHexViewItem void UpdateScrollBars(); void UpdateScrollBarPos(); }; ///////////////////////////////////////////// #endif // !defined(AFX_WINCTRLS_H__5401AE0F_38DD_4399_883A_F072CC926781__INCLUDED_)
ada200cb6c6db2fc35ef1680146c1547efebed04
a6156b7fb1378cf8791eef0ff290cc7f9e08aa3f
/pat/1015/1015.cpp
b2f50e3b19c3df062dff2154e2bd624d5144a2d1
[]
no_license
mazewu1102/oj
757a7712eaf8ad04f81e354f4e92f01a45b0dea6
b76703b31f0afecd9a4446cd452d0a683623731b
refs/heads/master
2021-01-13T17:06:03.388209
2014-09-24T16:29:07
2014-09-24T16:29:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
792
cpp
1015.cpp
#include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> #include <stack> using namespace std; bool is_prime(int n) { for (int i = 2; i < n / 2; ++i) if (n % i == 0) return false; return true; } bool judge(int n, int d) { int len = 0; stack<int> si; for (; n != 0; ++len, n /= d) si.push(n % d); int reverse = 0; int t = 1; while (!si.empty()) { reverse += t*si.top(); si.pop(); t *= d; } return is_prime(reverse); } int main() { for (;;) { int n, d; scanf("%d", &n); if (n < 0) break; scanf("%d", &d); if (judge(n, d)) printf("Yes\n"); else printf("No\n"); } return 0; }
937f72fe71ad65a347a8018b3eb9d33087f36eb8
471a76e984af91c107b5650e37983e94b185de9b
/src/service/common/io_module/connector_initializer.h
a227e20aa68a60b95096d9337be6d835847675e6
[]
no_license
KennethMilner/LTN
5b1592c8c6a9efd7c3483395c6ce2f54b1e3bd78
a9209ee9981d12bdff8335f969497ecd5949a9ab
refs/heads/master
2021-01-16T09:00:40.508218
2020-02-25T18:10:37
2020-02-25T18:10:37
243,051,167
0
0
null
null
null
null
UTF-8
C++
false
false
348
h
connector_initializer.h
#pragma once #include <io/io_handler_initializer.hpp> #include "client_connector_handler.h" using namespace micro::core; class connector_initializer : public io_handler_initializer { public: void init(context_chain & chain) { chain.add_last("client connector handler", std::make_shared<client_connector_handler>()); } };
d9bdff51e1e83896f95090837212d9b3a75e22c1
9678aa59a00ab4058424b6f10348c1de870e807c
/gtkWidget.cpp
82f4b27823a452048a632824615fb9ec7d3b7aea
[]
no_license
reaperofchaos/GladeParrser
7e2479d225780236e73c5788039e73cc9ca77d36
fb30ed5eef35ff51ee9437648d9b2c01b591b34e
refs/heads/master
2021-03-17T04:59:53.955015
2020-04-20T18:05:40
2020-04-20T18:05:40
246,962,750
0
0
null
null
null
null
UTF-8
C++
false
false
243
cpp
gtkWidget.cpp
#include "gtkWidget.h" void GtkWidget::setType(std::string type) { GtkWidget::type = type; }; std::string GtkWidget::getType() { return GtkWidget::type; } std::string GtkWidget::getID() { return GtkWidget::id; }
d9df1c59c8d35cb2b302b2d2eb9e30a26a02d4bf
d72e73bf1e5bcc7458deaee5ba5f3a9c575d1219
/Lab02/Lab02/ajohar5_lab02_q1.cpp
09e1c912be1e0e9f1a8196b93dfbf4b9b0e2a220
[]
no_license
kevin-johar/CPlusPlus_Assignments
66619e6a172907bd3753454d7714c2401ee615f2
c5eeef3fb1c9a24a6f5c86f72d110a376efe14cb
refs/heads/master
2021-09-09T15:05:11.326670
2018-03-17T08:09:05
2018-03-17T08:09:05
125,609,026
0
0
null
null
null
null
UTF-8
C++
false
false
1,560
cpp
ajohar5_lab02_q1.cpp
// ajohar5_lab02_q1.cpp // Lab02 // // Created by Kevin Johar on 2018-02-12. // Copyright © 2018 Kevin Johar. all rights reserved. //Name: Kevin Johar //Student Number: 250 969 894 //Section: 006 //Email: ajohar5@uwo.ca #include <iostream> #include <string> using std::cout; using std::cin; using std::endl; //Main function, code begins here int main() { //Variable declaration int grade; //Program prompts user to input grade grade cout<<"I will convert your grade to a letter value.\nWhat is your grade (between 50% and 100%)? "<<endl; cin>>grade; //Conditional section to output letter grade based on grade value input if (95<=grade && grade<=100) { cout<<"You have grade A+\n"; } else if (90<=grade && grade<95) { cout<<"You have grade A\n"; } else if (85<=grade && grade<90) { cout<<"You have grade A-\n"; } else if (80<=grade && grade<85) { cout<<"You have grade B+\n"; } else if (75<=grade && grade<80) { cout<<"You have grade B\n"; } else if (70<=grade && grade<75) { cout<<"You have grade B-\n"; } else if (65<=grade && grade<70) { cout<<"You have grade C+\n"; } else if (60<=grade && grade<65) { cout<<"You have grade C\n"; } else if (50<=grade && grade<60) { cout<<"You have grade C-\n"; } else { cout<<"\nPlease enter a grade within 50% and 100% ONLY!\n"<<endl; main(); } return 0; }
65e5312920aa082fbf9b0f092926672d83b4d2ba
46dc0e6e18ab6ffc1c4816d399a8d07c65caa9f8
/GeantFast/src/FCCTrackingAction.cc
a60dd477580d9c90dca504c066e06d3ba5edef94
[]
no_license
degrutto/FCCSW
6e2bea60ec47f70a8a1939bbe5cfc3c78af8eeda
a484057871def7d388c5a98d219d2807696d74bc
refs/heads/master
2020-12-31T06:31:31.554671
2015-04-15T13:47:53
2015-04-15T13:47:53
27,708,049
0
1
null
null
null
null
UTF-8
C++
false
false
3,097
cc
FCCTrackingAction.cc
#include "FCCTrackingAction.hh" #include "FCCEventInformation.hh" #include "FCCPrimaryParticleInformation.hh" #include "FCCOutput.hh" #include "G4ThreeVector.hh" #include "G4EventManager.hh" #include "G4RunManager.hh" #include "Randomize.hh" #include "G4SystemOfUnits.hh" #include "G4TrackingManager.hh" #include <iomanip> #include <vector> //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... FCCTrackingAction::FCCTrackingAction() : G4UserTrackingAction() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... FCCTrackingAction::~FCCTrackingAction() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void FCCTrackingAction::PreUserTrackingAction(const G4Track* aTrack) { if( aTrack->GetMomentum().perp() < 1.0*MeV || std::abs(aTrack->GetMomentum().pseudoRapidity())>5.5 ) { ((G4Track*)aTrack)->SetTrackStatus(fStopAndKill); } // filling data only for primary particles if(aTrack->GetParentID()) return; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void FCCTrackingAction::PostUserTrackingAction(const G4Track* aTrack) { if ( aTrack->GetTrackStatus() == fStopAndKill && aTrack->GetParentID()==0 ) { FCCPrimaryParticleInformation* info = (FCCPrimaryParticleInformation*)aTrack->GetDynamicParticle()->GetPrimaryParticle()->GetUserInformation(); FCCOutput::Instance()->SaveTrack(FCCOutput::eSaveMC, info->GetPartID(), info->GetPDG(), info->GetMCMomentum()/MeV ); FCCOutput::Instance()->SaveTrack(FCCOutput::eSaveTracker, info->GetPartID(), info->GetPDG(), info->GetTrackerMomentum()/MeV, info->GetTrackerResolution(), info->GetTrackerEfficiency()); FCCOutput::Instance()->SaveTrack(FCCOutput::eSaveEMCal, info->GetPartID(), info->GetPDG(), info->GetEMCalPosition()/mm, info->GetEMCalResolution(), info->GetEMCalEfficiency(), info->GetEMCalEnergy()/MeV); FCCOutput::Instance()->SaveTrack(FCCOutput::eSaveHCal, info->GetPartID(), info->GetPDG(), info->GetHCalPosition()/mm, info->GetHCalResolution(), info->GetHCalEfficiency(), info->GetHCalEnergy()/MeV); } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
c5205017af2cba1efa4489b863fc92fc30c84f14
2ba3af942830df1177d971210efb5028e948e6f9
/include/SceneStart.h
4134a4c846d6045f2e2488cc39bb77667626f989
[]
no_license
sxysxy/HfCloud
e8443cb81b87fae10b4a82a65f48961e18707b0b
506721b0d5e3c90c66accea80f4e38973ed3c002
refs/heads/master
2021-01-20T09:36:53.534928
2017-06-03T11:15:12
2017-06-03T11:15:12
90,265,794
11
7
null
2017-06-03T11:15:13
2017-05-04T13:20:17
C++
UTF-8
C++
false
false
354
h
SceneStart.h
#ifndef _SCENESTART_H #define _SCENESTART_H #include "Graphics.h" #include "Scene.h" using namespace HfCloud; // the start scene class SceneStart : public Scene{ public: virtual void start_scene(); //when start the scene virtual void end_scene(); //and when end virtual void update(); //update }; #endif // _SCENESTART_H
9b17b58b4538befc13c78996d9f86e1620488876
c2a7688012c783d014f131edbc10856027f492d4
/mcdatacreator/EditorCode/DockspaceMenu.h
1950ea50a8a18372a32666edda09f9486058c861
[]
no_license
Crashaholic/mcdatacreator
e301919ff4e8fd2829a9ad15b7c01ac1854b7b4b
7feb4898f16c498e1a7d425a0ba99fcd4d111e00
refs/heads/master
2023-06-08T17:16:22.024807
2021-06-23T05:16:42
2021-06-23T05:16:42
283,416,649
0
0
null
null
null
null
UTF-8
C++
false
false
2,271
h
DockspaceMenu.h
#pragma once #include <imgui/imgui.h> #include <imgui/include/imgui_impl_opengl3.h> #include <imgui/include/imgui_impl_glfw.h> #include "imgui_internal.h" #include <imgui/misc/cpp/imgui_stdlib.h> #include "Windows/ShowWindowBools.h" #include "Windows/OpenProjectWindow.h" #include "Windows/NewNamespaceWindow.h" #include "Windows/CurrentProjectExplorer.h" #include "Windows/NewProjectWindow.h" #include "Windows/ToolbarWindow.h" #include "Windows/FileDialogModal.h" #include "WindowStack.h" // this is the dockspace menu // its the top bar just below the window title bar // contains "File", "Edit", etc. struct { bool appShouldClose = false; void Update() { if (ImGui::BeginMenu("File")) { if (ImGui::MenuItem("New Project", "Crtl + Shift + N")) { winStack.add<NewProjectWindow>(); } if (ImGui::MenuItem("New Namespace")) { winStack.add<NewNamespaceWindow>(); } ImGui::Separator(); if (ImGui::MenuItem("New MCFunction File")) { } if (ImGui::MenuItem("New JSON File")) { } ImGui::Separator(); if (ImGui::MenuItem("Open Project", "Ctrl + Shift + O")) { winStack.add<OpenProjectWindow>(); } if (ImGui::MenuItem("Add File To Project")) { } ImGui::Separator(); if (ImGui::MenuItem("Exit", "Alt + F4")) { appShouldClose = true; } ImGui::EndMenu(); } if (ImGui::BeginMenu("View")) { if (ImGui::MenuItem("Project Explorer")) { Messenger::push("showProjectExplorer", ""); winStack.add<EditorProjectExplorer>(); } if (ImGui::MenuItem("Toolbar")) { winStack.add<ToolbarWindow>(); } ImGui::EndMenu(); } if (ImGui::BeginMenu("DEBUG")) { if (ImGui::MenuItem("DEBUG__SCAN-DIR")) { std::cout << "not intended to work on *your* machine, directory is hard-coded purely for debugging sake.\n"; Messenger::push("DEBUG__SCAN-DIR", ""); } if (ImGui::MenuItem("DEBUG__GET-GIVE-COMMAND")) { Messenger::push("DEBUG__GET-GIVE-COMMAND", ""); } if (ImGui::MenuItem("DEBUG__GET-EXECUTE-COMMAND")) { Messenger::push("DEBUG__GET-EXECUTE-COMMAND", ""); } if (ImGui::MenuItem("DEBUG__GET-BAD-COMMAND")) { Messenger::push("DEBUG__GET-BAD-COMMAND", ""); } ImGui::EndMenu(); } } } DockspaceMenu ;
9e68526286fee9349780f6679233923a8c31222e
d9a66840bf09cb926de8ee1749a47acc11bcdd05
/old/Codeforces/131/A.cpp
1d40a392b839dd8f187e20ef11804dd4d0adfd72
[ "Unlicense" ]
permissive
not522/CompetitiveProgramming
b632603a49d3fec5e0815458bd2c5f355e96a84f
a900a09bf1057d37d08ddc7090a9c8b8f099dc74
refs/heads/master
2023-05-12T12:14:57.888297
2023-05-07T07:36:29
2023-05-07T07:36:29
129,512,758
7
0
null
null
null
null
UTF-8
C++
false
false
235
cpp
A.cpp
#include "template.hpp" int main() { string s; cin >> s; if (all_of(s.begin() + 1, s.end(), [](char c){return isupper(c);})) { transform(s.begin(), s.end(), s.begin(), [](char c){return c ^ 32;}); } cout << s << endl; }
f45e35ed3c502736319e91b6e29f6c7c12226aab
00dcd1e50986ede7209287fc9f9741580559f923
/regex_engine/Token.cpp
4707179e30fc9d17cd8bb1585f85ee518b184bcf
[]
no_license
zywww/regex_engine
927108605f6b0874843492c4eb9d1414d83e609f
2bb2b97d163051f80cca6be01c82be3620a1b825
refs/heads/master
2020-03-26T08:47:34.630830
2016-12-23T07:43:29
2016-12-23T07:43:29
61,547,331
2
1
null
null
null
null
UTF-8
C++
false
false
104
cpp
Token.cpp
#include "Token.h" Token::Token(TokenType type, std::string lexeme) : type_(type), lexeme_(lexeme) { }
3a6104b77b7e8845cd201e77c70216f2f7bf2da8
b472d1b03a8efb55b62ceb848bf02f314699dd58
/principle diagonal.cpp
bd8abce283ac685d7f4c021b2e09525aae1a71a2
[]
no_license
Raj-588/CP_code
d9ae230bb9197f66ee9af0afabfc500f36a81602
ca87bf14dcac8d0496574623201a6c8070f2f14b
refs/heads/main
2023-05-29T11:36:50.199919
2021-06-12T12:42:00
2021-06-12T12:42:00
376,286,930
0
0
null
null
null
null
MacCentralEurope
C++
false
false
832
cpp
principle diagonal.cpp
#include<bits/stdc++.h> using namespace std; int main() { int arr[4][4]= { {2,1,4,3}, {1,6,3,5}, {9,7,6,6}, {4,8,3,9}}; for(int i=0;i<4;i++) { for(int j=0;j<4;j++) { cout<<arr[i][j]<<" "; } cout<<endl; } cout<<endl; for(int i=0;i<4;i++) { for(int j=0;j<4;j++) { if(i==j) { cout<<arr[i][j]<<" "; } } } cout<<endl; for(int i=0;i<4;i++) { for(int j=0;j<4;j++) { if(i+j==3) { cout<<arr[i][j]<<" "; } } } cout<<endl; for (int i = 0; i < 4; i++) { cout<<arr[i][i]<<" "; } //Secondary Diagonal a[i++][jó] i=n-1,j=0 return 0; }
c91e51d5314ee6bc67b6fa8c6fccdcecf361d1b7
3411e29f72a38d61223662245753877b6c7850e5
/src/breslin/letter/letter.cpp
38ec53fdf96de6c17df6916139982f8a18266597
[]
no_license
sanan1986/baseapplication
4550bfa62ad85af316f4db9ce5cd73892cd694ae
f9be781782d92b139d3504cb52010ad6609f338b
refs/heads/master
2020-12-29T23:24:49.036361
2013-11-02T22:07:18
2013-11-02T22:07:18
238,774,855
1
0
null
2020-02-06T20:09:57
2020-02-06T20:09:56
null
UTF-8
C++
false
false
327
cpp
letter.cpp
#include "letter.h" #include "../baseentity/baseEntity.h" #include "../message/message.h" //log #include "../serverside/tdreamsock/dreamSockLog.h" //message #include "../message/message.h" Letter::Letter(BaseEntity* receiver, Message* message) { mReceiver = receiver; mMessage = message; } Letter::~Letter() { }
244c8e7f43657c5d326f24c131ebd53cd32527df
166facd141cfb42292db448578fbd0bdf9b795ac
/ImasiEngine/Source/Graphics/Programs/Shader.cpp
1f0609ec8db33aef275a0038efa866abf5f6e129
[]
no_license
imasiprojects/ImasiEngine
7dbcd75d2b4215e603a1bf8bcac1dd586d2ae921
03fe836099aec3d567fb16aefa923c245ddab9f8
refs/heads/master
2021-09-10T01:59:12.237695
2021-09-02T23:04:40
2021-09-02T23:04:40
161,831,834
1
1
null
2021-09-02T23:04:41
2018-12-14T19:33:20
C++
UTF-8
C++
false
false
2,228
cpp
Shader.cpp
#include "Shader.hpp" #include <map> #include <GL/glew.h> #include "../Opengl/OpenglHelper.hpp" #include "../../Utils/Logger.hpp" namespace ImasiEngine { Shader::Shader() : GLObject() { } Shader::Shader(Shader&& shader) noexcept : GLObject(std::move(shader)) { } Shader::~Shader() { if (Shader::isValidGLObject()) { Shader::destroyGLObject(); } } void Shader::createGLObject() { unsigned int id = GL(glCreateShader(getGLShaderType())); setGLObjectId(id); } void Shader::destroyGLObject() { GL(glDeleteShader(getGLObjectId())); unsetGLObjectId(); } bool Shader::compile(const char* sourceCode) { if (Shader::isValidGLObject()) { destroyGLObject(); } createGLObject(); unsigned int shaderId = getGLObjectId(); int compilationSuccess = GL_FALSE; GL(glShaderSource(shaderId, 1, &sourceCode, nullptr)); GL(glCompileShader(shaderId)); GL(glGetShaderiv(shaderId, GL_COMPILE_STATUS, &compilationSuccess)); if (!compilationSuccess) { #ifdef DEBUG { int errorLength; glGetShaderiv(shaderId, GL_INFO_LOG_LENGTH, &errorLength); std::string errorMessage(errorLength, '\0'); glGetShaderInfoLog(shaderId, errorLength, nullptr, &errorMessage[0]); Logger::out << "Shader id " << shaderId << " error: " << std::endl << errorMessage.c_str() << std::endl; } #endif destroyGLObject(); } #ifdef DEBUG { static std::map<GLEnums::ShaderType, std::string> shaderNames { { GLEnums::ShaderType::Vertex, "Vertex" }, { GLEnums::ShaderType::Fragment, "Fragment" } }; Logger::out << shaderNames[getGLShaderType()] << " shader: " << (compilationSuccess ? "OK" : "ERROR") << std::endl; } #endif return compilationSuccess == GL_TRUE; } }
f65cba3b238ca7c6f6806c782766ad00468a7e11
15419e6b114d5b89e78648dbae52a0aae276b673
/UVa/Comptitive Programming/Ch-05 Math/04 Number Theory/04 Finding Prime Factors/UVa 516 - Prime Land - AC.cpp
8d8a14a7b50087f3b4ecaec1056c14e2d288fd2a
[]
no_license
ImnIrdst/ICPC-Practice-2015-TiZii
7cde07617d8ebf90dc8a4baec4d9faec49f79d13
73bb0f84e7a003e154d685fa598002f8b9498878
refs/heads/master
2021-01-10T16:29:34.490848
2016-04-08T04:13:37
2016-04-08T04:13:37
55,749,815
1
0
null
null
null
null
UTF-8
C++
false
false
1,059
cpp
UVa 516 - Prime Land - AC.cpp
#include <iostream> #include <cstdio> #include <math.h> #include <string> #include <sstream> #include <vector> #include <algorithm> #include <functional> using namespace std; typedef long long int int64; typedef pair<int64,int64> pii; int main(){ string str; while(getline(cin,str) && str!="0"){ stringstream sstr(str); int64 b,p,num=1; while(sstr >> b >> p){ num*=pow(b,p); } vector<pii> fact; int64 tmp=--num; for(int64 f=2 ; f*f<=num; f++){ int64 powi=0; while(tmp%f==0){ tmp/=f; powi++; } if(powi>0){ fact.push_back(pii(f,powi)); } } if(tmp>1) fact.push_back(pii(tmp,1)); //cout << fact.size() << endl; sort(fact.begin(), fact.end(), ::greater<pii>()); for(int i=0 ; i<fact.size() ; i++){ if(i!=0) printf(" "); printf("%lld %lld",fact[i].first,fact[i].second); } if(num==1) printf("1 1"); printf("\n"); } }
6bc7edf17ad1b1c0fc0fc491e5886dc8509cde21
48eee7c1cdbfcb7e06851fb036ebfb5566849d63
/ov3/src/mastermind.cpp
8761ab88acc1a7d0d1478f0e5b4663f8a516f5cd
[]
no_license
johnolos/TDT4102
82d6e2d38126ffdb1f1504f1d01d9fdb2e4c5571
e21270df26086fe1be41144bda91fe99b165f5f7
refs/heads/master
2021-01-22T00:58:32.134301
2013-11-13T11:03:03
2013-11-13T11:03:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,201
cpp
mastermind.cpp
#include <iostream> #include <random> #include "mastermind.h" using namespace std; const int SIZE = 4; const int LETTERS = 6; char randomChar() { int randNumber = rand() % LETTERS + 65; return (char)randNumber; } void readInput(char table[]) { int i = 0; char guessedChar; cout << "Guess " << SIZE << " chars from A to " << (char)(65 + LETTERS-1) << ": " << endl; while (i < SIZE) { cout << (i+1) << ": "; cin >> guessedChar; guessedChar = toupper(guessedChar); cout << endl; if ((int)guessedChar >= ((int)'A') && (int)guessedChar <= ((int)'A'+LETTERS-1)) { table[i] = guessedChar; i++; } } } int checkCharacters(char table[], char guess[]) { int correct = 0; char copy[SIZE]; for(int i = 0; i < SIZE; i++){ copy[i] = table[i]; } for(int i = 0; i < SIZE; i++) { char c = guess[i]; for(int j = 0; j < SIZE; j++) { if(c == copy[j]) { correct++; copy[j] = 'x'; break; } } } return correct; } int checkCharactersAndPosition(char table[], char guess[]) { int correct = 0; for(int i = 0; i < SIZE; i++) { if(table[i] == guess[i]) correct++; } return correct; } void printCode(char tab[]) { cout << "[ "; for(int i = 0; i < SIZE; i++) { cout << tab[i] << " "; } cout << "]" << endl; } void playMastermind() { char play = 'Y'; while (play == 'Y') { // Establish tables for the game char code[SIZE]; char guess[SIZE]; // Fill code with random characters for(int i = 0; i < SIZE; i++) { code[i] = randomChar(); } //printCode(code); Cheat cout << "Welcome to Mastermind." << endl; int correctPositions = 0; int attempts = 0; while(correctPositions < SIZE) { readInput(guess); cout << "Your guess was "; printCode(guess); cout << endl; correctPositions = checkCharactersAndPosition(code, guess); cout << "You had " << checkCharacters(code, guess) << " correctly guessed letters." << endl; cout << "You had " << correctPositions << " of guessed letters in correct place." << endl; attempts++; } cout << "You used " << attempts << " attempts to guess the code." << endl; cout << "Do you want to play again? (Y/N): "; cin >> play; cout << endl; play = toupper(play); } }
f0d27a109bc6de2b28dfb424bbed6ad18abbe3ec
f3310695876806b13d5410a463779e50635bfdae
/arregloPacientes.cpp
25f62686d226f5112d9c742526a529e7f0c072cd
[]
no_license
andremg10/PruebaHospi
0e64ed752b9555ccd972dd6e20bdb6738a84a129
255c4791d6e81f54e08fbe65004758107e842f50
refs/heads/master
2020-08-01T11:52:40.813806
2019-09-26T03:07:19
2019-09-26T03:07:19
210,988,853
0
0
null
null
null
null
UTF-8
C++
false
false
1,337
cpp
arregloPacientes.cpp
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: arregloPacientes.cpp * Author: andre * * Created on 9 de septiembre de 2019, 07:39 PM */ #include <cstdlib> #include "arregloPacientes.h" arregloPacientes::arregloPacientes() :tamano(200),cantidad(0),vector(new paciente*[200]) { for(int i =0; i<tamano; i++){ vector[i] = NULL; } } paciente** arregloPacientes::obtenerVector() { return vector; } void arregloPacientes::agregarPaciente(paciente* p){ vector[cantidad++] = p; } void arregloPacientes::eliminarPaciente(int pos){ for (int i=pos; i<cantidad-1; i++){ vector[i]=vector[i+1]; } cantidad--; } paciente* arregloPacientes::buscarPaciente(int pos){ for(int i=0; i<cantidad; i++){ if(i == pos){ return vector[i]; } } } string arregloPacientes::toString() const{ stringstream s; for (int i=0; i<cantidad; i++){ s<<vector[i]->toString()<<endl; } return s.str(); } arregloPacientes::~arregloPacientes() { for (int i=0; i<tamano; i++){ delete vector[i]; } delete [] vector; }
a8cb5b538d78af965db206158b840d5f299ed2a4
93db044eb00abbd18b75eeb0617dd1e054f2b199
/Engine/Source/Runtime/Engine/Private/InstancedFoliage.cpp
52069da43603f8734310a5ca1253083cd7521328
[]
no_license
cadviz/AHRUnrealEngine
9c003bf9988d58ece42be4af030ec6ec092cd12e
e0c1a65098f4a86b4d0538535b5a85dd1544fd30
refs/heads/release
2021-01-01T15:59:31.497876
2015-04-13T22:03:55
2015-04-13T22:03:55
34,035,641
9
19
null
2015-04-16T05:12:05
2015-04-16T05:12:05
null
UTF-8
C++
false
false
47,855
cpp
InstancedFoliage.cpp
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. /*============================================================================= InstancedFoliage.cpp: Instanced foliage implementation. =============================================================================*/ #include "EnginePrivate.h" #include "StaticMeshResources.h" #include "MessageLog.h" #include "UObjectToken.h" #include "MapErrors.h" #include "Foliage/InstancedFoliageActor.h" #include "Foliage/FoliageType_InstancedStaticMesh.h" #include "Components/ModelComponent.h" #include "Components/HierarchicalInstancedStaticMeshComponent.h" #include "Serialization/CustomVersion.h" #define LOCTEXT_NAMESPACE "InstancedFoliage" #define DO_FOLIAGE_CHECK 0 // whether to validate foliage data during editing. #define FOLIAGE_CHECK_TRANSFORM 0 // whether to compare transforms between render and painting data. DEFINE_LOG_CATEGORY_STATIC(LogInstancedFoliage, Log, All); IMPLEMENT_HIT_PROXY(HInstancedStaticMeshInstance, HHitProxy); // Custom serialization version for all packages containing Instance Foliage struct FFoliageCustomVersion { enum Type { // Before any version changes were made in the plugin BeforeCustomVersionWasAdded = 0, // Converted to use HierarchicalInstancedStaticMeshComponent FoliageUsingHierarchicalISMC = 1, // Changed Component to not RF_Transactional HierarchicalISMCNonTransactional = 2, // Added FoliageTypeUpdateGuid AddedFoliageTypeUpdateGuid = 3, // -----<new versions can be added above this line>------------------------------------------------- VersionPlusOne, LatestVersion = VersionPlusOne - 1 }; // The GUID for this custom version number const static FGuid GUID; private: FFoliageCustomVersion() {} }; const FGuid FFoliageCustomVersion::GUID(0x430C4D19, 0x71544970, 0x87699B69, 0xDF90B0E5); // Register the custom version with core FCustomVersionRegistration GRegisterFoliageCustomVersion(FFoliageCustomVersion::GUID, FFoliageCustomVersion::LatestVersion, TEXT("FoliageVer")); // // Serializers for struct data // FArchive& operator<<(FArchive& Ar, FFoliageInstance& Instance) { Ar << Instance.Base; Ar << Instance.Location; Ar << Instance.Rotation; Ar << Instance.DrawScale3D; if (Ar.CustomVer(FFoliageCustomVersion::GUID) < FFoliageCustomVersion::FoliageUsingHierarchicalISMC) { int32 OldClusterIndex; Ar << OldClusterIndex; Ar << Instance.PreAlignRotation; Ar << Instance.Flags; if (OldClusterIndex == INDEX_NONE) { // When converting, we need to skip over any instance that was previously deleted but still in the Instances array. Instance.Flags |= FOLIAGE_InstanceDeleted; } } else { Ar << Instance.PreAlignRotation; Ar << Instance.Flags; } Ar << Instance.ZOffset; return Ar; } /** * FFoliageInstanceCluster_Deprecated */ struct FFoliageInstanceCluster_Deprecated { UInstancedStaticMeshComponent* ClusterComponent; FBoxSphereBounds Bounds; #if WITH_EDITORONLY_DATA TArray<int32> InstanceIndices; // index into editor editor Instances array #endif friend FArchive& operator<<(FArchive& Ar, FFoliageInstanceCluster_Deprecated& OldCluster) { check(Ar.CustomVer(FFoliageCustomVersion::GUID) < FFoliageCustomVersion::FoliageUsingHierarchicalISMC); Ar << OldCluster.Bounds; Ar << OldCluster.ClusterComponent; #if WITH_EDITORONLY_DATA if (!Ar.ArIsFilterEditorOnly || Ar.UE4Ver() < VER_UE4_FOLIAGE_SETTINGS_TYPE) { Ar << OldCluster.InstanceIndices; } #endif return Ar; } }; FArchive& operator<<(FArchive& Ar, FFoliageMeshInfo& MeshInfo) { if (Ar.CustomVer(FFoliageCustomVersion::GUID) >= FFoliageCustomVersion::FoliageUsingHierarchicalISMC) { Ar << MeshInfo.Component; } else { TArray<FFoliageInstanceCluster_Deprecated> OldInstanceClusters; Ar << OldInstanceClusters; } #if WITH_EDITORONLY_DATA if ((!Ar.ArIsFilterEditorOnly || Ar.UE4Ver() < VER_UE4_FOLIAGE_SETTINGS_TYPE) && (!(Ar.GetPortFlags() & PPF_DuplicateForPIE))) { Ar << MeshInfo.Instances; } if (!Ar.ArIsFilterEditorOnly && Ar.CustomVer(FFoliageCustomVersion::GUID) >= FFoliageCustomVersion::AddedFoliageTypeUpdateGuid) { Ar << MeshInfo.FoliageTypeUpdateGuid; } // Serialize the transient data for undo. if (Ar.IsTransacting()) { Ar << *MeshInfo.InstanceHash; Ar << MeshInfo.ComponentHash; Ar << MeshInfo.SelectedIndices; } #endif return Ar; } FArchive& operator<<(FArchive& Ar, FFoliageComponentHashInfo& ComponentHashInfo) { return Ar << ComponentHashInfo.CachedLocation << ComponentHashInfo.CachedRotation << ComponentHashInfo.CachedDrawScale << ComponentHashInfo.Instances; } // // UFoliageType // UFoliageType::UFoliageType(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) { Density = 100.0f; Radius = 0.0f; AlignToNormal = true; RandomYaw = true; UniformScale = true; ScaleMinX = 1.0f; ScaleMinY = 1.0f; ScaleMinZ = 1.0f; ScaleMaxX = 1.0f; ScaleMaxY = 1.0f; ScaleMaxZ = 1.0f; AlignMaxAngle = 0.0f; RandomPitchAngle = 0.0f; GroundSlope = 45.0f; HeightMin = -262144.0f; HeightMax = 262144.0f; ZOffsetMin = 0.0f; ZOffsetMax = 0.0f; LandscapeLayer = NAME_None; DisplayOrder = 0; IsSelected = false; ShowNothing = false; ShowPaintSettings = true; ShowInstanceSettings = false; ReapplyDensityAmount = 1.0f; CollisionWithWorld = false; CollisionScale = FVector(0.9f, 0.9f, 0.9f); VertexColorMask = FOLIAGEVERTEXCOLORMASK_Disabled; VertexColorMaskThreshold = 0.5f; bEnableStaticLighting = true; CastShadow = true; bCastDynamicShadow = true; bCastStaticShadow = true; bAffectDynamicIndirectLighting = false; bVoxelizeEveryFrame = true; // @RyanTorant bAffectDistanceFieldLighting = true; bCastShadowAsTwoSided = false; bReceivesDecals = false; bOverrideLightMapRes = false; OverriddenLightMapRes = 8; BodyInstance.SetCollisionProfileName(UCollisionProfile::NoCollision_ProfileName); UpdateGuid = FGuid::NewGuid(); } UFoliageType_InstancedStaticMesh::UFoliageType_InstancedStaticMesh(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) { Mesh = nullptr; } #if WITH_EDITOR void UFoliageType::PostEditChangeProperty(struct FPropertyChangedEvent& PropertyChangedEvent) { Super::PostEditChangeProperty(PropertyChangedEvent); // Ensure that OverriddenLightMapRes is a factor of 4 OverriddenLightMapRes = OverriddenLightMapRes > 4 ? OverriddenLightMapRes + 3 & ~3 : 4; UpdateGuid = FGuid::NewGuid(); // Notify any currently-loaded InstancedFoliageActors if (IsFoliageReallocationRequiredForPropertyChange(PropertyChangedEvent)) { for (TObjectIterator<AInstancedFoliageActor> It(RF_ClassDefaultObject | RF_PendingKill); It; ++It) { It->NotifyFoliageTypeChanged(this); } } } #endif // // FFoliageMeshInfo // FFoliageMeshInfo::FFoliageMeshInfo() : Component(nullptr) #if WITH_EDITOR , InstanceHash(GIsEditor ? new FFoliageInstanceHash() : nullptr) #endif { } #if WITH_EDITOR void FFoliageMeshInfo::CheckValid() { #if DO_FOLIAGE_CHECK int32 ClusterTotal = 0; int32 ComponentTotal = 0; for (FFoliageInstanceCluster& Cluster : InstanceClusters) { check(Cluster.ClusterComponent != nullptr); ClusterTotal += Cluster.InstanceIndices.Num(); ComponentTotal += Cluster.ClusterComponent->PerInstanceSMData.Num(); } check(ClusterTotal == ComponentTotal); int32 FreeTotal = 0; int32 InstanceTotal = 0; for (int32 InstanceIdx = 0; InstanceIdx < Instances.Num(); InstanceIdx++) { if (Instances[InstanceIdx].ClusterIndex != -1) { InstanceTotal++; } else { FreeTotal++; } } check( ClusterTotal == InstanceTotal ); check( FreeInstanceIndices.Num() == FreeTotal ); InstanceHash->CheckInstanceCount(InstanceTotal); int32 ComponentHashTotal = 0; for( TMap<UActorComponent*, FFoliageComponentHashInfo >::TConstIterator It(ComponentHash); It; ++It ) { ComponentHashTotal += It.Value().Instances.Num(); } check( ComponentHashTotal == InstanceTotal); #if FOLIAGE_CHECK_TRANSFORM // Check transforms match up with editor data int32 MismatchCount = 0; for( int32 ClusterIdx=0;ClusterIdx<InstanceClusters.Num();ClusterIdx++ ) { TArray<int32> Indices = InstanceClusters(ClusterIdx).InstanceIndices; UInstancedStaticMeshComponent* Comp = InstanceClusters(ClusterIdx).ClusterComponent; for( int32 InstIdx=0;InstIdx<Indices.Num();InstIdx++ ) { int32 InstanceIdx = Indices(InstIdx); FTransform InstanceToWorldEd = Instances(InstanceIdx).GetInstanceTransform(); FTransform InstanceToWorldCluster = Comp->PerInstanceSMData(InstIdx).Transform * Comp->GetComponentToWorld(); if( !InstanceToWorldEd.Equals(InstanceToWorldCluster) ) { Comp->PerInstanceSMData(InstIdx).Transform = InstanceToWorldEd.ToMatrixWithScale(); MismatchCount++; } } } if( MismatchCount != 0 ) { UE_LOG(LogInstancedFoliage, Log, TEXT("%s: transform mismatch: %d"), *InstanceClusters(0).ClusterComponent->StaticMesh->GetName(), MismatchCount); } #endif #endif } void FFoliageMeshInfo::AddInstance(AInstancedFoliageActor* InIFA, UFoliageType* InSettings, const FFoliageInstance& InNewInstance) { InIFA->Modify(); if (Component == nullptr) { Component = ConstructObject<UHierarchicalInstancedStaticMeshComponent>(UHierarchicalInstancedStaticMeshComponent::StaticClass(), InIFA, NAME_None, RF_Transactional); Component->Mobility = InSettings->bEnableStaticLighting ? EComponentMobility::Static : EComponentMobility::Movable; Component->StaticMesh = InSettings->GetStaticMesh(); Component->bSelectable = true; Component->bHasPerInstanceHitProxies = true; Component->InstancingRandomSeed = FMath::Rand(); Component->InstanceStartCullDistance = InSettings->StartCullDistance; Component->InstanceEndCullDistance = InSettings->EndCullDistance; Component->CastShadow = InSettings->CastShadow; Component->bCastDynamicShadow = InSettings->bCastDynamicShadow; Component->bCastStaticShadow = InSettings->bCastStaticShadow; Component->bVoxelizeEveryFrame = InSettings->bVoxelizeEveryFrame; // @RyanTorant Component->bAffectDynamicIndirectLighting = InSettings->bAffectDynamicIndirectLighting; Component->bAffectDistanceFieldLighting = InSettings->bAffectDistanceFieldLighting; Component->bCastShadowAsTwoSided = InSettings->bCastShadowAsTwoSided; Component->bReceivesDecals = InSettings->bReceivesDecals; Component->bOverrideLightMapRes = InSettings->bOverrideLightMapRes; Component->OverriddenLightMapRes = InSettings->OverriddenLightMapRes; Component->BodyInstance.CopyBodyInstancePropertiesFrom(&InSettings->BodyInstance); Component->AttachTo(InIFA->GetRootComponent()); Component->RegisterComponent(); // Use only instance translation as a component transform Component->SetWorldTransform(InIFA->GetRootComponent()->ComponentToWorld); // Add the new component to the transaction buffer so it will get destroyed on undo Component->Modify(); // We don't want to track changes to instances later so we mark it as non-transactional Component->ClearFlags(RF_Transactional); } else { Component->InvalidateLightingCache(); } // Add the instance taking either a free slot or adding a new item. int32 InstanceIndex = Instances.AddUninitialized(); FFoliageInstance& AddedInstance = Instances[InstanceIndex]; AddedInstance = InNewInstance; // Add the instance to the hash InstanceHash->InsertInstance(InNewInstance.Location, InstanceIndex); FFoliageComponentHashInfo* ComponentHashInfo = ComponentHash.Find(InNewInstance.Base); if (ComponentHashInfo == nullptr) { ComponentHashInfo = &ComponentHash.Add(InNewInstance.Base, FFoliageComponentHashInfo(InNewInstance.Base)); } ComponentHashInfo->Instances.Add(InstanceIndex); // Calculate transform for the instance FTransform InstanceToWorld = InNewInstance.GetInstanceWorldTransform(); // Add the instance to the component Component->AddInstanceWorldSpace(InstanceToWorld); // Update PrimitiveComponent's culling distance taking into account the radius of the bounds, as // it is based on the center of the component's bounds. // float CullDistance = InSettings->EndCullDistance > 0 ? (float)InSettings->EndCullDistance + BestCluster->Bounds.SphereRadius : 0.f; // Component->LDMaxDrawDistance = CullDistance; // Component->CachedMaxDrawDistance = CullDistance; CheckValid(); } void FFoliageMeshInfo::RemoveInstances(AInstancedFoliageActor* InIFA, const TArray<int32>& InInstancesToRemove) { if (InInstancesToRemove.Num()) { check(Component); InIFA->Modify(); TSet<int32> InstancesToRemove; for (int32 Instance : InInstancesToRemove) { InstancesToRemove.Add(Instance); } while(InstancesToRemove.Num()) { // Get an item from the set for processing auto It = InstancesToRemove.CreateConstIterator(); int32 InstanceIndex = *It; int32 InstanceIndexToRemove = InstanceIndex; FFoliageInstance& Instance = Instances[InstanceIndex]; // remove from hash InstanceHash->RemoveInstance(Instance.Location, InstanceIndex); FFoliageComponentHashInfo* ComponentHashInfo = ComponentHash.Find(Instance.Base); if (ComponentHashInfo) { ComponentHashInfo->Instances.Remove(InstanceIndex); if (ComponentHashInfo->Instances.Num() == 0) { // Remove the component from the component hash if this is the last instance. ComponentHash.Remove(Instance.Base); } } // remove from the component Component->RemoveInstance(InstanceIndex); // Remove it from the selection. SelectedIndices.Remove(InstanceIndex); // remove from instances array Instances.RemoveAtSwap(InstanceIndex); // update hashes for swapped instance if (InstanceIndex != Instances.Num() && Instances.Num()) { // Instance hash FFoliageInstance& SwappedInstance = Instances[InstanceIndex]; InstanceHash->RemoveInstance(SwappedInstance.Location, Instances.Num()); InstanceHash->InsertInstance(SwappedInstance.Location, InstanceIndex); // Component hash if (SwappedInstance.Base) { FFoliageComponentHashInfo* ComponentHashInfo = ComponentHash.Find(SwappedInstance.Base); check(ComponentHashInfo); ComponentHashInfo->Instances.Remove(Instances.Num()); ComponentHashInfo->Instances.Add(InstanceIndex); } // Selection if (SelectedIndices.Contains(Instances.Num())) { SelectedIndices.Remove(Instances.Num()); SelectedIndices.Add(InstanceIndex); } // Removal list if (InstancesToRemove.Contains(Instances.Num())) { // The item from the end of the array that we swapped in to InstanceIndex is also on the list to remove. // Remove the item at the end of the array and leave InstanceIndex in the removal list. InstanceIndexToRemove = Instances.Num(); } } // Remove the removed item from the removal list InstancesToRemove.Remove(InstanceIndexToRemove); } InIFA->CheckSelection(); CheckValid(); } } void FFoliageMeshInfo::PreMoveInstances(AInstancedFoliageActor* InIFA, const TArray<int32>& InInstancesToMove) { // Remove instances from the hash for (TArray<int32>::TConstIterator It(InInstancesToMove); It; ++It) { int32 InstanceIndex = *It; const FFoliageInstance& Instance = Instances[InstanceIndex]; InstanceHash->RemoveInstance(Instance.Location, InstanceIndex); } } void FFoliageMeshInfo::PostUpdateInstances(AInstancedFoliageActor* InIFA, const TArray<int32>& InInstancesUpdated, bool bReAddToHash) { if (InInstancesUpdated.Num()) { check(Component); for (TArray<int32>::TConstIterator It(InInstancesUpdated); It; ++It) { int32 InstanceIndex = *It; const FFoliageInstance& Instance = Instances[InstanceIndex]; FTransform InstanceToWorld = Instance.GetInstanceWorldTransform(); Component->UpdateInstanceTransform(InstanceIndex, InstanceToWorld, true); // Re-add instance to the hash if requested if (bReAddToHash) { InstanceHash->InsertInstance(Instance.Location, InstanceIndex); } } Component->InvalidateLightingCache(); Component->MarkRenderStateDirty(); } } void FFoliageMeshInfo::PostMoveInstances(AInstancedFoliageActor* InIFA, const TArray<int32>& InInstancesMoved) { PostUpdateInstances(InIFA, InInstancesMoved, true); } void FFoliageMeshInfo::DuplicateInstances(AInstancedFoliageActor* InIFA, UFoliageType* InSettings, const TArray<int32>& InInstancesToDuplicate) { for (int32 InstanceIndex : InInstancesToDuplicate) { const FFoliageInstance TempInstance = Instances[InstanceIndex]; AddInstance(InIFA, InSettings, TempInstance); } } /* Get the number of placed instances */ int32 FFoliageMeshInfo::GetInstanceCount() const { return Instances.Num(); } // Destroy existing clusters and reassign all instances to new clusters void FFoliageMeshInfo::ReallocateClusters(AInstancedFoliageActor* InIFA, UFoliageType* InSettings) { // Detach all components InIFA->UnregisterAllComponents(); if (Component != nullptr) { Component->bAutoRegister = false; Component = nullptr; } // Remove everything TArray<FFoliageInstance> OldInstances; Exchange(Instances, OldInstances); InstanceHash->Empty(); ComponentHash.Empty(); SelectedIndices.Empty(); // Copy the UpdateGuid from the foliage type FoliageTypeUpdateGuid = InSettings->UpdateGuid; // Re-add for (FFoliageInstance& Instance : OldInstances) { if ((Instance.Flags & FOLIAGE_InstanceDeleted) == 0) { AddInstance(InIFA, InSettings, Instance); } } InIFA->RegisterAllComponents(); } void FFoliageMeshInfo::ReapplyInstancesToComponent() { if (Component) { Component->UnregisterComponent(); Component->ClearInstances(); for (auto& Instance : Instances) { Component->AddInstanceWorldSpace(Instance.GetInstanceWorldTransform()); } if (SelectedIndices.Num()) { if (Component->SelectedInstances.Num() != Component->PerInstanceSMData.Num()) { Component->SelectedInstances.Init(false, Component->PerInstanceSMData.Num()); } for (int32 i : SelectedIndices) { Component->SelectedInstances[i] = true; } } Component->RegisterComponent(); } } // Update settings in the clusters based on the current settings (eg culling distance, collision, ...) //void FFoliageMeshInfo::UpdateClusterSettings(AInstancedFoliageActor* InIFA) //{ // for (FFoliageInstanceCluster& Cluster : InstanceClusters) // { // UInstancedStaticMeshComponent* ClusterComponent = Cluster.ClusterComponent; // ClusterComponent->MarkRenderStateDirty(); // // // Copy settings // ClusterComponent->InstanceStartCullDistance = Settings->StartCullDistance; // ClusterComponent->InstanceEndCullDistance = Settings->EndCullDistance; // // // Update PrimitiveComponent's culling distance taking into account the radius of the bounds, as // // it is based on the center of the component's bounds. // float CullDistance = Settings->EndCullDistance > 0 ? (float)Settings->EndCullDistance + Cluster.Bounds.SphereRadius : 0.f; // ClusterComponent->LDMaxDrawDistance = CullDistance; // ClusterComponent->CachedMaxDrawDistance = CullDistance; // } // // InIFA->MarkComponentsRenderStateDirty(); //} void FFoliageMeshInfo::GetInstancesInsideSphere(const FSphere& Sphere, TArray<int32>& OutInstances) { auto TempInstances = InstanceHash->GetInstancesOverlappingBox(FBox::BuildAABB(Sphere.Center, FVector(Sphere.W))); for (int32 Idx : TempInstances) { if (FSphere(Instances[Idx].Location, 0.f).IsInside(Sphere)) { OutInstances.Add(Idx); } } } // Returns whether or not there is are any instances overlapping the sphere specified bool FFoliageMeshInfo::CheckForOverlappingSphere(const FSphere& Sphere) { auto TempInstances = InstanceHash->GetInstancesOverlappingBox(FBox::BuildAABB(Sphere.Center, FVector(Sphere.W))); for (int32 Idx : TempInstances) { if (FSphere(Instances[Idx].Location, 0.f).IsInside(Sphere)) { return true; } } return false; } // Returns whether or not there is are any instances overlapping the instance specified, excluding the set of instances provided bool FFoliageMeshInfo::CheckForOverlappingInstanceExcluding(int32 TestInstanceIdx, float Radius, TSet<int32>& ExcludeInstances) { FSphere Sphere(Instances[TestInstanceIdx].Location, Radius); auto TempInstances = InstanceHash->GetInstancesOverlappingBox(FBox::BuildAABB(Sphere.Center, FVector(Sphere.W))); for (int32 Idx : TempInstances) { if (Idx != TestInstanceIdx && !ExcludeInstances.Contains(Idx) && FSphere(Instances[Idx].Location, 0.f).IsInside(Sphere)) { return true; } } return false; } void FFoliageMeshInfo::SelectInstances(AInstancedFoliageActor* InIFA, bool bSelect, TArray<int32>& InInstances) { if (InInstances.Num()) { check(Component); InIFA->Modify(); if (bSelect) { // Apply selections to the component Component->MarkRenderStateDirty(); if (Component->SelectedInstances.Num() != Component->PerInstanceSMData.Num()) { Component->SelectedInstances.Init(false, Component->PerInstanceSMData.Num()); } for (int32 i : InInstances) { SelectedIndices.Add(i); Component->SelectedInstances[i] = true; } } else { if (Component->SelectedInstances.Num()) { Component->MarkRenderStateDirty(); for (int32 i : InInstances) { SelectedIndices.Remove(i); Component->SelectedInstances[i] = false; } } } } } #endif //WITH_EDITOR // // AInstancedFoliageActor // AInstancedFoliageActor::AInstancedFoliageActor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) { USceneComponent* SceneComponent = ObjectInitializer.CreateDefaultSubobject<USceneComponent>(this, TEXT("RootComponent0")); RootComponent = SceneComponent; RootComponent->Mobility = EComponentMobility::Static; SetActorEnableCollision(true); #if WITH_EDITORONLY_DATA bListedInSceneOutliner = false; #endif // WITH_EDITORONLY_DATA PrimaryActorTick.bCanEverTick = false; } #if WITH_EDITOR AInstancedFoliageActor* AInstancedFoliageActor::GetInstancedFoliageActorForCurrentLevel(UWorld* InWorld, bool bCreateIfNone) { for (TActorIterator<AInstancedFoliageActor> It(InWorld); It; ++It) { AInstancedFoliageActor* InstancedFoliageActor = *It; if (InstancedFoliageActor) { if (InstancedFoliageActor->GetLevel()->IsCurrentLevel() && !InstancedFoliageActor->IsPendingKill()) { return InstancedFoliageActor; } } } return bCreateIfNone ? InWorld->SpawnActor<AInstancedFoliageActor>() : nullptr; } AInstancedFoliageActor* AInstancedFoliageActor::GetInstancedFoliageActorForLevel(ULevel* InLevel) { if (!InLevel) { return nullptr; } for (int32 ActorIndex = 0; ActorIndex < InLevel->Actors.Num(); ++ActorIndex) { AInstancedFoliageActor* InstancedFoliageActor = Cast<AInstancedFoliageActor>(InLevel->Actors[ActorIndex]); if (InstancedFoliageActor && !InstancedFoliageActor->IsPendingKill()) { return InstancedFoliageActor; } } return nullptr; } void AInstancedFoliageActor::MoveInstancesForMovedComponent(UActorComponent* InComponent) { bool bUpdatedInstances = false; bool bFirst = true; for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; FFoliageComponentHashInfo* ComponentHashInfo = MeshInfo.ComponentHash.Find(InComponent); if (ComponentHashInfo) { if (bFirst) { bFirst = false; Modify(); } FVector OldLocation = ComponentHashInfo->CachedLocation; FRotator OldRotation = ComponentHashInfo->CachedRotation; FVector OldDrawScale = ComponentHashInfo->CachedDrawScale; ComponentHashInfo->UpdateLocationFromActor(InComponent); for (int32 InstanceIndex : ComponentHashInfo->Instances) { FFoliageInstance& Instance = MeshInfo.Instances[InstanceIndex]; MeshInfo.InstanceHash->RemoveInstance(Instance.Location, InstanceIndex); // Apply change FMatrix DeltaTransform = FRotationMatrix(Instance.Rotation) * FTranslationMatrix(Instance.Location) * FTranslationMatrix(-OldLocation) * FInverseRotationMatrix(OldRotation) * FScaleMatrix(ComponentHashInfo->CachedDrawScale / OldDrawScale) * FRotationMatrix(ComponentHashInfo->CachedRotation) * FTranslationMatrix(ComponentHashInfo->CachedLocation); // Extract rotation and position Instance.Location = DeltaTransform.GetOrigin(); Instance.Rotation = DeltaTransform.Rotator(); // Apply render data check(MeshInfo.Component); MeshInfo.Component->UpdateInstanceTransform(InstanceIndex, Instance.GetInstanceWorldTransform(), true); // Re-add the new instance location to the hash MeshInfo.InstanceHash->InsertInstance(Instance.Location, InstanceIndex); } } } } void AInstancedFoliageActor::DeleteInstancesForComponent(UActorComponent* InComponent) { for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; const FFoliageComponentHashInfo* ComponentHashInfo = MeshInfo.ComponentHash.Find(InComponent); if (ComponentHashInfo) { MeshInfo.RemoveInstances(this, ComponentHashInfo->Instances.Array()); } } } void AInstancedFoliageActor::MoveInstancesForComponentToCurrentLevel(UActorComponent* InComponent) { AInstancedFoliageActor* NewIFA = AInstancedFoliageActor::GetInstancedFoliageActorForCurrentLevel(InComponent->GetWorld()); for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; UFoliageType* FoliageType = MeshPair.Key; // Duplicate the foliage type if it's not shared if (FoliageType->GetOutermost() == GetOutermost()) { FoliageType = (UFoliageType*)StaticDuplicateObject(FoliageType, NewIFA, nullptr, RF_AllFlags & ~(RF_Standalone | RF_Public)); } const FFoliageComponentHashInfo* ComponentHashInfo = MeshInfo.ComponentHash.Find(InComponent); if (ComponentHashInfo) { FFoliageMeshInfo* NewMeshInfo = NewIFA->FindOrAddMesh(FoliageType); // Add the foliage to the new level for (int32 InstanceIndex : ComponentHashInfo->Instances) { NewMeshInfo->AddInstance(NewIFA, FoliageType, MeshInfo.Instances[InstanceIndex]); } // Remove from old level MeshInfo.RemoveInstances(this, ComponentHashInfo->Instances.Array()); } } } void AInstancedFoliageActor::MoveInstancesToNewComponent(UPrimitiveComponent* InOldComponent, UPrimitiveComponent* InNewComponent) { AInstancedFoliageActor* NewIFA = AInstancedFoliageActor::GetInstancedFoliageActorForLevel(InNewComponent->GetTypedOuter<ULevel>()); if (!NewIFA) { NewIFA = InNewComponent->GetWorld()->SpawnActor<AInstancedFoliageActor>(); } check(NewIFA); for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; UFoliageType* FoliageType = MeshPair.Key; // Duplicate the foliage type if it's not shared if (FoliageType->GetOutermost() == GetOutermost()) { FoliageType = (UFoliageType*)StaticDuplicateObject(FoliageType, NewIFA, nullptr, RF_AllFlags & ~(RF_Standalone | RF_Public)); } const FFoliageComponentHashInfo* ComponentHashInfo = MeshInfo.ComponentHash.Find(InOldComponent); if (ComponentHashInfo) { // For same level can just remap the instances, otherwise we have to do a more complex move if (NewIFA == this) { FFoliageComponentHashInfo NewComponentHashInfo = MoveTemp(*ComponentHashInfo); NewComponentHashInfo.UpdateLocationFromActor(InNewComponent); // Update the instances for (int32 InstanceIndex : NewComponentHashInfo.Instances) { MeshInfo.Instances[InstanceIndex].Base = InNewComponent; } // Update the hash MeshInfo.ComponentHash.Add(InNewComponent, MoveTemp(NewComponentHashInfo)); MeshInfo.ComponentHash.Remove(InOldComponent); } else { FFoliageMeshInfo* NewMeshInfo = NewIFA->FindOrAddMesh(FoliageType); // Add the foliage to the new level for (int32 InstanceIndex : ComponentHashInfo->Instances) { FFoliageInstance NewInstance = MeshInfo.Instances[InstanceIndex]; NewInstance.Base = InNewComponent; NewMeshInfo->AddInstance(NewIFA, FoliageType, NewInstance); } // Remove from old level MeshInfo.RemoveInstances(this, ComponentHashInfo->Instances.Array()); check(!MeshInfo.ComponentHash.Contains(InOldComponent)); } } } } TMap<UFoliageType*, TArray<const FFoliageInstancePlacementInfo*>> AInstancedFoliageActor::GetInstancesForComponent(UActorComponent* InComponent) { TMap<UFoliageType*, TArray<const FFoliageInstancePlacementInfo*>> Result; for (auto& MeshPair : FoliageMeshes) { const FFoliageMeshInfo& MeshInfo = *MeshPair.Value; const FFoliageComponentHashInfo* ComponentHashInfo = MeshInfo.ComponentHash.Find(InComponent); if (ComponentHashInfo) { TArray<const FFoliageInstancePlacementInfo*>& Array = Result.Add(MeshPair.Key, TArray<const FFoliageInstancePlacementInfo*>()); Array.Empty(ComponentHashInfo->Instances.Num()); for (int32 InstanceIndex : ComponentHashInfo->Instances) { const FFoliageInstancePlacementInfo* Instance = &MeshInfo.Instances[InstanceIndex]; Array.Add(Instance); } } } return Result; } FFoliageMeshInfo* AInstancedFoliageActor::FindMesh(UFoliageType* InType) { TUniqueObj<FFoliageMeshInfo>* MeshInfoEntry = FoliageMeshes.Find(InType); FFoliageMeshInfo* MeshInfo = MeshInfoEntry ? &MeshInfoEntry->Get() : nullptr; return MeshInfo; } FFoliageMeshInfo* AInstancedFoliageActor::FindOrAddMesh(UFoliageType* InType) { TUniqueObj<FFoliageMeshInfo>* MeshInfoEntry = FoliageMeshes.Find(InType); FFoliageMeshInfo* MeshInfo = MeshInfoEntry ? &MeshInfoEntry->Get() : AddMesh(InType); return MeshInfo; } FFoliageMeshInfo* AInstancedFoliageActor::AddMesh(UStaticMesh* InMesh, UFoliageType** OutSettings, const UFoliageType_InstancedStaticMesh* DefaultSettings) { check(GetSettingsForMesh(InMesh) == nullptr); MarkPackageDirty(); UFoliageType_InstancedStaticMesh* Settings = nullptr; #if WITH_EDITORONLY_DATA if (DefaultSettings) { // TODO: Can't we just use this directly? Settings = DuplicateObject<UFoliageType_InstancedStaticMesh>(DefaultSettings, this); } else #endif { Settings = ConstructObject<UFoliageType_InstancedStaticMesh>(UFoliageType_InstancedStaticMesh::StaticClass(), this); } Settings->Mesh = InMesh; FFoliageMeshInfo* MeshInfo = AddMesh(Settings); const FBoxSphereBounds MeshBounds = InMesh->GetBounds(); Settings->MeshBounds = MeshBounds; // Make bottom only bound FBox LowBound = MeshBounds.GetBox(); LowBound.Max.Z = LowBound.Min.Z + (LowBound.Max.Z - LowBound.Min.Z) * 0.1f; float MinX = FLT_MAX, MaxX = FLT_MIN, MinY = FLT_MAX, MaxY = FLT_MIN; Settings->LowBoundOriginRadius = FVector::ZeroVector; if (InMesh->RenderData) { FPositionVertexBuffer& PositionVertexBuffer = InMesh->RenderData->LODResources[0].PositionVertexBuffer; for (uint32 Index = 0; Index < PositionVertexBuffer.GetNumVertices(); ++Index) { const FVector& Pos = PositionVertexBuffer.VertexPosition(Index); if (Pos.Z < LowBound.Max.Z) { MinX = FMath::Min(MinX, Pos.X); MinY = FMath::Min(MinY, Pos.Y); MaxX = FMath::Max(MaxX, Pos.X); MaxY = FMath::Max(MaxY, Pos.Y); } } } Settings->LowBoundOriginRadius = FVector((MinX + MaxX), (MinY + MaxY), FMath::Sqrt(FMath::Square(MaxX - MinX) + FMath::Square(MaxY - MinY))) * 0.5f; if (OutSettings) { *OutSettings = Settings; } return MeshInfo; } FFoliageMeshInfo* AInstancedFoliageActor::AddMesh(UFoliageType* InType) { check(FoliageMeshes.Find(InType) == nullptr); MarkPackageDirty(); if (InType->DisplayOrder == 0) { int32 MaxDisplayOrder = 0; for (auto& MeshPair : FoliageMeshes) { if (MeshPair.Key->DisplayOrder > MaxDisplayOrder) { MaxDisplayOrder = MeshPair.Key->DisplayOrder; } } InType->DisplayOrder = MaxDisplayOrder + 1; } FFoliageMeshInfo* MeshInfo = &*FoliageMeshes.Add(InType); MeshInfo->FoliageTypeUpdateGuid = InType->UpdateGuid; InType->IsSelected = true; return MeshInfo; } void AInstancedFoliageActor::RemoveMesh(UFoliageType* InSettings) { Modify(); MarkPackageDirty(); UnregisterAllComponents(); // Remove all components for this mesh from the Components array. FFoliageMeshInfo* MeshInfo = FindMesh(InSettings); if (MeshInfo && MeshInfo->Component) { MeshInfo->Component->bAutoRegister = false; } FoliageMeshes.Remove(InSettings); RegisterAllComponents(); CheckSelection(); } UFoliageType* AInstancedFoliageActor::GetSettingsForMesh(UStaticMesh* InMesh, FFoliageMeshInfo** OutMeshInfo) { UFoliageType* Type = nullptr; FFoliageMeshInfo* MeshInfo = nullptr; for (auto& MeshPair : FoliageMeshes) { UFoliageType* Settings = MeshPair.Key; if (Settings && Settings->GetStaticMesh() == InMesh) { Type = MeshPair.Key; MeshInfo = &*MeshPair.Value; break; } } if (OutMeshInfo) { *OutMeshInfo = MeshInfo; } return Type; } void AInstancedFoliageActor::SelectInstance(UInstancedStaticMeshComponent* InComponent, int32 InInstanceIndex, bool bToggle) { Modify(); // If we're not toggling, we need to first deselect everything else if (!bToggle) { for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; if (MeshInfo.SelectedIndices.Num() > 0) { check(MeshInfo.Component); if (MeshInfo.Component->SelectedInstances.Num() > 0) { MeshInfo.Component->SelectedInstances.Empty(); MeshInfo.Component->MarkRenderStateDirty(); } } MeshInfo.SelectedIndices.Empty(); } } if (InComponent) { UFoliageType* Type = nullptr; FFoliageMeshInfo* MeshInfo = nullptr; Type = GetSettingsForMesh(InComponent->StaticMesh, &MeshInfo); if (MeshInfo) { if (InComponent == MeshInfo->Component) { bool bIsSelected = MeshInfo->SelectedIndices.Contains(InInstanceIndex); // Deselect if it's already selected. if (InInstanceIndex < InComponent->SelectedInstances.Num()) { InComponent->SelectedInstances[InInstanceIndex] = false; InComponent->MarkRenderStateDirty(); } if (bIsSelected) { MeshInfo->SelectedIndices.Remove(InInstanceIndex); } if (bToggle && bIsSelected) { if (SelectedMesh == Type && MeshInfo->SelectedIndices.Num() == 0) { SelectedMesh = nullptr; } } else { // Add the selection if (InComponent->SelectedInstances.Num() < InComponent->PerInstanceSMData.Num()) { InComponent->SelectedInstances.Init(false, InComponent->PerInstanceSMData.Num()); } InComponent->SelectedInstances[InInstanceIndex] = true; InComponent->MarkRenderStateDirty(); SelectedMesh = Type; MeshInfo->SelectedIndices.Add(InInstanceIndex); } } } } CheckSelection(); } void AInstancedFoliageActor::PostEditUndo() { Super::PostEditUndo(); FlushRenderingCommands(); for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; MeshInfo.ReapplyInstancesToComponent(); } } void AInstancedFoliageActor::ApplySelectionToComponents(bool bApply) { bool bNeedsUpdate = false; for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; if (bApply) { if (MeshInfo.SelectedIndices.Num() > 0) { check(MeshInfo.Component); // Apply any selections in the component MeshInfo.Component->SelectedInstances.Init(false, MeshInfo.Component->PerInstanceSMData.Num()); MeshInfo.Component->MarkRenderStateDirty(); for (int32 i : MeshInfo.SelectedIndices) { MeshInfo.Component->SelectedInstances[i] = true; } } } else { if (MeshInfo.Component && MeshInfo.Component->SelectedInstances.Num() > 0) { // remove any selections in the component MeshInfo.Component->SelectedInstances.Empty(); MeshInfo.Component->MarkRenderStateDirty(); } } } } void AInstancedFoliageActor::CheckSelection() { // Check if we have to change the selection. if (SelectedMesh != nullptr) { FFoliageMeshInfo* MeshInfo = FindMesh(SelectedMesh); if (MeshInfo && MeshInfo->SelectedIndices.Num() > 0) { return; } } SelectedMesh = nullptr; // Try to find a new selection for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; if (MeshInfo.SelectedIndices.Num() > 0) { SelectedMesh = MeshPair.Key; return; } } } FVector AInstancedFoliageActor::GetSelectionLocation() { FVector Result(0, 0, 0); if (SelectedMesh != nullptr) { FFoliageMeshInfo* MeshInfo = FindMesh(SelectedMesh); if (MeshInfo && MeshInfo->SelectedIndices.Num() > 0) { Result = MeshInfo->Instances[MeshInfo->SelectedIndices.Array()[0]].Location; } } return Result; } void AInstancedFoliageActor::MapRebuild() { // Map rebuild may have modified the BSP's ModelComponents and thrown the previous ones away. // Most BSP-painted foliage is attached to a Brush's UModelComponent which persist across rebuilds, // but any foliage attached directly to the level BSP's ModelComponents will need to try to find a new base. TMap<UFoliageType*, TArray<FFoliageInstance>> NewInstances; TArray<UModelComponent*> RemovedModelComponents; UWorld* World = GetWorld(); check(World); // For each foliage brush, represented by the mesh/info pair for (auto& MeshPair : FoliageMeshes) { // each target component has some foliage instances FFoliageMeshInfo const& MeshInfo = *MeshPair.Value; UFoliageType* Settings = MeshPair.Key; check(Settings); for (auto& ComponentFoliagePair : MeshInfo.ComponentHash) { // BSP components are UModelComponents - they are the only ones we need to change UModelComponent* TargetComponent = Cast<UModelComponent>(ComponentFoliagePair.Key); // Check if it's part of a brush. We only need to fix up model components that are part of the level BSP. if (TargetComponent && Cast<ABrush>(TargetComponent->GetOuter()) == nullptr) { // Delete its instances later RemovedModelComponents.Add(TargetComponent); FFoliageComponentHashInfo const& FoliageInfo = ComponentFoliagePair.Value; // We have to test each instance to see if we can migrate it across for (int32 InstanceIdx : FoliageInfo.Instances) { // Use a line test against the world. This is not very reliable as we don't know the original trace direction. check(MeshInfo.Instances.IsValidIndex(InstanceIdx)); FFoliageInstance const& Instance = MeshInfo.Instances[InstanceIdx]; FFoliageInstance NewInstance = Instance; FTransform InstanceToWorld = Instance.GetInstanceWorldTransform(); FVector Down(-FVector::UpVector); FVector Start(InstanceToWorld.TransformPosition(FVector::UpVector)); FVector End(InstanceToWorld.TransformPosition(Down)); FHitResult Result; bool bHit = World->LineTraceSingle(Result, Start, End, FCollisionQueryParams(true), FCollisionObjectQueryParams(ECC_WorldStatic)); if (bHit && Result.Component.IsValid() && Result.Component->IsA(UModelComponent::StaticClass())) { NewInstance.Base = CastChecked<UPrimitiveComponent>(Result.Component.Get()); NewInstances.FindOrAdd(Settings).Add(NewInstance); } } } } } // Remove all existing & broken instances & component references. for (UModelComponent* Component : RemovedModelComponents) { DeleteInstancesForComponent(Component); } // And then finally add our new instances to the correct target components. for (auto& NewInstancePair : NewInstances) { UFoliageType* Settings = NewInstancePair.Key; check(Settings); FFoliageMeshInfo& MeshInfo = *FindOrAddMesh(Settings); for (FFoliageInstance& Instance : NewInstancePair.Value) { MeshInfo.AddInstance(this, Settings, Instance); } } } void AInstancedFoliageActor::ApplyLevelTransform(const FTransform& LevelTransform) { // Apply transform to foliage editor only data if (GIsEditor) { for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; MeshInfo.InstanceHash->Empty(); for (int32 InstanceIdx = 0; InstanceIdx < MeshInfo.Instances.Num(); InstanceIdx++) { FFoliageInstance& Instance = MeshInfo.Instances[InstanceIdx]; FTransform NewTransform = Instance.GetInstanceWorldTransform() * LevelTransform; Instance.Location = NewTransform.GetLocation(); Instance.Rotation = NewTransform.GetRotation().Rotator(); Instance.DrawScale3D = NewTransform.GetScale3D(); // Rehash instance location MeshInfo.InstanceHash->InsertInstance(Instance.Location, InstanceIdx); } for (auto It = MeshInfo.ComponentHash.CreateIterator(); It; ++It) { // We assume here that component we painted foliage on, was transformed as well FFoliageComponentHashInfo& Info = It.Value(); Info.UpdateLocationFromActor(It.Key()); } } } } #endif // WITH_EDITOR struct FFoliageMeshInfo_Old { TArray<FFoliageInstanceCluster_Deprecated> InstanceClusters; TArray<FFoliageInstance> Instances; UFoliageType_InstancedStaticMesh* Settings; // Type remapped via +ActiveClassRedirects }; FArchive& operator<<(FArchive& Ar, FFoliageMeshInfo_Old& MeshInfo) { Ar << MeshInfo.InstanceClusters; Ar << MeshInfo.Instances; Ar << MeshInfo.Settings; return Ar; } void AInstancedFoliageActor::Serialize(FArchive& Ar) { Super::Serialize(Ar); Ar.UsingCustomVersion(FFoliageCustomVersion::GUID); if (Ar.UE4Ver() < VER_UE4_FOLIAGE_SETTINGS_TYPE) { TMap<UStaticMesh*, FFoliageMeshInfo_Old> OldFoliageMeshes; Ar << OldFoliageMeshes; for (auto& OldMeshInfo : OldFoliageMeshes) { FFoliageMeshInfo NewMeshInfo; #if WITH_EDITORONLY_DATA NewMeshInfo.Instances = MoveTemp(OldMeshInfo.Value.Instances); #endif UFoliageType_InstancedStaticMesh* FoliageType = OldMeshInfo.Value.Settings; if (FoliageType == nullptr) { // If the Settings object was null, eg the user forgot to save their settings asset, create a new one. FoliageType = ConstructObject<UFoliageType_InstancedStaticMesh>(UFoliageType_InstancedStaticMesh::StaticClass(), this); } if (FoliageType->Mesh == nullptr) { FoliageType->Modify(); FoliageType->Mesh = OldMeshInfo.Key; } else if (FoliageType->Mesh != OldMeshInfo.Key) { // If mesh doesn't match (two meshes sharing the same settings object?) then we need to duplicate as that is no longer supported FoliageType = (UFoliageType_InstancedStaticMesh*)StaticDuplicateObject(FoliageType, this, nullptr, RF_AllFlags & ~(RF_Standalone | RF_Public)); FoliageType->Mesh = OldMeshInfo.Key; } #if WITH_EDITORONLY_DATA NewMeshInfo.FoliageTypeUpdateGuid = FoliageType->UpdateGuid; #endif FoliageMeshes.Add(FoliageType, TUniqueObj<FFoliageMeshInfo>(MoveTemp(NewMeshInfo))); } } else { Ar << FoliageMeshes; } // Clean up any old cluster components and convert to hierarchical instanced foliage. if (Ar.CustomVer(FFoliageCustomVersion::GUID) < FFoliageCustomVersion::FoliageUsingHierarchicalISMC) { TInlineComponentArray<UInstancedStaticMeshComponent*> ClusterComponents; GetComponents(ClusterComponents); for (UInstancedStaticMeshComponent* Component : ClusterComponents) { Component->bAutoRegister = false; } } } void AInstancedFoliageActor::PostLoad() { Super::PostLoad(); #if WITH_EDITORONLY_DATA if (GetLinkerUE4Version() < VER_UE4_DISALLOW_FOLIAGE_ON_BLUEPRINTS) { for (auto& MeshPair : FoliageMeshes) { for (FFoliageInstance& Instance : MeshPair.Value->Instances) { // Clear out the Base for any instances based on blueprint-created components, // as those components will be destroyed when the construction scripts are // re-run, leaving dangling references and causing crashes (woo!) if (Instance.Base && Instance.Base->IsCreatedByConstructionScript()) { Instance.Base = NULL; } } } } #endif #if WITH_EDITOR if (GIsEditor) { { bool bContainsNull = FoliageMeshes.Remove(nullptr) > 0; if (bContainsNull) { FMessageLog("MapCheck").Warning() ->AddToken(FUObjectToken::Create(this)) ->AddToken(FTextToken::Create(LOCTEXT("MapCheck_Message_FoliageMissingStaticMesh", "Foliage instances for a missing static mesh have been removed."))) ->AddToken(FMapErrorToken::Create(FMapErrors::FoliageMissingStaticMesh)); while (bContainsNull) { bContainsNull = FoliageMeshes.Remove(nullptr) > 0; } } } for (auto& MeshPair : FoliageMeshes) { // Find the per-mesh info matching the mesh. FFoliageMeshInfo& MeshInfo = *MeshPair.Value; UFoliageType* FoliageType = MeshPair.Key; // Update foliage components if the foliage settings object was changed while the level was not loaded. if (MeshInfo.FoliageTypeUpdateGuid != FoliageType->UpdateGuid) { if (MeshInfo.FoliageTypeUpdateGuid.IsValid()) { MeshInfo.ReallocateClusters(this, MeshPair.Key); } MeshInfo.FoliageTypeUpdateGuid = FoliageType->UpdateGuid; } // Update the hash. for (int32 InstanceIdx = 0; InstanceIdx < MeshInfo.Instances.Num(); InstanceIdx++) { FFoliageInstance& Instance = MeshInfo.Instances[InstanceIdx]; { // Add valid instances to the hash. MeshInfo.InstanceHash->InsertInstance(Instance.Location, InstanceIdx); FFoliageComponentHashInfo* ComponentHashInfo = MeshInfo.ComponentHash.Find(Instance.Base); if (ComponentHashInfo == nullptr) { ComponentHashInfo = &MeshInfo.ComponentHash.Add(Instance.Base, FFoliageComponentHashInfo(Instance.Base)); } ComponentHashInfo->Instances.Add(InstanceIdx); } } // Convert to Heirarchical foliage if (GetLinkerCustomVersion(FFoliageCustomVersion::GUID) < FFoliageCustomVersion::FoliageUsingHierarchicalISMC) { MeshInfo.ReallocateClusters(this, MeshPair.Key); } if (GetLinkerCustomVersion(FFoliageCustomVersion::GUID) < FFoliageCustomVersion::HierarchicalISMCNonTransactional) { if (MeshInfo.Component) { MeshInfo.Component->ClearFlags(RF_Transactional); } } } } #endif } #if WITH_EDITOR void AInstancedFoliageActor::NotifyFoliageTypeChanged(UFoliageType* FoliageType) { FFoliageMeshInfo* MeshInfo = FindMesh(FoliageType); if (MeshInfo) { MeshInfo->ReallocateClusters(this, FoliageType); } } #endif // // Serialize all our UObjects for RTGC // void AInstancedFoliageActor::AddReferencedObjects(UObject* InThis, FReferenceCollector& Collector) { AInstancedFoliageActor* This = CastChecked<AInstancedFoliageActor>(InThis); if (This->SelectedMesh) { Collector.AddReferencedObject(This->SelectedMesh, This); } for (auto& MeshPair : This->FoliageMeshes) { Collector.AddReferencedObject(MeshPair.Key, This); FFoliageMeshInfo& MeshInfo = *MeshPair.Value; #if WITH_EDITORONLY_DATA for (FFoliageInstance& Instance : MeshInfo.Instances) { if (Instance.Base != nullptr) { Collector.AddReferencedObject(Instance.Base, This); } } #endif if (MeshInfo.Component) { Collector.AddReferencedObject(MeshInfo.Component, This); } } Super::AddReferencedObjects(This, Collector); } /** InstancedStaticMeshInstance hit proxy */ void HInstancedStaticMeshInstance::AddReferencedObjects(FReferenceCollector& Collector) { Collector.AddReferencedObject(Component); } void AInstancedFoliageActor::ApplyWorldOffset(const FVector& InOffset, bool bWorldShift) { Super::ApplyWorldOffset(InOffset, bWorldShift); if (GIsEditor) { for (auto& MeshPair : FoliageMeshes) { FFoliageMeshInfo& MeshInfo = *MeshPair.Value; #if WITH_EDITORONLY_DATA MeshInfo.InstanceHash->Empty(); for (int32 InstanceIdx = 0; InstanceIdx < MeshInfo.Instances.Num(); InstanceIdx++) { FFoliageInstance& Instance = MeshInfo.Instances[InstanceIdx]; Instance.Location += InOffset; // Rehash instance location MeshInfo.InstanceHash->InsertInstance(Instance.Location, InstanceIdx); } for (auto It = MeshInfo.ComponentHash.CreateIterator(); It; ++It) { // We assume here that component we painted foliage on will be shifted by same value FFoliageComponentHashInfo& Info = It.Value(); Info.CachedLocation += InOffset; } #endif } } } #undef LOCTEXT_NAMESPACE
38b8d7944b8d5ed16c341f35e1d4563c58fd2de1
fc718d08bd934266fce33896d42d0a8641af37b8
/LL_Dialog.cpp
8a190019b734467479a5649d15366ecf76a99741
[]
no_license
ixchow/Preshack
de690b1c500e9389f54db524a82ac920e028e6fd
d8aa0f8ef8cca8d5b1aed759a92202de8355934e
refs/heads/master
2021-06-08T12:05:10.338455
2017-08-25T03:36:42
2017-08-25T03:36:42
4,300,347
15
0
null
null
null
null
UTF-8
C++
false
false
7,552
cpp
LL_Dialog.cpp
#include "LL_Dialog.hpp" #include "LL_LayeringModule.hpp" #include <Graphics/GLSLShader.hpp> #include <cassert> REQUIRE_GL_EXTENSION(GL_ARB_shader_objects); namespace { Module *create_module(const std::string &params_in) { return new LayersDialog(); } class Fred { public: Fred() { register_module("ll_dialog", create_module, ""); } } fred; } void draw_arrow(const PortData *, const Connection &, void *data) { LayersDialog *ld = (LayersDialog *)data; assert(ld); if (!ld->layering()) return; Vector2f arrow_c1 = ld->position + ld->scale * make_vector(-0.5f * ld->size().x, 0.5f * ld->size().y); Vector2f arrow_c2 = ld->position + ld->scale * make_vector(-0.5f * ld->size().x,-0.5f * ld->size().y); ld->layering()->draw_arrow(arrow_c1, arrow_c2); } LayersDialog::LayersDialog() { in_ports.push_back(&layering); layering.name = "layers"; layering.position = make_vector(0.0f, 0.0f); layering.draw_fn_data = this; layering.draw_fn = draw_arrow; layering() = NULL; mouse_pos = make_vector(10.0f, 0.0f); //move out of the way of the bins. } LayersDialog::~LayersDialog() { } Vector2f LayersDialog::size() { if (!layering() || layering()->bins.empty()) { return make_vector(0.3f, 1.0f); } else { return make_vector(1.0f, layering()->bins.size() * BinHeight / BinWidth); } } namespace { Graphics::ProgramObjectRef subpixel_shader = NULL; } void LayersDialog::draw(Box2f viewport, Box2f screen_viewport, float scale, unsigned int recurse) { if (!subpixel_shader.ref) { Graphics::ShaderObjectRef frag = Graphics::get_shader_object("ll_shaders/ll_subpixel.glsl", GL_FRAGMENT_SHADER_ARB); assert(frag.ref); subpixel_shader = Graphics::get_program_object(frag); assert(subpixel_shader.ref); glUseProgramObjectARB(subpixel_shader->handle); glUniform1iARB(glGetUniformLocationARB(subpixel_shader->handle, "image"), 0); glUseProgramObjectARB(0); } glMatrixMode(GL_PROJECTION); glPushMatrix(); glBoxToBox(viewport, screen_viewport); glMatrixMode(GL_MODELVIEW); glPushMatrix(); glBegin(GL_QUADS); glColor3f(0.4f, 0.2f, 0.2f); glVertex2f(-size().x*0.5f, -size().y*0.5f); glVertex2f( size().x*0.5f, -size().y*0.5f); glVertex2f( size().x*0.5f, size().y*0.5f); glVertex2f(-size().x*0.5f, size().y*0.5f); glEnd(); if (!layering()) { glMatrixMode(GL_PROJECTION); glPopMatrix(); glMatrixMode(GL_MODELVIEW); glPopMatrix(); return; } vector< DialogBin > const &bins = layering()->bins; const float dialog_tween = layering()->dialog_tween; const unsigned int width = layering()->width; const unsigned int height = layering()->height; vector< GLuint > const &textures = layering()->textures; for (unsigned int b = 0; b < bins.size(); ++b) { float alpha = bins[b].active?1.0f:0.3f; Box2f box = bins[b].get_box(dialog_tween); glBegin(GL_QUADS); glColor4f(0.5f, 0.5f, 0.6f, alpha * 0.8f); glVertex2f(box.min.x, box.min.y); glVertex2f(box.max.x, box.min.y); glColor4f(0.9f, 0.85f, 0.83f, alpha * 0.8f); glVertex2f(box.max.x, box.max.y); glVertex2f(box.min.x, box.max.y); glEnd(); Box2f tex = bins[b].get_tex_box(dialog_tween); Vector3f show = bins[b].get_show(dialog_tween, make_vector(width * 0.5f, height * 0.5f, width * 0.5f)); show += bins[b].zoom_out * (make_vector(0.5f * width, 0.5f * height, 0.5f * width) - show); if (bins[b].layer < textures.size()) { float px_size = 2.0f / Graphics::screen_y * viewport.size().x / screen_viewport.size().x * show.z / (tex.max.y - tex.min.y); glUseProgramObjectARB(subpixel_shader->handle); glUniform1fARB(glGetUniformLocationARB(subpixel_shader->handle, "px_size"), px_size); glBindTexture(GL_TEXTURE_RECTANGLE_ARB, textures[bins[b].layer]); } glColor4f(1.0f, 1.0f, 1.0f, alpha); glBegin(GL_QUADS); glTexCoord2f(show.x-show.z,show.y-show.z); glVertex2f(tex.min.x, tex.min.y); glTexCoord2f(show.x+show.z,show.y-show.z); glVertex2f(tex.max.x, tex.min.y); glTexCoord2f(show.x+show.z,show.y+show.z); glVertex2f(tex.max.x, tex.max.y); glTexCoord2f(show.x-show.z,show.y+show.z); glVertex2f(tex.min.x, tex.max.y); glEnd(); glBindTexture(GL_TEXTURE_RECTANGLE_ARB, 0); glUseProgramObjectARB(0); //arrows: float s = box.size().y * (1.0f / 3.0f); glEnable(GL_POLYGON_SMOOTH); glBegin(GL_TRIANGLES); glColor4f(1.0f, 1.0f, 1.0f, 0.5f * alpha * bins[b].arrows); glVertex2f(box.max.x - s * 1.5f, box.max.y - 0.25 * s); glVertex2f(box.max.x - s * 0.75f, box.max.y - 1.25 * s); glVertex2f(box.max.x - s * 2.25f, box.max.y - 1.25 * s); glVertex2f(box.max.x - s * 1.5f, box.min.y + 0.25 * s); glVertex2f(box.max.x - s * 0.75f, box.min.y + 1.25 * s); glVertex2f(box.max.x - s * 2.25f, box.min.y + 1.25 * s); glEnd(); glDisable(GL_POLYGON_SMOOTH); glBegin(GL_LINES); glColor4f(1.0f, 1.0f, 1.0f, 0.5f * alpha * bins[b].arrows); glVertex2f(tex.max.x + box.size().x * 0.05f, box.center().y); glVertex2f(box.max.x - box.size().x * 0.05f, box.center().y); glEnd(); } glMatrixMode(GL_PROJECTION); glPopMatrix(); glMatrixMode(GL_MODELVIEW); glPopMatrix(); } void LayersDialog::update(float elapsed_time) { if (layering() == NULL) return; vector< DialogBin > &bins = layering()->bins; float &dialog_tween = layering()->dialog_tween; dialog_tween += elapsed_time; if (dialog_tween > 1.0f) dialog_tween = 1.0f; for (unsigned int b = 0; b < bins.size(); ++b) { Box2f box = bins[b].get_box(dialog_tween); if (box.contains(mouse_pos)) { bins[b].arrows += elapsed_time * 4.0f; if (bins[b].arrows > 1.0f) bins[b].arrows = 1.0f; } else { bins[b].arrows -= elapsed_time * 1.5f; if (bins[b].arrows < 0.0f) bins[b].arrows = 0.0f; } Box2f tex = bins[b].get_tex_box(dialog_tween); if (tex.contains(mouse_pos)) { bins[b].zoom_out += elapsed_time * 3.0f; if (bins[b].zoom_out > 1.0f) bins[b].zoom_out = 1.0f; } else { bins[b].zoom_out -= elapsed_time * 3.0f; if (bins[b].zoom_out < 0.0f) bins[b].zoom_out = 0.0f; } } } bool LayersDialog::handle_event(SDL_Event const &event, Vector2f local_mouse) { mouse_pos = local_mouse; if (layering() == NULL) return false; if (event.type == SDL_MOUSEBUTTONDOWN) { vector< DialogBin > const &bins = layering()->bins; ListGraph &stacking = layering()->stacking; const float dialog_tween = layering()->dialog_tween; const vector< vector< uint32_t > > &layers = layering()->layers; const Vector2ui dialog_point = layering()->dialog_point; const vector< uint32_t > &tags = layering()->tags; const unsigned int width = layering()->width; const unsigned int height = layering()->height; for (unsigned int b = 0; b < bins.size(); ++b) { Box2f box = bins[b].get_box(dialog_tween); if (box.contains(local_mouse)) { if (bins[b].layer >= layers.size()) continue; bool up = local_mouse.y > box.center().y; if (dialog_point.x < width && dialog_point.y < height && tags.size() == width * height) { unsigned int t = tags[dialog_point.y * width + dialog_point.x]; assert(t < stacking.lists.size()); for (unsigned int i = 0; i < stacking.lists[t].size(); ++i) { if (stacking.lists[t][i] == bins[b].layer) { if (up && i + 1 < stacking.lists[t].size()) { stacking.flip_rel(t, bins[b].layer, stacking.lists[t][i+1], true); layering()->update_image(); } if (!up && i - 1 < stacking.lists[t].size()) { stacking.flip_rel(t, bins[b].layer, stacking.lists[t][i-1], false); layering()->update_image(); } break; } } } return true; } } } return false; }
862d193026087473860eac695273d2936ccba4c4
e6dcd5fe12d4a17947bb754e0dc76d9fc0731626
/xll/src/xlscala/register/ioregister.cpp
e3579cff7b7ce9b693d0d5a5139b17ab96559dd9
[]
no_license
slapedra/xlscala
574bbb6e4b6e2721a97c889ab085173b503b0e2f
171857e789827af7be82273e7c34ac0486dccd28
refs/heads/master
2020-06-24T00:33:06.324321
2019-07-25T09:13:07
2019-07-25T09:13:07
198,793,176
0
0
null
null
null
null
UTF-8
C++
false
false
626
cpp
ioregister.cpp
#include <xlscala/register/register.hpp> namespace xlscala { void registerIOFunctions() { // tyFullIO registerXLFunction( L"XLScala - io", L"xlsFullIO", XL_LPOPER+XL_LPOPER+XL_LPOPER+XL_UNCALCED+XL_VOLATILE, L"xlsFullIO", L"tranpose, trigger", L"return full io output", L"transpose output data\n" "trigger"); // tyIO registerXLFunction( L"XLScala - io", L"xlsIO", XL_LPOPER+XL_LPOPER+XL_LPOPER+XL_LPOPER+XL_UNCALCED+XL_VOLATILE, L"xlsIO", L"nb lines, tranpose, trigger", L"return io output", L"number of lines\n" L"transpose output data\n" L"trigger"); } }
e5c851b34470d769134dff9f62499e2d933ac671
da5c560a121c3f4b2898eabb4025996592fe2a81
/StdAfx.h
fd05535c7625f3ecd3dd1d32064caf55c248528c
[ "MIT" ]
permissive
powerxjq/mfcmapi
289bdaa44f9322f27ac107729996f49da045ee16
435476b0791a7e3d89d354c038c5952f2703d296
refs/heads/master
2020-04-16T17:45:28.098283
2019-01-11T15:04:57
2019-01-11T15:04:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,936
h
StdAfx.h
#pragma once #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers #pragma warning(push) #pragma warning(disable : 4995) #include <cstdio> #include <cstring> #include <cwchar> #pragma warning(pop) #include <list> #include <algorithm> // Speed up our string conversions for output #ifdef MRMAPI #define _CRT_DISABLE_PERFCRIT_LOCKS #endif #include <sal.h> // A bug in annotations in shobjidl.h forces us to disable 6387 to include afxwin.h #pragma warning(push) #pragma warning(disable : 6387) #include <afxwin.h> // MFC core and standard components #pragma warning(pop) #include <afxcmn.h> // MFC support for Windows Common Controls #pragma warning(push) #pragma warning(disable : 4091) #include <ShlObj.h> #pragma warning(pop) // Fix a build issue with a few versions of the MAPI headers #if !defined(FREEBUFFER_DEFINED) typedef ULONG(STDAPICALLTYPE FREEBUFFER)(LPVOID lpBuffer); #define FREEBUFFER_DEFINED #endif #include <MAPIX.h> #include <MAPIUtil.h> #include <MAPIForm.h> #include <MAPIWz.h> #include <MAPIHook.h> #include <MSPST.h> #include <EdkMdb.h> #include <ExchForm.h> #include <EMSAbTag.h> #include <IMessage.h> #include <edkguid.h> #include <tnef.h> #include <mapiaux.h> #include <aclui.h> #include <uxtheme.h> // there's an odd conflict with mimeole.h and richedit.h - this should fix it #ifdef UNICODE #undef CHARFORMAT #endif #include <mimeole.h> #ifdef UNICODE #undef CHARFORMAT #define CHARFORMAT CHARFORMATW #endif #include <Res/Resource.h> // main symbols #include <IO/MFCOutput.h> #include <IO/Registry.h> #include <IO/Error.h> #include <MFCMAPI.h> // Custom messages - used to ensure actions occur on the right threads. // Used by CAdviseSink: #define WM_MFCMAPI_ADDITEM (WM_APP + 1) #define WM_MFCMAPI_DELETEITEM (WM_APP + 2) #define WM_MFCMAPI_MODIFYITEM (WM_APP + 3) #define WM_MFCMAPI_REFRESHTABLE (WM_APP + 4) // Used by DwThreadFuncLoadTable #define WM_MFCMAPI_THREADADDITEM (WM_APP + 5) #define WM_MFCMAPI_UPDATESTATUSBAR (WM_APP + 6) #define WM_MFCMAPI_CLEARSINGLEMAPIPROPLIST (WM_APP + 7) // Used by CSingleMAPIPropListCtrl and CSortHeader #define WM_MFCMAPI_SAVECOLUMNORDERHEADER (WM_APP + 10) #define WM_MFCMAPI_SAVECOLUMNORDERLIST (WM_APP + 11) // Used by CContentsTableDlg #define WM_MFCMAPI_RESETCOLUMNS (WM_APP + 12) // Definitions for WrapCompressedRTFStreamEx in param for WrapCompressedRTFStreamEX // http://msdn2.microsoft.com/en-us/library/bb905293.aspx struct RTF_WCSINFO { ULONG size; // Size of the structure ULONG ulFlags; /****** MAPI_MODIFY ((ULONG) 0x00000001) above */ /****** STORE_UNCOMPRESSED_RTF ((ULONG) 0x00008000) above */ /****** MAPI_NATIVE_BODY ((ULONG) 0x00010000) mapidefs.h Only used for reading*/ ULONG ulInCodePage; // Codepage of the message, used when passing MAPI_NATIVE_BODY, ignored otherwise ULONG ulOutCodePage; // Codepage of the Returned Stream, used when passing MAPI_NATIVE_BODY, ignored otherwise }; // out param type information for WrapCompressedRTFStreamEX // http://msdn2.microsoft.com/en-us/library/bb905294.aspx struct RTF_WCSRETINFO { ULONG size; // Size of the structure ULONG ulStreamFlags; /****** MAPI_NATIVE_BODY_TYPE_RTF ((ULONG) 0x00000001) mapidefs.h */ /****** MAPI_NATIVE_BODY_TYPE_HTML ((ULONG) 0x00000002) mapidefs.h */ /****** MAPI_NATIVE_BODY_TYPE_PLAINTEXT ((ULONG) 0x00000004) mapidefs.h */ }; // http://msdn.microsoft.com/en-us/library/office/dn433223.aspx #pragma pack(4) struct CONTAB_ENTRYID { BYTE abFlags[4]; MAPIUID muid; ULONG ulVersion; ULONG ulType; ULONG ulIndex; ULONG cbeid; BYTE abeid[1]; }; typedef CONTAB_ENTRYID* LPCONTAB_ENTRYID; #pragma pack() // http://msdn.microsoft.com/en-us/library/office/dn433221.aspx #pragma pack(4) struct DIR_ENTRYID { BYTE abFlags[4]; MAPIUID muid; ULONG ulVersion; ULONG ulType; MAPIUID muidID; }; typedef DIR_ENTRYID* LPDIR_ENTRYID; #pragma pack() // http://msdn2.microsoft.com/en-us/library/bb820951.aspx #define MAPI_IPROXYSTOREOBJECT_METHODS(IPURE) \ MAPIMETHOD(PlaceHolder1) \ () IPURE; \ MAPIMETHOD(UnwrapNoRef) \ (LPVOID * ppvObject) IPURE; \ MAPIMETHOD(PlaceHolder2) \ () IPURE; // clang-format off DECLARE_MAPI_INTERFACE_(IProxyStoreObject, IUnknown) { BEGIN_INTERFACE MAPI_IUNKNOWN_METHODS(PURE) MAPI_IPROXYSTOREOBJECT_METHODS(PURE) }; // clang-format on #ifndef MAPI_IMAPICLIENTSHUTDOWN_METHODS // http://blogs.msdn.com/stephen_griffin/archive/2009/03/03/fastest-shutdown-in-the-west.aspx DECLARE_MAPI_INTERFACE_PTR(IMAPIClientShutdown, LPMAPICLIENTSHUTDOWN); #define MAPI_IMAPICLIENTSHUTDOWN_METHODS(IPURE) \ MAPIMETHOD(QueryFastShutdown) \ (THIS) IPURE; \ MAPIMETHOD(NotifyProcessShutdown) \ (THIS) IPURE; \ MAPIMETHOD(DoFastShutdown) \ (THIS) IPURE; // clang-format off DECLARE_MAPI_INTERFACE_(IMAPIClientShutdown, IUnknown) { BEGIN_INTERFACE MAPI_IUNKNOWN_METHODS(PURE) MAPI_IMAPICLIENTSHUTDOWN_METHODS(PURE) }; // clang-format on #define _IID_IMAPIClientShutdown_MISSING_IN_HEADER #endif // MAPI_IMAPICLIENTSHUTDOWN_METHODS #ifndef MAPI_IMAPIPROVIDERSHUTDOWN_METHODS /* IMAPIProviderShutdown Interface --------------------------------------- */ DECLARE_MAPI_INTERFACE_PTR(IMAPIProviderShutdown, LPMAPIPROVIDERSHUTDOWN); #define MAPI_IMAPIPROVIDERSHUTDOWN_METHODS(IPURE) \ MAPIMETHOD(QueryFastShutdown) \ (THIS) IPURE; \ MAPIMETHOD(NotifyProcessShutdown) \ (THIS) IPURE; \ MAPIMETHOD(DoFastShutdown) \ (THIS) IPURE; // clang-format off DECLARE_MAPI_INTERFACE_(IMAPIProviderShutdown, IUnknown) { BEGIN_INTERFACE MAPI_IUNKNOWN_METHODS(PURE) MAPI_IMAPIPROVIDERSHUTDOWN_METHODS(PURE) }; // clang-format on #endif // MAPI_IMAPIPROVIDERSHUTDOWN_METHODS // for CompareStrings static DWORD g_lcid = MAKELCID(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), SORT_DEFAULT); // In case we are compiling against an older version of headers // http://msdn2.microsoft.com/en-us/library/bb820933.aspx #define MAPI_IATTACHMENTSECURITY_METHODS(IPURE) \ MAPIMETHOD(IsAttachmentBlocked) \ (LPCWSTR pwszFileName, BOOL * pfBlocked) IPURE; // clang-format off DECLARE_MAPI_INTERFACE_(IAttachmentSecurity, IUnknown) { BEGIN_INTERFACE MAPI_IUNKNOWN_METHODS(PURE) MAPI_IATTACHMENTSECURITY_METHODS(PURE) }; // clang-format on /* Indexing notifications (used for FTE related communications) */ /* Shares EXTENDED_NOTIFICATION to pass structures below, */ /* but NOTIFICATION type will be fnevIndexing */ // Sometimes IExchangeManageStore5 is in edkmdb.h, sometimes it isn't #ifndef EXCHANGE_IEXCHANGEMANAGESTORE5_METHODS #define USES_IID_IExchangeManageStore5 /*------------------------------------------------------------------------ * * 'IExchangeManageStore5' Interface Declaration * * Used for store management functions. * *-----------------------------------------------------------------------*/ #define EXCHANGE_IEXCHANGEMANAGESTORE5_METHODS(IPURE) \ MAPIMETHOD(GetMailboxTableEx) \ (THIS_ LPSTR lpszServerName, LPGUID lpguidMdb, LPMAPITABLE * lppTable, ULONG ulFlags, UINT uOffset) IPURE; \ MAPIMETHOD(GetPublicFolderTableEx) \ (THIS_ LPSTR lpszServerName, LPGUID lpguidMdb, LPMAPITABLE * lppTable, ULONG ulFlags, UINT uOffset) IPURE; #undef INTERFACE #define INTERFACE IExchangeManageStore5 // clang-format off DECLARE_MAPI_INTERFACE_(IExchangeManageStore5, IUnknown) { MAPI_IUNKNOWN_METHODS(PURE) EXCHANGE_IEXCHANGEMANAGESTORE_METHODS(PURE) EXCHANGE_IEXCHANGEMANAGESTORE2_METHODS(PURE) EXCHANGE_IEXCHANGEMANAGESTORE3_METHODS(PURE) EXCHANGE_IEXCHANGEMANAGESTORE4_METHODS(PURE) EXCHANGE_IEXCHANGEMANAGESTORE5_METHODS(PURE) }; // clang-format on #undef IMPL #define IMPL DECLARE_MAPI_INTERFACE_PTR(IExchangeManageStore5, LPEXCHANGEMANAGESTORE5); #endif // #ifndef EXCHANGE_IEXCHANGEMANAGESTORE5_METHODS #define EXCHANGE_IEXCHANGEMANAGESTOREEX_METHODS(IPURE) \ MAPIMETHOD(CreateStoreEntryID2) \ (THIS_ ULONG cValues, LPSPropValue lpPropArray, ULONG ulFlags, ULONG * lpcbEntryID, LPENTRYID * lppEntryID) IPURE; #undef INTERFACE #define INTERFACE IExchangeManageStoreEx // clang-format off DECLARE_MAPI_INTERFACE_(IExchangeManageStoreEx, IUnknown) { MAPI_IUNKNOWN_METHODS(PURE) EXCHANGE_IEXCHANGEMANAGESTORE_METHODS(PURE) EXCHANGE_IEXCHANGEMANAGESTOREEX_METHODS(PURE) }; // clang-format on #undef IMPL #define IMPL DECLARE_MAPI_INTERFACE_PTR(IExchangeManageStoreEx, LPEXCHANGEMANAGESTOREEX); #define CbNewROWLIST(_centries) (offsetof(ROWLIST, aEntries) + (_centries) * sizeof(ROWENTRY)) #define MAXNewROWLIST ((ULONG_MAX - offsetof(ROWLIST, aEntries)) / sizeof(ROWENTRY)) #define MAXMessageClassArray ((ULONG_MAX - offsetof(SMessageClassArray, aMessageClass)) / sizeof(LPCSTR)) #define MAXNewADRLIST ((ULONG_MAX - offsetof(ADRLIST, aEntries)) / sizeof(ADRENTRY))
c2becc44f64973ba11e253687567a8e16f943600
402c348e2c99433e8f682ceafe457f7426beaf21
/websmith/String.h
77eb0641ca967b1aa70bfca059488edeef759712
[]
no_license
TGlad/webSmith
1629965397632a4365fdb6a093b305078a838c5f
81e383bc2400f644f37bf39f0faf160b6a417085
refs/heads/master
2021-01-22T17:47:33.502362
2014-11-15T06:21:32
2014-11-15T06:21:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,122
h
String.h
#pragma once #include <string.h> // Warning, Strings may reference shared character buffers. If you use this class it is up to you to // remember whether the String is using a shared buffer or its own. If in doubt create it new with newString() // Also: strings are stored on the stack, so do not reallocate the string in a sub function // Also: the chars array isn't guaranteed to be null terminated. To use it as a C string then call .cString(). Note this will permanently null terminate the string // See here for how to use String class void stringUnitTest(); // global functions (used when resizing/allocating is an option) // new string with new memory, lasts for lifetime of the calling function #define newString(_x_) (stringStack.tempString.set(_x_) ? String(stringStack.tempString, (char *)alloca(String::genBufferLen(stringStack.tempString.length))) : g_nullString) // int or float to string etc #define toString(_x_) String(_x_, (char *)alloca(20), 20) // a string literal. Efficient as it doesn't require a strlen call #define QUOTE(_x_) String(_x_, sizeof(_x_)) // replace all instances in _string_ of _token_ with _field_ #define replaceString(_string_, _token_, _field_) if(int bufLen = stringStack.stringReplacement.apply(_string_, _token_, _field_)) stringStack.stringReplacement.apply((char *)alloca(String::genBufferLen(bufLen))) // same as above but includes replacement option types: 1 = identifier, 2 = function #define replaceStringType(_string_, _token_, _field_, _ID_) if(int bufLen = stringStack.stringReplacement.apply(_string_, _token_, _field_, _ID_)) stringStack.stringReplacement.apply((char *)alloca(String::genBufferLen(bufLen))) // allocates and reads string from file stream #define readStringFromFile(_file_, _size_) ((stringStack.bufLen = String::genBufferLen(_size_)) ? String::fromFile(_file_, stringStack.bufLen, (char *)alloca(stringStack.bufLen)) : g_nullString) // adds to the end of existing string, will allocate memory if exceeds the string's buffer length #define append(_string_, _field_) if(int bufLen = stringStack.tryAppend(_string_, _field_)) stringStack.string->use(String(*stringStack.string + stringStack.tempString, (char *)alloca(String::genBufferLen(bufLen)))) class TempString; enum StringType { ST_Any, ST_JustInString, ST_NotInString, ST_AfterNumber, ST_Identifiers, ST_IdentifierBeforeCompound, // e.g. <blah> thing.other = 74; replaces blah only when this . is found ST_Functions, ST_WordStart, // finds this string as the start of a word ST_AfterIdentifier, ST_ToLineEnd, // find the string startinng with that specified and going to the end of the line ST_Units, // special identification of units ST_NotSpaced, // string does not have space before and after it ST_Max }; class String { public: // Constructors String(); String(const char *string); String(const char *string, int bufferLen); String(int number, char *buffer, int bufferLength); String(const String &data, char *buffer); String(const TempString &data, char *buffer); // Accessors (they are const) bool startsWith(const String &string) const; char *find(const String &string, char *startPoint = NULL, StringType type = ST_Any, int *foundLength = NULL) const; // returns the string between start and end. If it doesn't find the start it will use the string's start, if it doesn't find end it will use the string's end, and return false String getStringBetween(const String &start, String &end, char **searchStart) const; // generic routine for cropping the start or the end or both (use NULL to not crop that end) String substring(char *start, char *end) const; // warning, this will alter the string buffer which might be shared, best to use this sparingly // also it sadly is disobeying the const char *cString() const { if (chars[length])chars[length] = 0; /* terminate it */ return chars; } // concatenation TempString operator +(const TempString &string) const; TempString operator +(const String &string) const; // Modifiers void insert(const TempString &tString, char *startPoint = 0); void convertFromHTML(); // string will reference another's character data void use(const String &string); void use(const char *string); void use(const char *string, int maxBufferLen); // allows you to increase past the string length void set(const String &string); // replaces contents with string's up to its max buffer length void set(const TempString &string); // replaces contents with string's up to its max buffer length void reduce(const String &token, const String &field, StringType type = ST_Any); void removeComments(){ reduce(QUOTE("//"), QUOTE("\n"), ST_ToLineEnd); } // scopedReplacement("+", "(", ").plus(", ")") would replace y = sqrt(3*x) + -50*b-2 with y = (sqrt(3*x)).plus(-50*b)-2 void scopedReplacement(const String &token, const String &left, const String &between, const String &right, bool highPrecedence = false); char *nextScopedReplace(const String &token, const String &left, const String &between, const String &right, char *startPoint, bool highPrecedence = false); char *nextReplace(char *position, int lengthToReplace, const String &field); // Statics static String fromFile(FILE *file, int size, char *buffer); static int genBufferLen(int length); // Data, be careful if you are manipulating this raw data int length; int bufferLength; char *chars; // do not expect this to be null terminated private: }; //////////////////////////////////////////////////////////////////////////////////////////////////// // internal classes #define MAX_STRING_COLLECTION 15 class TempString // this is a temporary variable, you should not be able to change it { public: TempString(); TempString(const String &str1); TempString operator +(const TempString &string) const; TempString operator +(const String &string) const; TempString *set(const TempString &strCol); TempString *set(const String &str); // these should just be private String strings[MAX_STRING_COLLECTION]; // max allowed int numStrings; int length; }; TempString operator +(const char *, const TempString &string); class StringReplacement { public: int apply(String &string, const String &token, const String &field, StringType type = ST_Any); void apply(char *memoryBuffer); String *m_string; String m_token; String m_field; StringType m_type; }; extern String g_nullString; // add one of these at the top of each function that will allocate strings (uses the global macros) struct StringStack { int tryAppend(String &str, const TempString &tempStr); int tryAppend(String &str, const String &other); String *string; TempString tempString; StringReplacement stringReplacement; int bufLen; // just temporary storage }; extern __declspec(thread) StringStack stringStack; // internal functions int getStringLength(char *str); int getStringLength(const String &str); int getStringLength(const TempString &str);
86d0579373330cf7edb32cf1b5d919dbf0627d97
0b9b802fed8496d8d66da872b28a20788c1e5f0b
/hackerrank/Magic_Spells_v1/main.cpp
557eb38fb293d705509b8779b50133877d89b3d6
[]
no_license
mosorio-byte/cplusplusSources
e6503e44d4fb0c74d08748fcd9c5f00fd6f5aaae
769c133d9d3a3341cbefa706144749289a73991c
refs/heads/master
2023-03-06T06:55:56.002383
2023-03-06T02:16:11
2023-03-06T02:16:11
145,359,990
0
0
null
null
null
null
UTF-8
C++
false
false
7,331
cpp
main.cpp
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: main.cpp * Author: manuel.osorio * * Created on 26 de junio de 2018, 10:52 AM */ #include <iostream> #include <vector> #include <string> using namespace std; class Spell { private: string scrollName; public: Spell(): scrollName("") { } Spell(string name): scrollName(name) { } virtual ~Spell() { } string revealScrollName() { return scrollName; } }; class Fireball : public Spell { private: int power; public: Fireball(int power): power(power) { } void revealFirepower(){ cout << "Fireball: " << power << endl; } }; class Frostbite : public Spell { private: int power; public: Frostbite(int power): power(power) { } void revealFrostpower(){ cout << "Frostbite: " << power << endl; } }; class Thunderstorm : public Spell { private: int power; public: Thunderstorm(int power): power(power) { } void revealThunderpower(){ cout << "Thunderstorm: " << power << endl; } }; class Waterbolt : public Spell { private: int power; public: Waterbolt(int power): power(power) { } void revealWaterpower(){ cout << "Waterbolt: " << power << endl; } }; class SpellJournal { public: static string journal; static string read() { return journal; } }; string SpellJournal::journal = ""; int strangerthinks(vector<vector<int>> matriz, int max_i, int max_j, string word1, string word2){ cout << "<->" << endl; int comp1,comp2; string spell = ""; for(int i = max_i; i != 0; i--){ for(int j = max_j; j != -1; j--){ if(matriz[i][j]==matriz[i][j-1] && matriz[i][j]==matriz[i-1][j] && matriz[i][j]!=0){ cout << "case 1: " << matriz[i][j] << " arriba: " <<matriz[i-1][j] << " al lado: " << matriz[i][j-1] << endl; comp1 = strangerthinks( matriz, i-1, j, word1, word2); comp2 = strangerthinks( matriz, i, j-1, word1, word2); if(comp1 > comp2) return comp1 + spell.size(); return comp2 + spell.size(); }else if(matriz[i][j]==matriz[i-1][j] && matriz[i][j]!=0){ // arriba cout << "case 2: " << matriz[i][j] << " arriba: " <<matriz[i-1][j] << endl; if(word1[i-1] == word2[j-1]){ spell += word1[i-1]; } break; }else if(matriz[i][j]==matriz[i][j-1] && matriz[i][j]!=0){ // al lado cout << "case 3: " << matriz[i][j] << " al lado: " <<matriz[i][j-1] << endl; if(word1[i-1] == word2[j-1]){ spell += word1[i-1]; } }else if(matriz[i][j]>matriz[i-1][j-1]){ // diagonal cout << "case 4: " << matriz[i][j] << " diagonal: " <<matriz[i-1][j-1] << endl; if(word1[i-1] == word2[j-1]){ spell += word1[i-1]; } max_j = j-1; break; } } } return spell.size(); } void counterspell(Spell *spell) { if(Fireball* d = dynamic_cast<Fireball*>(spell)) { //std::cout << "downcast from Fireball to d successful\n"; d->revealScrollName(); d->revealFirepower(); }else if(Frostbite* d = dynamic_cast<Frostbite*>(spell)) { //std::cout << "downcast from Frostbite to d successful\n"; d->revealScrollName(); d->revealFrostpower(); }else if(Thunderstorm* d = dynamic_cast<Thunderstorm*>(spell)) { //std::cout << "downcast from Thunderstorm to d successful\n"; d->revealScrollName(); d->revealThunderpower(); }else if(Waterbolt* d = dynamic_cast<Waterbolt*>(spell)) { //td::cout << "downcast from Waterbolt to d successful\n"; d->revealScrollName(); d->revealWaterpower(); }else if(Spell* d = dynamic_cast<Spell*>(spell)) { std::string new_spells = d->revealScrollName(); std::string journal = SpellJournal::read(); vector<char> out_spell_list; vector<vector<int>> lcs; vector<int> input(journal.size()+1,0); for(int i = 0; i< new_spells.size()+1; i++) { lcs.push_back(input); } for(int i = 1; i < new_spells.size() + 1; i++){ for(int j = 1; j < journal.size() + 1; j++){ if(new_spells[i-1] == journal[j-1]){ lcs[i][j] = lcs[i-1][j-1] + 1; }else{ if(lcs[i-1][j] > lcs[i][j-1]){ lcs[i][j] = lcs[i-1][j]; }else{ lcs[i][j] = lcs[i][j-1]; } } } } for(int i = 0; i < lcs.size(); i++){ for(int j = 0; j < lcs[0].size(); j++){ cout << lcs[i][j] << " "; } cout << endl; } cout << "----------------------------" << endl; cout << strangerthinks( lcs, new_spells.size(), journal.size(), new_spells, journal) << endl; /* size_t found; size_t error; std::string out_spell = ""; for(int i = 0; i < new_spells.size(); i++){ found = journal.find(new_spells[i]); if(found!=std::string::npos) { error = out_spell.find(new_spells[i]); if(error == std::string::npos) out_spell += journal[found]; } } cout << out_spell << ' '<< out_spell.size() << endl; for(int i = 0; i < out_spell_list.size(); i++){ cout << out_spell_list[i]; } */ } } class Wizard { public: Spell *cast() { Spell *spell; string s; cin >> s; int power; cin >> power; if(s == "fire") { spell = new Fireball(power); } else if(s == "frost") { spell = new Frostbite(power); } else if(s == "water") { spell = new Waterbolt(power); } else if(s == "thunder") { spell = new Thunderstorm(power); } else { spell = new Spell(s); cin >> SpellJournal::journal; } return spell; } }; int main() { int T; cin >> T; Wizard Arawn; while(T--) { //cout << "T:" << T << endl; Spell *spell = Arawn.cast(); counterspell(spell); } return 0; }
b8fb28d6e3c4ef94f1fecf75585f475d4abd1afd
4754a6074bf8c74e426ec6e42d746fe094a2a944
/1~4주/구간합.cpp
fdd620c6345d9694e653f38b54e8044ba1d006eb
[]
no_license
lmalma2004/algorithmStudy
5eb4798dd19d92e272409b78cb8ac6494a135d74
8b343b4548e295e13eb3125f18186cdda60f1818
refs/heads/master
2021-03-22T17:54:58.217230
2020-05-12T13:05:41
2020-05-12T13:05:41
247,389,437
0
0
null
null
null
null
UTF-8
C++
false
false
2,975
cpp
구간합.cpp
//배열의 구간 최소 쿼리(RMQ) 문제를 해결하는 구간 트리의 초기화 #include <iostream> #include <vector> #include <algorithm> using namespace std; int N, M, K; class RSQ { public: int n; //배열의 길이 vector<long long> rangeSum; //각 구간의 합 public: RSQ(const vector<int>& array) { n = array.size(); rangeSum.resize(n * 4); init(array, 0, n - 1, 1); } public: //node 노드가 array[left, right]배열을 표한할 때 //node를 루트로 하는 서브트리를 초기화하고, 이 구간의 합을 반환한다. long long init(const vector<int>& array, int left, int right, int node) { if (left == right) return rangeSum[node] = array[left]; int mid = (left + right) / 2; long long leftSum = init(array, left, mid, node * 2); long long rightSum = init(array, mid + 1, right, node * 2 + 1); return rangeSum[node] = leftSum + rightSum; } //node가 표현하는 범위[nodeLeft, nodeRight]와 우리가 최소치를 찾기 원하는 구간[left, right]의 교집합의 구간 합을 반환한다. long long query(int left, int right, int node, int nodeLeft, int nodeRight) { //두 구간이 겹치지 않으면 0을 반환한다: 무시됨 if (right < nodeLeft || nodeRight < left) return 0; //node가 표현하는 범위가 array[left, right]에 완전히 포함되는 경우 if (left <= nodeLeft && nodeRight <= right) return rangeSum[node]; //양쪽 구간을 나눠서 푼 뒤 결과를 합친다. int mid = (nodeLeft + nodeRight) / 2; return query(left, right, node * 2, nodeLeft, mid) + query(left, right, node * 2 + 1, mid + 1, nodeRight); } //array[index] = newValue로 바뀌었을 때 node를 루트로 하는 //구간 트리를 갱신하고 노드가 표현하는 구간의 합을 반환한다. long long update(int index, int newValue, int node, int nodeLeft, int nodeRight) { //index가 노드가 표현하는 구간과 상관없는 경우엔 무시한다. if (index < nodeLeft || nodeRight < index) return rangeSum[node]; //트리의 리프까지 내려온 경우 if (nodeLeft == nodeRight) return rangeSum[node] = newValue; int mid = (nodeLeft + nodeRight) / 2; return rangeSum[node] = update(index, newValue, node * 2, nodeLeft, mid) + update(index, newValue, node * 2 + 1, mid + 1, nodeRight); } //query()를 외부에서 호출하기 위한 인터페이스 long long query(int left, int right) { return query(left, right, 1, 0, n - 1); } long long update(int index, int newValue) { return update(index, newValue, 1, 0, n - 1); } }; vector<int> arr; int main() { scanf("%d %d %d", &N, &M, &K); for (int i = 0; i < N; i++) { int num; scanf("%d", &num); arr.push_back(num); } RSQ rsq(arr); int minIdx = 1000000; for (int i = 0; i < M + K; i++) { int a, b, c; scanf("%d %d %d", &a, &b, &c); if (a == 1) { rsq.update(b - 1, c); } else if (a == 2) { printf("%lld\n", rsq.query(b - 1, c - 1)); } } return 0; }
494a71164e482f98bbdda95fb137dc56a1e34516
dbbf75ac033c0e3fccfd3fcb41441c76011a5bd1
/NMGAME/NinjaGaiden/GunMan.cpp
f838e3d9eb1b071938036b36f67fca1178fb6028
[]
no_license
trungnqhcm/NijaGaiden
f05a3bf84e9ea72d49f1f09ba04320844e52fca7
34af8d6e2aa6b7142dde96bdd134992e19176d56
refs/heads/master
2020-05-29T17:12:03.812902
2019-05-29T19:37:41
2019-05-29T19:37:41
189,268,187
0
0
null
null
null
null
UTF-8
C++
false
false
552
cpp
GunMan.cpp
#include "GunMan.h" #define SPEED_X 0.07f #define SPEED_Y 0.07f #define MAX_HEIGHT 250.0f GunMan::GunMan(void) : MovingObject() { } GunMan::GunMan(float x, float y) : MovingObject(x, y, 0, 0, EnumID::gunMan_ID) { type = ObjectType::Enemy_Type; active = false; } void GunMan::Update(int dt) { sprite->Update(dt); if (sprite == NULL || !active) return; posX += vX * dt; posY += vY * dt; } void GunMan::SetActive(float x, float y) { if (abs(posX - x) <= 300 && !active) { active = true; vX = -SPEED_X; } } GunMan::~GunMan(void) { }
69cb15eeb3a45e6b325c2650cd6a231fc7e717d4
06358eb270d23c4242bfaa24e85bba9ac6d93ecc
/codeforces/359B.cpp
deb30608871fe860875e6d5d1c87bff2c31f7c81
[]
no_license
dwivedir/coding
e26ea9fd14f7982f0c3d7760b2e38372231abf87
4dcb0576c936cd4b6be1d29566a82b91b7925032
refs/heads/master
2016-09-09T18:57:08.979659
2015-02-10T14:17:25
2015-02-10T14:17:25
29,722,675
0
0
null
null
null
null
UTF-8
C++
false
false
240
cpp
359B.cpp
#include<iostream> #include<stdio.h> using namespace std; int main() { int n,k; cin>>n>>k; n *= 2; while(k--) { cout<<n-1<<" "<<n<<" "; n -= 2; } for(int i=1; i<=n; i+=2) cout<<i+1<<" "<<i<<" "; return 0; }
cb6a1e8795e43834b53327c15096a16a6bcc35bb
1ff238216569262dbe3316508be99d02a9d594e4
/src/output/dummy.cpp
53d128dda7aa55bf1c48010e341b74ab0cde5aa4
[ "MIT" ]
permissive
cglogic/sight
f16d520e8c872edc9be7b2b26b503f0050f1641f
9ffb62cec974bbfa48c58e6168edc40801dafcba
refs/heads/main
2023-06-20T11:23:28.195913
2021-07-10T09:02:30
2021-07-10T09:02:30
362,887,851
0
0
null
null
null
null
UTF-8
C++
false
false
6,611
cpp
dummy.cpp
#include "dummy.h" #include <chrono> #include <glog/logging.h> namespace Sight::Output { Dummy::Dummy(const json& config, size_t id, std::vector<std::vector<Slot>>& slot, Queue<uint32_t>& queue) : Module(config, id), mSlot(slot), mQueue(queue) { if (config.contains("local_time")) { mLocalTime = config["local_time"]; } if (config.contains("resend_interval")) { mResendInterval = config["resend_interval"]; } } Dummy::Dummy(Dummy&& other) noexcept : Module(std::move(other)), mSlot(other.mSlot), mQueue(other.mQueue) { } Dummy::~Dummy() { for (auto& e : mEncoder) { if (e.second.mContext) { avcodec_send_frame(e.second.mContext, NULL); } avcodec_free_context(&e.second.mContext); } for (auto& p : mPacket) { av_packet_free(&p.second.mPacket); } } bool Dummy::validate(const json& config) { if (!Module::validate(config)) { return false; } if (config.contains("local_time") && !config["local_time"].is_boolean()) { LOG(ERROR) << "Local time is not boolean"; return false; } if (config.contains("resend_interval") && !config["resend_interval"].is_number()) { LOG(ERROR) << "Resend interval is not number"; return false; } return true; } std::string Dummy::timestampNow() { auto tp = std::chrono::system_clock::now(); auto mks = std::chrono::duration_cast<std::chrono::microseconds>(tp.time_since_epoch()); std::time_t ts = std::chrono::system_clock::to_time_t(tp); char timestamp[100]; if (mLocalTime) { std::strftime(timestamp, sizeof(timestamp), "%Y-%m-%dT%H:%M:%S.", std::localtime(&ts)); } else { std::strftime(timestamp, sizeof(timestamp), "%Y-%m-%dT%H:%M:%S.", std::gmtime(&ts)); } std::string smks = std::to_string(mks.count() % 1000000); while (smks.size() < 6) { smks.insert(smks.begin(), '0'); } return std::string(timestamp) + smks; // LOG(INFO) << mName << ": time" << std::format("%Y-%m-%dT%H:%M:%S.s", tp); } bool Dummy::start() { if (!mSend.test()) { mSend.test_and_set(); mSender = std::thread(&Dummy::sender, this); return true; } return false; } void Dummy::stop() { if (mSend.test()) { mSend.clear(); mSender.join(); } } void Dummy::task() { if (mQueue.ready()) { uint16_t streamId = 0; uint8_t slotId = 0; bool send = false; unpack(mQueue.get(), streamId, slotId, send); auto& slot = mSlot[streamId][slotId]; if (send) { mSendQueue.put(Slot(slot)); mSendQueue.notify(); } slot.unref(); } } bool Dummy::send(Slot& slot) { const AVFrame* frame = slot.frame(); if (frame == nullptr) { LOG(ERROR) << mName << ": Error encodind frame"; return false; } const AVPacket* picture = packet(slot, AV_CODEC_ID_MJPEG); if (picture == nullptr) { LOG(ERROR) << mName << ": Error encodind packet"; return false; } auto& info = slot.info(); LOG(INFO) << mName << ": Event stream name = " << slot.streamName() << ", timestamp = " << timestampNow() << ", frame number = " << frame->coded_picture_number << ", frame dts = " << frame->pkt_dts << ", frame pts = " << frame->pts << ", frame size = " << frame->pkt_size << ", frame width = " << frame->width << ", frame height = " << frame->height << ", packet pts: " << picture->pts << ", packet dts: " << picture->dts << ", packet size: " << picture->size << ", stream index: " << picture->stream_index << ", info = " << info.dump(); return true; } const AVPacket* Dummy::packet(Slot& slot, AVCodecID format) { const AVFrame* pFrame = slot.frame(AV_PIX_FMT_YUVJ420P); if (pFrame == nullptr) { LOG(ERROR) << mName << ": Error encodind frame"; return nullptr; } const AVFrame& frame = *pFrame; size_t streamId = slot.streamId(); if (mPacket.contains(streamId)) { if (mPacket[streamId].mFrameId == frame.coded_picture_number) { return mPacket[streamId].mPacket; } } else { Packet pkt = {.mPacket = av_packet_alloc()}; if (!pkt.mPacket) { LOG(ERROR) << mName << ": Could not allocate packet"; return nullptr; } mPacket[streamId] = pkt; } Encoder* encoder = nullptr; if (mEncoder.contains(streamId)) { auto& enc = mEncoder[streamId]; if (!slot.fresh() && enc.mContext->codec_id == format && enc.mContext->pix_fmt == frame.format) { encoder = &mEncoder[streamId]; } else { if (enc.mContext) { avcodec_send_frame(enc.mContext, NULL); } avcodec_free_context(&enc.mContext); auto it = mEncoder.find(streamId); mEncoder.erase(it); } } if (encoder == nullptr) { Encoder enc; enc.mCodec = avcodec_find_encoder(format); if (!enc.mCodec) { LOG(ERROR) << mName << ": Could not find encoder"; return nullptr; } enc.mContext = avcodec_alloc_context3(enc.mCodec); if (!enc.mContext) { LOG(ERROR) << mName << ": Could not allocate encoder context"; return nullptr; } enc.mContext->pix_fmt = (AVPixelFormat)frame.format; enc.mContext->height = frame.height; enc.mContext->width = frame.width; // enc.mContext->global_quality = 5; // enc.mContext->compression_level = 12; // We need only one frame, so hardcode these enc.mContext->time_base = (AVRational){1, 25}; // enc.mContext->framerate = (AVRational){25, 1}; if (avcodec_open2(enc.mContext, enc.mCodec, NULL) < 0) { avcodec_free_context(&enc.mContext); LOG(ERROR) << mName << ": Could not open context"; return nullptr; } mEncoder[streamId] = enc; encoder = &mEncoder[streamId]; } int response = avcodec_send_frame(encoder->mContext, &frame); if (response >= 0) { response = avcodec_receive_packet(encoder->mContext, mPacket[streamId].mPacket); if (response >= 0) { mPacket[streamId].mFrameId = frame.coded_picture_number; } else { LOG(ERROR) << mName << ": Could not receive packet, error = " << response << ", text = " << av_err2str(response); return nullptr; } } else { LOG(ERROR) << mName << ": Could not send frame, error = " << response << ", text = " << av_err2str(response); return nullptr; } return mPacket[streamId].mPacket; } void Dummy::sender() { pthread_setname_np(pthread_self(), (mName + ":sender").c_str()); while (mSend.test()) { if (mSendQueue.ready()) { Slot& slot = mSendQueue.first(); if (send(slot)) { mSendQueue.remove(); } else { LOG(ERROR) << mName << ": Could not send event"; if (mResendInterval > 0) { std::this_thread::sleep_for(std::chrono::seconds(mResendInterval)); } else { mSendQueue.remove(); } } } } } }
90543a11087a9e4838d6924ab1169ce551a809e5
e5f1facd318402c5d580862fddffcecd047e5c28
/token.cpp
e4e94a1a85d56d75ea16b1e1f1d979e911a2aa4c
[]
no_license
Radiogag/gotv1
85ee2248dd2f7303bf32719d30b6b026f88f636c
bc8c9e203660abb2600286e52c4bb3fec8053e31
refs/heads/main
2023-03-27T01:31:02.976482
2021-03-26T08:53:37
2021-03-26T08:53:37
351,718,349
0
0
null
null
null
null
UTF-8
C++
false
false
391
cpp
token.cpp
#include "token.h" token::token(int nhouse, int npos, QString type) : pos(npos), house(nhouse) { QString f = "./resources/tokenpics/" + QString::number(house) + "/" + type + ".png"; QFile file(f); if (!file.open(QIODevice::ReadOnly)) { qWarning("Cannot open file for reading"); } pic = new QGraphicsPixmapItem(QPixmap::fromImage(QImage(f))); file.close(); }
fbfdba7e513b305679527c5abe550d71fb0af2be
25c5da3b6481fd7bcf90fbc11bdfca601f2e72e4
/plotting.hpp
054f8847e240b6be7f556dfe24f52c9b437962e4
[]
no_license
ssnover/clahe
6c37302f56d1d353688d4131c98a3dd73ff6bdd1
13fd97316dd7a4405c975253f17fd3fb7d9fac31
refs/heads/master
2022-12-09T08:26:47.806532
2020-09-08T18:45:52
2020-09-08T18:45:52
159,100,957
3
1
null
null
null
null
UTF-8
C++
false
false
704
hpp
plotting.hpp
#pragma once #include "utility.hpp" namespace cv { class Mat; } // namespace cv /* * Takes in a histogram and parameters for the size of the output plot image * and creates the plot image. */ int createHistogramPlot(ImageHistogram const & histogram, unsigned int width, unsigned int height, cv::Mat & outputImage); /* * Takes in a histogram and parameters for the size of the output plot image * and creates a plot image of a CDF for the histogram. */ int createCDFPlot(ImageHistogram const & histogram, unsigned int width, unsigned int height, cv::Mat & outputImage);
5f9f92e3b7612cf7fdc0e1525121d6f506618d70
0433887e1bdce27d20bfc2c658adeac945fe5bc7
/Controller/MazeContoroller.cpp
786a5baa4a8b83b61a5b8324609d2d315df7d4a3
[]
no_license
Yamarbel/Maze2D
56e36f4303776da8c595c196830de62740d05d70
d58e4e4c7c1ba2e17bfaa3bc6d65448833cc1890
refs/heads/master
2022-12-17T15:04:52.039589
2020-09-23T11:02:51
2020-09-23T11:02:51
297,937,232
0
0
null
null
null
null
UTF-8
C++
false
false
1,087
cpp
MazeContoroller.cpp
#include "MazeContoroller.h" using namespace std; MazeContoroller::MazeContoroller() { Commands["dir"] = new DirRequest(); Commands["generate_maze"] = new GenerateRequest(); Commands["display"] = new DisplayRequest(); Commands["save_maze"] = new SaveRequest(); Commands["load_maze"] = new LoadRequest(); Commands["maze_size"] = new SizeRequest(); Commands["file_size"] = new FileSizeRequest(); Commands["solve"] = new SolveRequest(); Commands["display_solution"] = new SolutionRequest(); Commands["exit"] = new ExitRequest(); } MazeContoroller::~MazeContoroller(){} void MazeContoroller::InitializeCommand(const string& str) { vector<string> commands; string word = ""; for (auto Str : str) { if (Str != ' ') { word = word + Str; } else { commands.push_back(word); word = ""; } } commands.push_back(word); Args = commands; if (Commands[commands[0]]) { Commands[commands[0]]->run(commands); } }
88c59e2e148121ad63253038127bd5a3bf00b7a8
7f33ba43b6497f3eef0b69e0a7b1a6f8ea02d382
/src/sensors/tgSpringCableActuatorSensorInfo.h
c2a5deec6769fdfdc3f216a8acfe5b6818f91c43
[ "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
furlong-cmu/NTRTsim
ce30ac719a0ebd25b5dac5e0a6626863c9c3704d
96874617cefb0b63f9725751eb5af1ed4f30deae
refs/heads/master
2020-05-31T12:39:28.805410
2019-06-05T03:29:15
2019-06-05T03:29:15
190,285,545
0
2
Apache-2.0
2019-06-04T22:03:07
2019-06-04T22:03:07
null
UTF-8
C++
false
false
2,996
h
tgSpringCableActuatorSensorInfo.h
/* * Copyright © 2012, United States Government, as represented by the * Administrator of the National Aeronautics and Space Administration. * All rights reserved. * * The NASA Tensegrity Robotics Toolkit (NTRT) v1 platform is 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. */ #ifndef TG_SPRING_CABLE_ACTUATOR_SENSOR_INFO_H #define TG_SPRING_CABLE_ACTUATOR_SENSOR_INFO_H /** * @file tgSpringCableActuatorSensorInfo.h * @brief Definition of concrete class tgSpringCableActuatorSensorInfo * @author Drew Sabelhaus * @date January 2017 * $Id$ */ // This module #include "tgSensorInfo.h" // Other includes from NTRTsim // ... // Other includes from the C++ standard library // ... // Forward references class tgSenseable; class tgSpringCableActuator; class tgSpringCableActuatorSensor; class tgSensor; /** * tgSpringCableActuatorSensorInfo is a sensor info class that creates * tgSpringCableActuatorSensors for tgSpringCableActuators. */ class tgSpringCableActuatorSensorInfo : public tgSensorInfo { public: /** * tgSensorInfo has an empty constructor. It does not contain any data. */ tgSpringCableActuatorSensorInfo(); /** * Similarly, its destructor should be empty. */ ~tgSpringCableActuatorSensorInfo(); /** * From tgSensorInfo, need to implement a check to see if a particular * tgSenseable is a tgSpringCableActuator. * @param[in] pSenseable a pointer to a tgSenseable object, that this sensor info * may or may not be able to create a sensor for. * @return true if pSenseable is able to be sensed by the type of sensor that * this sensor info creates. */ virtual bool isThisMySenseable(tgSenseable* pSenseable); /** * Similarly, create a sensor if appropriate. * See tgSensorInfo for more... info. * @param[in] pSenseable pointer to a senseable object. Sensor will be created * for this pSenseable. * @return a list of pointers to tgSpringCableActuatorSensors. * Note that this should ALWAYS have size 1. Don't create sensors for * elements that just have rods as descendants, only create sensors for * an actual spring-cable actuator. (This eliminates redundant sensor creation.) * @throws invalid_argument if pSenseable is not a tgSpringCableActuator. * This enforces the caller to check isThisMySenseable before creating sensors. */ virtual std::vector<tgSensor*> createSensorsIfAppropriate(tgSenseable* pSenseable); }; #endif // TG_SPRING_CABLE_ACTUATOR_SENSOR_INFO_H
baeb463ec72bab6465de7d2d0a6442f016f7f518
206245ddca35f83f59f02cb2b57f216f27a68e19
/Libraries/OccupancyDetection/BaseTask.h
87e5281949931228f83c1d4a8e52fe54f3fa4c09
[]
no_license
rohmer/ArduinoRailroad
e8abb334458c9cccd7b2ae283c4cb12852b58c58
f63c93f04cd4decc10a268e90d1b64c0f0ce46b0
refs/heads/master
2021-01-25T03:26:34.595267
2015-02-16T21:59:32
2015-02-16T21:59:32
30,058,724
3
0
null
null
null
null
UTF-8
C++
false
false
492
h
BaseTask.h
// BaseTask.h #ifndef _BASETASK_h #define _BASETASK_h #if defined(ARDUINO) && ARDUINO >= 100 #include "Arduino.h" #else #include "WProgram.h" #endif #include <iterator> #include <vector> #include "Logger.h" class BaseTask { protected: std::vector<byte> taskArguments; Logger logger; public: BaseTask(std::vector<byte> arguments, Logger log); virtual void Run(bool occupied) {}; virtual String GetName() {}; virtual void Init() {}; virtual ~BaseTask() {}; }; #endif
9aa1fa4de20e5a16427978cc8178f356ab0981e0
e0358ea53be374b3d6ecf27f3bce2b6961a43550
/src/s2/encoded_s2cell_id_vector_test.cc
191d7a3500795045c4ee34a4dada35ed70a8ad59
[ "Apache-2.0" ]
permissive
ericyao2013/google_s2geometry
9f59b8698faa4305427eb8334f3b9d519c2df944
77c4c2454628d66649384faac8fffeb05ea4595c
refs/heads/master
2020-03-17T09:41:19.812714
2018-05-11T19:01:46
2018-05-11T19:01:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,518
cc
encoded_s2cell_id_vector_test.cc
// Copyright 2018 Google Inc. All Rights Reserved. // // 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. // // Author: ericv@google.com (Eric Veach) #include "s2/encoded_s2cell_id_vector.h" #include <vector> #include <gtest/gtest.h> #include "s2/third_party/absl/memory/memory.h" #include "s2/s2loop.h" #include "s2/s2pointutil.h" #include "s2/s2shape_index.h" #include "s2/s2testing.h" #include "s2/s2text_format.h" using absl::make_unique; using std::vector; namespace s2coding { void TestEncodedS2CellIdVector(const vector<S2CellId>& expected, size_t expected_bytes) { Encoder encoder; EncodeS2CellIdVector(expected, &encoder); EXPECT_EQ(expected_bytes, encoder.length()); Decoder decoder(encoder.base(), encoder.length()); EncodedS2CellIdVector actual; ASSERT_TRUE(actual.Init(&decoder)); EXPECT_EQ(actual.Decode(), expected); } void TestEncodedS2CellIdVector(const vector<uint64>& raw_expected, size_t expected_bytes) { vector<S2CellId> expected; for (uint64 raw_id : raw_expected) { expected.push_back(S2CellId(raw_id)); } TestEncodedS2CellIdVector(expected, expected_bytes); } TEST(EncodedS2CellIdVectorTest, Empty) { TestEncodedS2CellIdVector(vector<S2CellId>{}, 2); } TEST(EncodedS2CellIdVectorTest, None) { TestEncodedS2CellIdVector({S2CellId::None()}, 3); } TEST(EncodedS2CellIdVectorTest, NoneNone) { TestEncodedS2CellIdVector({S2CellId::None(), S2CellId::None()}, 4); } TEST(EncodedS2CellIdVectorTest, Sentinel) { TestEncodedS2CellIdVector({S2CellId::Sentinel()}, 10); } TEST(EncodedS2CellIdVectorTest, SentinelSentinel) { TestEncodedS2CellIdVector({S2CellId::Sentinel(), S2CellId::Sentinel()}, 11); } TEST(EncodedS2CellIdVectorTest, NoneSentinelNone) { TestEncodedS2CellIdVector( {S2CellId::None(), S2CellId::Sentinel(), S2CellId::None()}, 26); } TEST(EncodedS2CellIdVectorTest, InvalidCells) { // Tests that cells with an invalid LSB can be encoded. TestEncodedS2CellIdVector({0x6, 0xe, 0x7e}, 5); } TEST(EncodedS2CellIdVectorTest, OneByteLeafCells) { // Tests that (1) if all cells are leaf cells, the low bit is not encoded, // and (2) this can be indicated using the standard 1-byte header. TestEncodedS2CellIdVector({0x3, 0x7, 0x177}, 5); } TEST(EncodedS2CellIdVectorTest, OneByteLevel29Cells) { // Tests that (1) if all cells are at level 29, the low bit is not encoded, // and (2) this can be indicated using the standard 1-byte header. TestEncodedS2CellIdVector({0xc, 0x1c, 0x47c}, 5); } TEST(EncodedS2CellIdVectorTest, OneByteLevel28Cells) { // Tests that (1) if all cells are at level 28, the low bit is not encoded, // and (2) this can be indicated using the extended 2-byte header. TestEncodedS2CellIdVector({0x30, 0x70, 0x1770}, 6); } TEST(EncodedS2CellIdVectorTest, OneByteMixedCellLevels) { // Tests that cells at mixed levels can be encoded in one byte. TestEncodedS2CellIdVector({0x300, 0x1c00, 0x7000, 0xff00}, 6); } TEST(EncodedS2CellIdVectorTest, OneByteMixedCellLevelsWithPrefix) { // Tests that cells at mixed levels can be encoded in one byte even when // they share a multi-byte prefix. TestEncodedS2CellIdVector({ 0x1234567800000300, 0x1234567800001c00, 0x1234567800007000, 0x123456780000ff00}, 10); } TEST(EncodedS2CellIdVectorTest, OneByteRangeWithBaseValue) { // Tests that cells can be encoded in one byte by choosing a base value // whose bit range overlaps the delta values. // 1 byte header, 3 bytes base, 1 byte size, 4 bytes deltas TestEncodedS2CellIdVector({ 0x00ffff0000000000, 0x0100fc0000000000, 0x0100500000000000, 0x0100330000000000}, 9); } TEST(EncodedS2CellIdVectorTest, SixFaceCells) { vector<S2CellId> ids; for (int face = 0; face < 6; ++face) { ids.push_back(S2CellId::FromFace(face)); } TestEncodedS2CellIdVector(ids, 8); } TEST(EncodedS2CellIdVectorTest, FourLevel10Children) { vector<S2CellId> ids; S2CellId parent = S2CellId::FromDebugString("3/012301230"); for (S2CellId id = parent.child_begin(); id != parent.child_end(); id = id.next()) { ids.push_back(id); } TestEncodedS2CellIdVector(ids, 8); } TEST(EncodedS2CellIdVectorTest, FractalS2ShapeIndexCells) { S2Testing::Fractal fractal; fractal.SetLevelForApproxMaxEdges(3 * 1024); S2Point center = s2textformat::MakePointOrDie("47.677:-122.206"); MutableS2ShapeIndex index; index.Add(make_unique<S2Loop::OwningShape>( fractal.MakeLoop(S2::GetFrame(center), S1Angle::Degrees(1)))); vector<S2CellId> ids; for (MutableS2ShapeIndex::Iterator it(&index, S2ShapeIndex::BEGIN); !it.done(); it.Next()) { ids.push_back(it.id()); } EXPECT_EQ(966, ids.size()); TestEncodedS2CellIdVector(ids, 2902); } TEST(EncodedS2CellIdVectorTest, CoveringCells) { vector<uint64> ids { 0x414a617f00000000, 0x414a61c000000000, 0x414a624000000000, 0x414a63c000000000, 0x414a647000000000, 0x414a64c000000000, 0x414a653000000000, 0x414a704000000000, 0x414a70c000000000, 0x414a714000000000, 0x414a71b000000000, 0x414a7a7c00000000, 0x414a7ac000000000, 0x414a8a4000000000, 0x414a8bc000000000, 0x414a8c4000000000, 0x414a8d7000000000, 0x414a8dc000000000, 0x414a914000000000, 0x414a91c000000000, 0x414a924000000000, 0x414a942c00000000, 0x414a95c000000000, 0x414a96c000000000, 0x414ab0c000000000, 0x414ab14000000000, 0x414ab34000000000, 0x414ab3c000000000, 0x414ab44000000000, 0x414ab4c000000000, 0x414ab6c000000000, 0x414ab74000000000, 0x414ab8c000000000, 0x414ab94000000000, 0x414aba1000000000, 0x414aba3000000000, 0x414abbc000000000, 0x414abe4000000000, 0x414abec000000000, 0x414abf4000000000, 0x46b5454000000000, 0x46b545c000000000, 0x46b5464000000000, 0x46b547c000000000, 0x46b5487000000000, 0x46b548c000000000, 0x46b5494000000000, 0x46b54a5400000000, 0x46b54ac000000000, 0x46b54b4000000000, 0x46b54bc000000000, 0x46b54c7000000000, 0x46b54c8004000000, 0x46b54ec000000000, 0x46b55ad400000000, 0x46b55b4000000000, 0x46b55bc000000000, 0x46b55c4000000000, 0x46b55c8100000000, 0x46b55dc000000000, 0x46b55e4000000000, 0x46b5604000000000, 0x46b560c000000000, 0x46b561c000000000, 0x46ca424000000000, 0x46ca42c000000000, 0x46ca43c000000000, 0x46ca444000000000, 0x46ca45c000000000, 0x46ca467000000000, 0x46ca469000000000, 0x46ca5fc000000000, 0x46ca604000000000, 0x46ca60c000000000, 0x46ca674000000000, 0x46ca679000000000, 0x46ca67f000000000, 0x46ca684000000000, 0x46ca855000000000, 0x46ca8c4000000000, 0x46ca8cc000000000, 0x46ca8e5400000000, 0x46ca8ec000000000, 0x46ca8f0100000000, 0x46ca8fc000000000, 0x46ca900400000000, 0x46ca98c000000000, 0x46ca994000000000, 0x46ca99c000000000, 0x46ca9a4000000000, 0x46ca9ac000000000, 0x46ca9bd500000000, 0x46ca9e4000000000, 0x46ca9ec000000000, 0x46caf34000000000, 0x46caf4c000000000, 0x46caf54000000000 }; EXPECT_EQ(97, ids.size()); TestEncodedS2CellIdVector(ids, 488); } } // namespace s2coding
81eef6c44bb0e8ac5eefa20592cf7986a2763788
63c17f092bf95bc9daaf92ee05f6a823623f2f9b
/src/dialog.cpp
cab5ace1b86288b25bfa8ff91790753b66585891
[]
no_license
sodiumda250/bkhdpnl
ba9d36b9b77d23c6cac004ce3c4818d19564eed4
52e628f3bc70f38bea4c6287778c3a3d765f37bf
refs/heads/master
2020-03-31T11:59:52.220401
2009-10-20T05:50:43
2009-10-20T05:50:43
3,039,672
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
8,076
cpp
dialog.cpp
/* * $Id: dialog.cpp,v 1.5 2005/05/26 04:09:08 woods Exp $ * dialog.cpp : ダイアログ用のプロシージャ定義 */ static char id[] = "$Id: dialog.cpp,v 1.5 2005/05/26 04:09:08 woods Exp $"; #include <stdio.h> #include "resource.h" #include "dialog.h" #include "bkhdpnl.h" #include "panel.h" // グローバル変数: /// 現在のインスタンス static HINSTANCE hInstance; /// 設定ダイアログの表示ヘッダ設定文字列バッファ static char *setstr; /// 設定ダイアログの表示ヘッダ設定文字列バッファの大きさ static int setsize; /// ウィンドウ自動調整有無 static int adjustwindow; // このコード モジュールに含まれる関数の前宣言: extern "C" { static LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); static LRESULT CALLBACK Setting(HWND, UINT, WPARAM, LPARAM); } static BOOL SelectFont(void); static BOOL SelectHeaderColor(void); static BOOL SelectNameColor(void); static BOOL SelectBodyColor(void); /** * @brief 設定ダイアログ表示関数 * @param hInst ダイアログが含まれるインスタンスのハンドル * @param hWnd 親ウィンドウのウィンドウハンドル * @param str 表示するヘッダ文字列の初期値(カンマ区切り) * @param size strバッファの大きさ * @param adjust ウィンドウサイズ自動調節フラグ * * 設定ダイアログを表示する。 */ int DoSetting(HINSTANCE hInst, HWND hWnd, char *str, int size, UINT *adjust) { setstr = str; setsize = size; adjustwindow = *adjust; hInstance = hInst; ::DialogBox(hInst, (LPCTSTR) IDD_SETTING, hWnd, (DLGPROC) Setting); *adjust = (adjustwindow != BST_UNCHECKED) ? 1 : 0; SaveWindowPos(szIni); return 0; } /** * @brief Aboutダイアログ表示関数 * @param hInst ダイアログが含まれるインスタンスのハンドル * @param hWnd 親ウィンドウのウィンドウハンドル * * Aboutダイアログを表示する。 */ int DoAbout(HINSTANCE hInst, HWND hWnd) { ::DialogBox(hInst, (LPCTSTR) IDD_ABOUTBOX, hWnd, (DLGPROC) About); return 0; } /** * @brief 設定ダイアログ用メッセージ ハンドラ * @param hDlg : ウィンドウハンドル * @param message : メッセージ * @param wParam : メッセージのパラメータ * @param lParam : メッセージのパラメータ * * 設定ダイアログのウィンドウメッセージを処理する。 */ static LRESULT CALLBACK Setting(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { UINT length; UINT chk; switch (message) { case WM_INITDIALOG: chk = (adjustwindow != 0) ? BST_CHECKED : BST_UNCHECKED; ::CheckDlgButton(hDlg, IDC_ADJUSTWINDOW, chk); ::SetDlgItemText(hDlg, IDC_HEADERS, setstr); return TRUE; case WM_COMMAND: switch (LOWORD(wParam)) { case IDOK: length = ::GetDlgItemText(hDlg, IDC_HEADERS, setstr, setsize); adjustwindow = ::IsDlgButtonChecked(hDlg, IDC_ADJUSTWINDOW); ::EndDialog(hDlg, LOWORD(wParam)); return TRUE; break; case IDCANCEL: ::EndDialog(hDlg, LOWORD(wParam)); return TRUE; break; case IDC_ABOUT: DoAbout(hInstance, hDlg); break; case IDC_FONT: SelectFont(); break; case IDC_HEADERCOLOR: SelectHeaderColor(); break; case IDC_NAMECOLOR: SelectNameColor(); break; case IDC_BODYCOLOR: SelectBodyColor(); break; } break; default: break; } return FALSE; } /** * @brief Aboutダイアログメッセージ ハンドラ * @param hDlg : ウィンドウハンドル * @param message : メッセージ * @param wParam : メッセージのパラメータ * @param lParam : メッセージのパラメータ * * Aboutダイアログのウィンドウメッセージを処理する。 */ static LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) { ::EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; } return FALSE; } /** * @brief フォント選択ダイアログ表示 * @retval true フォントが選択された * @retval false フォントが選択されていない * * iniファイルからフォント情報を取得して、 * それを初期値としてフォント選択コモンダイアログを表示し、 * コモンダイアログで設定された情報をiniファイルに設定する。 */ static BOOL SelectFont(void) { BOOL ret; CHOOSEFONT font; LOGFONT logfont; memset(&font, 0, sizeof(font)); LoadFont(&logfont, szIni); font.lStructSize = sizeof(font); font.lpLogFont = &logfont; font.hInstance = hInstance; font.Flags = CF_SCREENFONTS | CF_NOVERTFONTS | CF_INITTOLOGFONTSTRUCT ; ret = ::ChooseFont(&font); if (ret) { SaveFont(&logfont, szIni); } return ret; } /** * @brief ヘッダ表示色選択ダイアログ表示 * @retval true 表示色が選択された * @retval false 表示色が選択されていない * * iniファイルからヘッダ表示色情報を取得して、 * それを初期値として表示色選択コモンダイアログを表示し、 * コモンダイアログで設定された情報をiniファイルに設定する。 */ static BOOL SelectHeaderColor(void) { BOOL ret; CHOOSECOLOR color; COLORREF cust[16]; memset(&color, 0, sizeof(color)); for (size_t i = 0; i < sizeof(cust) / sizeof(cust[0]); i++) { cust[i] = 0x00ffffff; } color.lStructSize = sizeof(color); color.rgbResult = LoadHeaderColor(szIni); color.lpCustColors = (COLORREF*)cust; color.Flags = CC_FULLOPEN | CC_RGBINIT; ret = ::ChooseColor(&color); if (ret) { SaveHeaderColor(color.rgbResult, szIni); } return ret; } /** * @brief ヘッダ名表示色選択ダイアログ表示 * @retval true 表示色が選択された * @retval false 表示色が選択されていない * * iniファイルからヘッダ名表示色情報を取得して、 * それを初期値として表示色選択コモンダイアログを表示し、 * コモンダイアログで設定された情報をiniファイルに設定する。 */ static BOOL SelectNameColor(void) { BOOL ret; CHOOSECOLOR color; COLORREF cust[16]; memset(&color, 0, sizeof(color)); for (size_t i = 0; i < sizeof(cust) / sizeof(cust[0]); i++) { cust[i] = 0x00ffffff; } color.lStructSize = sizeof(color); color.rgbResult = LoadNameColor(szIni); color.lpCustColors = (COLORREF*)cust; color.Flags = CC_FULLOPEN | CC_RGBINIT; ret = ::ChooseColor(&color); if (ret) { SaveNameColor(color.rgbResult, szIni); } return ret; } /** * @brief 背景色選択ダイアログ表示 * @retval true 背景色が選択された * @retval false 背景色が選択されていない * * iniファイルから背景色情報を取得して、 * それを初期値として表示色選択コモンダイアログを表示し、 * コモンダイアログで設定された情報をiniファイルに設定する。 */ static BOOL SelectBodyColor(void) { BOOL ret; CHOOSECOLOR color; COLORREF cust[16]; memset(&color, 0, sizeof(color)); for (size_t i = 0; i < sizeof(cust) / sizeof(cust[0]); i++) { cust[i] = 0x00ffffff; } color.lStructSize = sizeof(color); color.rgbResult = LoadBodyColor(szIni); color.lpCustColors = (COLORREF*)cust; color.Flags = CC_FULLOPEN | CC_RGBINIT; ret = ::ChooseColor(&color); if (ret) { SaveBodyColor(color.rgbResult, szIni); } return ret; }
22e7a48b8ae3f82cdabb525877e69de3c4763c62
d09edf43ce35f205497d9aac1711848a27616aaa
/source/TeamContextualMenu.cpp
ca7c83c2f611fdf60500fa9d4fedb5c8e156cec6
[]
no_license
HaikuArchives/XRayDock
522bf4f58f81319162bd1d734fcf0e07df944815
d1d386c3152aff620d0a92b7ced43584f4d4aa89
refs/heads/master
2021-01-20T09:01:29.973778
2014-08-07T17:29:31
2014-08-07T17:29:31
12,199,630
1
0
null
null
null
null
UTF-8
C++
false
false
1,225
cpp
TeamContextualMenu.cpp
/* TeamContextualMenu.cpp par etno 2008 */ #include "TeamContextualMenu.h" #ifndef XDOCK_APP_H #include "XDockApp.h" #endif TeamContextualMenu::TeamContextualMenu() : BPopUpMenu("Team") { minimize_all = new BMenuItem("Minimize All The Team", new BMessage(DOCK_MINIMIZE_ALL)); bring_all_to_front = new BMenuItem("Bring All The Team To Front", new BMessage(DOCK_BRING_FRONT_ALL)); close = new BMenuItem("Close All This Team", new BMessage(DOCK_CLOSE_TEAM)); close_active = new BMenuItem("Close This Window (Experimental)", new BMessage(CLOSE_ACTIVE_WINDOW)); hide_all = new BMenuItem("Clean The Desktop", new BMessage(DOCK_CLEAN)); hide_all_except = new BMenuItem("Hide All Except", new BMessage(DOCK_CLEAN_EXCEPT)); //move_left = new BMenuItem("Move to Left", new BMessage(DOCK_MOVE_LEFT)); AddItem(hide_all); AddItem(hide_all_except); AddSeparatorItem(); AddItem(minimize_all); AddItem(bring_all_to_front); AddItem(close); AddItem(close_active); minimize_all->SetTarget(((XDockApplication*)be_app)->backWindow); bring_all_to_front->SetTarget(((XDockApplication*)be_app)->backWindow); close->SetTarget(((XDockApplication*)be_app)->backWindow); } TeamContextualMenu::~TeamContextualMenu() { }
c8dc435d5fda2fca34541082693d1746f9fdfd31
e5f4f37d941ceb8145d65f92028cc54658b1ac01
/Code/Engine/Core/World/Implementation/WorldData.cpp
8969646ef38bcf351d4d79ee719857a313e7f139
[ "MIT" ]
permissive
ezEngine/ezEngine
19983d2733a5409fb2665c6c3a0a575dadcefb50
c46e3b4b2cd46798e4abb4938fbca281c054b039
refs/heads/dev
2023-09-06T02:17:28.152665
2023-09-05T18:25:43
2023-09-05T18:25:43
18,179,848
1,050
165
MIT
2023-09-14T21:44:39
2014-03-27T15:02:16
C++
UTF-8
C++
false
false
13,226
cpp
WorldData.cpp
#include <Core/CorePCH.h> #include <Core/ResourceManager/ResourceManager.h> #include <Core/World/Implementation/WorldData.h> #include <Core/World/SpatialSystem_RegularGrid.h> #include <Core/World/World.h> #include <Foundation/Time/DefaultTimeStepSmoothing.h> namespace ezInternal { class DefaultCoordinateSystemProvider : public ezCoordinateSystemProvider { public: DefaultCoordinateSystemProvider() : ezCoordinateSystemProvider(nullptr) { } virtual void GetCoordinateSystem(const ezVec3& vGlobalPosition, ezCoordinateSystem& out_coordinateSystem) const override { out_coordinateSystem.m_vForwardDir = ezVec3(1.0f, 0.0f, 0.0f); out_coordinateSystem.m_vRightDir = ezVec3(0.0f, 1.0f, 0.0f); out_coordinateSystem.m_vUpDir = ezVec3(0.0f, 0.0f, 1.0f); } }; //////////////////////////////////////////////////////////////////////////////////////////////////// void WorldData::UpdateTask::Execute() { ezWorldModule::UpdateContext context; context.m_uiFirstComponentIndex = m_uiStartIndex; context.m_uiComponentCount = m_uiCount; m_Function(context); } //////////////////////////////////////////////////////////////////////////////////////////////////// WorldData::WorldData(ezWorldDesc& desc) : m_sName(desc.m_sName) , m_Allocator(desc.m_sName, ezFoundation::GetDefaultAllocator()) , m_AllocatorWrapper(&m_Allocator) , m_BlockAllocator(desc.m_sName, &m_Allocator) , m_StackAllocator(desc.m_sName, ezFoundation::GetAlignedAllocator()) , m_ObjectStorage(&m_BlockAllocator, &m_Allocator) , m_MaxInitializationTimePerFrame(desc.m_MaxComponentInitializationTimePerFrame) , m_Clock(desc.m_sName) , m_WriteThreadID((ezThreadID)0) , m_bReportErrorWhenStaticObjectMoves(desc.m_bReportErrorWhenStaticObjectMoves) , m_ReadMarker(*this) , m_WriteMarker(*this) { m_AllocatorWrapper.Reset(); if (desc.m_uiRandomNumberGeneratorSeed == 0) { m_Random.InitializeFromCurrentTime(); } else { m_Random.Initialize(desc.m_uiRandomNumberGeneratorSeed); } // insert dummy entry to save some checks m_Objects.Insert(nullptr); #if EZ_ENABLED(EZ_GAMEOBJECT_VELOCITY) EZ_CHECK_AT_COMPILETIME(sizeof(ezGameObject::TransformationData) == 240); #else EZ_CHECK_AT_COMPILETIME(sizeof(ezGameObject::TransformationData) == 192); #endif EZ_CHECK_AT_COMPILETIME(sizeof(ezGameObject) == 128); EZ_CHECK_AT_COMPILETIME(sizeof(QueuedMsgMetaData) == 16); EZ_CHECK_AT_COMPILETIME(EZ_COMPONENT_TYPE_INDEX_BITS <= sizeof(ezWorldModuleTypeId) * 8); auto pDefaultInitBatch = EZ_NEW(&m_Allocator, InitBatch, &m_Allocator, "Default", true); pDefaultInitBatch->m_bIsReady = true; m_InitBatches.Insert(pDefaultInitBatch); m_pDefaultInitBatch = pDefaultInitBatch; m_pCurrentInitBatch = pDefaultInitBatch; m_pSpatialSystem = std::move(desc.m_pSpatialSystem); m_pCoordinateSystemProvider = desc.m_pCoordinateSystemProvider; if (m_pSpatialSystem == nullptr && desc.m_bAutoCreateSpatialSystem) { m_pSpatialSystem = EZ_NEW(ezFoundation::GetAlignedAllocator(), ezSpatialSystem_RegularGrid); } if (m_pCoordinateSystemProvider == nullptr) { m_pCoordinateSystemProvider = EZ_NEW(&m_Allocator, DefaultCoordinateSystemProvider); } if (m_pTimeStepSmoothing == nullptr) { m_pTimeStepSmoothing = EZ_NEW(&m_Allocator, ezDefaultTimeStepSmoothing); } m_Clock.SetTimeStepSmoothing(m_pTimeStepSmoothing.Borrow()); ezResourceManager::GetResourceEvents().AddEventHandler(ezMakeDelegate(&WorldData::ResourceEventHandler, this)); } WorldData::~WorldData() { ezResourceManager::GetResourceEvents().RemoveEventHandler(ezMakeDelegate(&WorldData::ResourceEventHandler, this)); } void WorldData::Clear() { // allow reading and writing during destruction m_WriteThreadID = ezThreadUtils::GetCurrentThreadID(); m_iReadCounter.Increment(); // deactivate all objects and components before destroying them for (auto it = m_ObjectStorage.GetIterator(); it.IsValid(); it.Next()) { it->SetActiveFlag(false); } // deinitialize all modules before we invalidate the world. Components can still access the world during deinitialization. for (ezWorldModule* pModule : m_Modules) { if (pModule != nullptr) { pModule->Deinitialize(); } } // now delete all modules for (ezWorldModule* pModule : m_Modules) { if (pModule != nullptr) { EZ_DELETE(&m_Allocator, pModule); } } m_Modules.Clear(); // this deletes the ezGameObject instances m_ObjectStorage.Clear(); // delete all transformation data for (ezUInt32 uiHierarchyIndex = 0; uiHierarchyIndex < HierarchyType::COUNT; ++uiHierarchyIndex) { Hierarchy& hierarchy = m_Hierarchies[uiHierarchyIndex]; for (ezUInt32 i = hierarchy.m_Data.GetCount(); i-- > 0;) { Hierarchy::DataBlockArray* blocks = hierarchy.m_Data[i]; for (ezUInt32 j = blocks->GetCount(); j-- > 0;) { m_BlockAllocator.DeallocateBlock((*blocks)[j]); } EZ_DELETE(&m_Allocator, blocks); } hierarchy.m_Data.Clear(); } // delete task storage m_UpdateTasks.Clear(); // delete queued messages for (ezUInt32 i = 0; i < ezObjectMsgQueueType::COUNT; ++i) { { MessageQueue& queue = m_MessageQueues[i]; // The messages in this queue are allocated through a frame allocator and thus mustn't (and don't need to be) deallocated queue.Clear(); } { MessageQueue& queue = m_TimedMessageQueues[i]; while (!queue.IsEmpty()) { MessageQueue::Entry& entry = queue.Peek(); EZ_DELETE(&m_Allocator, entry.m_pMessage); queue.Dequeue(); } } } } ezGameObject::TransformationData* WorldData::CreateTransformationData(bool bDynamic, ezUInt32 uiHierarchyLevel) { Hierarchy& hierarchy = m_Hierarchies[GetHierarchyType(bDynamic)]; while (uiHierarchyLevel >= hierarchy.m_Data.GetCount()) { hierarchy.m_Data.PushBack(EZ_NEW(&m_Allocator, Hierarchy::DataBlockArray, &m_Allocator)); } Hierarchy::DataBlockArray& blocks = *hierarchy.m_Data[uiHierarchyLevel]; Hierarchy::DataBlock* pBlock = nullptr; if (!blocks.IsEmpty()) { pBlock = &blocks.PeekBack(); } if (pBlock == nullptr || pBlock->IsFull()) { blocks.PushBack(m_BlockAllocator.AllocateBlock<ezGameObject::TransformationData>()); pBlock = &blocks.PeekBack(); } return pBlock->ReserveBack(); } void WorldData::DeleteTransformationData(bool bDynamic, ezUInt32 uiHierarchyLevel, ezGameObject::TransformationData* pData) { Hierarchy& hierarchy = m_Hierarchies[GetHierarchyType(bDynamic)]; Hierarchy::DataBlockArray& blocks = *hierarchy.m_Data[uiHierarchyLevel]; Hierarchy::DataBlock& lastBlock = blocks.PeekBack(); const ezGameObject::TransformationData* pLast = lastBlock.PopBack(); if (pData != pLast) { ezMemoryUtils::Copy(pData, pLast, 1); pData->m_pObject->m_pTransformationData = pData; // fix parent transform data for children as well auto it = pData->m_pObject->GetChildren(); while (it.IsValid()) { auto pTransformData = it->m_pTransformationData; pTransformData->m_pParentData = pData; it.Next(); } } if (lastBlock.IsEmpty()) { m_BlockAllocator.DeallocateBlock(lastBlock); blocks.PopBack(); } } void WorldData::TraverseBreadthFirst(VisitorFunc& func) { struct Helper { EZ_ALWAYS_INLINE static ezVisitorExecution::Enum Visit(ezGameObject::TransformationData* pData, void* pUserData) { return (*static_cast<VisitorFunc*>(pUserData))(pData->m_pObject); } }; const ezUInt32 uiMaxHierarchyLevel = ezMath::Max(m_Hierarchies[HierarchyType::Static].m_Data.GetCount(), m_Hierarchies[HierarchyType::Dynamic].m_Data.GetCount()); for (ezUInt32 uiHierarchyLevel = 0; uiHierarchyLevel < uiMaxHierarchyLevel; ++uiHierarchyLevel) { for (ezUInt32 uiHierarchyIndex = 0; uiHierarchyIndex < HierarchyType::COUNT; ++uiHierarchyIndex) { Hierarchy& hierarchy = m_Hierarchies[uiHierarchyIndex]; if (uiHierarchyLevel < hierarchy.m_Data.GetCount()) { ezVisitorExecution::Enum execution = TraverseHierarchyLevel<Helper>(*hierarchy.m_Data[uiHierarchyLevel], &func); EZ_ASSERT_DEV(execution != ezVisitorExecution::Skip, "Skip is not supported when using breadth first traversal"); if (execution == ezVisitorExecution::Stop) return; } } } } void WorldData::TraverseDepthFirst(VisitorFunc& func) { struct Helper { EZ_ALWAYS_INLINE static ezVisitorExecution::Enum Visit(ezGameObject::TransformationData* pData, void* pUserData) { return WorldData::TraverseObjectDepthFirst(pData->m_pObject, *static_cast<VisitorFunc*>(pUserData)); } }; for (ezUInt32 uiHierarchyIndex = 0; uiHierarchyIndex < HierarchyType::COUNT; ++uiHierarchyIndex) { Hierarchy& hierarchy = m_Hierarchies[uiHierarchyIndex]; if (!hierarchy.m_Data.IsEmpty()) { if (TraverseHierarchyLevel<Helper>(*hierarchy.m_Data[0], &func) == ezVisitorExecution::Stop) return; } } } // static ezVisitorExecution::Enum WorldData::TraverseObjectDepthFirst(ezGameObject* pObject, VisitorFunc& func) { ezVisitorExecution::Enum execution = func(pObject); if (execution == ezVisitorExecution::Stop) return ezVisitorExecution::Stop; if (execution != ezVisitorExecution::Skip) // skip all children { for (auto it = pObject->GetChildren(); it.IsValid(); ++it) { if (TraverseObjectDepthFirst(it, func) == ezVisitorExecution::Stop) return ezVisitorExecution::Stop; } } return ezVisitorExecution::Continue; } void WorldData::UpdateGlobalTransforms() { struct UserData { ezSpatialSystem* m_pSpatialSystem; ezUInt32 m_uiUpdateCounter; }; UserData userData; userData.m_pSpatialSystem = m_pSpatialSystem.Borrow(); userData.m_uiUpdateCounter = m_uiUpdateCounter; struct RootLevel { EZ_ALWAYS_INLINE static ezVisitorExecution::Enum Visit(ezGameObject::TransformationData* pData, void* pUserData0) { auto pUserData = static_cast<const UserData*>(pUserData0); WorldData::UpdateGlobalTransform(pData, pUserData->m_uiUpdateCounter); return ezVisitorExecution::Continue; } }; struct WithParent { EZ_ALWAYS_INLINE static ezVisitorExecution::Enum Visit(ezGameObject::TransformationData* pData, void* pUserData0) { auto pUserData = static_cast<const UserData*>(pUserData0); WorldData::UpdateGlobalTransformWithParent(pData, pUserData->m_uiUpdateCounter); return ezVisitorExecution::Continue; } }; struct RootLevelWithSpatialData { EZ_ALWAYS_INLINE static ezVisitorExecution::Enum Visit(ezGameObject::TransformationData* pData, void* pUserData0) { auto pUserData = static_cast<UserData*>(pUserData0); WorldData::UpdateGlobalTransformAndSpatialData(pData, pUserData->m_uiUpdateCounter, *pUserData->m_pSpatialSystem); return ezVisitorExecution::Continue; } }; struct WithParentWithSpatialData { EZ_ALWAYS_INLINE static ezVisitorExecution::Enum Visit(ezGameObject::TransformationData* pData, void* pUserData0) { auto pUserData = static_cast<UserData*>(pUserData0); WorldData::UpdateGlobalTransformWithParentAndSpatialData(pData, pUserData->m_uiUpdateCounter, *pUserData->m_pSpatialSystem); return ezVisitorExecution::Continue; } }; Hierarchy& hierarchy = m_Hierarchies[HierarchyType::Dynamic]; if (!hierarchy.m_Data.IsEmpty()) { auto dataPtr = hierarchy.m_Data.GetData(); // If we have no spatial system, we perform multi-threaded update as we do not // have to acquire a write lock in the process. if (m_pSpatialSystem == nullptr) { TraverseHierarchyLevelMultiThreaded<RootLevel>(*dataPtr[0], &userData); for (ezUInt32 i = 1; i < hierarchy.m_Data.GetCount(); ++i) { TraverseHierarchyLevelMultiThreaded<WithParent>(*dataPtr[i], &userData); } } else { TraverseHierarchyLevel<RootLevelWithSpatialData>(*dataPtr[0], &userData); for (ezUInt32 i = 1; i < hierarchy.m_Data.GetCount(); ++i) { TraverseHierarchyLevel<WithParentWithSpatialData>(*dataPtr[i], &userData); } } } } void WorldData::ResourceEventHandler(const ezResourceEvent& e) { if (e.m_Type != ezResourceEvent::Type::ResourceContentUnloading) return; ezTypelessResourceHandle hResource(e.m_pResource); if (m_ReloadFunctions.Contains(hResource)) { m_NeedReload.Insert(hResource); } } } // namespace ezInternal EZ_STATICLINK_FILE(Core, Core_World_Implementation_WorldData);
fec4b44e97061367615489d23eb6b22f7a966dad
d974ca6744ae597b8c7a705655482ff727960f0d
/practice/networks.cpp
c867d270add787d80c385adc833512ae8941bf0b
[]
no_license
BenzhaminKim/LeetCode_Algorithm
9fd210e4f4afdd16bd67d2d1e3caebef8792a845
09410f71d4a78f10552ad43f8b278fd20c7b936a
refs/heads/main
2023-04-09T02:01:37.599339
2021-04-19T13:58:17
2021-04-19T13:58:17
333,283,178
0
0
null
null
null
null
UTF-8
C++
false
false
983
cpp
networks.cpp
#include <string> #include <vector> #include <string.h> #include <iostream> using namespace std; /* 1 1 0 1 1 0 0 0 1 1 1 0 1 1 1 0 1 1 */ int solution(int n, vector<vector<int>> computers) { int answer = 0; int net[n]; int networks = 0; memset(net,0,sizeof(net)); vector<int> stack; for(int i=0; i<n; ++i){ for(int j=0; j<n; ++j){ if(computers[i][j] == 1){ computers[j][i] = 1; } } } for(int i=0; i<n; ++i){ if(net[i] == 0){ networks++; net[i] = 1; stack.push_back(i); } while(!stack.empty()){ int current = stack.back(); stack.pop_back(); for(int k=0; k<n; ++k){ if(net[k] == 0 && computers[current][k] == 1){ stack.push_back(k); net[k] = 1; } } } } return networks; }
7fe0bd26adc6dc5e66b9d89592568415c5b8cc7f
f55a97d7e0528cc67a9b849d546541c724652f80
/src/MeshBuilder.cpp
73b467e22e363d2109ef44d88ecfb0f5e64ed147
[]
no_license
Drakoskai/vulkan-renderer
611fa775dc77eac9e271d6a806a89ba1b5491b05
9d094f9bd137865d34dcd5ebb19a548fa8b43367
refs/heads/master
2020-12-30T12:44:55.001038
2017-10-04T01:19:59
2017-10-04T01:19:59
91,357,040
1
0
null
null
null
null
UTF-8
C++
false
false
18,134
cpp
MeshBuilder.cpp
#include "MeshBuilder.h" #include "Util.h" void PreMesh::SolveAABB() { const float maxValue = 99999999.0f; aabbmin = Vec3(maxValue, maxValue, maxValue); aabbmax = Vec3(-maxValue, -maxValue, -maxValue); for(size_t v = 0; v < vertex.size(); ++v) { const Vec3& pos = vertex[v]; if(pos.x > maxValue || pos.y > maxValue || pos.z > maxValue) { //std::cerr << "AABB's max value is too low in file " << __FILE__ << " near line " << __LINE__ << std::endl; //std::cerr << "Vertex " << v << ": " << pos.x << ", " << pos.y << ", " << pos.z << std::endl; } if(pos.x < -maxValue || pos.y < -maxValue || pos.z < -maxValue) { //std::cerr << "AABB's min value is too high in file " << __FILE__ << " near line " << __LINE__ << std::endl; //std::cerr << "Vertex " << v << ": " << pos.x << ", " << pos.y << ", " << pos.z << std::endl; } aabbmin = glm::min<Vec3>(aabbmin, pos); aabbmax = glm::max<Vec3>(aabbmax, pos); } } void PreMesh::SolveVertexNormals() { vnormal.resize(vertex.size()); for(size_t vertInd = 0; vertInd < vertex.size(); ++vertInd) { Vec3 normal; for(size_t faceInd = 0; faceInd < face.size(); ++faceInd) { face[faceInd].vnIdx[0] = face[faceInd].vIdx[0]; face[faceInd].vnIdx[1] = face[faceInd].vIdx[1]; face[faceInd].vnIdx[2] = face[faceInd].vIdx[2]; const uint16_t& faceA = face[faceInd].vIdx[0]; const uint16_t& faceB = face[faceInd].vIdx[1]; const uint16_t& faceC = face[faceInd].vIdx[2]; const Vec3 va = vertex[faceA]; Vec3 vb = vertex[faceB] - va; const Vec3 vc = vertex[faceC] - va; vb = normalize(cross(vb, vc)); if(face[faceInd].vIdx[0] == vertInd || face[faceInd].vIdx[1] == vertInd || face[faceInd].vIdx[2] == vertInd) { normal = normal + vb; } } vnormal[vertInd] = normalize(normal); } } void PreMesh::Interleave() { ObjVertIdx newFace; for(size_t f = 0; f < face.size(); ++f) { Vec3 tvertex = vertex[face[f].vIdx[0]]; Vec3 tnormal = vnormal[face[f].vnIdx[0]]; Vec2 ttcoord = uv.empty() ? Vec2() : uv[face[f].uvIdx[0]]; Vec4 tcolor = colors.empty() ? Vec4(0, 0, 0, 1) : colors[face[f].cIdx[0]]; bool found = false; for(size_t i = 0; i < m_indices.size(); ++i) { if(IsEqual(m_interleavedVerts[m_indices[i].a].position, tvertex) && IsEqual(m_interleavedVerts[m_indices[i].a].normal, tnormal) && IsEqual(m_interleavedVerts[m_indices[i].a].texCoord, ttcoord) && IsEqual(m_interleavedVerts[m_indices[i].a].color, tcolor)) { found = true; newFace.a = m_indices[i].a; break; } } if(!found) { VertexPTNTC newVertex; newVertex.position = tvertex; newVertex.normal = tnormal; newVertex.texCoord = ttcoord; newVertex.color = tcolor; m_interleavedVerts.push_back(newVertex); newFace.a = static_cast<uint16_t>(m_interleavedVerts.size() - 1); } tvertex = vertex[face[f].vIdx[1]]; tnormal = vnormal[face[f].vnIdx[1]]; ttcoord = uv.empty() ? Vec2() : uv[face[f].uvIdx[1]]; tcolor = colors.empty() ? Vec4(0, 0, 0, 1) : colors[face[f].cIdx[1]]; found = false; for(size_t i = 0; i < m_indices.size(); ++i) { if(IsEqual(m_interleavedVerts[m_indices[i].b].position, tvertex) && IsEqual(m_interleavedVerts[m_indices[i].b].normal, tnormal) && IsEqual(m_interleavedVerts[m_indices[i].b].texCoord, ttcoord) && IsEqual(m_interleavedVerts[m_indices[i].b].color, tcolor)) { found = true; newFace.b = m_indices[i].b; break; } } if(!found) { VertexPTNTC newVertex; newVertex.position = tvertex; newVertex.normal = tnormal; newVertex.texCoord = ttcoord; newVertex.color = tcolor; m_interleavedVerts.push_back(newVertex); newFace.b = static_cast<uint16_t>(m_interleavedVerts.size() - 1); } tvertex = vertex[face[f].vIdx[2]]; tnormal = vnormal[face[f].vnIdx[2]]; ttcoord = uv.empty() ? Vec2() : uv[face[f].uvIdx[2]]; tcolor = colors.empty() ? Vec4(0, 0, 0, 1) : colors[face[f].cIdx[2]]; found = false; for(size_t i = 0; i < m_indices.size(); ++i) { if(IsEqual(m_interleavedVerts[m_indices[i].c].position, tvertex) && IsEqual(m_interleavedVerts[m_indices[i].c].normal, tnormal) && IsEqual(m_interleavedVerts[m_indices[i].c].texCoord, ttcoord) && IsEqual(m_interleavedVerts[m_indices[i].c].color, tcolor)) { found = true; newFace.c = m_indices[i].c; break; } } if(!found) { VertexPTNTC newVertex; newVertex.position = tvertex; newVertex.normal = tnormal; newVertex.texCoord = ttcoord; newVertex.color = tcolor; m_interleavedVerts.push_back(newVertex); newFace.c = static_cast<uint16_t>(m_interleavedVerts.size() - 1); } m_indices.push_back(newFace); } if(m_interleavedVerts.size() > 65536) { throw std::runtime_error("has more than 65536 vertices!"); } } void PreMesh::OptimizeFaces() { m_verticesWithCachedata.resize(m_interleavedVerts.size()); for(size_t i = 0; i < m_interleavedVerts.size(); ++i) { m_verticesWithCachedata[i].color = m_interleavedVerts[i].color; m_verticesWithCachedata[i].texCoord = m_interleavedVerts[i].texCoord; m_verticesWithCachedata[i].position = m_interleavedVerts[i].position; m_verticesWithCachedata[i].tangent = m_interleavedVerts[i].tangent; m_verticesWithCachedata[i].normal = m_interleavedVerts[i].normal; } // Face count per vertex for(size_t i = 0; i < m_indices.size(); ++i) { ++m_verticesWithCachedata[m_indices[i].a].data.activeFaceListSize; ++m_verticesWithCachedata[m_indices[i].b].data.activeFaceListSize; ++m_verticesWithCachedata[m_indices[i].c].data.activeFaceListSize; } std::vector<uint32_t> activeFaceList; const uint16_t kEvictedCacheIndex = std::numeric_limits<uint16_t>::max(); { // allocate face list per vertex uint32_t curActiveFaceListPos = 0; for(size_t i = 0; i < m_verticesWithCachedata.size(); ++i) { VertexPTNTCWithData& vertexData = m_verticesWithCachedata[i]; vertexData.data.cachePos0 = kEvictedCacheIndex; vertexData.data.cachePos1 = kEvictedCacheIndex; vertexData.data.activeFaceListStart = curActiveFaceListPos; curActiveFaceListPos += vertexData.data.activeFaceListSize; vertexData.data.score = FindVertexScore(vertexData.data.activeFaceListSize, vertexData.data.cachePos0, lruCacheSize); vertexData.data.activeFaceListSize = 0; } activeFaceList.resize(curActiveFaceListPos); } for(uint32_t i = 0; i < static_cast<uint32_t>(m_indices.size()); ++i) { uint16_t index = m_indices[i].a; VertexPTNTCWithData& vertexDataA = m_verticesWithCachedata[index]; activeFaceList[vertexDataA.data.activeFaceListStart + vertexDataA.data.activeFaceListSize] = i; ++vertexDataA.data.activeFaceListSize; index = m_indices[i].b; VertexPTNTCWithData& vertexDataB = m_verticesWithCachedata[index]; activeFaceList[vertexDataB.data.activeFaceListStart + vertexDataB.data.activeFaceListSize] = i; ++vertexDataB.data.activeFaceListSize; index = m_indices[i].c; VertexPTNTCWithData& vertexDataC = m_verticesWithCachedata[index]; activeFaceList[vertexDataC.data.activeFaceListStart + vertexDataC.data.activeFaceListSize] = i; ++vertexDataC.data.activeFaceListSize; } std::vector<uint8_t> processedFaceList; processedFaceList.resize(m_indices.size()); uint16_t vertexCacheBuffer[(MaxVertexCacheSize + 3) * 2]; uint16_t* cache0 = vertexCacheBuffer; uint16_t* cache1 = vertexCacheBuffer + (MaxVertexCacheSize + 3); uint16_t entriesInCache0 = 0; uint32_t bestFace = 0; float bestScore = -1.f; const float maxValenceScore = FindVertexScore(1, kEvictedCacheIndex, lruCacheSize) * 3.0f; m_newIndexList.resize(m_indices.size()); for(uint32_t i = 0; i < m_indices.size(); ++i) { if(bestScore < 0.f) { for(uint32_t j = 0; j < m_indices.size(); ++j) { if(processedFaceList[j] == 0) { uint32_t fface = j; float faceScore = 0.f; uint16_t indexA = m_indices[fface].a; VertexPTNTCWithData& vertexDataA = m_verticesWithCachedata[indexA]; assert(vertexDataA.data.activeFaceListSize > 0); assert(vertexDataA.data.cachePos0 >= lruCacheSize); faceScore += vertexDataA.data.score; uint16_t indexB = m_indices[fface].b; VertexPTNTCWithData& vertexDataB = m_verticesWithCachedata[indexB]; assert(vertexDataB.data.activeFaceListSize > 0); assert(vertexDataB.data.cachePos0 >= lruCacheSize); faceScore += vertexDataB.data.score; uint16_t indexC = m_indices[fface].c; VertexPTNTCWithData& vertexDataC = m_verticesWithCachedata[indexC]; assert(vertexDataC.data.activeFaceListSize > 0); assert(vertexDataC.data.cachePos0 >= lruCacheSize); faceScore += vertexDataC.data.score; if(faceScore > bestScore) { bestScore = faceScore; bestFace = fface; assert(bestScore <= maxValenceScore); if(bestScore >= maxValenceScore) { break; } } } } assert(bestScore >= 0.f); } processedFaceList[bestFace] = 1; uint16_t entriesInCache1 = 0; { uint16_t indexA = m_indices[bestFace].a; m_newIndexList[i].a = indexA; VertexPTNTCWithData& vertexData = m_verticesWithCachedata[indexA]; bool skip = false; if(vertexData.data.cachePos1 >= entriesInCache1) { vertexData.data.cachePos1 = entriesInCache1; cache1[entriesInCache1++] = indexA; if(vertexData.data.activeFaceListSize == 1) { --vertexData.data.activeFaceListSize; skip = true; } } if(!skip) { assert(vertexData.data.activeFaceListSize > 0); uint32_t* begin = &activeFaceList[vertexData.data.activeFaceListStart]; uint32_t* end = &activeFaceList[vertexData.data.activeFaceListStart + vertexData.data.activeFaceListSize]; uint32_t* it = std::find(begin, end, bestFace); assert(it != end); std::swap(*it, *(end - 1)); --vertexData.data.activeFaceListSize; vertexData.data.score = FindVertexScore(vertexData.data.activeFaceListSize, vertexData.data.cachePos1, lruCacheSize); } } { uint16_t indexB = m_indices[bestFace].b; m_newIndexList[i].b = indexB; VertexPTNTCWithData& vertexData = m_verticesWithCachedata[indexB]; bool skip = false; if(vertexData.data.cachePos1 >= entriesInCache1) { vertexData.data.cachePos1 = entriesInCache1; cache1[entriesInCache1++] = indexB; if(vertexData.data.activeFaceListSize == 1) { --vertexData.data.activeFaceListSize; skip = true; } } if(!skip) { assert(vertexData.data.activeFaceListSize > 0); uint32_t* begin = &activeFaceList[vertexData.data.activeFaceListStart]; uint32_t* end = &activeFaceList[vertexData.data.activeFaceListStart + vertexData.data.activeFaceListSize]; auto it = std::find(begin, end, bestFace); assert(it != end); std::swap(*it, *(end - 1)); --vertexData.data.activeFaceListSize; vertexData.data.score = FindVertexScore(vertexData.data.activeFaceListSize, vertexData.data.cachePos1, lruCacheSize); } } { uint16_t indexC = m_indices[bestFace].c; m_newIndexList[i].c = indexC; VertexPTNTCWithData& vertexData = m_verticesWithCachedata[indexC]; bool skip = false; if(vertexData.data.cachePos1 >= entriesInCache1) { vertexData.data.cachePos1 = entriesInCache1; cache1[entriesInCache1++] = indexC; if(vertexData.data.activeFaceListSize == 1) { --vertexData.data.activeFaceListSize; skip = true; } } if(!skip) { assert(vertexData.data.activeFaceListSize > 0); uint32_t* begin = &activeFaceList[vertexData.data.activeFaceListStart]; uint32_t* end = &activeFaceList[vertexData.data.activeFaceListStart + vertexData.data.activeFaceListSize]; uint32_t* it = std::find(begin, end, bestFace); assert(it != end); std::swap(*it, *(end - 1)); --vertexData.data.activeFaceListSize; vertexData.data.score = FindVertexScore(vertexData.data.activeFaceListSize, vertexData.data.cachePos1, lruCacheSize); } } for(uint32_t c0 = 0; c0 < entriesInCache0; ++c0) { uint16_t index = cache0[c0]; VertexPTNTCWithData& vertexData = m_verticesWithCachedata[index]; if(vertexData.data.cachePos1 >= entriesInCache1) { vertexData.data.cachePos1 = entriesInCache1; cache1[entriesInCache1++] = index; vertexData.data.score = FindVertexScore(vertexData.data.activeFaceListSize, vertexData.data.cachePos1, lruCacheSize); } } bestScore = -1.f; for(uint32_t c1 = 0; c1 < entriesInCache1; ++c1) { uint16_t index = cache1[c1]; VertexPTNTCWithData& vertexData = m_verticesWithCachedata[index]; vertexData.data.cachePos0 = vertexData.data.cachePos1; vertexData.data.cachePos1 = kEvictedCacheIndex; for(uint32_t j = 0; j < vertexData.data.activeFaceListSize; ++j) { uint32_t fface = activeFaceList[vertexData.data.activeFaceListStart + j]; float faceScore = 0.f; uint16_t faceIndexA = m_indices[fface].a; VertexPTNTCWithData& faceVertexDataA = m_verticesWithCachedata[faceIndexA]; faceScore += faceVertexDataA.data.score; uint16_t faceIndexB = m_indices[fface].b; VertexPTNTCWithData& faceVertexDataB = m_verticesWithCachedata[faceIndexB]; faceScore += faceVertexDataB.data.score; uint16_t faceIndexC = m_indices[fface].c; VertexPTNTCWithData& faceVertexDataC = m_verticesWithCachedata[faceIndexC]; faceScore += faceVertexDataC.data.score; if(faceScore > bestScore) { bestScore = faceScore; bestFace = fface; } } } std::swap(cache0, cache1); entriesInCache0 = Min(entriesInCache1, lruCacheSize); } m_indices = m_newIndexList; } float PreMesh::FindVertexScore(uint32_t numActiveFaces, uint32_t cachePosition, uint32_t vertexCacheSize) { if(numActiveFaces == 0) { return -1.0f; } float score = 0.f; if(cachePosition < vertexCacheSize) { score += m_vertexCacheScores[vertexCacheSize][cachePosition]; } if(numActiveFaces < MaxPrecomputedVertexValenceScores) { score += m_vertexValenceScores[numActiveFaces]; } else { score += ComputeVertexValenceScore(numActiveFaces); } return score; } float PreMesh::ComputeVertexValenceScore(uint32_t numActiveFaces) const { const float FindVertexScore_ValenceBoostScale = 2.0f; const float FindVertexScore_ValenceBoostPower = 0.5f; float score = 0; float valenceBoost = pow(static_cast<float>(numActiveFaces), -FindVertexScore_ValenceBoostPower); score += FindVertexScore_ValenceBoostScale * valenceBoost; return score; } void PreMesh::SolveFaceNormals() { fnormal.resize(m_indices.size()); for(size_t faceInd = 0; faceInd < m_indices.size(); ++faceInd) { const uint16_t& faceA = m_indices[faceInd].a; const uint16_t& faceB = m_indices[faceInd].b; const uint16_t& faceC = m_indices[faceInd].c; const Vec3 va = m_interleavedVerts[faceA].position; Vec3 vb = m_interleavedVerts[faceB].position; Vec3 vc = m_interleavedVerts[faceC].position; vb -= va; vc -= va; vb = normalize(cross(vb, vc)); fnormal[faceInd] = vb; } } void PreMesh::SolveFaceTangents() { assert(!m_indices.empty()); tangents.resize(m_indices.size()); bitangents.resize(m_indices.size()); bool degenerateFound = false; // Algorithm source: // http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-13-normal-mapping/#header-3 for(size_t f = 0; f < m_indices.size(); ++f) { const Vec3& p1 = m_interleavedVerts[m_indices[f].a].position; const Vec3& p2 = m_interleavedVerts[m_indices[f].b].position; const Vec3& p3 = m_interleavedVerts[m_indices[f].c].position; const Vec2& uv1 = m_interleavedVerts[m_indices[f].a].texCoord; const Vec2& uv2 = m_interleavedVerts[m_indices[f].b].texCoord; const Vec2& uv3 = m_interleavedVerts[m_indices[f].c].texCoord; const Vec2 deltaUV1 = uv2 - uv1; const Vec2 deltaUV2 = uv3 - uv1; const float area = deltaUV1.x * deltaUV2.y - deltaUV1.y * deltaUV2.x; Vec3 tangent; Vec3 bitangent; if(fabs(area) > 0.00001f) { const Vec3 deltaP1 = p2 - p1; const Vec3 deltaP2 = p3 - p1; tangent = (deltaP1 * deltaUV2.y - deltaP2 * deltaUV1.y) / area; bitangent = (deltaP2 * deltaUV1.x - deltaP1 * deltaUV2.x) / area; } else { degenerateFound = true; } const Vec4 tangent4(tangent.x, tangent.y, tangent.z, 0.0f); tangents[f] = tangent4; bitangents[f] = bitangent; } if(degenerateFound) { DebugPrintF("Warning: Degenerate UV map in mesh %s. Author needs to separate texture points.", name); } } void PreMesh::SolveVertexTangents() { assert(!tangents.empty()); for(size_t v = 0; v < m_interleavedVerts.size(); ++v) { m_interleavedVerts[v].tangent = Vec4(0, 0, 0, 0); } vbitangents.resize(m_interleavedVerts.size()); // http://www.terathon.com/code/tangent.html // "To find the tangent vectors for a single vertex, we average the tangents for all triangles sharing that vertex" for(size_t vertInd = 0; vertInd < m_interleavedVerts.size(); ++vertInd) { Vec4 tangent(0.0f, 0.0f, 0.0f, 0.0f); Vec3 bitangent; for(size_t faceInd = 0; faceInd < m_indices.size(); ++faceInd) { if(m_indices[faceInd].a == vertInd || m_indices[faceInd].b == vertInd || m_indices[faceInd].c == vertInd) { tangent += tangents[faceInd]; bitangent += bitangents[faceInd]; } } m_interleavedVerts[vertInd].tangent = tangent; vbitangents[vertInd] = bitangent; } for(size_t v = 0; v < m_interleavedVerts.size(); ++v) { Vec4& tangent = m_interleavedVerts[v].tangent; const Vec3& normal = m_interleavedVerts[v].normal; const Vec4 normal4(normal.x, normal.y, normal.z, 0); // Gram-Schmidt orthonormalization. tangent -= normal4 * dot(normal4, tangent); normalize(tangent); // Handedness. TBN must form a right-handed coordinate system, // i.e. cross(n,t) must have the same orientation as b. const Vec3 cp = cross(normal, Vec3(tangent.x, tangent.y, tangent.z)); tangent.w = dot(cp, vbitangents[v]) >= 0 ? 1.0f : -1.0f; } } void PreMesh::CopyInterleavedVerticesToPTN() { m_interleavedVertsPTN.resize(m_interleavedVerts.size()); for(size_t i = 0; i < m_interleavedVerts.size(); ++i) { m_interleavedVertsPTN[i].position = m_interleavedVerts[i].position; m_interleavedVertsPTN[i].texCoord = m_interleavedVerts[i].texCoord; m_interleavedVertsPTN[i].normal = m_interleavedVerts[i].normal; } }
2c6629348604db20d59851f35fa571cad6c31465
af02bc4013250a9c18947ac26ba28468b239cd96
/openearthsdk/src/main/cpp/earth/TileManager.cpp
4a6e47df9d729945c19b70353431aa93140fbdc0
[ "Unlicense" ]
permissive
MAPSWorks/OpenEarth
834df34d0f5c982ec906f919952e92f94ea22122
f30f5fd2d4bb91e00d323f8c8a1d17169a3e8fbb
refs/heads/master
2020-11-24T15:48:01.364584
2019-06-25T11:21:03
2019-06-25T11:21:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
72
cpp
TileManager.cpp
// // Created by GXSN-Pro on 2017/12/14. // #include "TileManager.hpp"
ed2b52ad7910ffe6a85c22096b54549440f38b61
af172028a211cd5ec72b254bbe506cacfe1d9e60
/FBLua/LuaUtils.cpp
d1d168f18cb5a9a168efd02cdb9c01e24320284d
[]
no_license
fastbird/fastbirdEngine
c99ea03416217696ca048db96da7346c7001d24a
619e1c3af72a58ff939c3ecba8f5cc56b5ea3144
refs/heads/master
2021-01-17T00:26:01.866593
2017-06-17T10:21:05
2017-06-17T10:21:05
22,362,299
18
6
null
2015-12-04T06:32:44
2014-07-29T00:17:23
C++
UTF-8
C++
false
false
40,425
cpp
LuaUtils.cpp
/* ----------------------------------------------------------------------------- This source file is part of fastbird engine For the latest info, see http://www.jungwan.net/ Copyright (c) 2013-2015 Jungwan Byun 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 "stdafx.h" #include "LuaUtils.h" #include "LuaObject.h" #include "FBCommonHeaders/Helpers.h" #include "FBCommonHeaders/RecursiveSpinLock.h" #include "FBFileSystem/FileSystem.h" using namespace fb; // luawapper util namespace fb { static int GetFileNameOnly(lua_State* L) { auto str = LuaUtils::checkstring(L, 1); LuaUtils::pushstring(L, FileSystem::GetName(str).c_str()); return 1; } static int GetFileNameExt(lua_State* L) { auto str = LuaUtils::checkstring(L, 1); LuaUtils::pushstring(L, FileSystem::GetFileName(str).c_str()); return 1; } static int GetMyDocumentGameFolder(lua_State* L) { LuaUtils::pushstring(L, FileSystem::GetMyDocumentGameFolder().c_str()); return 1; } static int IsFilePathSafe(lua_State* L) { const char* filepath = LuaUtils::checkstring(L, 1); bool ret = FileSystem::CheckSecurity(filepath); LuaUtils::pushboolean(L, ret); return 1; } static std::unordered_map<std::string, lua_CFunction> gModules; static int LoadAndExecuteScriptResource(lua_State* L) { const char* file = LuaUtils::checkstring(L, 1); if (strlen(FileSystem::GetExtension(file)) == 0) { auto itFind = gModules.find(file); if (itFind != gModules.end()) { return itFind->second(L); } } int error = LuaUtils::DoFile(L, file); if (error) { auto itFind = gModules.find(file); if (itFind != gModules.end()) { return itFind->second(L); } else { fb::LuaUtils::PrintLuaErrorString(L, LuaUtils::tostring(L, -1)); Logger::Log(FB_ERROR_LOG_ARG, FormatString("Failed to load %s", file).c_str()); LuaUtils::pushboolean(L, 0); return 1; } } else { LuaUtils::pushboolean(L, 1); return 2; } } static int OutputDebugString_(lua_State* L) { Logger::Log(LuaUtils::checkstring(L, 1)); return 0; } int DoFile(lua_State* L) { auto path = LuaUtils::checkstring(L, 1); LuaUtils::DoFile(L, path); return 0; } static int TempTestFunc(lua_State* L) { auto path = LuaUtils::checkstring(L, 1); int a = 0; a++; return 0; } static int get_lua_content(lua_State* L) { auto path = LuaUtils::checkstring(L, 1); FileSystem::Open file(path, "r"); if (!file.IsOpen()) { return 0; } auto& data = file.GetTextData(); LuaUtils::pushstring(L, data.c_str()); return 1; } const char* GetCWD() { static char buf[MAX_PATH]; #if defined(_PLATFORM_WINDOWS_) GetCurrentDirectory(MAX_PATH, buf); #else assert(0 && "Not implemented"); #endif return buf; } bool RunGlobalOverride(lua_State* L); static lua_State* sLuaState = 0; lua_State* LuaUtils::OpenLuaState(){ auto L = luaL_newstate(); luaL_openlibs(L); if (sLuaState == 0){ sLuaState = L; auto filepath = "_FBLua.log"; FileSystem::BackupFile(filepath, 5, "Backup_Log"); Logger::Init(filepath); } LuaUtils::pushcfunction(L, GetFileNameExt); LuaUtils::setglobal(L, "GetFileNameExt"); LuaUtils::pushcfunction(L, GetFileNameOnly); LuaUtils::setglobal(L, "GetFileNameOnly"); LuaUtils::pushcfunction(L, GetMyDocumentGameFolder); LuaUtils::setglobal(L, "GetMyDocumentGameFolder"); LuaUtils::pushcfunction(L, fb::IsFilePathSafe); LuaUtils::setglobal(L, "IsFilePathSafe"); LuaUtils::pushcfunction(L, fb::LoadAndExecuteScriptResource); LuaUtils::setglobal(L, "LoadAndExecuteScriptResource"); LuaUtils::pushcfunction(L, fb::OutputDebugString_); LuaUtils::setglobal(L, "OutputDebugString"); LuaUtils::pushcfunction(L, fb::DoFile); LuaUtils::setglobal(L, "DoFile"); LuaUtils::pushcfunction(L, fb::TempTestFunc); LuaUtils::setglobal(L, "TempTestFunc"); LuaUtils::pushcfunction(L, fb::get_lua_content); LuaUtils::setglobal(L, "get_lua_content"); RunGlobalOverride(L); return L; } lua_State* LuaUtils::GetLuaState(){ return sLuaState; } void LuaUtils::CloseLuaState(lua_State* L){ if (L == sLuaState || (L == 0 && sLuaState)){ lua_close(sLuaState); sLuaState = 0; } else if (L){ lua_close(L); } } void LuaUtils::RegisterLuaModule(const char* moduleName, lua_CFunction func) { if (!ValidCString(moduleName)) { Logger::Log(FB_ERROR_LOG_ARG, "Invalid arg."); return; } gModules[moduleName] = func; } void LuaUtils::CallLuaFunction(lua_State* L, const char* func, const char* sig, ...) { va_list vl; int narg, nres; va_start(vl, sig); lua_getglobal(L, func); // push args for (narg = 0; *sig; narg++) { luaL_checkstack(L, 1, "too many arguments"); switch (*sig++) { case 'd': lua_pushnumber(L, va_arg(vl, double)); break; case 'f': lua_pushnumber(L, (lua_Number)va_arg(vl, float)); break; case 'i': lua_pushinteger(L, va_arg(vl, int)); break; case 'u': lua_pushunsigned(L, va_arg(vl, unsigned)); break; case 's': lua_pushstring(L, va_arg(vl, char*)); break; case '>': goto endargs; default: Logger::Log(FB_ERROR_LOG_ARG, FormatString("Invalid arg(%c)", *(sig - 1)).c_str()); } } endargs: nres = strlen(sig); if (lua_pcall(L, narg, nres, 0) != 0) { Logger::Log(FB_ERROR_LOG_ARG, FormatString("Error calling '%s':'%s'", func, lua_tostring(L, -1)).c_str()); return; } // retrieve results nres = -nres; while (*sig) { switch (*sig++) { case 'd': { int isnum; double n = lua_tonumberx(L, nres, &isnum); if (!isnum) Logger::Log(FB_ERROR_LOG_ARG, "Wrong result type."); *va_arg(vl, double*) = n; break; } case 'f': { int isnum; float n = (float)lua_tonumberx(L, nres, &isnum); if (!isnum) Logger::Log(FB_ERROR_LOG_ARG, "Wrong result type."); *va_arg(vl, float*) = n; break; } case 'i': { int isnum; int n = lua_tointegerx(L, nres, &isnum); if (!isnum) Logger::Log(FB_ERROR_LOG_ARG, "Wrong result type."); *va_arg(vl, int*) = n; break; } case 's': { const char* s = lua_tostring(L, nres); if (s == NULL) Logger::Log(FB_ERROR_LOG_ARG, "Wrong result type."); *va_arg(vl, const char**) = s; break; } case'b': { bool b = lua_toboolean(L, nres)!=0; *va_arg(vl, bool*) = b; break; } case 'u': { unsigned u = lua_tounsigned(L, nres); *va_arg(vl, unsigned*) = u; break; } default: Logger::Log(FB_ERROR_LOG_ARG, FormatString("Invalid option(%c)", *(sig - 1)).c_str()); } nres++; } va_end(vl); } bool LuaUtils::CheckLuaGlobalExist(lua_State* L, const char* name) { LUA_STACK_WATCHER watcher(L, "bool CheckLuaGlobalExist(lua_State* L, const char* name)"); lua_getglobal(L, name); bool exist = !lua_isnil(L, -1); lua_pop(L, 1); return exist; } void LuaUtils::PrintLuaErrorString(lua_State* L, const char* luaString) { if (!luaString) return; std::regex e(":(\\d+):"); char buf[1024]; sprintf_s(buf, "\n\n*****\n%s/%s (%s)\n", GetCWD(), std::regex_replace(luaString, e, "($1):").c_str(), "error"); Logger::Log(FB_ERROR_LOG_ARG, buf); Logger::Output(buf); PrintLuaDebugInfo(L, 0); } void LuaUtils::PrintLuaDebugInfo(lua_State* L, int level) { luaL_traceback(L, L, 0, 0); Logger::Log(FB_ERROR_LOG_ARG, lua_tostring(L, -1)); lua_pop(L, 1); /* lua_Debug ar; if (lua_getstack(L, level, &ar)) { int i = 1; while (true) { const char* name = lua_getlocal(L, &ar, i++); if (!name) break; Error("[local variable] name = %s, value = %s", name, GetLuaValueAsString(L, -1).c_str()); lua_pop(L, 1); } }*/ } std::string LuaUtils::GetLuaValueAsString(lua_State* L, int idx) { switch (lua_type(L, idx)) { case LUA_TBOOLEAN: { bool val = lua_toboolean(L, idx) != 0; if (val) return "true"; else return "false"; break; } case LUA_TFUNCTION: case LUA_TLIGHTUSERDATA: case LUA_TNIL: case LUA_TNONE: case LUA_TTHREAD: case LUA_TUSERDATA: { return lua_typename(L, idx); break; } case LUA_TNUMBER: case LUA_TSTRING: { return lua_tostring(L, idx); break; } case LUA_TTABLE: { LuaObject t(L, idx); auto it = t.GetTableIterator(); LuaTableIterator::KeyValue kv; std::string ret; bool first = true; while (it.GetNext(kv)) { if (!first) { ret += "\n"; } kv.first.PushToStack(); ret += GetLuaValueAsString(L, -1); lua_pop(L, 1); ret += " : "; kv.second.PushToStack(); ret += GetLuaValueAsString(L, -1); lua_pop(L, 1); first = false; } return ret; break; } default: { assert(0); } } return std::string(); } std::string LuaUtils::GetLuaVarAsString(lua_State* L, const char* varName, const char* luaFile) { auto luaObj = GetLuaVar(L, varName, luaFile); if (luaObj.IsValid()) { return luaObj.GetString(); } return std::string(); } bool LuaUtils::GetLuaVarAsBoolean(lua_State* L, const char* varName) { LUA_STACK_CLIPPER w(L); lua_getglobal(L, varName); return lua_toboolean(L, -1)!=0; } Vec2ITuple LuaUtils::GetLuaVarAsVec2I(const char* varName){ return GetLuaVarAsVec2I(sLuaState, varName); } Vec2ITuple LuaUtils::GetLuaVarAsVec2I(lua_State* L, const char* varName) { LuaObject obj(L, varName); return obj.GetVec2I(); } float LuaUtils::GetLuaVarAsFloat(lua_State* L, const char* varName){ LuaObject obj(L, varName); return obj.GetFloat(); } unsigned LuaUtils::GetLuaVarAsUnsigned(lua_State* L, const char* varName){ LuaObject obj(L, varName); return obj.GetUnsigned(); } int LuaUtils::GetLuaVarAsInt(lua_State* L, const char* varName) { LuaObject obj(L, varName); return obj.GetInt(); } void LuaUtils::SetLuaVar(lua_State* L, const char* varName, bool value) { LUA_STACK_WATCHER w(L, "void SetLuaVar(lua_State* L, const char* varName, bool value)"); lua_pushboolean(L, value); lua_setglobal(L, varName); } bool LuaUtils::ExecuteLua(const char* chunk){ return ExecuteLua(sLuaState, chunk); } bool LuaUtils::ExecuteLua(lua_State* L, const char* chunk){ if (!ValidCString(chunk)) return false; if (!L){ Logger::Log(FB_ERROR_LOG_ARG, "Invalid param."); } int error; error = luaL_loadbuffer(L, chunk, strlen(chunk), "line") || lua_pcall(L, 0, 0, 0); if (error) { const char* errorString = lua_tostring(L, -1); lua_pop(L, 1); PrintLuaErrorString(L, errorString); } return true; } bool LuaUtils::DoFile(const char* filepath){ if (sLuaState){ return DoFile(sLuaState, filepath); } Logger::Log(FB_ERROR_LOG_ARG, "Main lua state is not prepared."); return true; // true when error. } bool LuaUtils::DoFile(lua_State* L, const char* filepath){ FileSystem::Open file(filepath, "r"); if (!file.IsOpen()) { Logger::Log(FB_ERROR_LOG_ARG, FormatString( "File(%s) not found.", filepath).c_str()); return false; } const auto& str = file.GetTextData(); return DoString(L, str.c_str()); } bool LuaUtils::DoString(lua_State* L, const char* str) { bool error = luaL_dostring(L, str); if (error) { Logger::Log(FB_ERROR_LOG_ARG, "Cannot run the string."); PrintLuaErrorString(L, tostring(L, -1)); } return error; } bool LuaUtils::LoadConfig(lua_State* L, const char* filename){ // load the chunk and then change the value of its first upvalue auto err = luaL_loadfile(sLuaState, filename); // func. if (err){ Logger::Log(FB_ERROR_LOG_ARG, FormatString("Cannot load lua file(%s)", filename).c_str()); return false; } lua_createtable(sLuaState, 0, 0); // func. {} const char* upvaluName = lua_setupvalue(sLuaState, -2, 1); // func. lua_pushvalue(sLuaState, -1); //func. func. // now the function has empty _ENV int error = lua_pcall(sLuaState, 0, 0, 0); // func. if (error) { // func. error const char* errorString = lua_tostring(sLuaState, -1); lua_pop(sLuaState, 1); PrintLuaErrorString(sLuaState, errorString); return false; } const char* name = lua_getupvalue(sLuaState, -1, 1); // func. _ENV LuaObject env(sLuaState, -1); auto it = env.GetTableIterator(); LuaTableIterator::KeyValue kv; while (it.GetNext(kv)){ if (!kv.first.IsString()) continue; // for security. if (kv.second.HasFunction()) continue; kv.second.PushToStack(); lua_setglobal(sLuaState, kv.first.GetString().c_str()); } lua_pop(sLuaState, 2); // pop func. and _ENV return true; } int LuaUtils::Traceback(lua_State *L) { const char *msg = lua_tostring(L, 1); if (msg) luaL_traceback(L, L, msg, 1); //else if (!lua_isnoneornil(L, 1)) { /* is there an error object? */ // if (!luaL_callmeta(L, 1, "__tostring")) /* try its 'tostring' metamethod */ // lua_pushliteral(L, "(no error message)"); //} return 1; } void LuaUtils::pushnil(){ lua_pushnil(sLuaState); } void LuaUtils::pushnil(lua_State* L){ lua_pushnil(L); } const char* LuaUtils::pushstring(const char* str){ return lua_pushstring(sLuaState, str); } const char* LuaUtils::pushstring(lua_State* L, const char* str){ return lua_pushstring(L, str); } void LuaUtils::pushnumber(double number){ lua_pushnumber(sLuaState, number); } void LuaUtils::pushnumber(lua_State* L, double number){ lua_pushnumber(L, number); } void LuaUtils::pushinteger(int i){ lua_pushinteger(sLuaState, i); } void LuaUtils::pushinteger(lua_State* L, int i){ lua_pushinteger(L, i); } void LuaUtils::pushunsigned(unsigned u){ lua_pushunsigned(sLuaState, u); } void LuaUtils::pushunsigned(lua_State* L, unsigned u){ lua_pushunsigned(L, u); } void LuaUtils::pushboolean(bool b){ lua_pushboolean(sLuaState, b ? 1 : 0); } void LuaUtils::pushboolean(lua_State* L, bool b){ lua_pushboolean(L, b ? 1 : 0); } void LuaUtils::pushcfunction(lua_CFunction f){ lua_pushcfunction(sLuaState, f); } void LuaUtils::pushVec2(const Vec2Tuple& data){ luaU_push<Vec2Tuple>(sLuaState, data); } void LuaUtils::pushVec2(lua_State* L, const Vec2Tuple& data){ luaU_push<Vec2Tuple>(L, data); } void LuaUtils::pushVec2I(const Vec2ITuple& data){ luaU_push<Vec2ITuple>(sLuaState, data); } void LuaUtils::pushVec2I(lua_State* L, const Vec2ITuple& data){ luaU_push<Vec2ITuple>(L, data); } void LuaUtils::pushVec3(const Vec3Tuple& data){ luaU_push<Vec3Tuple>(sLuaState, data); } void LuaUtils::pushVec3(lua_State* L, const Vec3Tuple& data){ luaU_push<Vec3Tuple>(L, data); } void LuaUtils::pushVec3I(const Vec3ITuple& data){ luaU_push<Vec3ITuple>(sLuaState, data); } void LuaUtils::pushVec3I(lua_State* L, const Vec3ITuple& data){ luaU_push<Vec3ITuple>(L, data); } void LuaUtils::pushVec4(const Vec4Tuple& data){ luaU_push<Vec4Tuple>(sLuaState, data); } void LuaUtils::pushVec4(lua_State* L, const Vec4Tuple& data){ luaU_push<Vec4Tuple>(L, data); } void LuaUtils::pushQuat(const QuatTuple& data){ luaU_push<QuatTuple>(sLuaState, data); } void LuaUtils::pushQuat(lua_State* L, const QuatTuple& data){ luaU_push<QuatTuple>(L, data); } void LuaUtils::pushTransformation(const TransformationTuple& data){ luaU_push<TransformationTuple>(sLuaState, data); } void LuaUtils::pushTransformation(lua_State* L, const TransformationTuple& data){ luaU_push<TransformationTuple>(L, data); } void LuaUtils::pushcfunction(lua_State* L, lua_CFunction f){ lua_pushcfunction(L, f); } void LuaUtils::pushlightuserdata(void* p){ lua_pushlightuserdata(sLuaState, p); } void LuaUtils::pushlightuserdata(lua_State* L, void* p){ lua_pushlightuserdata(L, p); } const char* LuaUtils::tostring(int idx){ if (sLuaState) return tostring(sLuaState, idx); return ""; } const char* LuaUtils::tostring(lua_State* L, int idx){ return lua_tostring(L, idx); } bool LuaUtils::toboolean(int idx){ return lua_toboolean(sLuaState, idx) != 0; } bool LuaUtils::toboolean(lua_State* L, int idx){ return lua_toboolean(L, idx) != 0; } int LuaUtils::tointeger(int idx){ return lua_tointeger(sLuaState, idx); } int LuaUtils::tointeger(lua_State* L, int idx){ return lua_tointeger(L, idx); } unsigned LuaUtils::tounsigned(int idx){ return lua_tounsigned(sLuaState, idx); } unsigned LuaUtils::tounsigned(lua_State* L, int idx){ return lua_tounsigned(L, idx); } double LuaUtils::tonumber(int idx){ return lua_tonumber(sLuaState, idx); } double LuaUtils::tonumber(lua_State* L, int idx){ return lua_tonumber(L, idx); } void* LuaUtils::touserdata(int index){ return lua_touserdata(sLuaState, index); } void* LuaUtils::touserdata(lua_State* L, int index){ return lua_touserdata(L, index); } const char* LuaUtils::checkstring(int index){ return luaL_checkstring(sLuaState, index); } const char* LuaUtils::checkstring(lua_State* L, int index){ return luaL_checkstring(L, index); } int LuaUtils::checkint(int index){ return luaL_checkint(sLuaState, index); } int LuaUtils::checkint(lua_State* L, int index){ return luaL_checkint(L, index); } unsigned LuaUtils::checkunsigned(int index){ return luaL_checkunsigned(sLuaState, index); } unsigned LuaUtils::checkunsigned(lua_State* L, int index){ return luaL_checkunsigned(L, index); } double LuaUtils::checknumber(int index){ return luaL_checknumber(sLuaState, index); } double LuaUtils::checknumber(lua_State* L, int index){ return luaL_checknumber(L, index); } float LuaUtils::checkfloat(int index) { return (float)checknumber(index); } float LuaUtils::checkfloat(lua_State* L, int index) { return (float)checknumber(L, index); } void LuaUtils::checktype(int index, int luaType){ luaL_checktype(sLuaState, index, luaType); } void LuaUtils::checktype(lua_State* L, int index, int luaType){ luaL_checktype(L, index, luaType); } Vec2Tuple LuaUtils::checkVec2(int index){ return luaU_check<Vec2Tuple>(sLuaState, index); } Vec2Tuple LuaUtils::checkVec2(lua_State* L, int index){ return luaU_check<Vec2Tuple>(L, index); } Vec2ITuple LuaUtils::checkVec2I(int index){ return luaU_check<Vec2ITuple>(sLuaState, index); } Vec2ITuple LuaUtils::checkVec2I(lua_State* L, int index){ return luaU_check<Vec2ITuple>(L, index); } Vec3Tuple LuaUtils::checkVec3(int index){ return luaU_check<Vec3Tuple>(sLuaState, index); } Vec3Tuple LuaUtils::checkVec3(lua_State* L, int index){ return luaU_check<Vec3Tuple>(L, index); } Vec3ITuple LuaUtils::checkVec3I(int index){ return luaU_check<Vec3ITuple>(sLuaState, index); } Vec3ITuple LuaUtils::checkVec3I(lua_State* L, int index){ return luaU_check<Vec3ITuple>(L, index); } QuatTuple LuaUtils::checkQuat(int index){ return luaU_check<QuatTuple>(sLuaState, index); } QuatTuple LuaUtils::checkQuat(lua_State* L, int index){ return luaU_check<QuatTuple>(L, index); } TransformationTuple LuaUtils::checkTransformation(int index){ return luaU_check<TransformationTuple>(sLuaState, index); } TransformationTuple LuaUtils::checkTransformation(lua_State* L, int index){ return luaU_check<TransformationTuple>(L, index); } bool LuaUtils::isboolean(int index){ return lua_isboolean(sLuaState, index); } bool LuaUtils::isboolean(lua_State* L, int index){ return lua_isboolean(L, index); } bool LuaUtils::isnil(int index){ return lua_isnil(sLuaState, index); } bool LuaUtils::isnil(lua_State* L, int index){ return lua_isnil(L, index); } bool LuaUtils::isnone(int index) { return lua_isnone(sLuaState, index); } bool LuaUtils::isnone(lua_State* L, int index) { return lua_isnone(L, index); } bool LuaUtils::isnumber(int index){ return lua_isnumber(sLuaState, index) != 0; } bool LuaUtils::isnumber(lua_State* L, int index){ return lua_isnumber(L, index) != 0; } bool LuaUtils::isstring(int index){ return lua_isstring(sLuaState, index) != 0; } bool LuaUtils::isstring(lua_State* L, int index){ return lua_isstring(L, index) != 0; } bool LuaUtils::istable(int index){ return lua_istable(sLuaState, index); } bool LuaUtils::istable(lua_State* L, int index){ return lua_istable(L, index); } bool LuaUtils::isuserdata(int index){ return lua_isuserdata(sLuaState, index) != 0; } bool LuaUtils::isuserdata(lua_State* L, int index){ return lua_isuserdata(L, index) != 0; } int LuaUtils::type(int index){ return lua_type(sLuaState, index); } int LuaUtils::type(lua_State* L, int index){ return lua_type(L, index); } const char* LuaUtils::luatypename(int index){ return luaL_typename(sLuaState, index); } const char* LuaUtils::luatypename(lua_State* L, int index){ return luaL_typename(L, index); } void LuaUtils::replace(int index){ lua_replace(sLuaState, index); } void LuaUtils::replace(lua_State* L, int index){ lua_replace(L, index); } void LuaUtils::pop(int n){ lua_pop(sLuaState, n); } void LuaUtils::pop(lua_State* L, int n){ lua_pop(L, n); } void LuaUtils::newtable(){ lua_newtable(sLuaState); } void LuaUtils::newtable(lua_State* L){ lua_newtable(L); } void LuaUtils::createtable(int narr, int nrec){ lua_createtable(sLuaState, narr, nrec); } void LuaUtils::createtable(lua_State* L, int narr, int nrec){ lua_createtable(L, narr, nrec); } /// Does the equivalent to t[key] = v, where t is the value at the given index and v is the value at the top of the stack. void LuaUtils::setfield(int tableindex, const char* key){ lua_setfield(sLuaState, tableindex, key); } void LuaUtils::setfield(lua_State* L, int tableindex, const char* key){ lua_setfield(L, tableindex, key); } /// Pushes onto the stack the value t[k], where t is the value at the given index. As in Lua, this function may trigger a metamethod for the "index" event void LuaUtils::getfield(int tableindex, const char* key){ lua_getfield(sLuaState, tableindex, key); } void LuaUtils::getfield(lua_State* L, int tableindex, const char* key){ lua_getfield(L, tableindex, key); } /// Pops a value from the stack and sets it as the new value of global name. void LuaUtils::setglobal(const char* name){ lua_setglobal(sLuaState, name); } void LuaUtils::setglobal(lua_State* L, const char* name){ lua_setglobal(L, name); } /// Pushes onto the stack the value of the global \a key. void LuaUtils::getglobal(const char* name){ lua_getglobal(sLuaState, name); } void LuaUtils::getglobal(lua_State* L, const char* name){ lua_getglobal(L, name); } void LuaUtils::gettable(int index){ lua_gettable(sLuaState, index); } void LuaUtils::gettable(lua_State* L, int index){ lua_gettable(L, index); } void LuaUtils::settable(int index){ lua_settable(sLuaState, index); } void LuaUtils::settable(lua_State* L, int index){ lua_settable(L, index); } /// Pushes a copy of the element at the given index onto the stack. void LuaUtils::pushvalue(int index){ lua_pushvalue(sLuaState, index); } void LuaUtils::pushvalue(lua_State* L, int index){ lua_pushvalue(L, index); } /// Pops a table from the stack and sets it as the new metatable for the value at the given index. void LuaUtils::setmetatable(int index){ lua_setmetatable(sLuaState, index); } void LuaUtils::setmetatable(lua_State* L, int index){ lua_setmetatable(L, index); } int LuaUtils::getmetatable(int index){ return lua_getmetatable(sLuaState, index); } int LuaUtils::getmetatable(lua_State* L, int index){ return lua_getmetatable(L, index); } void LuaUtils::Lgetmetatable(const char* tname){ return luaL_getmetatable(sLuaState, tname); } void LuaUtils::Lgetmetatable(lua_State* L, const char* tname){ return luaL_getmetatable(L, tname); } int LuaUtils::Lnewmetatable(const char* tname){ return luaL_newmetatable(sLuaState, tname); } int LuaUtils::Lnewmetatable(lua_State* L, const char* tname){ return luaL_newmetatable(L, tname); } /// Does the equivalent of t[n] = v, where t is the table at the given index and v is the value at the top of the stack. void LuaUtils::rawseti(int tableindex, int n){ lua_rawseti(sLuaState, tableindex, n); } void LuaUtils::rawseti(lua_State* L, int tableindex, int n){ lua_rawseti(L, tableindex, n); } void LuaUtils::rawset(int index){ lua_rawset(sLuaState, index); } void LuaUtils::rawset(lua_State* L, int index){ lua_rawset(L, index); } int LuaUtils::gettop(){ return lua_gettop(sLuaState); } int LuaUtils::gettop(lua_State* L){ return lua_gettop(L); } void LuaUtils::settop(int index){ lua_settop(sLuaState, index); } void LuaUtils::settop(lua_State* L, int index){ lua_settop(L, index); } int LuaUtils::rawequal(int index1, int index2) { return lua_rawequal(sLuaState, index1, index2); } int LuaUtils::rawequal(lua_State* L, int index1, int index2){ return lua_rawequal(L, index1, index2); } void LuaUtils::insert(int index){ lua_insert(sLuaState, index); } void LuaUtils::insert(lua_State* L, int index){ lua_insert(L, index); } void LuaUtils::remove(int index){ lua_remove(sLuaState, index); } void LuaUtils::remove(lua_State* L, int index){ lua_remove(L, index); } void* LuaUtils::newuserdata(size_t size){ return lua_newuserdata(sLuaState, size); } void* LuaUtils::newuserdata(lua_State* L, size_t size){ return lua_newuserdata(L, size); } void LuaUtils::call(int nargs, int nresults){ lua_call(sLuaState, nargs, nresults); } void LuaUtils::call(lua_State* L, int nargs, int nresults){ lua_call(L, nargs, nresults); } int LuaUtils::pcall(int nargs, int nresults, int msgh){ return lua_pcall(sLuaState, nargs, nresults, msgh); } int LuaUtils::pcall(lua_State *L, int nargs, int nresults, int msgh){ return lua_pcall(L, nargs, nresults, msgh); } int LuaUtils::next(int index){ return lua_next(sLuaState, index); } int LuaUtils::next(lua_State* L, int index){ return lua_next(L, index); } int LuaUtils::argerror(int arg, const char* extramsg){ return luaL_argerror(sLuaState, arg, extramsg); } int LuaUtils::argerror(lua_State* L, int arg, const char* extramsg){ return luaL_argerror(L, arg, extramsg); } int LuaUtils::error(int arg, const char* msg){ return luaL_error(sLuaState, msg); } int LuaUtils::error(lua_State* L, const char* msg){ return luaL_error(L, msg); } //--------------------------------------------------------------------------- std::unordered_map<lua_State*, RecursiveSpinLock<true, false>> sLuaLocker; LuaLock::LuaLock(lua_State* lua) :mL(lua) { if (!lua) { Logger::Log(FB_ERROR_LOG_ARG, "Null lua!"); } sLuaLocker[mL].Lock(); } LuaLock::~LuaLock() { sLuaLocker[mL].Unlock(); } LuaLock::operator lua_State*() const{ return mL; } //--------------------------------------------------------------------------- // Stack watcher //--------------------------------------------------------------------------- LUA_STACK_WATCHER::LUA_STACK_WATCHER(lua_State* L, const char* name) : lua(L), mName(name) { assert(name != 0); top = lua_gettop(L); } LUA_STACK_WATCHER::~LUA_STACK_WATCHER() { int now = lua_gettop(lua); if (top != now) { Logger::Log(FB_DEFAULT_LOG_ARG, FormatString( "Stack is polluted(prev:%d, now:%d) - %s", top, now, mName).c_str()); } assert(top == now); } LUA_STACK_CLIPPER::LUA_STACK_CLIPPER(lua_State* L) { lua = L; top = lua_gettop(L); } LUA_STACK_CLIPPER::~LUA_STACK_CLIPPER() { lua_settop(lua, top); } } //--------------------------------------------------------------------------- // Tuple Helper //--------------------------------------------------------------------------- // PushNumber template <class T> void PushNumbersElem(lua_State* L, int& n, const T& value){ lua_pushnumber(L, value); lua_rawseti(L, -2, n++); } template <> void PushNumbersElem(lua_State* L, int& n, const bool& value){ lua_pushboolean(L, value); lua_rawseti(L, -2, n++); } template<class Tuple, std::size_t N> struct TupleIteratorPush { static void iterate(lua_State* L, int& n, const Tuple& t) { TupleIteratorPush<Tuple, N - 1>::iterate(L, n, t); PushNumbersElem(L, n, std::get<N - 1>(t)); } }; template<class Tuple> struct TupleIteratorPush<Tuple, 1>{ static void iterate(lua_State* L, int& n, const Tuple& t) { PushNumbersElem(L, n, std::get<0>(t)); } }; template<class... Args> void PushNumbers(lua_State* L, int& n, const std::tuple<Args...>& t) { TupleIteratorPush<decltype(t), sizeof...(Args)>::iterate(L, n, t); } //--------------------------------------------------------------------------- // PullNumber template <class T> void PullNumbersElem(lua_State* L, int index, int& n, T& value){ lua_rawgeti(L, index, n++); value = (T)lua_tonumber(L, -1); LuaUtils::pop(L, 1); } template <> void PullNumbersElem(lua_State* L, int index, int& n, bool& value){ lua_rawgeti(L, index, n++); value = lua_toboolean(L, -1) != 0; LuaUtils::pop(L, 1); } template<class Tuple, std::size_t N> struct TupleIteratorPull { static void iterate(lua_State* L, int index, int& n, Tuple& t) { TupleIteratorPull<Tuple, N - 1>::iterate(L, index, n, t); PullNumbersElem(L, index, n, std::get<N - 1>(t)); } }; template<class Tuple> struct TupleIteratorPull<Tuple, 1>{ static void iterate(lua_State* L, int index, int& n, Tuple& t) { PullNumbersElem(L, index, n, std::get<0>(t)); } }; template<class... Args> void PullNumbers(lua_State* L, int index, int& n, std::tuple<Args...>& t) { TupleIteratorPull<decltype(t), sizeof...(Args)>::iterate(L, index, n, t); } namespace fb{ //--------------------------------------------------------------------------- // string //--------------------------------------------------------------------------- std::string luaU_Impl<std::string>::luaU_check(lua_State* L, int index) { return std::string(luaL_checkstring(L, index)); } std::string luaU_Impl<std::string>::luaU_to(lua_State* L, int index){ return std::string(lua_tostring(L, index)); } void luaU_Impl<std::string>::luaU_push(lua_State* L, const std::string& val){ lua_pushstring(L, val.c_str()); } //--------------------------------------------------------------------------- // Vec2ITuple //--------------------------------------------------------------------------- fb::Vec2ITuple luaU_Impl< fb::Vec2ITuple >::luaU_check(lua_State* L, int index){ luaL_checktype(L, index, LUA_TTABLE); return luaU_to(L, index); } fb::Vec2ITuple luaU_Impl< fb::Vec2ITuple >::luaU_to(lua_State* L, int index) { fb::Vec2ITuple ret; lua_rawgeti(L, index, 1); std::get<0>(ret) = lua_tointeger(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 2); std::get<1>(ret) = lua_tointeger(L, -1); lua_pop(L, 1); return ret; } void luaU_Impl< fb::Vec2ITuple >::luaU_push(lua_State* L, const fb::Vec2ITuple& val) { lua_createtable(L, 2, 0); lua_pushinteger(L, std::get<0>(val)); lua_rawseti(L, -2, 1); lua_pushinteger(L, std::get<1>(val)); lua_rawseti(L, -2, 2); } //--------------------------------------------------------------------------- // Vec2Tuple //--------------------------------------------------------------------------- fb::Vec2Tuple luaU_Impl< fb::Vec2Tuple >::luaU_check(lua_State* L, int index) { luaL_checktype(L, index, LUA_TTABLE); return luaU_to(L, index); } fb::Vec2Tuple luaU_Impl< fb::Vec2Tuple >::luaU_to(lua_State* L, int index) { fb::Vec2Tuple ret; lua_rawgeti(L, index, 1); std::get<0>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 2); std::get<1>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); return ret; } void luaU_Impl< fb::Vec2Tuple >::luaU_push(lua_State* L, const fb::Vec2Tuple& val) { lua_createtable(L, 2, 0); lua_pushnumber(L, std::get<0>(val)); lua_rawseti(L, -2, 1); lua_pushnumber(L, std::get<1>(val)); lua_rawseti(L, -2, 2); } //--------------------------------------------------------------------------- // Vec3ITuple //--------------------------------------------------------------------------- fb::Vec3ITuple luaU_Impl< fb::Vec3ITuple >::luaU_check(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::Vec3I luaU_check(lua_State* L, int index)"); luaL_checktype(L, index, LUA_TTABLE); return luaU_to(L, index); } fb::Vec3ITuple luaU_Impl< fb::Vec3ITuple >::luaU_to(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::Vec3I luaU_to(lua_State* L, int index)"); fb::Vec3ITuple ret; lua_rawgeti(L, index, 1); std::get<0>(ret) = lua_tointeger(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 2); std::get<1>(ret) = lua_tointeger(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 3); std::get<2>(ret) = lua_tointeger(L, -1); lua_pop(L, 1); return ret; } void luaU_Impl< fb::Vec3ITuple >::luaU_push(lua_State* L, const fb::Vec3ITuple& val) { lua_createtable(L, 3, 0); lua_pushinteger(L, std::get<0>(val)); lua_rawseti(L, -2, 1); lua_pushinteger(L, std::get<1>(val)); lua_rawseti(L, -2, 2); lua_pushinteger(L, std::get<2>(val)); lua_rawseti(L, -2, 3); } //--------------------------------------------------------------------------- // Vec3Tuple //--------------------------------------------------------------------------- fb::Vec3Tuple luaU_Impl< fb::Vec3Tuple >::luaU_check(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::Vec3Tuple luaU_check(lua_State* L, int index)"); luaL_checktype(L, index, LUA_TTABLE); return luaU_to(L, index); } fb::Vec3Tuple luaU_Impl< fb::Vec3Tuple >::luaU_to(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::Vec3Tuple luaU_to(lua_State* L, int index)"); fb::Vec3Tuple ret; lua_rawgeti(L, index, 1); std::get<0>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 2); std::get<1>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 3); std::get<2>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); return ret; } void luaU_Impl< fb::Vec3Tuple >::luaU_push(lua_State* L, const fb::Vec3Tuple& val) { lua_createtable(L, 3, 0); lua_pushnumber(L, std::get<0>(val)); lua_rawseti(L, -2, 1); lua_pushnumber(L, std::get<1>(val)); lua_rawseti(L, -2, 2); lua_pushnumber(L, std::get<2>(val)); lua_rawseti(L, -2, 3); } //--------------------------------------------------------------------------- // Vec4Tuple //--------------------------------------------------------------------------- fb::Vec4Tuple luaU_Impl< fb::Vec4Tuple >::luaU_check(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::Vec4Tuple luaU_check(lua_State* L, int index)"); luaL_checktype(L, index, LUA_TTABLE); return luaU_to(L, index); } fb::Vec4Tuple luaU_Impl< fb::Vec4Tuple >::luaU_to(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::Vec4Tuple luaU_to(lua_State* L, int index)"); fb::Vec4Tuple ret; lua_rawgeti(L, index, 1); std::get<0>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 2); std::get<1>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 3); std::get<2>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); lua_rawgeti(L, index, 4); std::get<3>(ret) = (float)lua_tonumber(L, -1); lua_pop(L, 1); return ret; } void luaU_Impl< fb::Vec4Tuple >::luaU_push(lua_State* L, const fb::Vec4Tuple& val) { lua_createtable(L, 3, 0); lua_pushnumber(L, std::get<0>(val)); lua_rawseti(L, -2, 1); lua_pushnumber(L, std::get<1>(val)); lua_rawseti(L, -2, 2); lua_pushnumber(L, std::get<2>(val)); lua_rawseti(L, -2, 3); lua_pushnumber(L, std::get<3>(val)); lua_rawseti(L, -2, 4); } //--------------------------------------------------------------------------- // QuatTuple //--------------------------------------------------------------------------- fb::QuatTuple luaU_Impl< fb::QuatTuple>::luaU_check(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, " fb::QuatTuple luaU_check(lua_State* L, int index)"); luaL_checktype(L, index, LUA_TTABLE); return luaU_to(L, index); } fb::QuatTuple luaU_Impl< fb::QuatTuple>::luaU_to(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, " fb::QuatTuple luaU_to(lua_State* L, int index)"); fb::QuatTuple ret; int n = 1; PullNumbers(L, index, n, ret.value); return ret; } void luaU_Impl< fb::QuatTuple>::luaU_push(lua_State* L, const fb::QuatTuple& val) { lua_createtable(L, 0, 3); int n = 1; PushNumbers(L, n, val.value); } //--------------------------------------------------------------------------- // TransformationTuple //--------------------------------------------------------------------------- fb::TransformationTuple luaU_Impl< fb::TransformationTuple>::luaU_check(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::TransformationTuple luaU_check(lua_State* L, int index)"); luaL_checktype(L, index, LUA_TTABLE); return luaU_to(L, index); } fb::TransformationTuple luaU_Impl< fb::TransformationTuple>::luaU_to(lua_State* L, int index) { fb::LUA_STACK_WATCHER watcher(L, "fb::TransformationTuple luaU_to(lua_State* L, int index)"); int n = 1; fb::TransformationTuple ret; PullNumbers(L, index, n, ret); return ret; } void luaU_Impl< fb::TransformationTuple>::luaU_push(lua_State* L, const fb::TransformationTuple& val) { lua_createtable(L, 22, 0); int n = 1; PushNumbers(L, n, val); } bool RunGlobalOverride(lua_State* L) { const char* strRun = "do\n\ local OldRequire = require; --save the old require() function\n\ local resourceIdMap = {}; --map of resource id's we've already loaded\n\ \n\ require = function(script)\n\ if (not resourceIdMap[script]) then\n\ resourceIdMap[script] = LoadAndExecuteScriptResource(script)\n\ if (resourceIdMap[script]) then\n\ return resourceIdMap[script]\n\ else\n\ --failed to load file through the resource system so fall back to the old method\n\ return OldRequire(script)\n\ end\n\ else\n\ return resourceIdMap[script]\n\ end\n\ end\n\ end\n\ \n\ do\n\ local OldDofile = dofile;\n\ dofile = function(filepath)\n\ DoFile(filepath);\n\ end\n\ end\n\ \n\ do\n\ local Oldloadfile = loadfile;\n\ loadfile = function(filepath)\n\ local chunk_string = get_lua_content(filepath);\n\ if chunk_string then\n\ return load(chunk_string);\n\ else\n\ return nil, 'no file found'\n\ end\n\ end\n\ end\n\ \ do\n\ local OldFileOpen = io.open;\n\ io.open = function(filepath, mode)\n\ local isSafe = IsFilePathSafe(filepath);\n\ if isSafe then\n\ return OldFileOpen(filepath, mode);\n\ end\n\ end\n\ \n\ local OldInput = io.input;\n\ io.input = function(filepath)\n\ if not filepath then\n\ return OldInput();\n\ end\n\ local isSafe = IsFilePathSafe(filepath);\n\ if isSafe then\n\ return OldInput(filepath);\n\ end\n\ end\n\ \n\ local OldOutput = io.output;\n\ io.output = function(filepath)\n\ local isSafe = IsFilePathSafe(filepath);\n\ if isSafe then\n\ return OldOuput(filepath);\n\ end\n\ end\n\ end\n\ "; return LuaUtils::DoString(L, strRun); } }
4d7110308bfec9817449ec5f0f9513b21edaef3b
1859e30178bffa621c73aaeeb28f4168ba3e57d8
/CharmCPP/benchOutsrc/TestDSEOut.cpp
5a3e971afd88290bfdcb3035f8188fd1aa475d9d
[]
no_license
JHUISI/auto-tools
a97441e96781523646f8607570a1978417a78135
88d20b08dbd2f7a799619ac25986184633af459f
refs/heads/master
2021-08-29T07:04:06.846700
2021-08-23T13:29:55
2021-08-23T13:29:55
8,965,681
21
6
null
2017-01-23T20:07:52
2013-03-23T04:13:24
Python
UTF-8
C++
false
false
8,887
cpp
TestDSEOut.cpp
#include "TestDSEOut.h" void Dsewaters09::setup(CharmList & mpk, CharmList & msk) { G1 g; G1 w; G1 u; G1 h; G1 v; G1 v1; G1 v2; ZR a1; ZR a2; ZR b; ZR alpha; G1 gb; G1 ga1; G1 ga2; G1 gba1; G1 gba2; G1 tau1; G1 tau2; G1 tau1b; G1 tau2b; GT egga = group.init(GT_t); G1 galpha; G1 galphaUSa1; g = group.random(G1_t); w = group.random(G1_t); u = group.random(G1_t); h = group.random(G1_t); v = group.random(G1_t); v1 = group.random(G1_t); v2 = group.random(G1_t); a1 = group.random(ZR_t); a2 = group.random(ZR_t); b = group.random(ZR_t); alpha = group.random(ZR_t); gb = group.exp(g, b); ga1 = group.exp(g, a1); ga2 = group.exp(g, a2); gba1 = group.exp(gb, a1); gba2 = group.exp(gb, a2); tau1 = group.mul(v, group.exp(v1, a1)); tau2 = group.mul(v, group.exp(v2, a2)); tau1b = group.exp(tau1, b); tau2b = group.exp(tau2, b); egga = group.exp(group.pair(g, g), group.mul(alpha, group.mul(a1, b))); galpha = group.exp(g, alpha); galphaUSa1 = group.exp(galpha, a1); mpk.insert(0, g); mpk.insert(1, gb); mpk.insert(2, ga1); mpk.insert(3, ga2); mpk.insert(4, gba1); mpk.insert(5, gba2); mpk.insert(6, tau1); mpk.insert(7, tau2); mpk.insert(8, tau1b); mpk.insert(9, tau2b); mpk.insert(10, w); mpk.insert(11, u); mpk.insert(12, h); mpk.insert(13, egga); msk.insert(0, galpha); msk.insert(1, galphaUSa1); msk.insert(2, v); msk.insert(3, v1); msk.insert(4, v2); msk.insert(5, alpha); return; } void Dsewaters09::keygen(CharmList & mpk, CharmList & msk, string & id, ZR & bf0, CharmList & skBlinded) { string idBlinded; G1 g; G1 gb; G1 ga1; G1 ga2; G1 gba1; G1 gba2; G1 tau1; G1 tau2; G1 tau1b; G1 tau2b; G1 w; G1 u; G1 h; GT egga; G1 galpha; G1 galphaUSa1; G1 v; G1 v1; G1 v2; ZR alpha; ZR r1; ZR r2; ZR z1; ZR z2; ZR tagUSk; ZR tagUSkBlinded; ZR r; ZR idUShash; G1 D1; G1 D1Blinded; G1 D2; G1 D2Blinded; G1 D3; G1 D3Blinded; G1 D4; G1 D4Blinded; G1 D5; G1 D5Blinded; G1 D6; G1 D6Blinded; G1 D7; G1 D7Blinded; G1 K; G1 KBlinded; bf0 = group.random(ZR_t); idBlinded = id; g = mpk[0].getG1(); gb = mpk[1].getG1(); ga1 = mpk[2].getG1(); ga2 = mpk[3].getG1(); gba1 = mpk[4].getG1(); gba2 = mpk[5].getG1(); tau1 = mpk[6].getG1(); tau2 = mpk[7].getG1(); tau1b = mpk[8].getG1(); tau2b = mpk[9].getG1(); w = mpk[10].getG1(); u = mpk[11].getG1(); h = mpk[12].getG1(); egga = mpk[13].getGT(); galpha = msk[0].getG1(); galphaUSa1 = msk[1].getG1(); v = msk[2].getG1(); v1 = msk[3].getG1(); v2 = msk[4].getG1(); alpha = msk[5].getZR(); r1 = group.random(ZR_t); r2 = group.random(ZR_t); z1 = group.random(ZR_t); z2 = group.random(ZR_t); tagUSk = group.random(ZR_t); tagUSkBlinded = group.mul(tagUSk, group.div(1, bf0)); // TODO: investigate r = group.add(r1, r2); idUShash = group.hashListToZR(idBlinded); D1 = group.mul(galphaUSa1, group.exp(v, r)); D1Blinded = group.exp(D1, group.div(1, bf0)); D2 = group.mul(group.mul(group.exp(g, group.neg(alpha)), group.exp(v1, r)), group.exp(g, z1)); D2Blinded = group.exp(D2, group.div(1, bf0)); D3 = group.exp(gb, group.neg(z1)); D3Blinded = group.exp(D3, group.div(1, bf0)); D4 = group.mul(group.exp(v2, r), group.exp(g, z2)); D4Blinded = group.exp(D4, group.div(1, bf0)); D5 = group.exp(gb, group.neg(z2)); D5Blinded = group.exp(D5, group.div(1, bf0)); D6 = group.exp(gb, r2); D6Blinded = group.exp(D6, group.div(1, bf0)); D7 = group.exp(g, r1); D7Blinded = group.exp(D7, group.div(1, bf0)); K = group.exp(group.mul(group.mul(group.exp(u, idUShash), group.exp(w, tagUSkBlinded)), h), r1); KBlinded = group.exp(K, group.div(1, bf0)); skBlinded.insert(0, idBlinded); skBlinded.insert(1, D1Blinded); skBlinded.insert(2, D2Blinded); skBlinded.insert(3, D3Blinded); skBlinded.insert(4, D4Blinded); skBlinded.insert(5, D5Blinded); skBlinded.insert(6, D6Blinded); skBlinded.insert(7, D7Blinded); skBlinded.insert(8, KBlinded); skBlinded.insert(9, tagUSkBlinded); return; } void Dsewaters09::encrypt(CharmList & mpk, GT & M, string & id, CharmList & ct) { G1 g; G1 gb; G1 ga1; G1 ga2; G1 gba1; G1 gba2; G1 tau1; G1 tau2; G1 tau1b; G1 tau2b; G1 w; G1 u; G1 h; GT egga; ZR s1; ZR s2; ZR t; ZR tagUSc; ZR s; ZR idUShash2; GT C0 = group.init(GT_t); G1 C1; G1 C2; G1 C3; G1 C4; G1 C5; G1 C6; G1 C7; G1 E1; G1 E2; g = mpk[0].getG1(); gb = mpk[1].getG1(); ga1 = mpk[2].getG1(); ga2 = mpk[3].getG1(); gba1 = mpk[4].getG1(); gba2 = mpk[5].getG1(); tau1 = mpk[6].getG1(); tau2 = mpk[7].getG1(); tau1b = mpk[8].getG1(); tau2b = mpk[9].getG1(); w = mpk[10].getG1(); u = mpk[11].getG1(); h = mpk[12].getG1(); egga = mpk[13].getGT(); s1 = group.random(ZR_t); s2 = group.random(ZR_t); t = group.random(ZR_t); tagUSc = group.random(ZR_t); s = group.add(s1, s2); idUShash2 = group.hashListToZR(id); C0 = group.mul(M, group.exp(egga, s2)); C1 = group.exp(gb, s); C2 = group.exp(gba1, s1); C3 = group.exp(ga1, s1); C4 = group.exp(gba2, s2); C5 = group.exp(ga2, s2); C6 = group.mul(group.exp(tau1, s1), group.exp(tau2, s2)); C7 = group.mul(group.mul(group.exp(tau1b, s1), group.exp(tau2b, s2)), group.exp(w, group.neg(t))); E1 = group.exp(group.mul(group.mul(group.exp(u, idUShash2), group.exp(w, tagUSc)), h), t); E2 = group.exp(g, t); ct.insert(0, C0); ct.insert(1, C1); ct.insert(2, C2); ct.insert(3, C3); ct.insert(4, C4); ct.insert(5, C5); ct.insert(6, C6); ct.insert(7, C7); ct.insert(8, E1); ct.insert(9, E2); ct.insert(10, tagUSc); return; } void Dsewaters09::transform(CharmList & ct, CharmList & skBlinded, CharmList & transformOutputList) { string idBlinded; G1 D1Blinded; G1 D2Blinded; G1 D3Blinded; G1 D4Blinded; G1 D5Blinded; G1 D6Blinded; G1 D7Blinded; G1 KBlinded; ZR tagUSkBlinded; GT C0; G1 C1; G1 C2; G1 C3; G1 C4; G1 C5; G1 C6; G1 C7; G1 E1; G1 E2; ZR tagUSc; ZR tag; GT A1 = group.init(GT_t); GT A2 = group.init(GT_t); GT A4 = group.init(GT_t); idBlinded = skBlinded[0].strPtr; D1Blinded = skBlinded[1].getG1(); D2Blinded = skBlinded[2].getG1(); D3Blinded = skBlinded[3].getG1(); D4Blinded = skBlinded[4].getG1(); D5Blinded = skBlinded[5].getG1(); D6Blinded = skBlinded[6].getG1(); D7Blinded = skBlinded[7].getG1(); KBlinded = skBlinded[8].getG1(); tagUSkBlinded = skBlinded[9].getZR(); C0 = ct[0].getGT(); C1 = ct[1].getG1(); C2 = ct[2].getG1(); C3 = ct[3].getG1(); C4 = ct[4].getG1(); C5 = ct[5].getG1(); C6 = ct[6].getG1(); C7 = ct[7].getG1(); E1 = ct[8].getG1(); E2 = ct[9].getG1(); tagUSc = ct[10].getZR(); transformOutputList.insert(4, C0); transformOutputList.insert(0, group.exp(group.sub(tagUSc, tagUSkBlinded), -1)); tag = transformOutputList[0].getZR(); transformOutputList.insert(1, group.mul(group.mul(group.mul(group.mul(group.pair(C1, D1Blinded), group.pair(C2, D2Blinded)), group.pair(C3, D3Blinded)), group.pair(C4, D4Blinded)), group.pair(C5, D5Blinded))); A1 = transformOutputList[1].getGT(); transformOutputList.insert(2, group.mul(group.pair(C6, D6Blinded), group.pair(C7, D7Blinded))); A2 = transformOutputList[2].getGT(); transformOutputList.insert(3, group.mul(group.pair(E1, D7Blinded), group.pair(group.exp(E2, -1), KBlinded))); A4 = transformOutputList[3].getGT(); return; } void Dsewaters09::decout(CharmList & transformOutputList, ZR & bf0, GT & M) { GT C0 = group.init(GT_t); ZR tag; GT A1 = group.init(GT_t); GT A2 = group.init(GT_t); GT A3 = group.init(GT_t); GT A4 = group.init(GT_t); GT result0 = group.init(GT_t); GT result1 = group.init(GT_t); C0 = transformOutputList[4].getGT(); tag = transformOutputList[0].getZR(); A1 = group.exp(transformOutputList[1].getGT(), bf0); A2 = group.exp(transformOutputList[2].getGT(), bf0); A3 = group.mul(A1, group.exp(A2, -1)); A4 = group.exp(transformOutputList[3].getGT(), bf0); result0 = group.exp(A4, tag); result1 = group.mul(A3, group.exp(result0, -1)); M = group.mul(C0, group.exp(result1, -1)); return; }
18a0b18898e5477b86496dcb1a9f5be3f7ca3087
3ef19ce87c2dedb055f19ebc763817e703c09736
/CBarGraphLayer.cpp
8c249812af173a8b995833c02041f71252369123
[]
no_license
Emut/onyon
2b02bbfc2a34e023bdaf8590e98e58dd377484b9
6715916f618f2c11981ec756704ac8355bd264f1
refs/heads/master
2022-12-24T16:31:39.581748
2020-09-30T18:16:52
2020-09-30T18:16:52
248,066,781
1
0
null
null
null
null
UTF-8
C++
false
false
2,586
cpp
CBarGraphLayer.cpp
#include "CBarGraphLayer.h" #include <math.h> void CBarGraphLayer::Draw(CBuffer<CRGB> buf) { m_activeArea = buf.getAreaRect(); int dataCnt = m_data->size(); if (dataCnt < 1) return; float maxData = 0; float minData = 0; for (int i = 0; i < dataCnt; ++i) { CSeriesData *data = (*m_data)[i]; maxData = std::max(data->ydata[0], maxData); minData = std::min(data->ydata[0], minData); } int heigth = m_isVertical ? m_activeArea.getHeigth() : m_activeArea.getWidth(); int width = !m_isVertical ? m_activeArea.getHeigth() : m_activeArea.getWidth(); heigth -= 2; width -= 2; int spacing = 5; int barWidth = (width - spacing * (dataCnt - 1)) / dataCnt; float heigthPerData = (heigth / ((float)maxData - minData)); int zeroLocation = m_isVertical ? heigth - heigthPerData * (0 - minData) : heigthPerData * (0 - minData) + 2; int shift = 1; for (int i = 0; i < dataCnt; ++i) { CSeriesData *data = (*m_data)[i]; CRect<int> barBorders; //adjust bar width and placing if (m_isVertical) { barBorders.setLeft(shift); barBorders.setRight(shift + barWidth); } else { barBorders.setTop(shift); barBorders.setBottom(shift + barWidth); } //adjust bar heigth and placement if (m_isVertical) { if (data->ydata[0] > 0) { barBorders.setBottom(zeroLocation); barBorders.setTop(zeroLocation - data->ydata[0] * heigthPerData); } else { barBorders.setTop(zeroLocation); barBorders.setBottom(zeroLocation - data->ydata[0] * heigthPerData); } } else{ if (data->ydata[0] > 0) { barBorders.setLeft(zeroLocation); barBorders.setRight(zeroLocation + data->ydata[0] * heigthPerData); } else { barBorders.setRight(zeroLocation); barBorders.setLeft(zeroLocation + data->ydata[0] * heigthPerData); } } CBuffer<CRGB> drawBuf(buf, barBorders); drawBuf.Fill(data->color); shift += barWidth + spacing; } } void CBarGraphLayer::setData(std::vector<CSeriesData *> *data) { m_data = data; } CRect<int> CBarGraphLayer::getActiveArea() { return m_activeArea; } CBarGraphLayer::CBarGraphLayer(bool isVertical) { m_isVertical = isVertical; }
7021362b0cbcb1bf5b69b2edc706009700a3879f
988c484d1242084bf49c5b104d873a33d76825b9
/B/1065/main_1.cpp
974dc4a42f5ca196c72e22405244f23b6c79c723
[]
no_license
yjqiang/pat
de9e7b50df55eb2a2cd6eeae781ac76896fcb736
8b459ce087e048cb66954cc160efc5419b2964f2
refs/heads/master
2022-04-22T15:43:52.282615
2020-04-16T02:09:38
2020-04-16T02:09:38
242,607,944
2
0
null
null
null
null
GB18030
C++
false
false
1,187
cpp
main_1.cpp
#define _CRT_SECURE_NO_WARNINGS #include <vector> #include <algorithm> #include <cstdio> #include <cstring> #include <string> #include <iostream> #include <map> #include <cmath> #include <climits> #include <queue> #include <set> using namespace std; map<int, int>couples; set<int> all_people; int main() { int N; scanf("%d", &N); int i; int couple_ID0, couple_ID1; for (i = 0; i < N; ++i) { scanf("%d%d", &couple_ID0, &couple_ID1); couples[couple_ID0] = couple_ID1; couples[couple_ID1] = couple_ID0; } // 拿set做一个快速查找的index int M; scanf("%d", &M); int ID; for (i = 0; i < M; ++i) { scanf("%d", &ID); // 无配偶 或者 配偶不在all_people里面 if (couples.find(ID) == couples.end() || all_people.find(couples[ID]) == all_people.end()) all_people.insert(ID); else // 配偶在all_people里面 // 移除配偶 all_people.erase(couples[ID]); } int n_result = all_people.size(); set<int>::iterator set_i; printf("%d\n", n_result); if (n_result) { set_i = all_people.begin(); printf("%05d", *set_i); ++set_i; for (; set_i != all_people.end(); ++set_i) printf(" %05d", *set_i); } system("pause"); return 0; }
56c9f5f81b78bda37b1e1a0e032fee09c56f9ab9
02ce7bf627d3e27315fa47df7953e285f32ecae7
/EvtPostService.cpp
c0cd81d4ffc0167ccd9b80fda5371c5905230df1
[]
no_license
pabitrad/EventPost
1332b9b797d4f8afd2cc388f861c76f0d89a077f
04b1ead09ae0723485ed7a3591615c3fde256549
refs/heads/master
2022-10-25T02:49:16.302696
2020-06-09T13:23:13
2020-06-09T13:23:13
263,888,129
0
0
null
null
null
null
UTF-8
C++
false
false
3,853
cpp
EvtPostService.cpp
#include "stdafx.h" #include "Service.h" VOID WINAPI ServiceMain(DWORD argc, LPTSTR* argv); wchar_t g_serviceName[] = L"EvtPost"; wchar_t g_serviceDisplayName[] = L"EvtPost service"; DWORD Install(); DWORD Uninstall(); extern void ReadLogs(); extern void UploadLogs(); int _tmain(int argc, _TCHAR* argv[]) { if (argc > 1) { constexpr auto switches = _T("-/"), installFlags = _T("iI"), uninstallFlags = _T("uU"), testFlags = _T("tT"); if (argv) { if (const auto& param = argv[1]) { if (wcschr(switches, param[0])) { if (wcschr(installFlags, param[1])) return Install(); if (wcschr(uninstallFlags, param[1])) return Uninstall(); if (wcschr(testFlags, param[1])) { ReadLogs(); UploadLogs(); return 0; } } } } wprintf(L"-i to install, -u to uninstall, -t to do a single run (read logs, upload)\nOnce the service is installed, you can start it using service.msc, or by running net start %s\n", g_serviceName); return ERROR_INVALID_PARAMETER; } const SERVICE_TABLE_ENTRY ServiceTable[] = { { &g_serviceName[0], (LPSERVICE_MAIN_FUNCTION)ServiceMain }, { NULL, NULL } }; if (StartServiceCtrlDispatcher(ServiceTable) == FALSE) { return GetLastError(); } return 0; } VOID WINAPI ServiceMain(DWORD argc, LPTSTR* argv) { try { NTService service(g_serviceName); NTService::ServiceMainImpl(service); } catch (...) { } } DWORD Install() { wchar_t wszPath[MAX_PATH]{}; if (GetModuleFileName(nullptr, wszPath, _countof(wszPath)) == 0) { const auto err = GetLastError(); wprintf(L"GetModuleFileName failed w/err 0x%08lx\n", err); return err; } using SvcHandlePtr = std::unique_ptr<std::remove_pointer<SC_HANDLE>::type, decltype(&CloseServiceHandle)>; SvcHandlePtr pManager(OpenSCManager(nullptr, nullptr, SC_MANAGER_CONNECT | SC_MANAGER_CREATE_SERVICE), CloseServiceHandle); if (!pManager) { const auto err = GetLastError(); wprintf(L"OpenSCManager failed w/err 0x%08lx\n", err); return err; } SvcHandlePtr pService(CreateServiceW(pManager.get(), g_serviceName, g_serviceDisplayName, SERVICE_QUERY_STATUS, SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL, wszPath, nullptr, nullptr, nullptr, nullptr, nullptr), CloseServiceHandle); if (pService == nullptr) { const auto err = GetLastError(); wprintf(L"CreateService failed w/err 0x%08lx\n", err); return err; } wprintf(L"%s is installed.\n", g_serviceDisplayName); return 0; } DWORD Uninstall() { using SvcHandlePtr = std::unique_ptr<std::remove_pointer<SC_HANDLE>::type, decltype(&CloseServiceHandle)>; SvcHandlePtr pManager(OpenSCManager(nullptr, nullptr, SC_MANAGER_CONNECT | SC_MANAGER_CREATE_SERVICE), CloseServiceHandle); if (!pManager) { const auto err = GetLastError(); wprintf(L"OpenSCManager failed w/err 0x%08lx\n", err); return err; } SvcHandlePtr pService(OpenServiceW(pManager.get(), g_serviceName, SERVICE_STOP | SERVICE_QUERY_STATUS | DELETE), CloseServiceHandle); if (pService == nullptr) { const auto err = GetLastError(); wprintf(L"CreateService failed w/err 0x%08lx\n", err); return err; } SERVICE_STATUS status{}; if (ControlService(pService.get(), SERVICE_CONTROL_STOP, &status)) { wprintf(L"Stopping %s.", g_serviceName); Sleep(1000); while (QueryServiceStatus(pService.get(), &status)) { if (status.dwCurrentState == SERVICE_STOP_PENDING) { wprintf(L"."); Sleep(1000); } else break; } if (status.dwCurrentState == SERVICE_STOPPED) { wprintf(L"\n%s is stopped.\n", g_serviceName); } else { wprintf(L"\n%s failed to stop.\n", g_serviceName); } } if (!DeleteService(pService.get())) { const auto err = GetLastError(); wprintf(L"DeleteService failed w/err 0x%08lx\n", err); return err; } wprintf(L"%s is removed.\n", g_serviceDisplayName); return 0; }
d7cbec8d373d9109f9caa03a9a6104d17458871c
e86fcbd73260f184a678bac683bb4ed687649355
/src/pydnp3.cpp
e5676660d1b1096e9f96d448c1cb1671a50251bf
[]
no_license
kyle8615/ddd
5b725b438e004e5670c62cf3d82417e05dc743fa
fa891318224af1d69f248d2fbcf1819d6e230133
refs/heads/master
2023-04-09T15:44:32.350679
2020-04-29T15:16:25
2020-04-29T15:16:25
258,099,556
0
0
null
2021-04-20T19:49:04
2020-04-23T05:04:17
C++
UTF-8
C++
false
false
1,716
cpp
pydnp3.cpp
#include <pybind11/stl.h> #include <pybind11/complex.h> #include <pybind11/functional.h> #include <pybind11/chrono.h> #include <map> namespace py = pybind11; typedef std::function<py::module&(std::string const &)> ModuleGetter; // Split pydnp3 into multiple compilation units to reduce memory requirements void init_openpal(py::module &); void init_opendnp3(py::module &); void init_asiopal(py::module &); void init_asiodnp3(py::module &); PYBIND11_MODULE(pydnp3, root_module) { // -------------------- SET-UP -------------------- root_module.doc() = "Python bindings for opendnp3 library"; std::map<std::string, py::module> modules = { {"asiodnp3", root_module.def_submodule("asiodnp3", "Bindings for asiodnp3 namespace")}, {"asiopal", root_module.def_submodule("asiopal", "Bindings for asiopal namespace")}, {"opendnp3", root_module.def_submodule("opendnp3", "Bindings for opendnp3 namespace")}, {"openpal", root_module.def_submodule("openpal", "Bindings for openpal namespace")} }; ModuleGetter M = [&](std::string const &namespace_) -> py::module& { return (modules.find(namespace_))->second; }; // -------------------- PYDNP3.OPENPAL -------------------- py::module openpal = M("openpal"); init_openpal(openpal); // -------------------- PYDNP3.OPENDNP3 -------------------- py::module opendnp3 = M("opendnp3"); init_opendnp3(opendnp3); // -------------------- PYDNP3.ASIOPAL -------------------- py::module asiopal = M("asiopal"); init_asiopal(asiopal); // -------------------- PYDNP3.ASIODNP3 -------------------- py::module asiodnp3 = M("asiodnp3"); init_asiodnp3(asiodnp3); }
34580cb85b68400fc500e1f4c6db03ab1fdafb35
42abe286eeda7c909e30273e01f2fcd8af9c476e
/ProjectGame/ProjectGame/Common_Function.h
3ac19638e31b2b1290068154ea136786258ab8d3
[]
no_license
hungld2909/project_c-
723a0f7871022c1a89345a631c8fd8c4c8d79a4d
13422e77da9e1faee8767a91429f0e1aea1fa215
refs/heads/master
2022-11-08T09:53:01.563962
2020-06-27T15:15:41
2020-06-27T15:15:41
275,397,536
0
0
null
null
null
null
UTF-8
C++
false
false
1,091
h
Common_Function.h
 #ifndef COMMON_FUNCTION_H_ #define COMMON_FUNCTION_H_ #include "stdafx.h" #include <Windows.h> #include <string> #include <SDL.h> #include <SDL_image.h> #undef main // khai báo biến const để định dạng các thông số cố định. const int WIDTH_BACKGROUND = 4800; const int HEIGHT_BACKGROUND = 600; const int SCREEN_WIDTH = 1200; const int SCREEN_HEIGHT = 600; const int SCREEN_BPP = 32; const int NUM_THREATS = 4; // khai báo số lượng máy bay địch chạy trên màn hình. static SDL_Surface *g_screen = NULL; static SDL_Surface *g_bkground = NULL; static SDL_Event g_even; namespace SDLCommonFunc // dùng namespace tránh trùng lặp dữ liệu. { SDL_Surface* LoadImage(std::string file_path); void ApplySurface(SDL_Surface* src, SDL_Surface* des, int x, int y); void CleanUp(); \ // xử lý va chạm bool CheckCollision(const SDL_Rect& object1, const SDL_Rect& object2); // kiểm tra va chạm // định nghĩa SDL_SURFACE cho vụ nổ void ApplySurfaceClip(SDL_Surface* src, SDL_Surface* des, SDL_Rect* clip, int x, int y); } #endif
038d159e83c8c5f53c570ab96f4ed318ea163c0c
7ea45377de05a91d447687c53e1a836cfaec4b11
/spoj/helpbob.cpp
3780ebedfe1a5e474bf4ea1637caaa996e243f8a
[]
no_license
saikrishna17394/Code
d2b71efe5e3e932824339149008c3ea33dff6acb
1213f951233a502ae6ecf2df337f340d8d65d498
refs/heads/master
2020-05-19T14:16:49.037709
2017-01-26T17:17:13
2017-01-26T17:17:13
24,478,656
0
0
null
null
null
null
UTF-8
C++
false
false
1,792
cpp
helpbob.cpp
#include <iostream> #include <cstdio> #include <cmath> #include <algorithm> #include <cstring> #include <set> #include <stack> #include <vector> #include <map> #include <list> #include <queue> #define lli long long int #define ii pair<int,int> #define mod 1000000007 #define inf 999999999 using namespace std; inline void inp(int &n ) {//fast input function n=0; int ch=getchar_unlocked(),sign=1; while( ch < '0' || ch > '9' ){if(ch=='-')sign=-1; ch=getchar_unlocked();} while( ch >= '0' && ch <= '9' ) n=(n<<3)+(n<<1)+ ch-'0', ch=getchar_unlocked(); n=n*sign; } int main() { int m,a,ind; int cost[15],area[15],discounts[15][15]; double ans,dp[1<<15],disc; int areas[1<<15]; inp(m); while(m) { for(int i=0;i<m;i++) { inp(cost[i]); inp(area[i]); inp(a); for(int j=0;j<m;j++) { discounts[i][j]=100; } while(a--) { inp(ind); ind--; inp(discounts[i][ind]); discounts[i][ind]=100-discounts[i][ind]; // cout<<i<<" "<<ind<<" "<<discounts[i][ind]<<endl; } } int lim=1<<m,mask,mask1; dp[0]=0; areas[0]=0; ans=inf; double val; for(int i=1;i<lim;i++) { // cout<<ans<<endl; mask=i; dp[i]=inf; areas[i]=0; for(int j=0;j<m;j++) { if(mask&1) { mask1=i^(1<<j); disc=1; for(int k=0;k<m;k++) { if(mask1&1) { // cout<<k<<" dudeee "<<j<<endl; // cout<<j<<" "<<k<<" "<<discounts[j][k]<<endl; disc*=((double)discounts[k][j]/100.0); } mask1>>=1; } val=(double)cost[j]; val*=disc; dp[i]=min(dp[i],val+dp[i^(1<<j)]); areas[i]+=area[j]; // cout<<val<<" "<<dp[i]<< " \\ "; } mask>>=1; // cout<<ans<<endl; } ans=min(ans,dp[i]/(double)(areas[i])); } printf("%.4f\n", ans); inp(m); } return 0; }
95b1cfbc1593b870e98427ad7241161bd8fa3421
83eeb714b0c8b3c9e427b7418ae3a2ab7c5b7e1d
/console/include/console.h
4352d51b06df3893a0cbceb688346559cd115ac1
[]
no_license
urieken/inet_review
36c6a54a796098e146480a81a7eef15c695946fe
de38f5e8cdbbc87a1baaaa16e5e87f22edaa817f
refs/heads/master
2021-01-01T19:39:37.770534
2015-08-04T10:00:34
2015-08-04T10:00:34
40,158,935
0
0
null
null
null
null
UTF-8
C++
false
false
1,439
h
console.h
#ifndef __console_h__ #define __console_h__ #include <string> typedef struct _console_msgs { std::string prompt; std::string welcome; std::string exit; inline _console_msgs() : prompt("console: ") , welcome("Starting console") , exit("Shutting down console"){} inline _console_msgs(const std::string& _prompt, const std::string& _welcome, const std::string& _exit) : prompt(_prompt), welcome(_welcome), exit(_exit){} }console_messages; class CConsole { console_messages m_messages; public: CConsole(); CConsole(const std::string&, const std::string&, const std::string&); virtual ~CConsole(); inline void setPrompt(const std::string& _prompt) {m_messages.prompt = _prompt;}; inline void setWelcomeMessage(const std::string& _message) {m_messages.welcome = _message;}; inline void setExitMessage(const std::string& _message) {m_messages.exit = _message;}; inline const std::string& getPrompt() const {return m_messages.prompt;}; inline const std::string& getWelcomeMessage() const {return m_messages.welcome;}; inline const std::string& getExitMessage() const {return m_messages.exit;}; virtual bool getLine(std::string&, const std::string&); }; #endif // __console_h__
a3540d24267d3df4841e5848a4feb40ace8f5eab
9c9628c540a3e4d9322d881be828e0858e4fb00c
/src/GUI/GUIManager.cpp
1d83dcf6509af36792e1575c0efed9fa9aa69a3f
[ "LicenseRef-scancode-other-permissive" ]
permissive
InDieTasten/--EXP-old-
7f7726143d53a2bad92bf78dbb242274ca5c53f2
6d6229d5638297ba061b188edbbe394df33d70b0
refs/heads/master
2021-06-03T03:11:11.840691
2016-09-28T19:32:46
2016-09-28T19:32:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,785
cpp
GUIManager.cpp
#include <GUI\GUIManager.hpp> GUIManager::GUIManager(AssetManager* _assets) : Responsive(_assets) { EXP::log("[Info]Constructing GUIManager... " + utils::tostring(this)); assets->addFont("Mono", "C:/Windows/Fonts/lucon.ttf"); assets->getFont("Mono")->load(); assets->addTexture("missing", "./content/stock/texture/missing.png"); assets->getTexture("missing")->load(); testMenu = new GUIMenu(assets); testLabel = new Label(assets); testButton = new Button(assets); testLabel->setX(15); testButton->setX(30); testButton->setY(100); testMenu->setBorderColor(sf::Color::Red); testMenu->addElement(testLabel); testMenu->addElement(testButton); this->addMenu(testMenu); EXP::log("[Info]GUIManager has been constructed: " + utils::tostring(this)); } GUIManager::~GUIManager() { EXP::log("[Info]Destructing GUIManager... " + utils::tostring(this)); EXP::log("[Info]Forcefully removing menus: " + utils::tostring(this)); delete testMenu; testMenu = nullptr; delete testLabel; testLabel = nullptr; delete testButton; testButton = nullptr; while (menus.size() > 0) { removeMenu(0); } EXP::log("[Info]GUIManager has been destructed: " + utils::tostring(this)); } int GUIManager::addMenu(GUIMenu* _menu) { menus.push_back(_menu); return menus.size() - 1; } GUIMenu* GUIManager::getMenu(int _pos) { return menus[_pos]; } void GUIManager::removeMenu(int _pos) { menus.erase(menus.begin() + _pos); } void GUIManager::draw(sf::RenderTarget& _target, sf::RenderStates _states) const { for (auto it : menus) { it->draw(_target, _states); } } void GUIManager::handleEvent(sf::RenderWindow& _target, sf::Event* _event) { for (auto it : menus) { it->handleEvent(_target, _event); } }
0bae38aca59ebf35d8928c23876f6ee6345d47de
c80b3309477f3718f113d98971910b3f64830cef
/src/Database.cpp
3b6e99d2a6c92117e6494a96908374db5682140a
[]
no_license
minexew/Glacius
cf093b98957a4a5a228697493f6183918c15b29e
4c039d9bc66e5e10af70eb5f237b2e6e9e09e2ee
refs/heads/master
2021-06-16T02:30:47.946222
2021-01-16T22:30:23
2021-01-16T22:30:23
122,851,230
0
0
null
null
null
null
UTF-8
C++
false
false
22,962
cpp
Database.cpp
#include "Config.hpp" #include "Database.hpp" #define Driver_MySQL_mysql #define Driver_SQLite_sqlite #ifdef Driver_MySQL_mysql #include <BlueShine.h> #endif namespace Glacius { using std::make_unique; inline String escape( String input ) { return input.replaceAll( "'", "''" ); } inline unsigned hashPassword( const char* pass ) { unsigned hash = 100; if ( !pass ) return 0; for ( int i = 0; pass[i]; i++ ) hash += pass[i] * ( i + 1 ); //printf( "'%s' -> %u\n", pass, hash ); return hash; } // ********************************************************************* // Glacius::Database // ********************************************************************* Database::~Database() { } unique_ptr<Database> Database::create(Config& config) { String protocol = config.getOption( "Database.protocol" ); #ifdef Driver_MySQL_mysql if ( protocol == "mysql" ) return make_unique<MySqlDatabase>(config); else #endif #ifdef Driver_SQLite_sqlite if ( protocol == "sqlite" ) return make_unique<SqliteDatabase>(config); else #endif throw Exception( "Glacius.Database.UnknownProtocol", "Unknown database protocol " + protocol ); } // ********************************************************************* // Glacius::MySqlDatabase // ********************************************************************* #ifdef Driver_MySQL_mysql MySqlDatabase::MySqlDatabase(Config& config) { String host = config.getOption( "Database/host" ); String username = config.getOption( "Database/username" ); String pass = config.getOption( "Database/pass" ); String db = config.getOption( "Database/db" ); if ( !BS_connect( host, username, pass, db ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); printf( "[MySqlDatabase] Using database `%s` @ `%s`\n", db.c_str(), host.c_str() ); } MySqlDatabase::~MySqlDatabase() { BS_close( 0 ); } int MySqlDatabase::executeCommand( const char* text ) { return ( int )BS_query( 0, text ); } String MySqlDatabase::getConfigOption( const char* name ) { String query = ( String )"SELECT Value FROM RealmConfig WHERE `Option` = '" + escape( name ) + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); if ( BS_num_rows( 0 ) < 1 ) throw Exception( "Glacius.MySqlDatabase.RealmConfigError", ( String ) "Missing configuration option '" + name + "'" ); return BS_get_cell_by_index( 0, 0, 0 ); } void MySqlDatabase::setConfigOption( const char* name, const char* value ) { String query = ( String )"UPDATE RealmConfig SET Value = '" + escape( value ) + "' WHERE Option = '" + escape( name ) + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); if ( BS_affected_rows( 0 ) > 0 ) // the entry had already existed and was successfully updated return; query = ( String )"INSERT INTO RealmConfig (Option, Value) VALUES ('" + escape( name ) + "', '" + escape( value ) + "')"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); } int MySqlDatabase::createAccount( const char* name, const char* password, DbOpResult& result ) { String query = ( String )"SELECT AccountID FROM Accounts WHERE Name = '" + escape( name ) + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); if ( BS_num_rows( 0 ) > 0 ) { result.errorName = "result.err_account_exists"; return -1; } query = ( String )"INSERT INTO Accounts (Name, Pass) VALUES ('" + escape( name ) + "', MD5('" + escape( password ) + "'))"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); return ( int )BS_last_insert_id( 0 ); } int MySqlDatabase::login( const char* name, const char* password, DbOpResult& result ) { String query = ( String )"SELECT AccountID FROM Accounts WHERE Name = '" + escape( name ) + "' AND Pass = MD5('" + password + "')"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); if ( BS_num_rows( 0 ) == 0 ) { result.errorName = "result.err_login_incorrect"; return -1; } return strtol( BS_get_cell_by_index( 0, 0, 0 ), 0, 0 ); } int MySqlDatabase::createCharacter( int accountID, CharacterCreationInfo& input, DbOpResult& result ) { String query = ( String )"SELECT CharID FROM Characters WHERE AccountID = '" + accountID + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); if ( BS_num_rows( 0 ) >= 5 ) { result.errorName = "result.err_max_characters_reached"; return -1; } query = ( String )"SELECT CharID FROM Characters WHERE Name = '" + escape( input.name ) + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); if ( BS_num_rows( 0 ) > 0 ) { result.errorName = "result.err_character_exists"; return -1; } query = ( String )"INSERT INTO Characters (AccountID, Name, Race)" " VALUES ('" + accountID + "', '" + escape( input.name ) + "', '" + input.race + "')"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); return ( int )BS_last_insert_id( 0 ); } int MySqlDatabase::getCharacterList( int accountID, CharacterSummary* output ) { String query = ( String )"SELECT CharID, Name, Race, Class, Level, AreaName, ZoneName" " FROM Characters LEFT JOIN ZoneNames ON ZoneNames.Zone = Characters.Zone WHERE AccountID = '" + accountID + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); int count = ( int )BS_num_rows( 0 ); if ( count < 0 || count > 5 ) throw Exception( "Glacius.MySqlDatabase.CharacterCountError", ( String )count + " not in range 0 - 5" ); for ( int i = 0; i < count; i++ ) { output[i].charID = strtol( BS_get_cell_by_index( 0, i, 0 ), 0, 0 ); output[i].name = BS_get_cell_by_index( 0, i, 1 ); output[i].race = strtol( BS_get_cell_by_index( 0, i, 2 ), 0, 0 ); output[i].classID = strtol( BS_get_cell_by_index( 0, i, 3 ), 0, 0 ); output[i].level = strtol( BS_get_cell_by_index( 0, i, 4 ), 0, 0 ); output[i].area = BS_get_cell_by_index( 0, i, 5 ); output[i].zone = BS_get_cell_by_index( 0, i, 6 ); } return count; } int MySqlDatabase::loadCharacter( int charID, CharacterProperties* output ) { String query = ( String )"SELECT CharID, Name, Race, Class, Level, AreaName, ZoneName, Characters.Zone, x, y, z, orientation, Gold" " FROM Characters LEFT JOIN ZoneNames ON ZoneNames.Zone = Characters.Zone WHERE CharID = '" + charID + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); int count = ( int )BS_num_rows( 0 ); if ( count != 1 ) throw Exception( "Glacius.MySqlDatabase.CharacterLoadingError", ( String )"expected 1 character, got " + count ); output->charID = strtol( BS_get_cell_by_index( 0, 0, 0 ), 0, 0 ); output->name = BS_get_cell_by_index( 0, 0, 1 ); output->race = strtol( BS_get_cell_by_index( 0, 0, 2 ), 0, 0 ); output->classID = strtol( BS_get_cell_by_index( 0, 0, 3 ), 0, 0 ); output->level = strtol( BS_get_cell_by_index( 0, 0, 4 ), 0, 0 ); output->area = BS_get_cell_by_index( 0, 0, 5 ); output->zone = BS_get_cell_by_index( 0, 0, 6 ); output->zoneID = strtol( BS_get_cell_by_index( 0, 0, 7 ), 0, 0 ); output->x = ( float )strtod( BS_get_cell_by_index( 0, 0, 8 ), 0 ); output->y = ( float )strtod( BS_get_cell_by_index( 0, 0, 9 ), 0 ); output->z = ( float )strtod( BS_get_cell_by_index( 0, 0, 10 ), 0 ); output->orientation = ( float )strtod( BS_get_cell_by_index( 0, 0, 11 ), 0 ); output->gold = strtol( BS_get_cell_by_index( 0, 0, 12 ), 0, 0 ); return 1; } int MySqlDatabase::saveCharacter( CharacterProperties* input ) { String query = ( String )"UPDATE Characters SET x = '" + input->x + "', y = '" + input->y + "', z = '" + input->z + "', orientation = '" + input->orientation + "'" " WHERE CharID = '" + input->charID + "'"; if ( !BS_query( 0, query ) ) throw Exception( "Glacius.MySqlDatabase.DbError", BS_error() ); return 1; } #endif // ********************************************************************* // Glacius::SqliteDatabase // ********************************************************************* SqliteDatabase::SqliteDatabase(Config& config) : db( 0 ) { String fileName = config.getOption( "Database/fileName" ); if ( sqlite3_open( fileName, &db ) ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", sqlite3_errmsg( db ) ); sqlite3_close( db ); throw ex; } Console::writeLine( "[SqliteDatabase] Using database file " + File::formatFileName( fileName ) ); } SqliteDatabase::~SqliteDatabase() { sqlite3_close( db ); } int SqliteDatabase::executeCommand( const char* text ) { char* error; if ( sqlite3_exec( db, text, 0, 0, &error ) == SQLITE_OK ) return true; else { printf( "[SqliteDatabase] Warning: executeCommand() failed:\n\t%s\n\n", error ); sqlite3_free( error ); return false; } } void SqliteDatabase::requireQuery( const char* query, int ( *callback )( void*, int, char**, char** ), void* param ) { char* error = 0; int queryResult = sqlite3_exec( db, query, callback, param, &error ); if ( queryResult != SQLITE_OK && queryResult != SQLITE_ABORT ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } else if ( error ) sqlite3_free( error ); } struct ConfigOptionQuery { String value; bool found; }; static int getConfigOptionCallback( void* param, int numCols, char** columns, char** names ) { //printf( "getConfigOptionCallback(): %i columns, %s = %s\n", numCols, names[0], columns[0] ); if ( numCols > 0 && columns[0] ) { ConfigOptionQuery* query = ( ConfigOptionQuery* )param; query->value = columns[0]; query->found = true; return 1; } return 0; } String SqliteDatabase::getConfigOption( const char* name ) { String query = ( String )"SELECT Value FROM RealmConfig WHERE Option = '" + escape( name ) + "'"; ConfigOptionQuery queryData; queryData.found = false; requireQuery( query, getConfigOptionCallback, &queryData ); if ( !queryData.found ) throw Exception( "Glacius.SqliteDatabase.RealmConfigError", ( String ) "Missing configuration option '" + name + "'" ); return queryData.value; } void SqliteDatabase::setConfigOption( const char* name, const char* value ) { String query = ( String )"UPDATE RealmConfig SET Value = '" + escape( value ) + "' WHERE Option = '" + escape( name ) + "'"; requireQuery( query ); if ( sqlite3_changes( db ) > 0 ) // the entry had already existed and was successfully updated return; query = ( String )"INSERT INTO RealmConfig (Option, Value) VALUES ('" + escape( name ) + "', '" + escape( value ) + "')"; requireQuery( query ); } struct AccountSearch { int accountID; bool found; }; static int accountSearchCallback( void* param, int numCols, char** columns, char** names ) { //printf( "accountSearchCallback(): %i columns, %s = %s\n", numCols, names[0], columns[0] ); if ( numCols > 0 && columns[0] ) { AccountSearch* search = ( AccountSearch* )param; search->accountID = strtol( columns[0], 0, 0 ); search->found = true; return 1; } return 0; } int SqliteDatabase::createAccount( const char* name, const char* password, DbOpResult& result ) { String query = ( String )"SELECT AccountID FROM Accounts WHERE Name = '" + escape( name ) + "'"; AccountSearch searchData; searchData.found = false; char* error = 0; int queryResult = sqlite3_exec( db, query, accountSearchCallback, &searchData, &error ); if ( queryResult != SQLITE_OK && queryResult != SQLITE_ABORT ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } else if ( error ) { sqlite3_free( error ); error = 0; } if ( searchData.found ) { result.errorName = "result.err_account_exists"; return -1; } query = ( String )"INSERT INTO Accounts (Name, Pass) VALUES ('" + name + "', '" + hashPassword( password ) + "')"; if ( sqlite3_exec( db, query, 0, 0, &error ) != SQLITE_OK ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } return ( int )sqlite3_last_insert_rowid( db ); } int SqliteDatabase::login( const char* name, const char* password, DbOpResult& result ) { String query = ( String )"SELECT AccountID FROM Accounts WHERE Name = '" + escape( name ) + "' AND Pass = '" + hashPassword( password ) + "'"; AccountSearch searchData; searchData.found = false; char* error = 0; int queryResult = sqlite3_exec( db, query, accountSearchCallback, &searchData, &error ); if ( queryResult != SQLITE_OK && queryResult != SQLITE_ABORT ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } else if ( error ) { sqlite3_free( error ); error = 0; } if ( !searchData.found ) { result.errorName = "result.err_login_incorrect"; return -1; } return searchData.accountID; } struct CharacterIteration { int numFound; }; struct CharacterSearch { bool found; }; static int characterIterationCallback( void* param, int numCols, char** columns, char** names ) { //printf( "characterIterationCallback(): %i columns, %s = %s\n", numCols, names[0], columns[0] ); CharacterIteration* iter = ( CharacterIteration* )param; iter->numFound++; return 0; } static int characterSearchCallback( void* param, int numCols, char** columns, char** names ) { //printf( "characterSearchCallback(): %i columns, %s = %s\n", numCols, names[0], columns[0] ); CharacterSearch* search = ( CharacterSearch* )param; search->found = true; return 1; } int SqliteDatabase::createCharacter( int accountID, CharacterCreationInfo& input, DbOpResult& result ) { String query = ( String )"SELECT CharID FROM Characters WHERE AccountID = '" + accountID + "'"; CharacterIteration iterInfo; iterInfo.numFound = 0; char* error = 0; int queryResult = sqlite3_exec( db, query, characterIterationCallback, &iterInfo, &error ); if ( queryResult != SQLITE_OK && queryResult != SQLITE_ABORT ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } else if ( error ) { sqlite3_free( error ); error = 0; } if ( iterInfo.numFound >= 5 ) { result.errorName = "result.err_max_characters_reached"; return -1; } query = ( String )"SELECT CharID FROM Characters WHERE Name = '" + escape( input.name ) + "'"; CharacterSearch searchInfo; searchInfo.found = false; queryResult = sqlite3_exec( db, query, characterSearchCallback, &searchInfo, &error ); if ( queryResult != SQLITE_OK && queryResult != SQLITE_ABORT ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } else if ( error ) { sqlite3_free( error ); error = 0; } if ( searchInfo.found ) { result.errorName = "result.err_character_exists"; return -1; } query = ( String )"INSERT INTO Characters (AccountID, Name, Race)" " VALUES ('" + accountID + "', '" + escape( input.name ) + "', '" + input.race + "')"; if ( sqlite3_exec( db, query, 0, 0, &error ) != SQLITE_OK ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } return ( int )sqlite3_last_insert_rowid( db ); } struct CharacterListing { CharacterSummary* output; int numFound; }; static int characterListCallback( void* param, int numCols, char** columns, char** names ) { //printf( "characterListCallback(): %i columns\n", numCols ); CharacterListing* list = ( CharacterListing* )param; int i = list->numFound++; list->output[i].charID = strtol( columns[0], 0, 0 ); list->output[i].name = columns[1]; list->output[i].race = strtol( columns[2], 0, 0 ); list->output[i].classID = strtol( columns[3], 0, 0 ); list->output[i].level = strtol( columns[4], 0, 0 ); list->output[i].area = columns[5]; list->output[i].zone = columns[6]; return 0; } int SqliteDatabase::getCharacterList( int accountID, CharacterSummary* output ) { String query = ( String )"SELECT CharID, Name, Race, Class, Level, AreaName, ZoneName" " FROM Characters LEFT JOIN ZoneNames ON ZoneNames.Zone = Characters.Zone WHERE AccountID = '" + accountID + "'"; CharacterListing listInfo; listInfo.output = output; listInfo.numFound = 0; char* error = 0; int queryResult = sqlite3_exec( db, query, characterListCallback, &listInfo, &error ); if ( queryResult != SQLITE_OK && queryResult != SQLITE_ABORT ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } else if ( error ) { sqlite3_free( error ); error = 0; } if ( listInfo.numFound > 5 ) throw Exception( "Glacius.SqliteDatabase.CharacterCountError", ( String )listInfo.numFound + " not in range 0 - 5" ); return listInfo.numFound; } struct CharacterLoad { CharacterProperties* output; bool found; }; static int characterLoadCallback( void* param, int numCols, char** columns, char** names ) { //printf( "characterLoadCallback(): %i columns\n", numCols ); CharacterLoad* character = ( CharacterLoad* )param; character->output->charID = strtol( columns[0], 0, 0 ); character->output->name = columns[1]; character->output->race = strtol( columns[2], 0, 0 ); character->output->classID = strtol( columns[3], 0, 0 ); character->output->level = strtol( columns[4], 0, 0 ); character->output->area = columns[5]; character->output->zone = columns[6]; character->output->zoneID = strtol( columns[7], 0, 0 ); character->output->x = ( float )strtod( columns[8], 0 ); character->output->y = ( float )strtod( columns[9], 0 ); character->output->z = ( float )strtod( columns[10], 0 ); character->output->orientation = ( float )strtod( columns[11], 0 ); character->output->gold = strtol( columns[12], 0, 0 ); character->found = true; return 0; } int SqliteDatabase::loadCharacter( int charID, CharacterProperties* output ) { String query = ( String )"SELECT CharID, Name, Race, Class, Level, AreaName, ZoneNames.ZoneName, ZoneNames.Zone, x, y, z, orientation, Gold" " FROM Characters LEFT JOIN ZoneNames ON ZoneNames.Zone = Characters.Zone WHERE CharID = '" + charID + "'"; CharacterLoad charInfo; charInfo.output = output; charInfo.found = false; char* error = 0; int queryResult = sqlite3_exec( db, query, characterLoadCallback, &charInfo, &error ); if ( queryResult != SQLITE_OK && queryResult != SQLITE_ABORT ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } else if ( error ) { sqlite3_free( error ); error = 0; } if ( !charInfo.found ) throw Exception( "Glacius.SqliteDatabase.CharacterLoadingError", ( String )"character not found (charID = " + charID + ")" ); return 1; } int SqliteDatabase::saveCharacter( CharacterProperties* input ) { String query = ( String )"UPDATE Characters SET x = '" + input->x + "', y = '" + input->y + "', z = '" + input->z + "', orientation = '" + input->orientation + "'" " WHERE CharID = '" + input->charID + "'"; char* error; if ( sqlite3_exec( db, query, 0, 0, &error ) != SQLITE_OK ) { Exception ex = Exception( "Glacius.SqliteDatabase.DbError", error ); sqlite3_free( error ); throw ex; } return 1; } }
55198bce5aa162230ff3fca20d724e92d85332a6
18ffd9c0da9b26e1a238472f2fb59ccca565c14c
/Test/ActivityListTest.cpp
fd9c4e044117aa1c3176753c06111f8a8dee5a9d
[]
no_license
RalucaBuzamurga/Activity_Tracker
2d6d145161befb138dfad51df2b0a934edbd5917
e092a5a69c046aea19e4bf3924b7bb4692454204
refs/heads/master
2023-04-12T18:15:40.188216
2021-05-04T15:49:58
2021-05-04T15:49:58
357,254,775
0
0
null
null
null
null
UTF-8
C++
false
false
1,513
cpp
ActivityListTest.cpp
// // Created by Raluca Michela Buzamurga on 30/04/21. // #include "gtest/gtest.h" #include "Body/ActivityList.h" #include "Body/Activity.h" #include "Body/Date.h" #include "Body/ActivityTime.h" #include <list> class ActivityListTest : public ::testing::Test { protected: virtual void SetUp() { activityList = ActivityList(); tmpList = std::list<Activity>(); activityList.addActivity(activity1); activityList.addActivity(activity3); tmpList.push_back(activity1); tmpList.push_back(activity3); } ActivityList activityList; std::list<Activity> tmpList; Date date1 = Date(2021, 4, 11); Date date2 = Date(2021, 3, 12); ActivityTime time1 = ActivityTime(12, 30); ActivityTime time2 = ActivityTime(13, 30); ActivityTime time3 = ActivityTime(14, 30); Activity activity1 = Activity("Corsa", date1, time1, time2); Activity activity2 = Activity("Camminata", date1, time2, time3); Activity activity3 = Activity("Corsa", date2, time1, time3); }; TEST_F(ActivityListTest, addActivityTest) { activityList.addActivity(activity2); ASSERT_NE(activityList.getActivityList(), tmpList); tmpList.push_back(activity2); ASSERT_EQ(activityList.getActivityList(), tmpList); } TEST_F(ActivityListTest, deleteActivityTest) { activityList.deleteActivity(activity1); ASSERT_NE(activityList.getActivityList(), tmpList); tmpList.remove(activity1); ASSERT_EQ(activityList.getActivityList(), tmpList); }
3a641df1cde3f165636243b560744051ac924193
1557da887929720f7495cfb09f1baea96d6a9a6b
/Classes/Scenes/ClippingNodeScene.h
890d2ee89a16b65bb2ade8a6c450b9d83f1fad8f
[]
no_license
DreamZhou/LearnCocos2d-x
27781bb1615f7928c0bbd54f3042e17e04c154c0
3c4725d5da3ea2ec782e5c96e7977a3ea8fa6f20
refs/heads/master
2021-05-16T06:11:47.323582
2018-02-02T17:36:40
2018-02-02T17:36:40
103,379,720
0
0
null
null
null
null
UTF-8
C++
false
false
435
h
ClippingNodeScene.h
#ifndef _CLIPPING_NODE_SCENE_H__ #define _CLIPPING_NODE_SCENE_H__ #include "Base/BaseScene.h" class ClippingNodeScene : public BaseScene { public: static cocos2d::Scene * creatScene(); bool init() override; void onToucheBegan(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event * unused_event); void pokeHoleAtPoint(cocos2d::Vec2 point); CREATE_FUNC(ClippingNodeScene); }; #endif // !_CLIPPING_NODE_SCENE_H__
aaf710592e4152ed0ce9e61b8e9e43214a7bf5a1
0cda2dcf353c9dbb42e7b820861929948b9942ea
/fileedit/2009/AvoidingProduct.cpp
021f6dad1e1338688eb7a24389d1c15c1456853d
[]
no_license
naoyat/topcoder
618853a31fa339ac6aa8e7099ceedcdd1eb67c64
ec1a691cd0f56359f3de899b03eada9efa01f31d
refs/heads/master
2020-05-30T23:14:10.356754
2010-01-17T04:03:52
2010-01-17T04:03:52
176,567
1
1
null
null
null
null
UTF-8
C++
false
false
6,042
cpp
AvoidingProduct.cpp
// BEGIN CUT HERE /* // PROBLEM STATEMENT // You are given a set A of integers and a positive integer n. You must find positive integers x, y and z such that their product is as close to n as possible (minimize |n - x * y * z|), and none of them belongs to A. If there are several such triples, find the one with the smallest x. If there are still several such triples, minimize y. If there is still a tie, minimize z. You are given the elements of A as a vector <int> a. Return a vector <int> with exactly three elements: x, y and z, in this order. DEFINITION Class:AvoidingProduct Method:getTriple Parameters:vector <int>, int Returns:vector <int> Method signature:vector <int> getTriple(vector <int> a, int n) CONSTRAINTS -a will contain between 0 and 50 elements, inclusive. -Each element of a will be between 1 and 1000, inclusive. -All elements of a will be distinct. -n will be between 1 and 1000, inclusive. EXAMPLES 0) {2,4} 4 Returns: {1, 1, 3 } You can get 3=1*1*3 and 5=1*1*5. 3 is better. 1) {1} 10 Returns: {2, 2, 2 } 2) {1,2} 10 Returns: {3, 3, 3 } 3) {1,3} 12 Returns: {2, 2, 2 } 4) {1,3} 13 Returns: {2, 2, 4 } 5) {1,15} 90 Returns: {2, 5, 9 } */ // END CUT HERE #line 80 "AvoidingProduct.cpp" #include <string> #include <vector> #include <set> #include <map> #include <list> #include <queue> #include <algorithm> // BEGIN CUT HERE #include <iostream> #include "cout.h" // END CUT HERE #include <sstream> #include <cmath> using namespace std; #define sz(a) int((a).size()) #define pb push_back #define all(c) (c).begin(),(c).end() #define tr(c,i) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); i++) #define rep(var,n) for(int var=0;var<(n);var++) #define UPLIM 1001 class AvoidingProduct { public: vector<int> getTriple(vector<int> a, int n) { int dmin = 1000; int uplim = 2000+a[0]+1; // int N=sz(a); sort(all(a)); set<int> s; tr(a,it) s.insert(*it); int amin=1001; for(int i=1;i<=1000;i++) { if (s.find(i)==s.end()) {amin=i;break;} } int am3=amin*amin*amin; if (am3>n) { vector<int> ans(3,amin); return ans; } vector<int> ans(3,-1); for(int x=1;x<=uplim;x++){ if (s.find(x)!=s.end()) continue; for(int y=x;y<=uplim;y++){ if (s.find(y)!=s.end()) continue; int xy = x*y; if(xy>uplim) break; for(int z=y;z<=uplim;z++){ if (s.find(z)!=s.end()) continue; int xyz = xy * z; if(xyz>uplim) break; int d = abs(n-xyz); if (d<dmin) { dmin = d; ans[0]=x; ans[1]=y; ans[2]=z; } } } } return ans; } }; // BEGIN CUT HERE #include <time.h> clock_t start_time; void timer_clear() { start_time = clock(); } string timer() { clock_t end_time = clock(); double interval = (double)(end_time - start_time)/CLOCKS_PER_SEC; ostringstream os; os << " (" << interval*1000 << " msec)"; return os.str(); } template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); } int verify_case(const vector <int> &Expected, const vector <int> &Received) { if (Expected == Received) cerr << "PASSED" << timer() << endl; else { cerr << "FAILED" << timer() << endl; cerr << "\tExpected: " << print_array(Expected) << endl; cerr << "\tReceived: " << print_array(Received) << endl; } return 0;} template<int N> struct Case_ {}; char Test_(...); int Test_(Case_<0>) { timer_clear(); int a_[] = {2,4}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 4; int RetVal_[] = {1, 1, 3 }; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } int Test_(Case_<1>) { timer_clear(); int a_[] = {1}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 10; int RetVal_[] = {2, 2, 2 }; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } int Test_(Case_<2>) { timer_clear(); int a_[] = {1,2}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 10; int RetVal_[] = {3, 3, 3 }; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } int Test_(Case_<3>) { timer_clear(); int a_[] = {1,3}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 12; int RetVal_[] = {2, 2, 2 }; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } int Test_(Case_<4>) { timer_clear(); int a_[] = {1,3}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 13; int RetVal_[] = {2, 2, 4 }; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } int Test_(Case_<5>) { timer_clear(); int a_[] = {1,15}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 90; int RetVal_[] = {2, 5, 9 }; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } int Test_(Case_<6>) { timer_clear(); int a_[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 1; int RetVal_[] = {11,11,11}; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } int Test_(Case_<7>) { timer_clear(); int a_[] = {1, 2, 3, 4, 990, 20, 5, 6, 10, 11}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int n = 990; int RetVal_[] = {7,8,18}; vector <int> RetVal(RetVal_, RetVal_+sizeof(RetVal_)/sizeof(*RetVal_)); return verify_case(RetVal, AvoidingProduct().getTriple(a, n)); } template<int N> void Run_() { cerr << "Test Case #" << N << "..." << flush; Test_(Case_<N>()); Run_<sizeof(Test_(Case_<N+1>()))==1 ? -1 : N+1>(); } template<> void Run_<-1>() {} int main() { Run_<0>(); } // END CUT HERE
6b12f147bab0f5c510d3949ce445757d18dcc0bd
8793ab6f455499c6cd164f29e4d01e90b0677f02
/dsound/src/fullduplexfilter/fullduplexfilter.cpp
6c65b4e7bcea5202e61ada11e0e7b0dfef840e9d
[]
no_license
BieHDC/mingw_dx7_sdk_samples
2f9363cd424d1e9fdbfc0d5ec98c5ecbd7b56c45
77056be5f78cef607b4801669647551d7a0dc2b1
refs/heads/master
2021-05-23T02:08:12.036688
2020-04-05T08:12:01
2020-04-05T08:12:01
253,181,954
0
0
null
null
null
null
UTF-8
C++
false
false
22,001
cpp
fullduplexfilter.cpp
//----------------------------------------------------------------------------- // File: FullDuplexFilter.cpp // // Desc: DirectSound support file for sample showing how to use DirectSound // to implement full duplex audio and a filter. // // Copyright (c) 1999 Microsoft Corp. All rights reserved. //----------------------------------------------------------------------------- #define STRICT #include <objbase.h> #include <initguid.h> #include <commdlg.h> #include <mmreg.h> #include <dsound.h> #include <stdio.h> #include "resource.h" //----------------------------------------------------------------------------- // Function-prototypes //----------------------------------------------------------------------------- HRESULT TransformData( BYTE* pbOut, BYTE* pbIn, DWORD dwLength ); HRESULT RestoreBuffers(); //----------------------------------------------------------------------------- // Defines, constants, and global variables //----------------------------------------------------------------------------- #define NUM_PLAY_NOTIFICATIONS 16 #define NUM_BUFFERS (16) #define MAX(a,b) ( (a) > (b) ? (a) : (b) ) #define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } } #define SAFE_RELEASE(p) { if(p) { (p)->Release(); (p)=NULL; } } LPDIRECTSOUND g_pDS = NULL; LPDIRECTSOUNDCAPTURE g_pDSCapture = NULL; LPDIRECTSOUNDBUFFER g_pDSBPrimary = NULL; LPDIRECTSOUNDBUFFER g_pDSBOutput = NULL; LPDIRECTSOUNDCAPTUREBUFFER g_pDSBCapture = NULL; LPDIRECTSOUNDNOTIFY g_pDSNotify = NULL; DSBPOSITIONNOTIFY g_aPosNotify[ NUM_PLAY_NOTIFICATIONS + 1 ]; HANDLE g_hNotificationEvents[2]; BOOL g_bUseFilter; BOOL g_abOutputFormatSupported[16]; BOOL g_abInputFormatSupported[16]; DWORD g_dwPlayBufferSize; DWORD g_dwCaptureBufferSize; DWORD g_dwNextPlayOffset; DWORD g_dwNextCaptureOffset; DWORD g_dwNotifySize; WAVEFORMATEX* g_pCaptureWaveFormat; //----------------------------------------------------------------------------- // Name: InitDirectSound() // Desc: Initilizes DirectSound //----------------------------------------------------------------------------- HRESULT InitDirectSound( HWND hDlg ) { HRESULT hr; DSBUFFERDESC dsbdesc; ZeroMemory( &g_aPosNotify, sizeof(DSBPOSITIONNOTIFY) * (NUM_PLAY_NOTIFICATIONS + 1) ); g_dwPlayBufferSize = 0; g_dwCaptureBufferSize = 0; g_dwNotifySize = 0; g_dwNextPlayOffset = 0; // Initialize COM if( hr = CoInitialize(NULL) ) return hr; // Create IDirectSound using the preferred sound device if( FAILED( hr = DirectSoundCreate( NULL, &g_pDS, NULL ) ) ) return hr; // Set coop level to DSSCL_PRIORITY if( FAILED( hr = g_pDS->SetCooperativeLevel( hDlg, DSSCL_PRIORITY ) ) ) return hr; // Obtain primary buffer ZeroMemory( &dsbdesc, sizeof(DSBUFFERDESC) ); dsbdesc.dwSize = sizeof(DSBUFFERDESC); dsbdesc.dwFlags = DSBCAPS_PRIMARYBUFFER; if( FAILED( hr = g_pDS->CreateSoundBuffer( &dsbdesc, &g_pDSBPrimary, NULL ) ) ) return hr; // Create IDirectSoundCapture using the preferred capture device if( FAILED( hr = DirectSoundCaptureCreate( NULL, &g_pDSCapture, NULL ) ) ) return hr; return S_OK; } //----------------------------------------------------------------------------- // Name: FreeDirectSound() // Desc: Releases DirectSound //----------------------------------------------------------------------------- HRESULT FreeDirectSound() { // Release DirectSound interfaces SAFE_DELETE( g_pCaptureWaveFormat ); SAFE_RELEASE( g_pDSNotify ); SAFE_RELEASE( g_pDSBPrimary ); SAFE_RELEASE( g_pDSBOutput ); SAFE_RELEASE( g_pDSBCapture ); SAFE_RELEASE( g_pDSCapture ); SAFE_RELEASE( g_pDS ); // Release COM CoUninitialize(); return S_OK; } //----------------------------------------------------------------------------- // Name: GetWaveFormatFromIndex() // Desc: Returns 16 different wave formats based on nIndex //----------------------------------------------------------------------------- VOID GetWaveFormatFromIndex( INT nIndex, WAVEFORMATEX* pwfx ) { INT iSampleRate = nIndex / 4; INT iType = nIndex % 4; switch( iSampleRate ) { case 0: pwfx->nSamplesPerSec = 8000; break; case 1: pwfx->nSamplesPerSec = 11025; break; case 2: pwfx->nSamplesPerSec = 22050; break; case 3: pwfx->nSamplesPerSec = 44100; break; } switch( iType ) { case 0: pwfx->wBitsPerSample = 8; pwfx->nChannels = 1; break; case 1: pwfx->wBitsPerSample = 16; pwfx->nChannels = 1; break; case 2: pwfx->wBitsPerSample = 8; pwfx->nChannels = 2; break; case 3: pwfx->wBitsPerSample = 16; pwfx->nChannels = 2; break; } pwfx->nBlockAlign = pwfx->nChannels * ( pwfx->wBitsPerSample / 8 ); pwfx->nAvgBytesPerSec = pwfx->nBlockAlign * pwfx->nSamplesPerSec; } //----------------------------------------------------------------------------- // Name: ScanAvailableOutputFormats() // Desc: Tests to see if 16 different standard wave formats are supported by // the playback device //----------------------------------------------------------------------------- HRESULT ScanAvailableOutputFormats() { WAVEFORMATEX wfx; WAVEFORMATEX wfxSet; HRESULT hr; HCURSOR hCursor; // This might take a second or two, so throw up the hourglass hCursor = GetCursor(); SetCursor( LoadCursor( NULL, IDC_WAIT ) ); ZeroMemory( &wfxSet, sizeof(wfxSet) ); wfxSet.wFormatTag = WAVE_FORMAT_PCM; ZeroMemory( &wfx, sizeof(wfx) ); wfx.wFormatTag = WAVE_FORMAT_PCM; // Try 16 different standard format to see if they are supported for( INT iIndex = 0; iIndex < 16; iIndex++ ) { GetWaveFormatFromIndex( iIndex, &wfx ); // To test if a playback format is supported, try to set the format // using a specific format. If it works then the format is // supported, otherwise not. if( FAILED( hr = g_pDSBPrimary->SetFormat( &wfx ) ) ) { g_abOutputFormatSupported[ iIndex ] = FALSE; } else { // Get the format that was just set, and see if it // is actually supported since SetFormat() sometimes returns DS_OK // even if the format was not supported if( FAILED( hr = g_pDSBPrimary->GetFormat( &wfxSet, sizeof(wfxSet), NULL ) ) ) return hr; if( memcmp( &wfx, &wfxSet, sizeof(wfx) ) == 0 ) g_abOutputFormatSupported[ iIndex ] = TRUE; else g_abOutputFormatSupported[ iIndex ] = FALSE; } } SetCursor( hCursor ); return S_OK; } //----------------------------------------------------------------------------- // Name: ScanAvailableInputFormats() // Desc: Tests to see if 16 different standard wave formats are supported by // the capture device //----------------------------------------------------------------------------- HRESULT ScanAvailableInputFormats() { HRESULT hr; WAVEFORMATEX wfx; HCURSOR hCursor; DSCBUFFERDESC dscbd; LPDIRECTSOUNDCAPTUREBUFFER pDSCaptureBuffer = NULL; // This might take a second or two, so throw up the hourglass hCursor = GetCursor(); SetCursor( LoadCursor( NULL, IDC_WAIT ) ); ZeroMemory( &wfx, sizeof(wfx) ); wfx.wFormatTag = WAVE_FORMAT_PCM; ZeroMemory( &dscbd, sizeof(dscbd) ); dscbd.dwSize = sizeof(dscbd); // Try 16 different standard format to see if they are supported for( INT iIndex = 0; iIndex < 16; iIndex++ ) { GetWaveFormatFromIndex( iIndex, &wfx ); // To test if a capture format is supported, try to create a // new capture buffer using a specific format. If it works // then the format is supported, otherwise not. dscbd.dwBufferBytes = wfx.nAvgBytesPerSec; dscbd.lpwfxFormat = &wfx; if( FAILED( hr = g_pDSCapture->CreateCaptureBuffer( &dscbd, &pDSCaptureBuffer, NULL ) ) ) g_abInputFormatSupported[ iIndex ] = FALSE; else g_abInputFormatSupported[ iIndex ] = TRUE; SAFE_RELEASE( pDSCaptureBuffer ); } SetCursor( hCursor ); return S_OK; } //----------------------------------------------------------------------------- // Name: SetBufferFormats() // Desc: Sets the buffer formats for the primary buffer, and the capture buffer //----------------------------------------------------------------------------- HRESULT SetBufferFormats( WAVEFORMATEX* pwfxInput, WAVEFORMATEX* pwfxOutput ) { HRESULT hr; DSCBUFFERDESC dscbd; // Set the format of the primary buffer // to the format of the output buffer if( FAILED( hr = g_pDSBPrimary->SetFormat( pwfxOutput ) ) ) return hr; // Set the notification size g_dwNotifySize = MAX( 4096, pwfxInput->nAvgBytesPerSec / 8 ); g_dwNotifySize -= g_dwNotifySize % pwfxInput->nBlockAlign; // Set the buffer sizes g_dwPlayBufferSize = NUM_BUFFERS * g_dwNotifySize / 2; g_dwCaptureBufferSize = g_dwNotifySize * NUM_BUFFERS; SAFE_RELEASE( g_pDSBCapture ); // Create the capture buffer ZeroMemory( &dscbd, sizeof(dscbd) ); dscbd.dwSize = sizeof(dscbd); dscbd.dwBufferBytes = g_dwCaptureBufferSize; dscbd.lpwfxFormat = pwfxInput; // Set the format during creatation if( FAILED( hr = g_pDSCapture->CreateCaptureBuffer( &dscbd, &g_pDSBCapture, NULL ) ) ) return hr; return S_OK; } //----------------------------------------------------------------------------- // Name: CreateOutputBuffer() // Desc: Creates the ouptut buffer and sets up the notification positions // on the capture buffer //----------------------------------------------------------------------------- HRESULT CreateOutputBuffer() { HRESULT hr; WAVEFORMATEX wfxInput; INT i; // This sample works by creating notification events which // are signaled when the capture buffer reachs specific offsets // WinMain() waits for the associated event to be signaled, and // when it is, it calls HandleNotifications() which copy the // data from the capture buffer into the output buffer // while optionally running it through a filter ZeroMemory( &wfxInput, sizeof(wfxInput) ); g_pDSBCapture->GetFormat( &wfxInput, sizeof(wfxInput), NULL ); // Set up the direct sound buffer, and only request the flags needed // since each requires some overhead and limits if the buffer can // be hardware accelerated DSBUFFERDESC dsbd; ZeroMemory( &dsbd, sizeof(DSBUFFERDESC) ); dsbd.dwSize = sizeof(DSBUFFERDESC); dsbd.dwFlags = DSBCAPS_GLOBALFOCUS; dsbd.dwBufferBytes = g_dwPlayBufferSize; dsbd.lpwfxFormat = &wfxInput; // Create a DirectSound buffer if( FAILED( hr = g_pDS->CreateSoundBuffer( &dsbd, &g_pDSBOutput, NULL ) ) ) return hr; // Create a notification event, for when the sound stops playing if( FAILED( hr = g_pDSBCapture->QueryInterface( IID_IDirectSoundNotify, (VOID**)&g_pDSNotify ) ) ) return hr; // Setup the notification positions for( i = 0; i < NUM_PLAY_NOTIFICATIONS; i++ ) { g_aPosNotify[i].dwOffset = (g_dwNotifySize * i) + g_dwNotifySize - 1; g_aPosNotify[i].hEventNotify = g_hNotificationEvents[0]; } g_aPosNotify[i].dwOffset = DSBPN_OFFSETSTOP; g_aPosNotify[i].hEventNotify = g_hNotificationEvents[1]; // Tell DirectSound when to notify us. the notification will come in the from // of signaled events that are handled in WinMain() if( FAILED( hr = g_pDSNotify->SetNotificationPositions( NUM_PLAY_NOTIFICATIONS + 1, g_aPosNotify ) ) ) return hr; return S_OK; } //----------------------------------------------------------------------------- // Name: StartBuffers() // Desc: Start the capture buffer, and the start playing the output buffer //----------------------------------------------------------------------------- HRESULT StartBuffers() { LPVOID pbBuffer; DWORD dwBufferSize; WAVEFORMATEX wfxOutput; HRESULT hr; // Restore lost buffers if( FAILED( hr = RestoreBuffers() ) ) return hr; // Find out where the capture buffer is right now, then write data // some extra amount forward to make sure we're ahead of the write cursor g_pDSBCapture->GetCurrentPosition( &g_dwNextCaptureOffset, NULL ); g_dwNextCaptureOffset -= g_dwNextCaptureOffset % g_dwNotifySize; g_dwNextPlayOffset = g_dwNextCaptureOffset + ( 2 * g_dwNotifySize ); g_dwNextPlayOffset %= g_dwPlayBufferSize; // Circular buffer // Tell the capture buffer to start recording g_pDSBCapture->Start( DSCBSTART_LOOPING ); // Rewind the output buffer, fill it with silence, and play it g_pDSBOutput->SetCurrentPosition( g_dwNextPlayOffset ); // Save the format of the capture buffer in g_pCaptureWaveFormat SAFE_DELETE( g_pCaptureWaveFormat ); g_pCaptureWaveFormat = new WAVEFORMATEX; ZeroMemory( g_pCaptureWaveFormat, sizeof(WAVEFORMATEX) ); g_pDSBCapture->GetFormat( g_pCaptureWaveFormat, sizeof(WAVEFORMATEX), NULL ); // Get the format of the output buffer ZeroMemory( &wfxOutput, sizeof(wfxOutput) ); g_pDSBOutput->GetFormat( &wfxOutput, sizeof(wfxOutput), NULL ); // Fill the output buffer with silence at first // As capture data arrives, HandleNotifications() will fill // the output buffer with wave data. if( FAILED( hr = g_pDSBOutput->Lock( 0, g_dwPlayBufferSize, &pbBuffer, &dwBufferSize, NULL, NULL, 0 ) ) ) return hr; FillMemory( (BYTE*) pbBuffer, dwBufferSize, (BYTE)( wfxOutput.wBitsPerSample == 8 ? 128 : 0 ) ); g_pDSBOutput->Unlock( pbBuffer, dwBufferSize, NULL, NULL ); // Play the output buffer g_pDSBOutput->Play( 0, 0, DSBPLAY_LOOPING ); return S_OK; } //----------------------------------------------------------------------------- // Name: StopBuffers() // Desc: Stop both the capture and the output buffers //----------------------------------------------------------------------------- HRESULT StopBuffers() { if( NULL == g_pDSBCapture || NULL == g_pDSBOutput ) return S_OK; g_pDSBCapture->Stop(); g_pDSBOutput->Stop(); return S_OK; } //----------------------------------------------------------------------------- // Name: RestoreBuffers() // Desc: Restore lost buffers and fill them up with sound if possible //----------------------------------------------------------------------------- HRESULT RestoreBuffers() { HRESULT hr; if( NULL == g_pDSBCapture || NULL == g_pDSBOutput ) return S_OK; DWORD dwStatus; if( FAILED( hr = g_pDSBOutput->GetStatus( &dwStatus ) ) ) return hr; if( dwStatus & DSBSTATUS_BUFFERLOST ) { // Since the app could have just been activated, then // DirectSound may not be giving us control yet, so // the restoring the buffer may fail. // If it does, sleep until DirectSound gives us control. do { hr = g_pDSBOutput->Restore(); if( hr == DSERR_BUFFERLOST ) Sleep( 10 ); } while( hr = g_pDSBOutput->Restore() ); } return S_OK; } //----------------------------------------------------------------------------- // Name: HandleNotification() // Desc: Handle the notification that tells us to copy data from the // capture buffer to the output buffer //----------------------------------------------------------------------------- HRESULT HandleNotification() { HRESULT hr; VOID* pbCaptureData = NULL; VOID* pbPlayData = NULL; DWORD dwCaptureLength; DWORD dwPlayLength; DWORD dwStatus; if( FAILED( hr = g_pDSBOutput->GetStatus( &dwStatus ) ) ) return hr; if( dwStatus & DSBSTATUS_BUFFERLOST ) { // Start capturing again, since it they have stopped if( FAILED( hr = StartBuffers() ) ) return hr; return S_OK; } // Lock the capture buffer down if( FAILED( hr = g_pDSBCapture->Lock( g_dwNextCaptureOffset, g_dwNotifySize, &pbCaptureData, &dwCaptureLength, NULL, NULL, 0L ) ) ) return hr; // Lock the output buffer down if( FAILED( hr = g_pDSBOutput->Lock( g_dwNextPlayOffset, g_dwNotifySize, &pbPlayData, &dwPlayLength, NULL, NULL, 0L ) ) ) return hr; if( g_bUseFilter ) { // Filter the data before coping the capture data into // the playback buffer TransformData( (BYTE*) pbPlayData, (BYTE*) pbCaptureData, dwPlayLength ); } else { // Just copy the memory from the capture buffer // to the playback buffer if we are not using the filter CopyMemory( pbPlayData, pbCaptureData, dwPlayLength ); } // Unlock the play buffer g_pDSBOutput->Unlock( pbPlayData, dwPlayLength, NULL, 0 ); // Unlock the capture buffer g_pDSBCapture->Unlock( pbCaptureData, dwCaptureLength, NULL, 0 ); // Move the capture offset along g_dwNextCaptureOffset += dwCaptureLength; g_dwNextCaptureOffset %= g_dwCaptureBufferSize; // Circular buffer // Move the playback offset along g_dwNextPlayOffset += dwPlayLength; g_dwNextPlayOffset %= g_dwPlayBufferSize; // Circular buffer return S_OK; } //----------------------------------------------------------------------------- // Name: TransformData() // Desc: Applies a gargle filter to the data from pbIn and copies it to pbOut //----------------------------------------------------------------------------- HRESULT TransformData( BYTE* pbOut, BYTE* pbIn, DWORD dwLength ) { static INT s_nPhase = 0; INT nGargleRate = 10; INT nPeriod = ( g_pCaptureWaveFormat->nSamplesPerSec * g_pCaptureWaveFormat->nChannels ) / nGargleRate; while( dwLength ) { dwLength--; // If m_Shape is 0 (triangle) then we multiply by a triangular waveform // that runs 0..nPeriod/2..0..nPeriod/2..0... else by a square one that // is either 0 or nPeriod/2 (same maximum as the triangle) or zero. // { // s_Phase is the number of samples from the start of the period. // We keep this running from one call to the next, // but if the period changes so as to make this more // than nPeriod then we reset to 0 with a bang, so this may cause // an audible click or pop ++s_nPhase; if( s_nPhase > nPeriod ) s_nPhase = 0; INT nModulate = s_nPhase; // Set this to 0 to use a triangle wave // or 1 to use a square wave if( 1 ) { // Square wave if( nModulate <= nPeriod / 2 ) nModulate = nPeriod / 2; else nModulate = 0; } else { // Triangle wave if( nModulate > nPeriod / 2 ) // handle downslope nModulate = nPeriod - nModulate; } if( g_pCaptureWaveFormat->wBitsPerSample == 8 ) { // 8 bit sound uses 0..255 representing -128..127 // Any overflow, even by 1, would sound very bad. // so we clip paranoically after modulating. // I think it should never clip by more than 1 // INT i = *pbIn - 128; // Sound sample, zero based i = ( i * nModulate * 2 ) / nPeriod; // Modulate // Clip if( i > 127 ) i = 127; if( i < -128 ) i = -128; *pbOut = (BYTE)( i + 128 ); // Reset zero offset to 128 } else { // 16 bit sound uses 16 bits properly (0 means 0) // We still clip paranoically WORD* psi = (WORD*) pbOut; INT i = *( (WORD*)pbIn ); // In a register, we might hope i = ( i * nModulate * 2 ) / nPeriod; // Modulate // Clip if( i > 32767 ) i = 32767; if( i < -32768 ) i = -32768; *psi = (WORD)i; ++pbIn; // Nudge it on another 8 bits here to get a 16 bit step ++pbOut; --dwLength; // And nudge the count too. } } // Move on 8 bits to next sound sample ++pbIn; ++pbOut; } return S_OK; }
d1229be43f8a0c281e34ddc4cdd3331777e06998
27a70bd4b6abba8b21231b425e7f98ae47d582b9
/class-olympiad/1394/code-forces/628/test.cpp
364e0fefd191adf114c1dd079fa88e64270cdd79
[]
no_license
nimacgit/CPP
bc6011176b6a1c840c857fcdaed89df4347bfee9
da35095c8f3def539f641f959f96d2f3f4d55486
refs/heads/master
2020-04-08T00:21:44.668748
2018-11-23T15:43:31
2018-11-23T15:46:27
158,849,201
0
0
null
null
null
null
UTF-8
C++
false
false
636
cpp
test.cpp
/* * ===================================================================================== * * Filename: test.cpp * * Description: * * Version: 1.0 * Created: ۱۶/۰۱/۳۱ ۱۹:۱۰:۴۲ * Revision: none * Compiler: gcc * * Author: YOUR NAME (), * Organization: * * ===================================================================================== */ #include <bits/stdc++.h> using namespace std; int main() { int n = 100 * 1000; int maxi = 1000000000; cout << n << " 1299827" << endl; for(int i = 0; i < n; i++) cout << 1 << " " << maxi << endl; }
1a309347409f6087e1083548a72245bc64b75d83
ebb635113e638357dbb3456c4fdfb9a50b64ea55
/main.cpp
f6355bb5b3c74407bbcf0b44ade5d54744b7a78f
[]
no_license
pjheden/mechanical_mirror
15026e551f4f23049d2e7b176df1f4d80bbaead0
a2183808e7f52ce2265252a4f357022b6282b4b7
refs/heads/master
2022-12-02T04:02:16.024614
2020-08-08T20:15:59
2020-08-08T20:15:59
287,572,350
1
0
null
2020-08-14T16:02:58
2020-08-14T16:02:57
null
UTF-8
C++
false
false
4,108
cpp
main.cpp
#include <opencv4/opencv2/core.hpp> #include <opencv4/opencv2/core/mat.hpp> #include <opencv4/opencv2/core/types.hpp> #include <stdio.h> #include <unistd.h> #include <opencv2/opencv.hpp> #include <opencv2/imgproc.hpp> #include <opencv2/highgui.hpp> #define ever (;;) #define WHITE_THRESHOLD 25 #define PIXEL_THRESHOLD 10 #define SQUARES_Y 9 #define SQUARES_X 9 #define SETUP_DELAY 1 int main(int argc, char** argv ) { cv::VideoCapture cap; cv::Mat reference_frame, absolute_frame, diff_frame, small_frame, cropped_frame; cv::Rect cropping_rect(180, 0, 720, 720); // Open default webcam if(!cap.open(0, cv::CAP_ANY)) { std::cerr << "Error! Unable to open camera!" << std::endl; return -1; } sleep(SETUP_DELAY); cap.read(reference_frame); // Crop the frame reference_frame = reference_frame(cropping_rect); //720 const unsigned int frame_height = reference_frame.rows; const unsigned int y_square_pixels = frame_height / SQUARES_Y; //1280 const unsigned int frame_width = reference_frame.cols; const unsigned int x_square_pixels = frame_width / SQUARES_X; // This is a slower version, because it vectors will not be allocated in contigous memory, leading to more cache-misses. //std::vector<std::vector<bool>> squares [frame_height / 10][frame_width / 10]; // This one is much faster bool squares [SQUARES_Y][SQUARES_X]; std::cout << "height:" << frame_height << std::endl; std::cout << "width:" << frame_width << std::endl; cv::flip(reference_frame, reference_frame, 1); // Not sure if cv::absdiff gets best result from a grayscale image or color image, but using greyscale should require less resources //cv::cvtColor(reference_frame, reference_frame, cv::COLOR_RGB2GRAY); // Forever loop for ever { // Wait for a new frame from the camera and store it into 'frame' cap.read(absolute_frame); if(absolute_frame.empty()) { std::cerr << "ERROR! Empty frame!" << std::endl; return -1; } // crop frame absolute_frame = absolute_frame(cropping_rect); // Flip over vertical axis cv::flip(absolute_frame, absolute_frame, 1); // grayscale //cv::cvtColor(reference_frame, reference_frame, cv::COLOR_RGB2GRAY); //Difference cv::absdiff(reference_frame, absolute_frame, diff_frame); //greyscale cv::cvtColor(diff_frame, diff_frame, cv::COLOR_RGB2GRAY); // Check the ROI and populate squares<boolean> 2d array for (int y = 0; y < frame_height; y += x_square_pixels) { for (int x = 0; x < frame_width; x += x_square_pixels) { // Find amount of pixels inside ROI that are above the THRESHOLD unsigned int white_pixels = 0; cv::Mat roi(diff_frame, cv::Rect(x, y, x_square_pixels, y_square_pixels)); for (cv::MatConstIterator it = roi.begin<uchar>(); it != roi.end<uchar>(); ++it) { if (**it > WHITE_THRESHOLD) { white_pixels++; } } if (white_pixels > PIXEL_THRESHOLD) { squares[y / y_square_pixels][x / x_square_pixels] = true; } else { squares[y / y_square_pixels][x / x_square_pixels] = false; } } } //draw the squares matrix for (int y = 0; y < frame_width; y += y_square_pixels) { for (int x = 0; x < frame_width; x += x_square_pixels) { if (squares[y / y_square_pixels][x / x_square_pixels]) { cv::rectangle(absolute_frame, cv::Point(x, y), cv::Point(x + x_square_pixels, y + y_square_pixels), cv::Scalar(0, 0, 255, 0.5), 1); } else { cv::rectangle(absolute_frame, cv::Point(x, y), cv::Point(x + x_square_pixels, y + y_square_pixels), cv::Scalar(255, 255, 255, 0.5), 1); } // If boolean is true, draw red triangle, otherwise draw a white one //if () } } // TODO: Create a squares_x * squares_y matrix with large greyscale // pixels from 0-255 that represents how each square will be // angled cv::imshow("This is you!", absolute_frame); //cv::imshow("This is you!", destination_frame); // Display image for 10milliseconds or until key '27' is pressed. This function needs to immediately follow cv::imshow or no image will be displayed. if (cv::waitKey(1) == 27 ) break; } return 0; }
20fd8c224b9b3ca14def92e73a5148c5c71bfccc
c5314a77c938ea922732ad57eefeb9f16730352d
/CPlusPlusStandardLibrary/Chapter01/1functor.cpp
d8b6e375c16160cda636b8fba790120c24061857
[]
no_license
zhangrongzhao/CPlusPlusStandardLibrary
c69cdf6afcf6624b66b222ab832ed0eaa9e7688c
4af2baba65b818d94e5ed1843d333151ca500215
refs/heads/master
2021-01-11T05:42:13.714506
2016-12-07T08:01:16
2016-12-07T08:01:16
71,548,275
0
0
null
null
null
null
UTF-8
C++
false
false
507
cpp
1functor.cpp
#include "stdafx.h" #include <iostream> using namespace std; template<typename T> struct testplus{ T operator()(const T& x, const T& y) const{ return x + y; } }; template<typename T> struct testminus{ T operator()(const T& x, const T& y) const { return x - y; }; }; //int main(){ // testplus<int> plusobj; // testminus<int> minusobj; // // cout << plusobj(3, 5) << endl; // cout << minusobj(3, 5) << endl; // // cout << testplus<int>()(43, 50) << endl; // cout << testminus<int>()(43, 50) << endl; //}
c5a32ee3f4ca293f04c23831af26285442ce5697
c321c14237e6da91bcc2b3f9829a28d33141e460
/rush00/Ncurses.hpp
a8ad5402d2b38647f649119b501e46ab3ca4bfef
[]
no_license
liderako/Piscine-CPP
87e84395b5b8288ffb154d85ce3567d37130c12a
3f3f69c8ef732b25d837512636c96b5d555bb294
refs/heads/master
2021-04-09T15:46:05.172885
2018-04-12T18:24:38
2018-04-12T18:24:38
125,656,986
0
0
null
null
null
null
UTF-8
C++
false
false
464
hpp
Ncurses.hpp
#ifndef NCURSES_HPP #define NCURSES_HPP #include <ncurses.h> class Ncurses { private: void init(void); int someVarForCanonical; public: /* construct and destruct */ Ncurses( void ); /* canonical */ Ncurses( Ncurses const & f ); /* canonical */ ~Ncurses( void ); /* canonical */ /* operator */ Ncurses & operator=( Ncurses const & f ); /* canonical */ /* actions */ void updateWindow(WINDOW *w); void end(void); int getCh(); }; #endif
4f9c6a1c2fd79f74674cbaffa35b9da23a80e5bf
5dec397cdfda92fe96119a793ced7c24b85a3190
/include/gfx/model.h
202fc2e01869c50396d58d9540366102a80c1bde
[ "MIT" ]
permissive
codingwatching/megagruve
3733d8f4da3a33048c7f731223baab5b30243dae
22b5315fcf3d13147d60506d12f722bf3aae5cb8
refs/heads/main
2023-08-21T05:55:37.541487
2021-10-23T06:18:39
2021-10-23T06:18:39
428,945,927
1
0
MIT
2021-11-17T07:19:43
2021-11-17T07:19:42
null
UTF-8
C++
false
false
351
h
model.h
#ifndef MODEL_H #define MODEL_H class model { public: model(); virtual ~model(); struct vertex { wposition position; glm::vec2 uv; direction normal; }; std::vector<vertex> vertexes; protected: private: }; #endif // MODEL_H
cc1a7834661f141156101d9478ecc890e0174562
c7f2d6ee34eaa622ccf3f15583f9be2975b1d187
/MuTauTreelizer/plugins/DiMuDiTauAnalyzer.cc
01bb40a58c038e832fa9cc4ce17e690db2cf8f7e
[]
no_license
Fengwangdong/MuMuTauTauTreeMaker
3a54e70efe2b34e30090905a00306d405579e3cf
6e4c5d2db30ca2873af6b236fa7552e69856f2d6
refs/heads/master
2023-02-20T06:15:02.342802
2021-02-02T15:03:12
2021-02-02T15:03:12
180,764,640
0
4
null
2020-03-13T12:47:12
2019-04-11T09:59:10
C++
UTF-8
C++
false
false
66,466
cc
DiMuDiTauAnalyzer.cc
// -*- C++ -*- // // Package: MuMuChannel/DiMuDiTauAnalyzer // Class: DiMuDiTauAnalyzer // /**\class DiMuDiTauAnalyzer DiMuDiTauAnalyzer.cc MuMuChannel/DiMuDiTauAnalyzer/plugins/DiMuDiTauAnalyzer.cc Description: [one line class summary] Implementation: [Notes on implementation] */ // // Original Author: Fengwangdong Zhang // Created: Tue, 09 Apr 2019 16:30:49 GMT // // // system include files #include <memory> // user include files #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/one/EDAnalyzer.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ServiceRegistry/interface/Service.h" #include "CommonTools/UtilAlgos/interface/TFileService.h" #include "DataFormats/PatCandidates/interface/Muon.h" #include "DataFormats/PatCandidates/interface/Electron.h" #include "DataFormats/PatCandidates/interface/Tau.h" #include "DataFormats/PatCandidates/interface/Jet.h" #include "DataFormats/PatCandidates/interface/MET.h" #include "SimDataFormats/PileupSummaryInfo/interface/PileupSummaryInfo.h" #include "SimDataFormats/GeneratorProducts/interface/GenEventInfoProduct.h" #include "DataFormats/HepMCCandidate/interface/GenParticle.h" #include "DataFormats/PatCandidates/interface/Vertexing.h" #include "RecoEgamma/EgammaTools/interface/EffectiveAreas.h" #include "TTree.h" #include "TLorentzVector.h" #include <math.h> #include <string> #include <iostream> using namespace std; // // class declaration // // If the analyzer does not use TFileService, please remove // the template argument to the base class so the class inherits // from edm::one::EDAnalyzer<> and also remove the line from // constructor "usesResource("TFileService");" // This will improve performance in multithreaded jobs. class DiMuDiTauAnalyzer : public edm::one::EDAnalyzer<edm::one::SharedResources> { public: explicit DiMuDiTauAnalyzer(const edm::ParameterSet&); ~DiMuDiTauAnalyzer(); static void fillDescriptions(edm::ConfigurationDescriptions& descriptions); std::vector<const reco::Candidate*> findTauMuEleVisDaughters(const reco::Candidate*); std::vector<const reco::Candidate*> findTauHadVisDaughters(const reco::Candidate*); int findTauPiZeros(const reco::Candidate*); int findTauChargedHadrons(const reco::Candidate*); private: virtual void beginJob() override; virtual void analyze(const edm::Event&, const edm::EventSetup&) override; virtual void endJob() override; // ----------member data --------------------------- edm::EDGetTokenT<edm::View<pat::Muon>> MuTag; edm::EDGetTokenT<edm::View<pat::Electron>> EleTag; edm::EDGetTokenT<edm::View<pat::Tau>> TauTag; edm::EDGetTokenT<edm::View<pat::Jet>> JetTag; edm::EDGetTokenT<edm::View<pat::MET>> MetTag; edm::EDGetTokenT<edm::View<reco::Vertex>> VertexTag; edm::EDGetTokenT<double> rhoTag; EffectiveAreas effectiveAreas; bool isMC; int numberOfTrigMus; edm::EDGetTokenT<edm::View<PileupSummaryInfo>> PileupTag; edm::EDGetTokenT<GenEventInfoProduct> generator; edm::EDGetTokenT<edm::View<reco::GenParticle>> GenMuTag; edm::EDGetTokenT<edm::View<reco::GenParticle>> GenEleTag; edm::EDGetTokenT<edm::View<reco::GenParticle>> GenTauMuTag; edm::EDGetTokenT<edm::View<reco::GenParticle>> GenTauEleTag; edm::EDGetTokenT<edm::View<reco::GenParticle>> GenTauHadTag; TTree *objectTree; // --- below is the vectors of object variables --- // --- reconstructed muons --- vector<float> recoMuonPt; vector<float> recoMuonEta; vector<float> recoMuonPhi; vector<float> recoMuonEnergy; vector<int> recoMuonPDGId; vector<float> recoMuonIsolation; vector<float> recoMuonDXY; vector<float> recoMuonDZ; vector<int> recoMuonNTrackerLayers; vector<int> recoMuonTriggerFlag; vector<int> recoMuonRefToElectron; vector<int> recoMuonRefToTau; vector<int> recoMuonIdLoose; vector<int> recoMuonIdMedium; vector<int> recoMuonIdTight; // --- reconstructed electrons --- vector<float> recoElectronPt; vector<float> recoElectronEta; vector<float> recoElectronPhi; vector<float> recoElectronEnergy; vector<int> recoElectronPDGId; vector<float> recoElectronIsolation; vector<int> recoElectronIdLoose; vector<int> recoElectronIdMedium; vector<int> recoElectronIdTight; vector<int> recoElectronIdLooseNoIso; vector<int> recoElectronIdMediumNoIso; vector<int> recoElectronIdTightNoIso; vector<float> recoElectronEcalTrkEnergyPostCorr; vector<float> recoElectronEcalTrkEnergyErrPostCorr; vector<float> recoElectronEnergyScaleValue; vector<float> recoElectronEnergyScaleUp; vector<float> recoElectronEnergyScaleDown; vector<float> recoElectronEnergySigmaValue; vector<float> recoElectronEnergySigmaUp; vector<float> recoElectronEnergySigmaDown; vector<int> recoElectronRefToMuon; vector<int> recoElectronRefToTau; // --- reconstructed taus --- vector<float> recoTauPt; vector<float> recoTauEta; vector<float> recoTauPhi; vector<float> recoTauEnergy; vector<int> recoTauPDGId; vector<float> recoTauDecayMode; vector<float> recoTauDecayModeFinding; vector<float> recoTauDecayModeFindingNewDMs; vector<float> recoTauIsoMVArawValue; vector<float> recoTauIsoMVAVVLoose; vector<float> recoTauIsoMVAVLoose; vector<float> recoTauIsoMVALoose; vector<float> recoTauIsoMVAMedium; vector<float> recoTauIsoMVATight; vector<float> recoTauIsoMVAVTight; vector<float> recoTauIsoMVAVVTight; vector<float> recoTauAntiMuMVALoose; vector<float> recoTauAntiMuMVATight; vector<float> recoTauAntiEleMVArawValue; vector<float> recoTauAntiEleMVAVLoose; vector<float> recoTauAntiEleMVALoose; vector<float> recoTauAntiEleMVAMedium; vector<float> recoTauAntiEleMVATight; vector<float> recoTauAntiEleMVAVTight; // *** deep tau ID variables *** vector<float> recoTauDeepVSeraw; vector<float> recoTauDeepVSjetraw; vector<float> recoTauDeepVSmuraw; vector<float> recoTauDeepVSeLoose; vector<float> recoTauDeepVSjetLoose; vector<float> recoTauDeepVSmuLoose; vector<float> recoTauDeepVSeMedium; vector<float> recoTauDeepVSjetMedium; vector<float> recoTauDeepVSmuMedium; vector<float> recoTauDeepVSeTight; vector<float> recoTauDeepVSjetTight; vector<float> recoTauDeepVSmuTight; vector<float> recoTauDeepVSeVLoose; vector<float> recoTauDeepVSjetVLoose; vector<float> recoTauDeepVSmuVLoose; vector<float> recoTauDeepVSeVTight; vector<float> recoTauDeepVSjetVTight; vector<float> recoTauDeepVSeVVLoose; vector<float> recoTauDeepVSjetVVLoose; vector<float> recoTauDeepVSeVVTight; vector<float> recoTauDeepVSjetVVTight; vector<float> recoTauDeepVSeVVVLoose; vector<float> recoTauDeepVSjetVVVLoose; vector<int> recoTauRefToMuon; vector<int> recoTauRefToElectron; // --- reconstructed jets --- vector<float> recoJetPt; vector<float> recoJetEta; vector<float> recoJetPhi; vector<float> recoJetEnergy; vector<float> recoJetCSV; vector<float> recoJetDeepDiTauValue; vector<float> recoJetDeepDiTauValueMD; vector<int> recoJetIdLoose; vector<int> recoJetIdTight; vector<int> recoJetIdTightLepVeto; vector<int> recoJetIdPileUp; // --- reconstructed MET --- vector<float> recoMET; vector<float> recoMETPhi; vector<float> recoMETPx; vector<float> recoMETPy; // --- pileup and reconstructed vertices --- int recoNPrimaryVertex; int recoNPU; int trueNInteraction; int eventID; // --- gen muons ---- vector<float> genMuonPt; vector<float> genMuonEta; vector<float> genMuonPhi; vector<float> genMuonMass; vector<int> genMuonPDGId; vector<int> genMuonMotherPDGId; // --- gen electrons ---- vector<float> genElectronPt; vector<float> genElectronEta; vector<float> genElectronPhi; vector<float> genElectronMass; vector<int> genElectronPDGId; vector<int> genElectronMotherPDGId; // --- gen tau_mu ---- vector<float> genTauMuPt; vector<float> genTauMuEta; vector<float> genTauMuPhi; vector<float> genTauMuMass; vector<int> genTauMuPDGId; vector<int> genTauMuMotherPDGId; vector<float> genTauMuVisPt; vector<float> genTauMuVisMass; // --- gen tau_e ---- vector<float> genTauElePt; vector<float> genTauEleEta; vector<float> genTauElePhi; vector<float> genTauEleMass; vector<int> genTauElePDGId; vector<int> genTauEleMotherPDGId; vector<float> genTauEleVisPt; vector<float> genTauEleVisMass; // --- gen tau_h ---- vector<float> genTauHadPt; vector<float> genTauHadEta; vector<float> genTauHadPhi; vector<float> genTauHadMass; vector<int> genTauHadPDGId; vector<int> genTauHadMotherPDGId; vector<float> genTauHadVisPt; vector<float> genTauHadVisMass; vector<int> genTauHadNPionZero; vector<int> genTauHadNChargedHadrons; // --- event weight for MC --- float genEventWeight; }; // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // DiMuDiTauAnalyzer::DiMuDiTauAnalyzer(const edm::ParameterSet& iConfig): MuTag(consumes<edm::View<pat::Muon>>(iConfig.getParameter<edm::InputTag>("MuTag"))), EleTag(consumes<edm::View<pat::Electron>>(iConfig.getParameter<edm::InputTag>("EleTag"))), TauTag(consumes<edm::View<pat::Tau>>(iConfig.getParameter<edm::InputTag>("TauTag"))), JetTag(consumes<edm::View<pat::Jet>>(iConfig.getParameter<edm::InputTag>("JetTag"))), MetTag(consumes<edm::View<pat::MET>>(iConfig.getParameter<edm::InputTag>("MetTag"))), VertexTag(consumes<edm::View<reco::Vertex>>(iConfig.getParameter<edm::InputTag>("VertexTag"))), rhoTag(consumes<double>(iConfig.getParameter<edm::InputTag>("rhoTag"))), effectiveAreas((iConfig.getParameter<edm::FileInPath>("effAreasConfigFile")).fullPath()), PileupTag(consumes<edm::View<PileupSummaryInfo>>(iConfig.existsAs<edm::InputTag>("PileupTag") ? iConfig.getParameter<edm::InputTag>("PileupTag") : edm::InputTag())), generator(consumes<GenEventInfoProduct>(iConfig.existsAs<edm::InputTag>("Generator") ? iConfig.getParameter<edm::InputTag>("Generator") : edm::InputTag())), GenMuTag(consumes<edm::View<reco::GenParticle>>(iConfig.existsAs<edm::InputTag>("GenMuTag") ? iConfig.getParameter<edm::InputTag>("GenMuTag") : edm::InputTag())), GenEleTag(consumes<edm::View<reco::GenParticle>>(iConfig.existsAs<edm::InputTag>("GenEleTag") ? iConfig.getParameter<edm::InputTag>("GenEleTag") : edm::InputTag())), GenTauMuTag(consumes<edm::View<reco::GenParticle>>(iConfig.existsAs<edm::InputTag>("GenTauMuTag") ? iConfig.getParameter<edm::InputTag>("GenTauMuTag") : edm::InputTag())), GenTauEleTag(consumes<edm::View<reco::GenParticle>>(iConfig.existsAs<edm::InputTag>("GenTauEleTag") ? iConfig.getParameter<edm::InputTag>("GenTauEleTag") : edm::InputTag())), GenTauHadTag(consumes<edm::View<reco::GenParticle>>(iConfig.existsAs<edm::InputTag>("GenTauHadTag") ? iConfig.getParameter<edm::InputTag>("GenTauHadTag") : edm::InputTag())) { //now do what ever initialization is needed usesResource("TFileService"); isMC = iConfig.getParameter<bool>("isMC"); numberOfTrigMus = iConfig.getParameter<int>("numberOfTrigMus"); } DiMuDiTauAnalyzer::~DiMuDiTauAnalyzer() { // do anything here that needs to be done at desctruction time // (e.g. close files, deallocate resources etc.) } // // member functions // // ------------ method called for each event ------------ void DiMuDiTauAnalyzer::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) { using namespace edm; edm::Handle<edm::View<pat::Muon>> pMu; iEvent.getByToken(MuTag, pMu); edm::Handle<edm::View<pat::Electron>> pElectron; iEvent.getByToken(EleTag, pElectron); edm::Handle<edm::View<pat::Tau>> pTau; iEvent.getByToken(TauTag, pTau); edm::Handle<edm::View<pat::Jet>> pJet; iEvent.getByToken(JetTag, pJet); edm::Handle<edm::View<pat::MET>> pMet; iEvent.getByToken(MetTag, pMet); edm::Handle<edm::View<reco::Vertex>> pVertex; iEvent.getByToken(VertexTag, pVertex); edm::Handle<double> pRho; iEvent.getByToken(rhoTag, pRho); if (isMC) { edm::Handle<edm::View<reco::GenParticle>> pGenMu; iEvent.getByToken(GenMuTag, pGenMu); edm::Handle<edm::View<reco::GenParticle>> pGenEle; iEvent.getByToken(GenEleTag, pGenEle); edm::Handle<edm::View<reco::GenParticle>> pGenTauMu; iEvent.getByToken(GenTauMuTag, pGenTauMu); edm::Handle<edm::View<reco::GenParticle>> pGenTauEle; iEvent.getByToken(GenTauEleTag, pGenTauEle); edm::Handle<edm::View<reco::GenParticle>> pGenTauHad; iEvent.getByToken(GenTauHadTag, pGenTauHad); edm::Handle<GenEventInfoProduct> gen_ev_info; iEvent.getByToken(generator, gen_ev_info); edm::Handle<edm::View<PileupSummaryInfo>> pileup_info; iEvent.getByToken(PileupTag, pileup_info); if (pGenMu->size() > 0) { for (edm::View<reco::GenParticle>::const_iterator iMuon=pGenMu->begin(); iMuon!=pGenMu->end(); iMuon++) { genMuonPt.push_back(iMuon->pt()); genMuonEta.push_back(iMuon->eta()); genMuonPhi.push_back(iMuon->phi()); genMuonMass.push_back(iMuon->mass()); genMuonPDGId.push_back(iMuon->pdgId()); genMuonMotherPDGId.push_back(iMuon->mother()->pdgId()); } // end for loop on gen muons } // end if pGenMu->size() > 0 if (pGenEle->size() > 0) { for (edm::View<reco::GenParticle>::const_iterator iElectron=pGenEle->begin(); iElectron!=pGenEle->end(); iElectron++) { genElectronPt.push_back(iElectron->pt()); genElectronEta.push_back(iElectron->eta()); genElectronPhi.push_back(iElectron->phi()); genElectronMass.push_back(iElectron->mass()); genElectronPDGId.push_back(iElectron->pdgId()); genElectronMotherPDGId.push_back(iElectron->mother()->pdgId()); } // end for loop on gen electrons } // end if pGenEle->size() > 0 if (pGenTauMu->size() > 0) { for (edm::View<reco::GenParticle>::const_iterator iTau=pGenTauMu->begin(); iTau!=pGenTauMu->end(); iTau++) { genTauMuPt.push_back(iTau->pt()); genTauMuEta.push_back(iTau->eta()); genTauMuPhi.push_back(iTau->phi()); genTauMuMass.push_back(iTau->mass()); genTauMuPDGId.push_back(iTau->pdgId()); genTauMuMotherPDGId.push_back(iTau->mother()->pdgId()); TLorentzVector sumTauMuVis; std::vector <const reco::Candidate*> daughters; daughters.clear(); for (unsigned int iDau = 0; iDau < iTau->numberOfDaughters(); iDau++) { const reco::Candidate* directDaughter = iTau->daughter(iDau); daughters = findTauMuEleVisDaughters(directDaughter); // collect all the current daughter (if status == 1) or together its daughters (if status != 1) for (unsigned int jDau = 0; jDau < daughters.size(); jDau++) { TLorentzVector p4Daughter; p4Daughter.SetPtEtaPhiM(daughters[jDau]->pt(), daughters[jDau]->eta(), daughters[jDau]->phi(), daughters[jDau]->mass()); sumTauMuVis = sumTauMuVis + p4Daughter; } // end for loop on all generations of visible daughter particles of tau_mu } // end for loop on tau_mu direct daughter particles genTauMuVisPt.push_back(sumTauMuVis.Pt()); genTauMuVisMass.push_back(sumTauMuVis.M()); } // end for loop on gen tau_mu } // end if pGenTauMu->size() > 0 if (pGenTauEle->size() > 0) { for (edm::View<reco::GenParticle>::const_iterator iTau=pGenTauEle->begin(); iTau!=pGenTauEle->end(); iTau++) { genTauElePt.push_back(iTau->pt()); genTauEleEta.push_back(iTau->eta()); genTauElePhi.push_back(iTau->phi()); genTauEleMass.push_back(iTau->mass()); genTauElePDGId.push_back(iTau->pdgId()); genTauEleMotherPDGId.push_back(iTau->mother()->pdgId()); TLorentzVector sumTauEleVis; std::vector <const reco::Candidate*> daughters; daughters.clear(); for (unsigned int iDau = 0; iDau < iTau->numberOfDaughters(); iDau++) { const reco::Candidate* directDaughter = iTau->daughter(iDau); daughters = findTauMuEleVisDaughters(directDaughter); // collect all the current daughter (if status == 1) or together its daughters (if status != 1) for (unsigned int jDau = 0; jDau < daughters.size(); jDau++) { TLorentzVector p4Daughter; p4Daughter.SetPtEtaPhiM(daughters[jDau]->pt(), daughters[jDau]->eta(), daughters[jDau]->phi(), daughters[jDau]->mass()); sumTauEleVis = sumTauEleVis + p4Daughter; } // end for loop on all generations of visible daughter particles of tau_e } // end for loop on tau_e direct daughter particles genTauEleVisPt.push_back(sumTauEleVis.Pt()); genTauEleVisMass.push_back(sumTauEleVis.M()); } // end for loop on gen tau_e } // end if pGenTauEle->size() > 0 if (pGenTauHad->size() > 0) { for (edm::View<reco::GenParticle>::const_iterator iTau=pGenTauHad->begin(); iTau!=pGenTauHad->end(); iTau++) { genTauHadPt.push_back(iTau->pt()); genTauHadEta.push_back(iTau->eta()); genTauHadPhi.push_back(iTau->phi()); genTauHadMass.push_back(iTau->mass()); genTauHadPDGId.push_back(iTau->pdgId()); genTauHadMotherPDGId.push_back(iTau->mother()->pdgId()); TLorentzVector sumTauHadVis; std::vector <const reco::Candidate*> daughters; daughters.clear(); int nPiZeros = 0; int nChargedHadrons = 0; for (unsigned int iDau = 0; iDau < iTau->numberOfDaughters(); iDau++) { const reco::Candidate* directDaughter = iTau->daughter(iDau); daughters = findTauHadVisDaughters(directDaughter); // collect all the current daughter (if status == 1) or together its daughters (if status != 1) nPiZeros += findTauPiZeros(directDaughter); nChargedHadrons += findTauChargedHadrons(directDaughter); for (unsigned int jDau = 0; jDau < daughters.size(); jDau++) { TLorentzVector p4Daughter; p4Daughter.SetPtEtaPhiM(daughters[jDau]->pt(), daughters[jDau]->eta(), daughters[jDau]->phi(), daughters[jDau]->mass()); sumTauHadVis = sumTauHadVis + p4Daughter; } // end for loop on all generations of visible daughter particles of tau_h } // end for loop on tau_h direct daughter particles genTauHadVisPt.push_back(sumTauHadVis.Pt()); genTauHadVisMass.push_back(sumTauHadVis.M()); genTauHadNPionZero.push_back(nPiZeros); genTauHadNChargedHadrons.push_back(nChargedHadrons); } // end for loop on gen tau_h } // end if pGenTauHad->size() > 0 if (gen_ev_info.isValid()) { genEventWeight = gen_ev_info->weight(); } // end if gen_ev_info.isValid() if (pileup_info.isValid()) { for(edm::View<PileupSummaryInfo>::const_iterator iPileup=pileup_info->begin(); iPileup!=pileup_info->end(); iPileup++) { if (iPileup->getBunchCrossing() == 0) { trueNInteraction = iPileup->getTrueNumInteractions(); recoNPU = iPileup->getPU_NumInteractions(); } // end if iPileup->getBunchCrossing() == 0 } // end for loop on pileup_info } // end if pileup_info.isValid() } // end if isMC == true // --- prepare for offline primary vertices --- recoNPrimaryVertex = 0; if (pVertex.isValid()) { for(edm::View<reco::Vertex>::const_iterator iPV=pVertex->begin(); iPV!=pVertex->end(); iPV++) { recoNPrimaryVertex++; } // end for loop on pVertex } // end if pVertex.isValid() eventID = iEvent.eventAuxiliary().event(); // --- prepare muon vector --- if (pMu->size()>0) { int muonCounter = 0; for(edm::View<pat::Muon>::const_iterator iMuon=pMu->begin(); iMuon!=pMu->end(); iMuon++) { recoMuonPt.push_back(iMuon->pt()); recoMuonEta.push_back(iMuon->eta()); recoMuonPhi.push_back(iMuon->phi()); recoMuonEnergy.push_back(iMuon->energy()); recoMuonPDGId.push_back(iMuon->pdgId()); reco::MuonPFIsolation iso = iMuon->pfIsolationR04(); double reliso = (iso.sumChargedHadronPt + std::max(0.,iso.sumNeutralHadronEt + iso.sumPhotonEt - 0.5*iso.sumPUPt)) / iMuon->pt(); recoMuonIsolation.push_back(reliso); recoMuonDXY.push_back(iMuon->muonBestTrack()->dxy()); recoMuonDZ.push_back(iMuon->muonBestTrack()->dz()); recoMuonNTrackerLayers.push_back(iMuon->innerTrack()->hitPattern().trackerLayersWithMeasurement()); recoMuonRefToElectron.push_back(0); recoMuonRefToTau.push_back(0); bool goodGlob = iMuon->isGlobalMuon() && iMuon->globalTrack()->normalizedChi2() < 3 && iMuon->combinedQuality().chi2LocalPosition < 12 && iMuon->combinedQuality().trkKink < 20; int isMedium = muon::isLooseMuon(*iMuon) && iMuon->innerTrack()->validFraction() > 0.8 && muon::segmentCompatibility(*iMuon) > (goodGlob ? 0.303 : 0.451); int isLoose = iMuon->isPFMuon() && (iMuon->isGlobalMuon() || iMuon->isTrackerMuon()); int isTight = iMuon->isGlobalMuon() && iMuon->isPFMuon() && iMuon->globalTrack()->normalizedChi2() < 10 && iMuon->globalTrack()->hitPattern().numberOfValidMuonHits() > 0 && iMuon->numberOfMatchedStations() > 1 && fabs(iMuon->muonBestTrack()->dxy()) < 0.2 && fabs(iMuon->muonBestTrack()->dz()) < 0.5 && iMuon->innerTrack()->hitPattern().numberOfValidPixelHits() > 0 && iMuon->innerTrack()->hitPattern().trackerLayersWithMeasurement() > 5; recoMuonIdLoose.push_back(isLoose); recoMuonIdMedium.push_back(isMedium); recoMuonIdTight.push_back(isTight); if (muonCounter == 0) { recoMuonTriggerFlag.push_back(1); muonCounter++; } // end if muonCounter == 0 else if (muonCounter == 1 && numberOfTrigMus == 2) { recoMuonTriggerFlag.push_back(1); muonCounter++; } // end if muonCounter == 1 && numberOfTrigMus == 2 else{ recoMuonTriggerFlag.push_back(0); muonCounter++; } // end else if muonCounter != 0 } // end for loop on muons } // end if pMu->size()>0 // --- prepare electron vector --- if (pElectron->size()>0) { for(edm::View<pat::Electron>::const_iterator iElectron=pElectron->begin(); iElectron!=pElectron->end(); iElectron++) { int isLoose = 0; int isMedium = 0; int isTight = 0; int isLooseNoIso = 0; int isMediumNoIso = 0; int isTightNoIso = 0; // --- full5x5_sigmaIetaIeta --- float sigmaIetaIeta = iElectron->full5x5_sigmaIetaIeta(); // --- fabs(dEtaSeed) --- float dEtaSeed = fabs(iElectron->superCluster().isNonnull() && iElectron->superCluster()->seed().isNonnull() ? iElectron->deltaEtaSuperClusterTrackAtVtx() - iElectron->superCluster()->eta() + iElectron->superCluster()->seed()->eta() : std::numeric_limits<float>::max()); // --- fabs(dPhiIn) --- float dPhiIn = fabs(iElectron->deltaPhiSuperClusterTrackAtVtx()); // --- variables for H/E cuts --- float HoE = iElectron->hadronicOverEm(); float rho = pRho.isValid() ? (*pRho) : 0; float energy = iElectron->superCluster()->energy(); // --- variables for relIsoWithEffectiveArea --- float chad = iElectron->pfIsolationVariables().sumChargedHadronPt; float nhad = iElectron->pfIsolationVariables().sumNeutralHadronEt; float pho = iElectron->pfIsolationVariables().sumPhotonEt; float elePt = iElectron->pt(); float eleEta = iElectron->superCluster()->eta(); float eArea = effectiveAreas.getEffectiveArea(fabs(eleEta)); float relIsoWithEffectiveArea = (chad + std::max(0.0f, nhad + pho - rho*eArea)) / elePt; // --- variables for fabs(1/E-1/p) --- float eInverseMinusPInverse = fabs(1.0 - iElectron->eSuperClusterOverP())*(1.0/iElectron->ecalEnergy()); // --- expected missing inner hits --- int mHits = iElectron->gsfTrack()->hitPattern().numberOfAllHits(reco::HitPattern::MISSING_INNER_HITS); // --- pass conversion veto --- bool isPassConVeto = iElectron->passConversionVeto(); // ========= select electrons in different cut-based ID accordingly ========== if (fabs(eleEta) <= 1.479) { isLoose = (sigmaIetaIeta < 0.0112) && (dEtaSeed < 0.00377) && (dPhiIn < 0.0884) && (HoE < 0.05 + 1.16/energy + 0.0324*rho/energy) && (relIsoWithEffectiveArea < 0.112 + 0.506/elePt) && (eInverseMinusPInverse < 0.193) && (mHits <= 1) && (isPassConVeto == true); isMedium = (sigmaIetaIeta < 0.0106) && (dEtaSeed < 0.0032) && (dPhiIn < 0.0547) && (HoE < 0.046 + 1.16/energy + 0.0324*rho/energy) && (relIsoWithEffectiveArea < 0.0478 + 0.506/elePt) && (eInverseMinusPInverse < 0.184) && (mHits <= 1) && (isPassConVeto == true); isTight = (sigmaIetaIeta < 0.0104) && (dEtaSeed < 0.00255) && (dPhiIn < 0.022) && (HoE < 0.026 + 1.15/energy + 0.0324*rho/energy) && (relIsoWithEffectiveArea < 0.0287 + 0.506/elePt) && (eInverseMinusPInverse < 0.159) && (mHits <= 1) && (isPassConVeto == true); isLooseNoIso = (sigmaIetaIeta < 0.0112) && (dEtaSeed < 0.00377) && (dPhiIn < 0.0884) && (HoE < 0.05 + 1.16/energy + 0.0324*rho/energy) && (eInverseMinusPInverse < 0.193) && (mHits <= 1) && (isPassConVeto == true); isMediumNoIso = (sigmaIetaIeta < 0.0106) && (dEtaSeed < 0.0032) && (dPhiIn < 0.0547) && (HoE < 0.046 + 1.16/energy + 0.0324*rho/energy) && (eInverseMinusPInverse < 0.184) && (mHits <= 1) && (isPassConVeto == true); isTightNoIso = (sigmaIetaIeta < 0.0104) && (dEtaSeed < 0.00255) && (dPhiIn < 0.022) && (HoE < 0.026 + 1.15/energy + 0.0324*rho/energy) && (eInverseMinusPInverse < 0.159) && (mHits <= 1) && (isPassConVeto == true); }// endif (fabs(eleEta) <= 1.479) else{ isLoose = (sigmaIetaIeta < 0.0425) && (dEtaSeed < 0.00674) && (dPhiIn < 0.169) && (HoE < 0.0441 + 2.54/energy + 0.183*rho/energy) && (relIsoWithEffectiveArea < 0.108 + 0.963/elePt) && (eInverseMinusPInverse < 0.111) && (mHits <= 1) && (isPassConVeto == true); isMedium = (sigmaIetaIeta < 0.0387) && (dEtaSeed < 0.00632) && (dPhiIn < 0.0394) && (HoE < 0.0275 + 2.52/energy + 0.183*rho/energy) && (relIsoWithEffectiveArea < 0.0658 + 0.963/elePt) && (eInverseMinusPInverse < 0.0721) && (mHits <= 1) && (isPassConVeto == true); isTight = (sigmaIetaIeta < 0.0353) && (dEtaSeed < 0.00501) && (dPhiIn < 0.0236) && (HoE < 0.0188 + 2.06/energy + 0.183*rho/energy) && (relIsoWithEffectiveArea < 0.0445 + 0.963/elePt) && (eInverseMinusPInverse < 0.0197) && (mHits <= 1) && (isPassConVeto == true); isLooseNoIso = (sigmaIetaIeta < 0.0425) && (dEtaSeed < 0.00674) && (dPhiIn < 0.169) && (HoE < 0.0441 + 2.54/energy + 0.183*rho/energy) && (eInverseMinusPInverse < 0.111) && (mHits <= 1) && (isPassConVeto == true); isMediumNoIso = (sigmaIetaIeta < 0.0387) && (dEtaSeed < 0.00632) && (dPhiIn < 0.0394) && (HoE < 0.0275 + 2.52/energy + 0.183*rho/energy) && (eInverseMinusPInverse < 0.0721) && (mHits <= 1) && (isPassConVeto == true); isTightNoIso = (sigmaIetaIeta < 0.0353) && (dEtaSeed < 0.00501) && (dPhiIn < 0.0236) && (HoE < 0.0188 + 2.06/energy + 0.183*rho/energy) && (eInverseMinusPInverse < 0.0197) && (mHits <= 1) && (isPassConVeto == true); } // end else (fabs(eleEta) > 1.479) recoElectronPt.push_back(iElectron->pt()); recoElectronEta.push_back(iElectron->eta()); recoElectronPhi.push_back(iElectron->phi()); recoElectronEnergy.push_back(iElectron->energy()); recoElectronPDGId.push_back(iElectron->pdgId()); recoElectronIsolation.push_back(relIsoWithEffectiveArea); recoElectronIdLoose.push_back(isLoose); recoElectronIdMedium.push_back(isMedium); recoElectronIdTight.push_back(isTight); recoElectronIdLooseNoIso.push_back(isLooseNoIso); recoElectronIdMediumNoIso.push_back(isMediumNoIso); recoElectronIdTightNoIso.push_back(isTightNoIso); recoElectronEcalTrkEnergyPostCorr.push_back(iElectron->userFloat("ecalTrkEnergyPostCorr")); recoElectronEcalTrkEnergyErrPostCorr.push_back(iElectron->userFloat("ecalTrkEnergyErrPostCorr")); recoElectronEnergyScaleValue.push_back(iElectron->userFloat("energyScaleValue")); recoElectronEnergyScaleUp.push_back(iElectron->userFloat("energyScaleUp")); recoElectronEnergyScaleDown.push_back(iElectron->userFloat("energyScaleDown")); recoElectronEnergySigmaValue.push_back(iElectron->userFloat("energySigmaValue")); recoElectronEnergySigmaUp.push_back(iElectron->userFloat("energySigmaUp")); recoElectronEnergySigmaDown.push_back(iElectron->userFloat("energySigmaDown")); recoElectronRefToMuon.push_back(0); recoElectronRefToTau.push_back(0); } // end for loop on electrons } // end if pElectron->size()>0 // --- prepare tau vector --- if (pTau->size()>0) { for(edm::View<pat::Tau>::const_iterator iTau=pTau->begin(); iTau!=pTau->end(); iTau++) { recoTauPt.push_back(iTau->pt()); recoTauEta.push_back(iTau->eta()); recoTauPhi.push_back(iTau->phi()); recoTauEnergy.push_back(iTau->energy()); recoTauPDGId.push_back(iTau->pdgId()); recoTauDecayMode.push_back(iTau->decayMode()); recoTauDecayModeFinding.push_back(iTau->tauID("decayModeFinding")); recoTauDecayModeFindingNewDMs.push_back(iTau->tauID("decayModeFindingNewDMs")); recoTauRefToMuon.push_back(0); recoTauRefToElectron.push_back(0); if (iTau->isTauIDAvailable("byIsolationMVArun2017v2DBoldDMwLTraw2017")) { recoTauIsoMVArawValue.push_back(iTau->tauID("byIsolationMVArun2017v2DBoldDMwLTraw2017")); recoTauIsoMVAVVLoose.push_back(iTau->tauID("byVVLooseIsolationMVArun2017v2DBoldDMwLT2017")); recoTauIsoMVAVLoose.push_back(iTau->tauID("byVLooseIsolationMVArun2017v2DBoldDMwLT2017")); recoTauIsoMVALoose.push_back(iTau->tauID("byLooseIsolationMVArun2017v2DBoldDMwLT2017")); recoTauIsoMVAMedium.push_back(iTau->tauID("byMediumIsolationMVArun2017v2DBoldDMwLT2017")); recoTauIsoMVATight.push_back(iTau->tauID("byTightIsolationMVArun2017v2DBoldDMwLT2017")); recoTauIsoMVAVTight.push_back(iTau->tauID("byVTightIsolationMVArun2017v2DBoldDMwLT2017")); recoTauIsoMVAVVTight.push_back(iTau->tauID("byVVTightIsolationMVArun2017v2DBoldDMwLT2017")); } // end if TauMVA ID available if (iTau->isTauIDAvailable("byDeepTau2017v2p1VSjetraw")) { recoTauDeepVSeraw.push_back(iTau->tauID("byDeepTau2017v2p1VSeraw")); recoTauDeepVSjetraw.push_back(iTau->tauID("byDeepTau2017v2p1VSjetraw")); recoTauDeepVSmuraw.push_back(iTau->tauID("byDeepTau2017v2p1VSmuraw")); recoTauDeepVSeLoose.push_back(iTau->tauID("byLooseDeepTau2017v2p1VSe")); recoTauDeepVSjetLoose.push_back(iTau->tauID("byLooseDeepTau2017v2p1VSjet")); recoTauDeepVSmuLoose.push_back(iTau->tauID("byLooseDeepTau2017v2p1VSmu")); recoTauDeepVSeMedium.push_back(iTau->tauID("byMediumDeepTau2017v2p1VSe")); recoTauDeepVSjetMedium.push_back(iTau->tauID("byMediumDeepTau2017v2p1VSjet")); recoTauDeepVSmuMedium.push_back(iTau->tauID("byMediumDeepTau2017v2p1VSmu")); recoTauDeepVSeTight.push_back(iTau->tauID("byTightDeepTau2017v2p1VSe")); recoTauDeepVSjetTight.push_back(iTau->tauID("byTightDeepTau2017v2p1VSjet")); recoTauDeepVSmuTight.push_back(iTau->tauID("byTightDeepTau2017v2p1VSmu")); recoTauDeepVSeVLoose.push_back(iTau->tauID("byVLooseDeepTau2017v2p1VSe")); recoTauDeepVSjetVLoose.push_back(iTau->tauID("byVLooseDeepTau2017v2p1VSjet")); recoTauDeepVSmuVLoose.push_back(iTau->tauID("byVLooseDeepTau2017v2p1VSmu")); recoTauDeepVSeVTight.push_back(iTau->tauID("byVTightDeepTau2017v2p1VSe")); recoTauDeepVSjetVTight.push_back(iTau->tauID("byVTightDeepTau2017v2p1VSjet")); recoTauDeepVSeVVLoose.push_back(iTau->tauID("byVVLooseDeepTau2017v2p1VSe")); recoTauDeepVSjetVVLoose.push_back(iTau->tauID("byVVLooseDeepTau2017v2p1VSjet")); recoTauDeepVSeVVTight.push_back(iTau->tauID("byVVTightDeepTau2017v2p1VSe")); recoTauDeepVSjetVVTight.push_back(iTau->tauID("byVVTightDeepTau2017v2p1VSjet")); recoTauDeepVSeVVVLoose.push_back(iTau->tauID("byVVVLooseDeepTau2017v2p1VSe")); recoTauDeepVSjetVVVLoose.push_back(iTau->tauID("byVVVLooseDeepTau2017v2p1VSjet")); } // end if DeepTau ID available recoTauAntiMuMVALoose.push_back(iTau->tauID("againstMuonLoose3")); recoTauAntiMuMVATight.push_back(iTau->tauID("againstMuonTight3")); recoTauAntiEleMVArawValue.push_back(iTau->tauID("againstElectronMVA6Raw")); recoTauAntiEleMVAVLoose.push_back(iTau->tauID("againstElectronVLooseMVA6")); recoTauAntiEleMVALoose.push_back(iTau->tauID("againstElectronLooseMVA6")); recoTauAntiEleMVAMedium.push_back(iTau->tauID("againstElectronMediumMVA6")); recoTauAntiEleMVATight.push_back(iTau->tauID("againstElectronTightMVA6")); recoTauAntiEleMVAVTight.push_back(iTau->tauID("againstElectronVTightMVA6")); } // end for loop on taus } // end if pTau->size()>0 // --- prepare for the common source particle reference records for muon/electron candidates if (pElectron->size()>0 && pMu->size()>0) { int refMuonValue = 1; int countMuon = 0; for (edm::View<pat::Muon>::const_iterator iMuon=pMu->begin(); iMuon!=pMu->end(); iMuon++) { bool findMatchedMu = false; int refElectronValue = refMuonValue; int countElectron = 0; for(edm::View<pat::Electron>::const_iterator iElectron=pElectron->begin(); iElectron!=pElectron->end(); iElectron++) { bool findMatchedEle = false; for (unsigned int indexMuon = 0; indexMuon < iMuon->numberOfSourceCandidatePtrs(); indexMuon++) { for (unsigned int indexEle = 0; indexEle < iElectron->numberOfSourceCandidatePtrs(); indexEle++) { if (iElectron->sourceCandidatePtr(indexEle).key() == iMuon->sourceCandidatePtr(indexMuon).key()) { findMatchedMu = true; findMatchedEle = true; break; } // end if find the same source of electron and muon } // end for loop on electron source particles if (findMatchedEle) break; } // end for loop on muon source particles if (findMatchedEle) { recoElectronRefToMuon.at(countElectron) = refElectronValue; } // end if findMatchedEle countElectron += 1; } // end for loop on electron candidates if (findMatchedMu) { recoMuonRefToElectron.at(countMuon) = refMuonValue; refMuonValue += 1; } // end if findMatchedMu countMuon += 1; } // end for loop on muon candidates } // end if pElectron->size()>0 && pMu->size()>0 // --- prepare muon VS tau reference for overlapped mu/tau candidates if (pMu->size()>0 && pTau->size()>0) { int refTauValue = 1; int countTau = 0; for (edm::View<pat::Tau>::const_iterator iTau=pTau->begin(); iTau!=pTau->end(); iTau++) { bool findMatchedTau = false; int refMuonValue = refTauValue; int countMuon = 0; for (edm::View<pat::Muon>::const_iterator iMuon=pMu->begin(); iMuon!=pMu->end(); iMuon++) { bool findMatchedMu = false; for (unsigned int indexMu = 0; indexMu < iMuon->numberOfSourceCandidatePtrs(); indexMu++) { for (unsigned int indexTau = 0; indexTau < iTau->numberOfSourceCandidatePtrs(); indexTau++) { if (iMuon->sourceCandidatePtr(indexMu).key() == iTau->sourceCandidatePtr(indexTau).key()) { findMatchedMu = true; findMatchedTau = true; break; } // end if the muon source and tau source have the same key } // end for loop on tau source particles if (findMatchedMu) break; } // end for loop on mu source particles if (findMatchedMu) { recoMuonRefToTau.at(countMuon) = refMuonValue; } // end if findMatchedMu countMuon += 1; } // end for loop on muon candidates if (findMatchedTau) { recoTauRefToMuon.at(countTau) = refTauValue; refTauValue += 1; } // end if findMatchedTau countTau += 1; } // end for loop on tau candidates } // end if pMu->size()>0 && pTau->size()>0 // --- prepare electron VS tau reference for overlapped ele/tau candidates if (pElectron->size()>0 && pTau->size()>0) { int refTauValue = 1; int countTau = 0; for (edm::View<pat::Tau>::const_iterator iTau=pTau->begin(); iTau!=pTau->end(); iTau++) { bool findMatchedTau = false; int refElectronValue = refTauValue; int countElectron = 0; for(edm::View<pat::Electron>::const_iterator iElectron=pElectron->begin(); iElectron!=pElectron->end(); iElectron++) { bool findMatchedEle = false; for (unsigned int indexTau = 0; indexTau < iTau->numberOfSourceCandidatePtrs(); indexTau++) { for (unsigned int indexEle = 0; indexEle < iElectron->numberOfSourceCandidatePtrs(); indexEle++) { if (iElectron->sourceCandidatePtr(indexEle).key() == iTau->sourceCandidatePtr(indexTau).key()) { findMatchedEle = true; findMatchedTau = true; break; } // end if find the same source of electron and tau } // end for loop on electron source particles if (findMatchedEle) break; } // end for loop on tau source particles if (findMatchedEle) { recoElectronRefToTau.at(countElectron) = refElectronValue; } // end if findMatchedEle countElectron += 1; } // end for loop on electron candidates if (findMatchedTau) { recoTauRefToElectron.at(countTau) = refTauValue; refTauValue += 1; } // end if findMatchedTau countTau += 1; } // end for loop on tau candidates } // end if pElectron->size()>0 && pTau->size()>0 // --- prepare jet vector --- if (pJet->size()>0) { for(edm::View<pat::Jet>::const_iterator iJet=pJet->begin(); iJet!=pJet->end(); iJet++) { if (iJet->pt() < 17 || fabs(iJet->eta()) > 2.5) continue; recoJetPt.push_back(iJet->pt()); recoJetEta.push_back(iJet->eta()); recoJetPhi.push_back(iJet->phi()); recoJetEnergy.push_back(iJet->energy()); // --- btag for jet --- // reference: https://twiki.cern.ch/twiki/bin/view/CMSPublic/WorkBookMiniAOD2017#Jets // https://twiki.cern.ch/twiki/bin/viewauth/CMS/BtagRecommendation80XReReco#Supported_Algorithms_and_Operati recoJetCSV.push_back(iJet->bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags")); recoJetDeepDiTauValue.push_back(iJet->userFloat("ditau2017v1")); recoJetDeepDiTauValueMD.push_back(iJet->userFloat("ditau2017MDv1")); recoJetIdLoose.push_back(iJet->userInt("idLoose")); recoJetIdTight.push_back(iJet->userInt("idTight")); recoJetIdTightLepVeto.push_back(iJet->userInt("idTightLepVeto")); recoJetIdPileUp.push_back(iJet->userInt("puID")); } // end for loop on jets } // end if pJet->size()>0 // --- prepare MET vector --- if (pMet->size()>0) { for(edm::View<pat::MET>::const_iterator iMet=pMet->begin(); iMet!=pMet->end(); iMet++) { recoMET.push_back(iMet->pt()); recoMETPhi.push_back(iMet->phi()); recoMETPx.push_back(iMet->px()); recoMETPy.push_back(iMet->py()); } // end for loop on METs } // end if pMet->size()>0 // --- fill the object tree --- objectTree->Fill(); // ---- clear all the vectors for next event ---- // --- reconstructed muons --- recoMuonPt.clear(); recoMuonEta.clear(); recoMuonPhi.clear(); recoMuonEnergy.clear(); recoMuonPDGId.clear(); recoMuonIsolation.clear(); recoMuonDXY.clear(); recoMuonDZ.clear(); recoMuonNTrackerLayers.clear(); recoMuonTriggerFlag.clear(); recoMuonRefToElectron.clear(); recoMuonRefToTau.clear(); recoMuonIdLoose.clear(); recoMuonIdMedium.clear(); recoMuonIdTight.clear(); // --- reconstructed electrons --- recoElectronPt.clear(); recoElectronEta.clear(); recoElectronPhi.clear(); recoElectronEnergy.clear(); recoElectronPDGId.clear(); recoElectronIsolation.clear(); recoElectronIdLoose.clear(); recoElectronIdMedium.clear(); recoElectronIdTight.clear(); recoElectronIdLooseNoIso.clear(); recoElectronIdMediumNoIso.clear(); recoElectronIdTightNoIso.clear(); recoElectronEcalTrkEnergyPostCorr.clear(); recoElectronEcalTrkEnergyErrPostCorr.clear(); recoElectronEnergyScaleValue.clear(); recoElectronEnergyScaleUp.clear(); recoElectronEnergyScaleDown.clear(); recoElectronEnergySigmaValue.clear(); recoElectronEnergySigmaUp.clear(); recoElectronEnergySigmaDown.clear(); recoElectronRefToMuon.clear(); recoElectronRefToTau.clear(); // --- reconstructed taus --- recoTauPt.clear(); recoTauEta.clear(); recoTauPhi.clear(); recoTauEnergy.clear(); recoTauPDGId.clear(); recoTauDecayMode.clear(); recoTauDecayModeFinding.clear(); recoTauDecayModeFindingNewDMs.clear(); recoTauRefToMuon.clear(); recoTauRefToElectron.clear(); recoTauIsoMVArawValue.clear(); recoTauIsoMVAVVLoose.clear(); recoTauIsoMVAVLoose.clear(); recoTauIsoMVALoose.clear(); recoTauIsoMVAMedium.clear(); recoTauIsoMVATight.clear(); recoTauIsoMVAVTight.clear(); recoTauIsoMVAVVTight.clear(); recoTauAntiMuMVALoose.clear(); recoTauAntiMuMVATight.clear(); recoTauAntiEleMVArawValue.clear(); recoTauAntiEleMVAVLoose.clear(); recoTauAntiEleMVALoose.clear(); recoTauAntiEleMVAMedium.clear(); recoTauAntiEleMVATight.clear(); recoTauAntiEleMVAVTight.clear(); recoTauDeepVSeraw.clear(); recoTauDeepVSjetraw.clear(); recoTauDeepVSmuraw.clear(); recoTauDeepVSeLoose.clear(); recoTauDeepVSjetLoose.clear(); recoTauDeepVSmuLoose.clear(); recoTauDeepVSeMedium.clear(); recoTauDeepVSjetMedium.clear(); recoTauDeepVSmuMedium.clear(); recoTauDeepVSeTight.clear(); recoTauDeepVSjetTight.clear(); recoTauDeepVSmuTight.clear(); recoTauDeepVSeVLoose.clear(); recoTauDeepVSjetVLoose.clear(); recoTauDeepVSmuVLoose.clear(); recoTauDeepVSeVTight.clear(); recoTauDeepVSjetVTight.clear(); recoTauDeepVSeVVLoose.clear(); recoTauDeepVSjetVVLoose.clear(); recoTauDeepVSeVVTight.clear(); recoTauDeepVSjetVVTight.clear(); recoTauDeepVSeVVVLoose.clear(); recoTauDeepVSjetVVVLoose.clear(); // --- reconstructed jets --- recoJetPt.clear(); recoJetEta.clear(); recoJetPhi.clear(); recoJetEnergy.clear(); recoJetCSV.clear(); recoJetDeepDiTauValue.clear(); recoJetDeepDiTauValueMD.clear(); recoJetIdLoose.clear(); recoJetIdTight.clear(); recoJetIdTightLepVeto.clear(); recoJetIdPileUp.clear(); // --- reconstructed MET --- recoMET.clear(); recoMETPhi.clear(); recoMETPx.clear(); recoMETPy.clear(); // ---- gen muons ---- genMuonPt.clear(); genMuonEta.clear(); genMuonPhi.clear(); genMuonMass.clear(); genMuonPDGId.clear(); genMuonMotherPDGId.clear(); // ---- gen electrons ---- genElectronPt.clear(); genElectronEta.clear(); genElectronPhi.clear(); genElectronMass.clear(); genElectronPDGId.clear(); genElectronMotherPDGId.clear(); // ---- gen tau_mus ---- genTauMuPt.clear(); genTauMuEta.clear(); genTauMuPhi.clear(); genTauMuMass.clear(); genTauMuPDGId.clear(); genTauMuMotherPDGId.clear(); genTauMuVisPt.clear(); genTauMuVisMass.clear(); // ---- gen tau_es ---- genTauElePt.clear(); genTauEleEta.clear(); genTauElePhi.clear(); genTauEleMass.clear(); genTauElePDGId.clear(); genTauEleMotherPDGId.clear(); genTauEleVisPt.clear(); genTauEleVisMass.clear(); // ---- gen tau_hs ---- genTauHadPt.clear(); genTauHadEta.clear(); genTauHadPhi.clear(); genTauHadMass.clear(); genTauHadPDGId.clear(); genTauHadMotherPDGId.clear(); genTauHadVisPt.clear(); genTauHadVisMass.clear(); genTauHadNPionZero.clear(); genTauHadNChargedHadrons.clear(); } // ------------ function for adding up all the visible daughter particles of tau_mu/tau_e ---------------- std::vector<const reco::Candidate*> DiMuDiTauAnalyzer::findTauMuEleVisDaughters(const reco::Candidate* inputDaughter) { std::vector<const reco::Candidate*> visParticles; if (inputDaughter->status() == 1) { if (fabs(inputDaughter->pdgId()) == 11 || fabs(inputDaughter->pdgId()) == 13 || fabs(inputDaughter->pdgId()) == 22) { visParticles.push_back(inputDaughter); } // end if final state particle is mu/ele/gamma } // end if input daughter is final state particle else{ int nGrandDaughters = inputDaughter->numberOfDaughters(); for (int iGrandDau = 0; iGrandDau < nGrandDaughters; iGrandDau++) { const reco::Candidate* grandDaughter = inputDaughter->daughter(iGrandDau); if (grandDaughter->status() == 1) { if (fabs(grandDaughter->pdgId()) == 11 || fabs(grandDaughter->pdgId()) == 13 || fabs(grandDaughter->pdgId()) == 22) { visParticles.push_back(grandDaughter); } // end if final state particle is mu/ele/gamma } // end if grand daughter is final state particle else{ auto auxVisParticles = findTauMuEleVisDaughters(grandDaughter); visParticles.insert(visParticles.end(), auxVisParticles.begin(), auxVisParticles.end()); } // end else grand daughter is(not) final state particle } // end for loop on grand daughters } // end else input daughter is(not) final state particle return visParticles; } // ------------ function for adding up all the visible daughter particles of tau_h ---------------- std::vector<const reco::Candidate*> DiMuDiTauAnalyzer::findTauHadVisDaughters(const reco::Candidate* inputDaughter) { std::vector<const reco::Candidate*> visParticles; if (inputDaughter->status() == 1) { if (fabs(inputDaughter->pdgId()) != 12 && fabs(inputDaughter->pdgId()) != 14 && fabs(inputDaughter->pdgId()) != 16) { visParticles.push_back(inputDaughter); } // end if final state particle is not neutrinos } // end if input daughter is final state particle else{ int nGrandDaughters = inputDaughter->numberOfDaughters(); for (int iGrandDau = 0; iGrandDau < nGrandDaughters; iGrandDau++) { const reco::Candidate* grandDaughter = inputDaughter->daughter(iGrandDau); if (grandDaughter->status() == 1) { if (fabs(grandDaughter->pdgId()) != 12 && fabs(grandDaughter->pdgId()) != 14 && fabs(grandDaughter->pdgId()) != 16) { visParticles.push_back(grandDaughter); } // end if final state particle is not neutrinos } // end if grand daughter is final state particle else{ auto auxVisParticles = findTauHadVisDaughters(grandDaughter); visParticles.insert(visParticles.end(), auxVisParticles.begin(), auxVisParticles.end()); } // end else grand daughter is(not) final state particle } // end for loop on grand daughters } // end else input daughter is(not) final state particle return visParticles; } // ------------ function for collecting all the pizeros from tau_h decay ---------------- int DiMuDiTauAnalyzer::findTauPiZeros(const reco::Candidate* inputDaughter) { int numPiZero = 0; if (fabs(inputDaughter->pdgId()) == 111) numPiZero++; else if (fabs(inputDaughter->pdgId()) == 15) { int nGrandDaughters = inputDaughter->numberOfDaughters(); for (int iGrandDau = 0; iGrandDau < nGrandDaughters; iGrandDau++) { const reco::Candidate* grandDaughter = inputDaughter->daughter(iGrandDau); if (fabs(grandDaughter->pdgId()) == 111) numPiZero++; else if (fabs(grandDaughter->pdgId()) == 15) { numPiZero += findTauPiZeros(grandDaughter); } // end if the grand-daughter is still tau_h due to FSR } // end for loop on the grand-daughters } // end if the input daughter is still tau_h because of FSR return numPiZero; } // ------------ function for collecting all the charged hadrons from tau_h decay ---------------- int DiMuDiTauAnalyzer::findTauChargedHadrons(const reco::Candidate* inputDaughter) { int numChargedHadrons = 0; bool chargedHadronsFromTau = fabs(inputDaughter->charge()) != 0 && fabs(inputDaughter->pdgId()) != 11 && fabs(inputDaughter->pdgId()) != 13 && fabs(inputDaughter->pdgId()) != 15; if (chargedHadronsFromTau) numChargedHadrons++; else if (fabs(inputDaughter->pdgId()) == 15) { int nGrandDaughters = inputDaughter->numberOfDaughters(); for (int iGrandDau = 0; iGrandDau < nGrandDaughters; iGrandDau++) { const reco::Candidate* grandDaughter = inputDaughter->daughter(iGrandDau); chargedHadronsFromTau = fabs(grandDaughter->charge()) != 0 && fabs(grandDaughter->pdgId()) != 11 && fabs(grandDaughter->pdgId()) != 13 && fabs(grandDaughter->pdgId()) != 15; if (chargedHadronsFromTau) numChargedHadrons++; else if (fabs(grandDaughter->pdgId()) == 15) { numChargedHadrons += findTauChargedHadrons(grandDaughter); } // end if the grand-daughter is still tau_h due to FSR } // end for loop on the grand-daughters } // end if the input daughter is still tau_h because of FSR return numChargedHadrons; } // ------------ method called once each job just before starting event loop ------------ void DiMuDiTauAnalyzer::beginJob() { // -- initialize the skimmed object vector tree -- edm::Service<TFileService> fileService; objectTree = fileService->make<TTree>("objectTree","objectTree"); objectTree->Branch("recoMuonPt", &recoMuonPt); objectTree->Branch("recoMuonEta", &recoMuonEta); objectTree->Branch("recoMuonPhi", &recoMuonPhi); objectTree->Branch("recoMuonEnergy", &recoMuonEnergy); objectTree->Branch("recoMuonPDGId", &recoMuonPDGId); objectTree->Branch("recoMuonIsolation", &recoMuonIsolation); objectTree->Branch("recoMuonDXY", &recoMuonDXY); objectTree->Branch("recoMuonDZ", &recoMuonDZ); objectTree->Branch("recoMuonNTrackerLayers", &recoMuonNTrackerLayers); objectTree->Branch("recoMuonTriggerFlag", &recoMuonTriggerFlag); objectTree->Branch("recoMuonRefToElectron", &recoMuonRefToElectron); objectTree->Branch("recoMuonRefToTau", &recoMuonRefToTau); objectTree->Branch("recoMuonIdLoose", &recoMuonIdLoose); objectTree->Branch("recoMuonIdMedium", &recoMuonIdMedium); objectTree->Branch("recoMuonIdTight", &recoMuonIdTight); objectTree->Branch("recoElectronPt", &recoElectronPt); objectTree->Branch("recoElectronEta", &recoElectronEta); objectTree->Branch("recoElectronPhi", &recoElectronPhi); objectTree->Branch("recoElectronEnergy", &recoElectronEnergy); objectTree->Branch("recoElectronPDGId", &recoElectronPDGId); objectTree->Branch("recoElectronIsolation", &recoElectronIsolation); objectTree->Branch("recoElectronIdLoose", &recoElectronIdLoose); objectTree->Branch("recoElectronIdMedium", &recoElectronIdMedium); objectTree->Branch("recoElectronIdTight", &recoElectronIdTight); objectTree->Branch("recoElectronIdLooseNoIso", &recoElectronIdLooseNoIso); objectTree->Branch("recoElectronIdMediumNoIso", &recoElectronIdMediumNoIso); objectTree->Branch("recoElectronIdTightNoIso", &recoElectronIdTightNoIso); objectTree->Branch("recoElectronEcalTrkEnergyPostCorr", &recoElectronEcalTrkEnergyPostCorr); objectTree->Branch("recoElectronEcalTrkEnergyErrPostCorr", &recoElectronEcalTrkEnergyErrPostCorr); objectTree->Branch("recoElectronEnergyScaleValue", &recoElectronEnergyScaleValue); objectTree->Branch("recoElectronEnergyScaleUp", &recoElectronEnergyScaleUp); objectTree->Branch("recoElectronEnergyScaleDown", &recoElectronEnergyScaleDown); objectTree->Branch("recoElectronEnergySigmaValue", &recoElectronEnergySigmaValue); objectTree->Branch("recoElectronEnergySigmaUp", &recoElectronEnergySigmaUp); objectTree->Branch("recoElectronEnergySigmaDown", &recoElectronEnergySigmaDown); objectTree->Branch("recoElectronRefToMuon", &recoElectronRefToMuon); objectTree->Branch("recoElectronRefToTau", &recoElectronRefToTau); objectTree->Branch("recoTauPt", &recoTauPt); objectTree->Branch("recoTauEta", &recoTauEta); objectTree->Branch("recoTauPhi", &recoTauPhi); objectTree->Branch("recoTauEnergy", &recoTauEnergy); objectTree->Branch("recoTauPDGId", &recoTauPDGId); objectTree->Branch("recoTauDecayMode", &recoTauDecayMode); objectTree->Branch("recoTauDecayModeFinding", &recoTauDecayModeFinding); objectTree->Branch("recoTauDecayModeFindingNewDMs", &recoTauDecayModeFindingNewDMs); objectTree->Branch("recoTauRefToMuon", &recoTauRefToMuon); objectTree->Branch("recoTauRefToElectron", &recoTauRefToElectron); objectTree->Branch("recoTauDeepVSeraw", &recoTauDeepVSeraw); objectTree->Branch("recoTauDeepVSjetraw", &recoTauDeepVSjetraw); objectTree->Branch("recoTauDeepVSmuraw", &recoTauDeepVSmuraw); objectTree->Branch("recoTauDeepVSeLoose", &recoTauDeepVSeLoose); objectTree->Branch("recoTauDeepVSjetLoose", &recoTauDeepVSjetLoose); objectTree->Branch("recoTauDeepVSmuLoose", &recoTauDeepVSmuLoose); objectTree->Branch("recoTauDeepVSeMedium", &recoTauDeepVSeMedium); objectTree->Branch("recoTauDeepVSjetMedium", &recoTauDeepVSjetMedium); objectTree->Branch("recoTauDeepVSmuMedium", &recoTauDeepVSmuMedium); objectTree->Branch("recoTauDeepVSeTight", &recoTauDeepVSeTight); objectTree->Branch("recoTauDeepVSjetTight", &recoTauDeepVSjetTight); objectTree->Branch("recoTauDeepVSmuTight", &recoTauDeepVSmuTight); objectTree->Branch("recoTauDeepVSeVLoose", &recoTauDeepVSeVLoose); objectTree->Branch("recoTauDeepVSjetVLoose", &recoTauDeepVSjetVLoose); objectTree->Branch("recoTauDeepVSmuVLoose", &recoTauDeepVSmuVLoose); objectTree->Branch("recoTauDeepVSeVTight", &recoTauDeepVSeVTight); objectTree->Branch("recoTauDeepVSjetVTight", &recoTauDeepVSjetVTight); objectTree->Branch("recoTauDeepVSeVVLoose", &recoTauDeepVSeVVLoose); objectTree->Branch("recoTauDeepVSjetVVLoose", &recoTauDeepVSjetVVLoose); objectTree->Branch("recoTauDeepVSeVVTight", &recoTauDeepVSeVVTight); objectTree->Branch("recoTauDeepVSjetVVTight", &recoTauDeepVSjetVVTight); objectTree->Branch("recoTauDeepVSeVVVLoose", &recoTauDeepVSeVVVLoose); objectTree->Branch("recoTauDeepVSjetVVVLoose", &recoTauDeepVSjetVVVLoose); objectTree->Branch("recoTauIsoMVArawValue", &recoTauIsoMVArawValue); objectTree->Branch("recoTauIsoMVAVVLoose", &recoTauIsoMVAVVLoose); objectTree->Branch("recoTauIsoMVAVLoose", &recoTauIsoMVAVLoose); objectTree->Branch("recoTauIsoMVALoose", &recoTauIsoMVALoose); objectTree->Branch("recoTauIsoMVAMedium", &recoTauIsoMVAMedium); objectTree->Branch("recoTauIsoMVATight", &recoTauIsoMVATight); objectTree->Branch("recoTauIsoMVAVTight", &recoTauIsoMVAVTight); objectTree->Branch("recoTauIsoMVAVVTight", &recoTauIsoMVAVVTight); objectTree->Branch("recoTauAntiMuMVALoose", &recoTauAntiMuMVALoose); objectTree->Branch("recoTauAntiMuMVATight", &recoTauAntiMuMVATight); objectTree->Branch("recoTauAntiEleMVArawValue", &recoTauAntiEleMVArawValue); objectTree->Branch("recoTauAntiEleMVAVLoose", &recoTauAntiEleMVAVLoose); objectTree->Branch("recoTauAntiEleMVALoose", &recoTauAntiEleMVALoose); objectTree->Branch("recoTauAntiEleMVAMedium", &recoTauAntiEleMVAMedium); objectTree->Branch("recoTauAntiEleMVATight", &recoTauAntiEleMVATight); objectTree->Branch("recoTauAntiEleMVAVTight", &recoTauAntiEleMVAVTight); objectTree->Branch("recoJetPt", &recoJetPt); objectTree->Branch("recoJetEta", &recoJetEta); objectTree->Branch("recoJetPhi", &recoJetPhi); objectTree->Branch("recoJetEnergy", &recoJetEnergy); objectTree->Branch("recoJetCSV", &recoJetCSV); objectTree->Branch("recoJetDeepDiTauValue", &recoJetDeepDiTauValue); objectTree->Branch("recoJetDeepDiTauValueMD", &recoJetDeepDiTauValueMD); objectTree->Branch("recoJetIdLoose", &recoJetIdLoose); objectTree->Branch("recoJetIdTight", &recoJetIdTight); objectTree->Branch("recoJetIdTightLepVeto", &recoJetIdTightLepVeto); objectTree->Branch("recoJetIdPileUp", &recoJetIdPileUp); objectTree->Branch("recoMET", &recoMET); objectTree->Branch("recoMETPhi", &recoMETPhi); objectTree->Branch("recoMETPx", &recoMETPx); objectTree->Branch("recoMETPy", &recoMETPy); objectTree->Branch("recoNPrimaryVertex", &recoNPrimaryVertex, "recoNPrimaryVertex/I"); objectTree->Branch("eventID", &eventID, "eventID/I"); if (isMC) { objectTree->Branch("genMuonPt", &genMuonPt); objectTree->Branch("genMuonEta", &genMuonEta); objectTree->Branch("genMuonPhi", &genMuonPhi); objectTree->Branch("genMuonMass", &genMuonMass); objectTree->Branch("genMuonPDGId", &genMuonPDGId); objectTree->Branch("genMuonMotherPDGId", &genMuonMotherPDGId); objectTree->Branch("genElectronPt", &genElectronPt); objectTree->Branch("genElectronEta", &genElectronEta); objectTree->Branch("genElectronPhi", &genElectronPhi); objectTree->Branch("genElectronMass", &genElectronMass); objectTree->Branch("genElectronPDGId", &genElectronPDGId); objectTree->Branch("genElectronMotherPDGId", &genElectronMotherPDGId); objectTree->Branch("genTauMuPt", &genTauMuPt); objectTree->Branch("genTauMuEta", &genTauMuEta); objectTree->Branch("genTauMuPhi", &genTauMuPhi); objectTree->Branch("genTauMuMass", &genTauMuMass); objectTree->Branch("genTauMuPDGId", &genTauMuPDGId); objectTree->Branch("genTauMuMotherPDGId", &genTauMuMotherPDGId); objectTree->Branch("genTauMuVisPt", &genTauMuVisPt); objectTree->Branch("genTauMuVisMass", &genTauMuVisMass); objectTree->Branch("genTauElePt", &genTauElePt); objectTree->Branch("genTauEleEta", &genTauEleEta); objectTree->Branch("genTauElePhi", &genTauElePhi); objectTree->Branch("genTauEleMass", &genTauEleMass); objectTree->Branch("genTauElePDGId", &genTauElePDGId); objectTree->Branch("genTauEleMotherPDGId", &genTauEleMotherPDGId); objectTree->Branch("genTauEleVisPt", &genTauEleVisPt); objectTree->Branch("genTauEleVisMass", &genTauEleVisMass); objectTree->Branch("genTauHadPt", &genTauHadPt); objectTree->Branch("genTauHadEta", &genTauHadEta); objectTree->Branch("genTauHadPhi", &genTauHadPhi); objectTree->Branch("genTauHadMass", &genTauHadMass); objectTree->Branch("genTauHadPDGId", &genTauHadPDGId); objectTree->Branch("genTauHadMotherPDGId", &genTauHadMotherPDGId); objectTree->Branch("genTauHadVisPt", &genTauHadVisPt); objectTree->Branch("genTauHadVisMass", &genTauHadVisMass); objectTree->Branch("genTauHadNPionZero", &genTauHadNPionZero); objectTree->Branch("genTauHadNChargedHadrons", &genTauHadNChargedHadrons); objectTree->Branch("recoNPU", &recoNPU, "recoNPU/I"); objectTree->Branch("trueNInteraction", &trueNInteraction, "trueNInteraction/I"); objectTree->Branch("genEventWeight", &genEventWeight, "genEventWeight/F"); } // end if isMC == true } // ------------ method called once each job just after ending the event loop ------------ void DiMuDiTauAnalyzer::endJob() { } // ------------ method fills 'descriptions' with the allowed parameters for the module ------------ void DiMuDiTauAnalyzer::fillDescriptions(edm::ConfigurationDescriptions& descriptions) { //The following says we do not know what parameters are allowed so do no validation // Please change this to state exactly what you do use, even if it is no parameters edm::ParameterSetDescription desc; desc.setUnknown(); descriptions.addDefault(desc); } //define this as a plug-in DEFINE_FWK_MODULE(DiMuDiTauAnalyzer);
a4c0138b9cf6cabe4b4188399c77408f98740516
ffcae3227a8ce86ae97b6d834ca26debd850954d
/include/Components/CollisionComponent.hpp
295c809a0df82198390a89526eb7d45a6766f1f6
[ "MIT" ]
permissive
tylerwinkler/msg-game
14ad0b3282b77722723fdc41840ea62f7e09e0f0
7db1ead37b61d54b87224c38d15a8b1d5e348755
refs/heads/master
2021-05-02T07:52:10.947231
2018-08-06T16:52:28
2018-08-06T16:52:28
120,840,302
0
0
null
null
null
null
UTF-8
C++
false
false
770
hpp
CollisionComponent.hpp
#ifndef MSG_GAME_COMPONENTS_COLLISIONCOMPONENT_HPP #define MSG_GAME_COMPONENTS_COLLISIONCOMPONENT_HPP #include <functional> #include "SFML/Graphics/Rect.hpp" #include "Components/Component.hpp" class CollisionComponent : public Component { public: CollisionComponent(); CollisionComponent(int x, int y, int width, int height); public: sf::IntRect rect; int offsetX; int offsetY; bool trigger; public: bool onInit(int ownerID); void setCollisionFunc(std::function<void(CollisionComponent&)> func); void onCollision(CollisionComponent& other); void receive(int x, int y); private: std::function<void(CollisionComponent&)> m_collisionFunc; }; // CollisionComponent #endif // MSG_GAME_COMPONENTS_COLLISIONCOMPONENT_HPP
0d25469344cf720b9c9db880b582774209291a6c
a060ea4d4d6b1cbffbeecce2cc138f70b8c5fbea
/C++/Visteon/9. OOP and UML Fundamentals C++ OOP Aspects/HW/Visteon C++OOP-HW-CowsGame/OOP_Start/inc/Grazing.hpp
bf36727a643f6a89f910f10818be5fe1d7f7717f
[]
no_license
VentsislavSimeonov/C
8825517a437cb24c195f86b61db8d5292e7fd558
fbc5718be76247d155f96eb81793da8cf135f8b5
refs/heads/master
2021-01-23T22:06:41.821984
2017-09-03T20:59:23
2017-09-03T20:59:23
83,118,343
0
0
null
null
null
null
UTF-8
C++
false
false
340
hpp
Grazing.hpp
/* * Grazing.hpp * * Created on: Aug 16, 2016 * Author: venci */ #ifndef INC_GRAZING_HPP_ #define INC_GRAZING_HPP_ #include <Animal.hpp> class Grazing: public Animal { public: virtual ~Grazing() { } Cell* look() = 0; Cell* walk() = 0; protected: Cell* location; Strategy* currStrategy; }; #endif /* INC_GRAZING_HPP_ */
436b002e8edea6299701516fbd3aaf1013653cc8
29aea8e10d37857f2d059420f52e7f503eeb85fd
/include/types.hpp
0449ee995d7da93597be6402db687096c23ac89f
[]
no_license
Squolly/GBEmulator
fdc15578ed6090cbc9d99984ba9afac44e49551d
62289dea48a1b229b14f5e80d1bbffd02b0ec535
refs/heads/master
2021-05-04T10:30:41.002742
2017-06-17T15:12:48
2017-06-17T15:14:01
53,200,520
3
0
null
null
null
null
UTF-8
C++
false
false
300
hpp
types.hpp
#ifndef __TYPES_HPP__ #define __TYPES_HPP__ typedef unsigned short ushort; typedef unsigned char uchar; typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned int uint32; typedef signed char sint8; typedef signed short sint16; typedef signed int sint32; #endif
ebf0eae6411e30f61c9884db2611f303cc580422
d1cf34b4d5280e33ebcf1cd788b470372fdd5a26
/livearchive/2008/North_America.Southern_California/4437.cpp
40e32fa5c8ed80d84144d542e09b57e811c74549
[]
no_license
watashi/AlgoSolution
985916ac511892b7e87f38c9b364069f6b51a0ea
bbbebda189c7e74edb104615f9c493d279e4d186
refs/heads/master
2023-08-17T17:25:10.748003
2023-08-06T04:34:19
2023-08-06T04:34:19
2,525,282
97
32
null
2020-10-09T18:52:29
2011-10-06T10:40:07
C++
UTF-8
C++
false
false
3,027
cpp
4437.cpp
#include <cctype> #include <cstdio> #include <string> #include <cstring> using namespace std; int vTab; inline int _C(int a, int b) { static int v[] = {1, 1, 0, 1}; return v[(a << 1) ^ b]; } inline int _D(int a, int b) { static int v[] = {1, 1, 1, 0}; return v[(a << 1) ^ b]; } inline int _E(int a, int b) { static int v[] = {1, 0, 0, 1}; return v[(a << 1) ^ b]; } struct Node { char c; const Node *l, *r; int eval() const { switch (c) { case 'C': return _C(l->eval(), r->eval()); case 'N': return 1 - l->eval(); case 'K': return l->eval() && r->eval(); case 'A': return l->eval() || r->eval(); case 'D': return _D(l->eval(), r->eval()); case 'E': return _E(l->eval(), r->eval()); case 'J': return l->eval() ^ r->eval(); default:/* putchar(c);*/ return ((1 << (c - 'a')) & vTab) == 0 ? 0 : 1; } } }; int end; Node mem[1024]; int id; char mp[128]; char getId(char ch) { if (mp[ch] == '\0') { mp[ch] = 'a' + id++; } // printf("[%c] -> [%c]\n", ch, mp[ch]); return mp[ch]; } Node* readNode(char*&p) { Node* ret = &mem[end++]; if (islower(*p)) { ret->c = getId(*p); ++p; } else { ret->c = *p; switch (*p) { case 'N': ret->l = readNode(++p); break; case 'C': case 'K': case 'A': case 'D': case 'E': case 'J': ++p; ret->l = readNode(p); ret->r = readNode(p); break; case '\0': throw string("insufficient operands"); default: throw string("invalid character"); } } return ret; } int main() { char buf[1024], *p; // freopen("g.in", "r", stdin); while (gets(buf) != NULL && isalnum(buf[0])) { printf("%s is ", buf); try { memset(mp, 0, sizeof(mp)); end = id = 0; Node* root = readNode(p = buf); if (*p != '\0') { throw string("extraneous text"); } int c[2] = {1, 1}; for (vTab = 0; (c[0] || c[1]) && vTab < (1 << id); ++vTab) { // printf("%d->%d\n", vTab, root->eval()); c[root->eval()] = 0; } printf("valid: "); if (c[0]) { puts("tautology"); } else if (c[1]) { puts("contradiction"); } else { puts("contingent"); } } catch (string e) { puts(("invalid: " + e).c_str()); } } return 0; } //ID Date (UTC) Status CPU Memory Author Source Problem / Title //727367 2011-01-29 12:25:59 Accepted 0.002 Minimum 26909 C++ 4437 - Symbolic Logic Mechanization /* id => 1174031 pid => 4437 pname => Symbolic Logic Mechanization status => Accepted lang => C++ time => 0.009 date => 2012-12-14 17:12:55 */
650eb044bc3c011e27972279e8b69d52fb6fe884
fda76b7454f25df25a8fd7d82df838eb190acee9
/dailyCodingProblem/feb22.cpp
02a92345fb8761cec6230158069393136de8502d
[]
no_license
laihoj/cplusplus_primer
400f1752a308ec93f9193f0ff317e1d24a253e45
e507d0bb210cd04a2cf438f21ad1db4131d2f8d7
refs/heads/main
2023-03-28T11:58:48.739065
2021-03-30T14:05:33
2021-03-30T14:05:33
330,633,512
0
0
null
null
null
null
UTF-8
C++
false
false
9,433
cpp
feb22.cpp
/* This problem was asked by Google. Suppose we represent our file system by a string in the following manner: The string "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext" represents: dir subdir1 subdir2 file.ext The directory dir contains an empty sub-directory subdir1 and a sub-directory subdir2 containing a file file.ext. The string "dir\n\tsubdir1\n\t\tfile1.ext\n\t\tsubsubdir1\n\tsubdir2\n\t\tsubsubdir2\n\t\t\tfile2.ext" represents: dir subdir1 file1.ext subsubdir1 subdir2 subsubdir2 file2.ext The directory dir contains two sub-directories subdir1 and subdir2. subdir1 contains a file file1.ext and an empty second-level sub-directory subsubdir1. subdir2 contains a second-level sub-directory subsubdir2 containing a file file2.ext. We are interested in finding the longest (number of characters) absolute path to a file within our file system. For example, in the second example above, the longest absolute path is "dir/subdir2/subsubdir2/file2.ext", and its length is 32 (not including the double quotes). Given a string representing the file system in the above format, return the length of the longest absolute path to a file in the abstracted file system. If there is no file in the system, return 0. Note: The name of a file contains at least a period and an extension. The name of a directory or sub-directory will not contain a period. */ //gonna need a parser //symbols: //\n //\t //. //[a-Z and 0-9] //tree structure //nodes, roots, leaves //get length while constructing //while constructing tree, list all nodes and lengths //search a tree structure //recursive, depth/widthwise //class Node //string path //Node[] children //parse rules //start must be "dir" //if followed by \n //must be followed by \t //must be followed by [a-Z 0-9]* //can be followed by . //must be followed by [a-Z]* //elif followed by //parser has a state with permitted inputs //A starting state: get root name | -> B //B get depth state: get \t symbols | //directories are terminated by \n //files are terminated by .* //states: //reading name //determine if file or directory //determine depth #include <iostream> #include <string> #include <vector> #include <map> using namespace std; enum Type { DIR, FIL } ; class Node; class Node { public: Node() { path = ""; parent = NULL; type = DIR; level = 0; } Node(string n) { path = n; parent = NULL; } Node(string n, Node *p) { path = (*p).getPath() + "\\" + n; parent = p; } Node(string n, Node *p, Type t) { path = (*p).getPath() + "\\" + n; parent = p; type = t; } Node(string n, Node *p, Type t, int l) { path = (*p).getPath() + "\\" + n; parent = p; type = t; level = l; } void setPath(string n) { path = n; } string getPath() { return path; } void setType(Type t) { type = t; } Type getType() { return type; } int getLevel() { return level; } void addChild(Node n) { children.push_back(n); } Node getChild(int n) { return children.at(n); } int numberOfChildren() { return children.size(); } Node* getParent() { return parent; } private: string path; vector<Node> children; Node *parent; Type type; int level; }; enum State { BEGIN, DEPTH, NAME, EXT }; class Parser { public: string symbols = ""; State state = BEGIN; int level = 0; Node root; Node * current = &root; Node parse(string input) { for(char& peek: input) { switch(state) { case BEGIN: if(peek == '\n') { root.setPath(symbols); resetSymbols(); resetLevel(); state = DEPTH; // cout << "root dir found " << root.getPath() << endl; } else { symbols.push_back(peek); //otherwise name still accumulating.. } break; case DEPTH: if(peek == '\t') { level += 1; } else { // cout << "level " << level << ", current level " << (*current).getLevel() << endl; //travel up ancestry until current node level is one less than peeked level //suppose previous as in current node was level 3 and peeked is level 1 //then current (3) parent (2) parent (1) parent (0) needs to be set to current //suppose current was 1, and peeked level 1 //then current (1) parent (0) needs to be set to current for (int i = (*current).getLevel() - level + 1; i > 0; i--) { current = (*current).getParent(); } symbols.push_back(peek); //name has started accumulating state = NAME; cout << "current node " << (*current).getPath() << endl; } break; case NAME: if(peek == '\n') { //name was directory Node n = newDir (symbols, current, level); cout << "directory found " << symbols << endl; cout << (*current).getPath() << endl; (*current).addChild(n); //add this new node to parent cout << (*current).getPath() << " now has " << (*current).numberOfChildren() << " children " << endl; current = &n; //consider this new node current state = DEPTH; //move to next iteration resetSymbols(); // resetLevel(); } else if(false) { //check for illegal symbol, throw syntax error } else if (peek =='.') { //name was file, go to state EXT state = EXT; //go to extension state symbols.push_back(peek); } else { symbols.push_back(peek); //otherwise name still accumulating.. } break; case EXT: if(peek == '\n') { //full filename found. go to state DEPTH Node n = newFile (symbols, current, level); cout << "file found " << symbols << endl; (*current).addChild(n); cout << (*current).getPath() << " now has " << (*current).numberOfChildren() << " children " << endl; state = DEPTH; resetSymbols(); resetLevel(); } else { symbols.push_back(peek); //otherwise extension still accumulating.. } break; } // cout << symbols << endl; } //end of input. assuming correct syntax, state is now EXT or NAME switch(state) { case NAME: //latest set of symbols was dir (*current).addChild(newDir(symbols, current, level)); break; case EXT: //latest set of symbols was file (*current).addChild(newFile(symbols, current, level)); break; case BEGIN: case DEPTH: break; } return root; } void resetSymbols() { symbols = ""; } void resetLevel() { level = 0; } Node newFile (string n, Node *p, int l) { return Node(n, p, FIL, l); } Node newDir (string n, Node *p, int l) { return Node(n, p, DIR, l); } private: }; int main() { Parser p; string input = "dir\n\tsubdir1\n\t\tfile1.ext\n\t\tsubsubdir1\n\tsubdir2\n\t\tsubsubdir2\n\t\t\tfile2.ext"; Node root = p.parse(input); cout << root.getChild(0).getPath() << " should equal subdir1" << endl; cout << root.getChild(0).getChild(0).getPath() << " should equal file1.ext" << endl; return 0; }
75e0fca3ee1ac54085020ea5202f642f10603dbf
81d10aa222d970dc22bbae0b59a423ec4c6ad597
/examples/HoTTServer/HoTTServer.ino
0a517d5e5878ed3b59514f336db827f4ed99ea28
[]
no_license
Matorra/HoTTServer
224d168daca6c26137c13e234e7985d0c7e589bd
13b73b6fbbe7300fa2b9816ca2a00b9e8a153f4b
refs/heads/master
2021-09-04T17:22:13.412863
2018-01-20T09:49:25
2018-01-20T09:49:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,622
ino
HoTTServer.ino
#include "HoTTServer.h" HoTTServer server; void setup() { server.registerModule(HoTTServerVario); server.start(); } void loop() { // server.setCellVoltage(1,4.2); // server.setCellVoltage(2,3.1); // server.setCellVoltage(3,2.0); // server.setCellVoltage(4,1.3); // server.setCellVoltage(5,5.7); // server.setCellVoltage(6,1.9); // server.setVoltage(HOTT_PRIMARY_VOLTAGE, 5.5); // server.setVoltage(HOTT_SECONDARY_VOLTAGE, 35.5); // server.setTemperature(HOTT_PRIMARY_TEMPERATURE, -10); // server.setTemperature(HOTT_SECONDARY_TEMPERATURE, 35); // server.setFuelPercentage(23); // server.setFuel(500); // server.setRPM(HOTT_PRIMARY_RPM,18500); server.setAltitude(123); server.setClimbRate(HOTT_CLIMBRATE_1S, 6.7); server.setClimbRate(HOTT_CLIMBRATE_3S, -45.7); server.setClimbRate(HOTT_CLIMBRATE_10S, 7.6); // server.setVoltage(HOTT_MAIN_VOLTAGE, 42.56); // server.setCurrent(HOTT_MAIN_CURRENT, 9.1); // server.setCurrent(HOTT_BEC_CURRENT, 0.9); // server.setCapacity(1860); // server.setSpeed(184); // server.setRPM(HOTT_SECONDARY_RPM,17400); // server.setPressure(25.5); // server.setFlightDirection(120); // server.setMessage("Test v0.1", 9); // server.setThrottle(75); // server.setPWM(150); // server.setMotorTimimg(234); // server.setMotorAdvancedTimimg(135); // server.setAngle(HOTT_X_AXIS, 5); // server.setAngle(HOTT_Y_AXIS, 10); // server.setAngle(HOTT_Z_AXIS, 15); // server.setGyro(HOTT_X_AXIS, 25); // server.setGyro(HOTT_Y_AXIS, 30); // server.setGyro(HOTT_Z_AXIS, 35); server.processRequest(); delay(100); }
e9140d59c284747734bf43f071d777b2a1fb1461
5675c4ca774ff9a80add5b3580853ad0ae956078
/Tankerfield/Tankerfield/Obj_Item.h
f0d9a29b1b929b1d1f8275b7dbf62fddf688ba13
[ "MIT" ]
permissive
gamificalostudio/Tankerfield
aad164f0271e9f2adee6e9e1b27aec7c3644e58d
f3801c5286ae836c0fd62392cc14be081b5c74e8
refs/heads/development
2022-02-20T14:28:17.481238
2019-06-17T14:59:09
2019-06-17T14:59:09
172,491,751
7
1
MIT
2019-09-08T11:42:32
2019-02-25T11:18:35
C
UTF-8
C++
false
false
311
h
Obj_Item.h
#ifndef __OBJ_ITEM_H__ #define __OBJ_ITEM_H__ #include "Object.h" class Obj_Tank; class Obj_Item : public Object { public: Obj_Item(fPoint pos); //Called a single time after the creation of the item virtual bool Use(); public: Obj_Tank * caster = nullptr; ItemType type = ItemType::NO_TYPE; }; #endif
8905b8b8426da26ca80256a8a5dbd6841a76bacd
805e359e666537fb783d8efbbb347c86310fd40d
/alice_step2_UAVsCoverage_part4_limitedUAVs/src/GAGeneticAlgorithm.cc
f3d745ea302294a2e7fa8cc097c12aa85c4ba74f
[]
no_license
PascalXie/disasterStratage_management_machineLarning
ec0f54c68a1a16c2d56e3964a5cb1a553c216800
03d5402ac6f3f954892dd5c55fa70d5ef8f24065
refs/heads/master
2020-10-01T16:40:06.513330
2019-12-12T10:33:31
2019-12-12T10:33:31
227,578,886
0
0
null
null
null
null
UTF-8
C++
false
false
6,244
cc
GAGeneticAlgorithm.cc
#include "GAGeneticAlgorithm.hh" //------------------------- // Constructor //------------------------- GAGeneticAlgorithm::GAGeneticAlgorithm(string name, int GenerationSize, int IndividualSize, int CrowdPathTimeID) : name_(name), GenerationSize_(GenerationSize), IndividualSize_(IndividualSize) { // Tool preparing int CoverageMode_ = 1; // mode 1 : coverage for localization toolRobotDeploymentEvenly_ = new ToolRobotDeploymentEvenly("DeployingForGA",CoverageMode_,CrowdPathTimeID); // Tool : for the limited-robot situation GeneSize_ = toolRobotDeploymentEvenly_->robotCoor_x_2_.size(); // initialization IsGeneSizeSet_ = false; // debug cout<<"----------------------------------------------------------------"<<endl; cout<<"----"<<endl; cout<<"debug GAGeneticAlgorithm::GAGeneticAlgorithm"<<endl; cout<<"name "<<name_<<endl; cout<<"GenerationSize_ "<<GenerationSize_<<endl; cout<<"IndividualSize_ "<<IndividualSize_<<endl; cout<<"GeneSize_(Maximum) "<<GeneSize_<<endl; cout<<"----"<<endl; cout<<"----------------------------------------------------------------"<<endl; // !debug } //------------------------- // Destructor //------------------------- GAGeneticAlgorithm::~GAGeneticAlgorithm() {} //------------------------- // Public //------------------------- bool GAGeneticAlgorithm::InitiateGeneticAlgorithm() { // // step 1 : generate the first Generation // a limited number for Robots was assumed // GAGeneration * generation_0 = new GAGeneration("Generation_0",IndividualSize_,toolRobotDeploymentEvenly_); if(!IsGeneSizeSet_) { cout<<"An error occured in GAGeneticAlgorithm::InitiateGeneticAlgorithm"<<endl; cout<<"Gene Size has not been set or is too large : IsGeneSizeSet_ "<<IsGeneSizeSet_<<endl; return false; } // debug cout<<"----------------------------------------------------------------"<<endl; cout<<"----"<<endl; cout<<"debug GAGeneticAlgorithm::InitiateGeneticAlgorithm"<<endl; cout<<"step 1 : generate the first Generation"<<endl; cout<<"name "<<name_<<endl; cout<<"GenerationSize_ "<<GenerationSize_<<endl; cout<<"IndividualSize_ "<<IndividualSize_<<endl; cout<<"GeneSize_(unlimited) "<<toolRobotDeploymentEvenly_->robotCoor_x_2_.size()<<endl; cout<<"GeneSize_(Limited) "<<GeneSize_<<endl; cout<<"----"<<endl; cout<<"----------------------------------------------------------------"<<endl; //// Situation 1 : Unlimited Robots //bool IsFristGenGood // = generation_0->GenerateFirstGeneration_DeployingEvenly_UnLimitedRobots(); // Situation 2 : limited Robots bool IsFristGenGood = generation_0->GenerateFirstGeneration_DeployingEvenly_LimitedRobots(GeneSize_); generations_.push_back(generation_0); // write generation_0->ToolWrite(); // debug if(!IsFristGenGood) { cout<<"An error occured in GAGeneticAlgorithm::InitiateGeneticAlgorithm"<<endl; cout<<"IsFristGenGood "<<IsFristGenGood<<endl; return false; } // // step 2 : generate other Generations // int EliteSize = IndividualSize_ * ElitePr_; int MutationSize = IndividualSize_ * MutationPr_; int CrossOverSize = IndividualSize_ - EliteSize - MutationSize; if(CrossOverSize<0) CrossOverSize=0; int SurvivedSize = IndividualSize_ * SurvivedPr_; if(SurvivedSize==0||SurvivedSize<EliteSize) { cout<<"An error occured in GAGeneticAlgorithm::InitiateGeneticAlgorithm"<<endl; cout<<"SurvivedSize is wrong, Too small or smaller than Elite size : "<<SurvivedSize<<endl; return false; } // debug cout<<"----------------------------------------------------------------"<<endl; cout<<"----"<<endl; cout<<"debug GAGeneticAlgorithm::InitiateGeneticAlgorithm"<<endl; cout<<"step 2 : generate last Generations"<<endl; cout<<"name "<<name_<<endl; cout<<"GenerationSize "<<GenerationSize_<<endl; cout<<"EliteSize "<<EliteSize<<endl; cout<<"MutationSize "<<MutationSize<<endl; cout<<"CrossOverSize "<<CrossOverSize<<endl; cout<<"SurvivedSize "<<SurvivedSize<<endl; cout<<"----"<<endl; cout<<"----------------------------------------------------------------"<<endl; // !debug /* // debug cout<<"EliteSize "<<EliteSize<<endl; cout<<"MutationSize "<<MutationSize<<endl; cout<<"CrossOverSize "<<CrossOverSize<<endl; // !debug */ for(int i=0;i<GenerationSize_-1;i++) { int gID = i + 1; cout<<"debug GAGeneticAlgorithm::InitiateGeneticAlgorithm : Generation "<<gID<<" Begin..."<<endl; GAGeneration *generation_current = new GAGeneration("Generation_"+to_string(gID),IndividualSize_,toolRobotDeploymentEvenly_); bool IsGenerationGood = generation_current->GenerateAGeneration( generations_[gID-1], MutationSize, CrossOverSize, EliteSize, SurvivedSize); // write generation_current->ToolWrite(); // record generations_.push_back(generation_current); cout<<"debug GAGeneticAlgorithm::InitiateGeneticAlgorithm : Generation "<<gID<<" End."<<endl<<endl; } return true; } void GAGeneticAlgorithm::SetProbabilities(double MutationPr, double CrossOverPr, double ElitePr, double SurvivedPr) { MutationPr_ = MutationPr; CrossOverPr_ = CrossOverPr; ElitePr_ = ElitePr; SurvivedPr_ = SurvivedPr; // normalization double total = MutationPr_ + CrossOverPr_ + ElitePr_; if(total<=0) total =1; MutationPr_ /= total; CrossOverPr_ /= total; ElitePr_ /= total; // debug cout<<"----------------------------------------------------------------"<<endl; cout<<"----"<<endl; cout<<"debug GAGeneticAlgorithm::SetProbabilities"<<endl; cout<<"MutationPr_ "<<MutationPr_ <<endl; cout<<"CrossOverPr_ "<<CrossOverPr_ <<endl; cout<<"ElitePr_ "<<ElitePr_ <<endl; cout<<"SurvivedPr_ "<<SurvivedPr_<<endl; cout<<"----"<<endl; cout<<"----------------------------------------------------------------"<<endl; // !debug } //------------------------- // Public // Tool: for the limited-robot situation //------------------------- void GAGeneticAlgorithm::SetGeneSize(int GeneSize) { GeneSize_ = GeneSize; IsGeneSizeSet_ = true; if(GeneSize_>=toolRobotDeploymentEvenly_->robotCoor_x_2_.size()) { cout<<"An error occured in GAGeneticAlgorithm::SetGeneSize"<<endl; cout<<"GeneSize_ is larger than the Robot size the deploying evenly has!"<<endl; IsGeneSizeSet_ = false; } }
0017c0fc6bcd8bda778c8b643c4d2c31e1c54e06
4f4a8000ce3a08055859dd6334fecc3bf3c53613
/Code/View/ModificaEvento.h
1e4bb22c02ba6c54ba72f40ceaf21099cbcad059
[]
no_license
lucadalmedico/SacredHeart
a032c9c7d134ef62cf8e46b23554a3b7636466bc
a923ede9e6ce49b1df86c6615a7052beed98781d
refs/heads/master
2021-04-12T04:35:58.221291
2018-03-20T10:45:41
2018-03-20T10:45:41
126,001,859
0
0
null
null
null
null
UTF-8
C++
false
false
489
h
ModificaEvento.h
#ifndef MODIFICAEVENTO_H #define MODIFICAEVENTO_H #include "AzioniEvento.h" class ModificaEvento :public AzioniEvento{ Q_OBJECT private: shared_ptr<Evento> evento; public: ModificaEvento(const shared_ptr<Database>&, const shared_ptr<Evento>); ~ModificaEvento(); private slots: void Invio(); signals: void invio(shared_ptr<Evento>&,const shared_ptr<Medico>&,const shared_ptr<Persona>&, const QDateTime,const QString); }; #endif // MODIFICAEVENTO_H
ca4409bec3ca771ecdbe7ce554940021fb5a1f02
6c996ca5146bd307a062f38819acec16d710656f
/workspace/iw8/code_source/src/staticmodels/staticmodels_havokshapeinternals.cpp
ba5b4b48e7c7bdf7cee3b4e371891e83a06445a7
[]
no_license
Omn1z/OpenIW8
d46f095d4d743d1d8657f7e396e6d3cf944aa562
6c01a9548e4d5f7e1185369a62846f2c6f8304ba
refs/heads/main
2023-08-15T22:43:01.627895
2021-10-10T20:44:57
2021-10-10T20:44:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
24,046
cpp
staticmodels_havokshapeinternals.cpp
/* ============== StaticModels_HavokShape::updateCachedBounds ============== */ bool __fastcall StaticModels_HavokShape::updateCachedBounds(StaticModels_HavokShape *this) { return ?updateCachedBounds@StaticModels_HavokShape@@QEAA_NXZ(this); } /* ============== StaticModels_HavokShape::addInstancesToBoundingVolume ============== */ void __fastcall StaticModels_HavokShape::addInstancesToBoundingVolume(StaticModels_HavokShape *this, const hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> *instanceIds, int numIds) { ?addInstancesToBoundingVolume@StaticModels_HavokShape@@IEAAXPEBU?$hkHandle@G$0PPPP@UStaticModels_HavokShapeInstanceIdDiscriminant@@@@H@Z(this, instanceIds, numIds); } /* ============== StaticModels_HavokShape::removeInstancesFromBoundingVolume ============== */ void __fastcall StaticModels_HavokShape::removeInstancesFromBoundingVolume(StaticModels_HavokShape *this, const hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> *instanceIds, int numIds) { ?removeInstancesFromBoundingVolume@StaticModels_HavokShape@@IEAAXPEBU?$hkHandle@G$0PPPP@UStaticModels_HavokShapeInstanceIdDiscriminant@@@@H@Z(this, instanceIds, numIds); } /* ============== StaticModels_HavokShape::optimize ============== */ void __fastcall StaticModels_HavokShape::optimize(StaticModels_HavokShape *this) { ?optimize@StaticModels_HavokShape@@QEAAXXZ(this); } /* ============== StaticModels_HavokShape::buildBoundingVolume ============== */ void __fastcall StaticModels_HavokShape::buildBoundingVolume(StaticModels_HavokShape *this) { ?buildBoundingVolume@StaticModels_HavokShape@@QEAAXXZ(this); } /* ============== StaticModels_HavokShape::getInstanceAabb ============== */ void __fastcall StaticModels_HavokShape::getInstanceAabb(StaticModels_HavokShape *this, hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> instanceId, hkAabb *aabbOut) { ?getInstanceAabb@StaticModels_HavokShape@@QEBAXU?$hkHandle@G$0PPPP@UStaticModels_HavokShapeInstanceIdDiscriminant@@@@AEAVhkAabb@@@Z(this, instanceId, aabbOut); } /* ============== StaticModels_HavokShape::updateInstancesInBoundingVolume ============== */ void __fastcall StaticModels_HavokShape::updateInstancesInBoundingVolume(StaticModels_HavokShape *this, const hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> *instanceIds, int numIds) { ?updateInstancesInBoundingVolume@StaticModels_HavokShape@@IEAAXPEBU?$hkHandle@G$0PPPP@UStaticModels_HavokShapeInstanceIdDiscriminant@@@@H@Z(this, instanceIds, numIds); } /* ============== StaticModels_HavokShape::rebuild ============== */ void __fastcall StaticModels_HavokShape::rebuild(StaticModels_HavokShape *this) { ?rebuild@StaticModels_HavokShape@@QEAAXXZ(this); } /* ============== StaticModels_HavokShape::addInstancesToBoundingVolume ============== */ void StaticModels_HavokShape::addInstancesToBoundingVolume(StaticModels_HavokShape *this, const hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> *instanceIds, int numIds) { __int64 v3; __int64 v6; hkMemoryAllocator *v7; int m_size; hkVector4f *v9; v3 = numIds; if ( numIds > 0 ) { v6 = 0i64; do { if ( instanceIds[v6].m_value != 0xFFFF ) { v7 = hkMemHeapAllocator(); m_size = this->m_boundingVolumeData.m_simdTree.m_points.m_size; if ( m_size == (this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags & 0x3FFFFFFF) ) { hkArrayUtil::_reserveMore(v7, &this->m_boundingVolumeData.m_simdTree.m_points, 16); m_size = this->m_boundingVolumeData.m_simdTree.m_points.m_size; } v9 = &this->m_boundingVolumeData.m_simdTree.m_points.m_data[m_size]; this->m_boundingVolumeData.m_simdTree.m_points.m_size = m_size + 1; *v9 = 0i64; v9->m_quad.m128_i32[3] = instanceIds[v6].m_value | 0x3F000000; } ++v6; } while ( v6 < v3 ); } StaticModels_HavokShape::rebuild(this); } /* ============== StaticModels_HavokShape::buildBoundingVolume ============== */ void StaticModels_HavokShape::buildBoundingVolume(StaticModels_HavokShape *this) { hkMonitorStream *Value; hkMonitorStream *v3; unsigned int v4; hkMemoryAllocator *v5; unsigned int v6; unsigned int v7; int i; hkMemoryAllocator *v9; int m_size; hkVector4f *v11; hkMemoryAllocator *v12; int m_capacityAndFlags; Value = (hkMonitorStream *)TlsGetValue(hkMonitorStream__m_instance.m_slotID); v3 = Value; if ( Value ) hkMonitorStream::timerBegin(Value, "TtBuildBoundingVolume"); v4 = (this->m_instances.m_capacityAndFlags & 0x3FFFFFFF) + 4; v5 = hkMemHeapAllocator(); v6 = this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags & 0x3FFFFFFF; if ( v6 < v4 ) { v7 = 2 * v6; if ( v7 >= 0x3FFFFFFF ) v7 = 1073741822; if ( v4 < v7 ) v4 = v7; hkArrayUtil::_reserve(v5, &this->m_boundingVolumeData.m_simdTree.m_points, v4, 16); } for ( i = 0; i < this->m_instances.m_size; ++i ) { v9 = hkMemHeapAllocator(); m_size = this->m_boundingVolumeData.m_simdTree.m_points.m_size; if ( m_size == (this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags & 0x3FFFFFFF) ) { hkArrayUtil::_reserveMore(v9, &this->m_boundingVolumeData.m_simdTree.m_points, 16); m_size = this->m_boundingVolumeData.m_simdTree.m_points.m_size; } v11 = &this->m_boundingVolumeData.m_simdTree.m_points.m_data[m_size]; this->m_boundingVolumeData.m_simdTree.m_points.m_size = m_size + 1; v11->m_quad.m128_i32[3] = i | 0x3F000000; } StaticModels_HavokShape::rebuild(this); v12 = hkMemHeapAllocator(); this->m_boundingVolumeData.m_simdTree.m_points.m_size = 0; m_capacityAndFlags = this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags; if ( m_capacityAndFlags >= 0 ) hkMemoryAllocator::bufFree2(v12, this->m_boundingVolumeData.m_simdTree.m_points.m_data, 16, m_capacityAndFlags & 0x3FFFFFFF); this->m_boundingVolumeData.m_simdTree.m_points.m_data = NULL; this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags = 0x80000000; if ( v3 ) hkMonitorStream::timerEnd(v3, "Et"); } /* ============== StaticModels_HavokShape::getInstanceAabb ============== */ void StaticModels_HavokShape::getInstanceAabb(StaticModels_HavokShape *this, hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> instanceId, hkAabb *aabbOut) { StaticModels_HavokShapeInstance::calculateAabb(&this->m_instances.m_data[instanceId.m_value], this->m_tileIdx, aabbOut); } /* ============== StaticModels_HavokShape::optimize ============== */ void StaticModels_HavokShape::optimize(StaticModels_HavokShape *this) { ; } /* ============== StaticModels_HavokShape::rebuild ============== */ void StaticModels_HavokShape::rebuild(StaticModels_HavokShape *this) { int m_capacityAndFlags; int v3; hkMemoryRouter *Value; int v5; hkAabb *m_cur; char *v7; unsigned int v8; hkMemoryAllocator *v9; unsigned int v10; int v11; int v12; __int64 v13; hkVector4f *m_data; hkAabb *v15; hkVector4f *v18; hkMemoryAllocator *v19; hkMemoryAllocator *v20; int v21; char *v22; int v23; hkMemoryRouter *v24; signed int v25; int v26; hkMemoryAllocator *v27; hkAabb *array; int v29; int v30; void *p; int v32; hkcdSimdTree::BuildContext buildContext; m_capacityAndFlags = this->m_instances.m_capacityAndFlags; v3 = m_capacityAndFlags & 0x3FFFFFFF; array = NULL; v29 = 0; v30 = 0x80000000; v32 = m_capacityAndFlags & 0x3FFFFFFF; if ( (m_capacityAndFlags & 0x3FFFFFFF) != 0 ) { Value = (hkMemoryRouter *)TlsGetValue(hkMemoryRouter::s_memoryRouter.m_slotID); if ( !Value ) Value = hkMemoryRouter::s_fallbackRouter; v5 = (32 * m_capacityAndFlags + 127) & 0xFFFFFF80; m_cur = (hkAabb *)Value->m_stack.m_cur; v7 = (char *)m_cur + v5; if ( v5 > Value->m_stack.m_slabSize || v7 > Value->m_stack.m_end ) { m_cur = (hkAabb *)hkLifoAllocator::allocateFromNewSlab(&Value->m_stack, v5); m_capacityAndFlags = this->m_instances.m_capacityAndFlags; } else { Value->m_stack.m_cur = v7; m_capacityAndFlags = this->m_instances.m_capacityAndFlags; } } else { m_cur = NULL; } array = m_cur; v30 = v3 | 0x80000000; p = m_cur; v8 = m_capacityAndFlags & 0x3FFFFFFF; v9 = hkMemHeapAllocator(); if ( (v3 & 0x3FFFFFFFu) < v8 ) { v10 = 2 * (v3 & 0x3FFFFFFF); if ( v10 >= 0x3FFFFFFF ) v10 = 1073741822; v11 = v8; if ( v8 < v10 ) v11 = v10; hkArrayUtil::_reserve(v9, &array, v11, 32); } v29 = v8; v12 = 0; if ( this->m_boundingVolumeData.m_simdTree.m_points.m_size > 0 ) { v13 = 0i64; do { m_data = this->m_boundingVolumeData.m_simdTree.m_points.m_data; v15 = &array[(unsigned __int16)m_data[v13].m_quad.m128_i32[3]]; StaticModels_HavokShapeInstance::calculateAabb(&this->m_instances.m_data[(unsigned __int16)m_data[v13].m_quad.m128_i32[3]], this->m_tileIdx, v15); _XMM1 = _mm128_add_ps(v15->m_max.m_quad, v15->m_min.m_quad); __asm { vblendps xmm1, xmm1, xmmword ptr [rdi+r12], 8 } m_data[v13] = (hkVector4f)_XMM1.m_quad; ++v12; ++v13; } while ( v12 < this->m_boundingVolumeData.m_simdTree.m_points.m_size ); } buildContext.__vftable = (hkcdSimdTree::BuildContext_vtbl *)hkcdSimdTree::BuildContext::`vftable'; *(_QWORD *)&buildContext.m_buildMode = 0i64; buildContext.m_parallel = NULL; buildContext.m_numLevelToUnfold = 1; *(_WORD *)&buildContext.m_compact = 1; buildContext.m_compounds.m_data = NULL; buildContext.m_compounds.m_size = 0; buildContext.m_compounds.m_capacityAndFlags = 0x80000000; buildContext.m_refit = NULL; buildContext.m_points.m_data = this->m_boundingVolumeData.m_simdTree.m_points.m_data; this->m_boundingVolumeData.m_simdTree.m_points.m_data = NULL; buildContext.m_points.m_size = this->m_boundingVolumeData.m_simdTree.m_points.m_size; this->m_boundingVolumeData.m_simdTree.m_points.m_size = 0; buildContext.m_points.m_capacityAndFlags = this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags; this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags = 0x80000000; hkcdSimdTree::buildFromAabbs(&this->m_boundingVolumeData.m_simdTree, &buildContext, array); v18 = buildContext.m_points.m_data; buildContext.m_points.m_data = this->m_boundingVolumeData.m_simdTree.m_points.m_data; this->m_boundingVolumeData.m_simdTree.m_points.m_data = v18; LODWORD(v18) = buildContext.m_points.m_size; buildContext.m_points.m_size = this->m_boundingVolumeData.m_simdTree.m_points.m_size; this->m_boundingVolumeData.m_simdTree.m_points.m_size = (int)v18; LODWORD(v18) = buildContext.m_points.m_capacityAndFlags; buildContext.m_points.m_capacityAndFlags = this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags; this->m_boundingVolumeData.m_simdTree.m_points.m_capacityAndFlags = (int)v18; buildContext.__vftable = (hkcdSimdTree::BuildContext_vtbl *)hkcdSimdTree::BuildContext::`vftable'; v19 = hkMemHeapAllocator(); buildContext.m_compounds.m_size = 0; if ( buildContext.m_compounds.m_capacityAndFlags >= 0 ) hkMemoryAllocator::bufFree2(v19, buildContext.m_compounds.m_data, 32, buildContext.m_compounds.m_capacityAndFlags & 0x3FFFFFFF); buildContext.m_compounds.m_data = NULL; buildContext.m_compounds.m_capacityAndFlags = 0x80000000; v20 = hkMemHeapAllocator(); buildContext.m_points.m_size = 0; if ( buildContext.m_points.m_capacityAndFlags >= 0 ) hkMemoryAllocator::bufFree2(v20, buildContext.m_points.m_data, 16, buildContext.m_points.m_capacityAndFlags & 0x3FFFFFFF); buildContext.m_points.m_data = NULL; buildContext.m_points.m_capacityAndFlags = 0x80000000; v21 = v29; v22 = (char *)p; if ( p == array ) v21 = 0; v29 = v21; v23 = v32; v24 = (hkMemoryRouter *)TlsGetValue(hkMemoryRouter::s_memoryRouter.m_slotID); if ( !v24 ) v24 = hkMemoryRouter::s_fallbackRouter; v25 = (32 * v23 + 127) & 0xFFFFFF80; v26 = (v25 + 15) & 0xFFFFFFF0; if ( v25 > v24->m_stack.m_slabSize || &v22[v26] != v24->m_stack.m_cur || v24->m_stack.m_firstNonLifoEnd == v22 ) hkLifoAllocator::slowBlockFree(&v24->m_stack, v22, v26); else v24->m_stack.m_cur = v22; v27 = hkMemHeapAllocator(); v29 = 0; if ( v30 >= 0 ) hkMemoryAllocator::bufFree2(v27, array, 32, v30 & 0x3FFFFFFF); } /* ============== StaticModels_HavokShape::removeInstancesFromBoundingVolume ============== */ void StaticModels_HavokShape::removeInstancesFromBoundingVolume(StaticModels_HavokShape *this, const hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> *instanceIds, int numIds) { __int64 v3; __int64 v5; int v6; __int64 v7; int *v8; int v9; hkVector4f *v10; __int64 v11; v3 = numIds; if ( numIds > 0 ) { v5 = 0i64; do { v6 = 0; v7 = 0i64; if ( this->m_boundingVolumeData.m_simdTree.m_points.m_size > 0 ) { v8 = &this->m_boundingVolumeData.m_simdTree.m_points.m_data->m_quad.m128_i32[3]; while ( (*v8 & 0xC0FFFFFF) != instanceIds[v5].m_value ) { ++v6; ++v7; v8 += 4; if ( v7 >= this->m_boundingVolumeData.m_simdTree.m_points.m_size ) goto LABEL_10; } --this->m_boundingVolumeData.m_simdTree.m_points.m_size; v9 = 0; v10 = &this->m_boundingVolumeData.m_simdTree.m_points.m_data[v7]; v11 = 16i64 * (this->m_boundingVolumeData.m_simdTree.m_points.m_size - v6); if ( v11 > 0 ) { do { v9 += 8; v10->m_quad.m128_u64[0] = v10[1].m_quad.m128_u64[0]; v10 = (hkVector4f *)((char *)v10 + 8); } while ( v9 < v11 ); } } LABEL_10: ++v5; } while ( v5 < v3 ); } StaticModels_HavokShape::rebuild(this); } /* ============== StaticModels_HavokShape::updateCachedBounds ============== */ __int64 StaticModels_HavokShape::updateCachedBounds(StaticModels_HavokShape *this) { hkMonitorStream *Value; hkMonitorStream *v4; unsigned __int8 v8; int m_size; hkMemoryRouter *v11; int v12; __m128 *m_cur; char *v14; int v15; int v16; hkcdSimdTree::Node *m_data; hkcdSimdTree::Node *v26; __int64 v27; __int64 v28; __int64 v29; unsigned int v30; __int64 v39; StaticModels_HavokShapeInstance *v40; __int16 m_modelIdxAndFlags; const void *CollisionTileModelShape; double CollisionTileModelInstanceScale; _OWORD *v46; __m128 v55; __int64 v56; __m128 *v57; __int128 v64; __int128 v72; hkMemoryRouter *v83; int v84; int v86; int v87; __int64 v88; _OWORD *m128_f32; hkcdSimdTree::Node *v90; hkMonitorStream *v91; vec3_t origin; hkVector4f b; hkAabb v94; hkTransformf v95; vec4_t orientationAsQuat; hkQuaternionf qi; hkVector4f v98; __m128 v99; Value = (hkMonitorStream *)TlsGetValue(hkMonitorStream__m_instance.m_slotID); v4 = Value; v91 = Value; if ( Value ) hkMonitorStream::timerBegin(Value, "TtStaticModels_HavokShape::updateCachedBounds()"); _XMM0.m_quad = (__m128)this->m_boundingVolumeData.m_simdTree.m_nodes.m_data[1].m_lx; __asm { vcmpleps xmm1, xmm0, xmmword ptr [rcx+90h] vmovmskps eax, xmm1 } if ( _EAX ) { LODWORD(_XMM7) = 0; m_size = this->m_instances.m_size; v11 = (hkMemoryRouter *)TlsGetValue(hkMemoryRouter::s_memoryRouter.m_slotID); if ( !v11 ) v11 = hkMemoryRouter::s_fallbackRouter; v12 = (16 * m_size + 127) & 0xFFFFFF80; v86 = v12; m_cur = (__m128 *)v11->m_stack.m_cur; v14 = (char *)m_cur + v12; if ( v12 > v11->m_stack.m_slabSize || v14 > v11->m_stack.m_end ) m_cur = (__m128 *)hkLifoAllocator::allocateFromNewSlab(&v11->m_stack, v12); else v11->m_stack.m_cur = v14; v15 = 0; v16 = 0; v87 = 0; _XMM8.m_quad = g_vectorfConstants[36]; __asm { vpxor xmm14, xmm14, xmm14 vpinsrw xmm0, xmm14, eax, 1 vpshufd xmm1, xmm0, 0 } _XMM11.m_quad = (__m128)(*(_OWORD *)&g_vectorfConstants[36] ^ _XMM1); m_data = this->m_boundingVolumeData.m_simdTree.m_nodes.m_data; _XMM0.m_quad = (__m128)m_data[1].m_lx; __asm { vcmpleps xmm1, xmm0, xmmword ptr [rdi+90h] vmovmskps eax, xmm1 } if ( _EAX ) { v26 = &m_data[(__int64)this->m_boundingVolumeData.m_simdTree.m_nodes.m_size]; v90 = v26; if ( m_data != v26 ) { v27 = 0i64; v88 = 0i64; do { if ( m_data->m_isLeaf ) { v28 = 0i64; m128_f32 = (_OWORD *)m_cur[v27].m128_f32; v29 = 4i64; do { v30 = m_data->m_data[v28]; if ( v30 != -1 ) { _XMM2 = 0i64; __asm { vinsertps xmm2, xmm2, dword ptr [rbx+rdi], 0 vinsertps xmm2, xmm2, dword ptr [rbx+rdi+20h], 10h vinsertps xmm2, xmm2, dword ptr [rbx+rdi+40h], 20h ; ' ' } v94.m_min = (hkVector4f)_XMM2.m_quad; _XMM2 = 0i64; __asm { vinsertps xmm2, xmm2, dword ptr [rbx+rdi+10h], 0 vinsertps xmm2, xmm2, dword ptr [rbx+rdi+30h], 10h vinsertps xmm2, xmm2, dword ptr [rbx+rdi+50h], 20h ; ' ' } v94.m_max = (hkVector4f)_XMM2.m_quad; v39 = (unsigned __int16)v30; v40 = this->m_instances.m_data; if ( hkAabb::isValid(&v94) && (m_modelIdxAndFlags = v40[v39].m_modelIdxAndFlags, m_modelIdxAndFlags < 0) ) { __asm { vminps xmm8, xmm8, xmm1 vmaxps xmm11, xmm11, xmmword ptr [rbp+100h+var_160.m_max.m_quad] } b.m_quad = _mm128_mul_ps(_mm128_add_ps(v94.m_min.m_quad, v94.m_max.m_quad), g_vectorfConstants[21]); StaticModels_GetCollisionTileModelInstanceTransform(this->m_tileIdx, m_modelIdxAndFlags & 0x3FFF, v40[v39].m_instanceIdx, &origin, &orientationAsQuat); qi.m_vec.m_quad = (__m128)orientationAsQuat; *(__m256i *)v95.m_rotation.m_col0.m_quad.m128_f32 = *(__m256i *)g_vectorfConstants[32].m128_f32; *(__m256i *)v95.m_rotation.m_col2.m_quad.m128_f32 = *(__m256i *)g_vectorfConstants[34].m128_f32; hkRotationImpl<float>::set(&v95.m_rotation, &qi); v95.m_translation.m_quad.m128_f32[0] = 0.03125 * origin.v[0]; v95.m_translation.m_quad.m128_f32[1] = 0.03125 * origin.v[1]; v95.m_translation.m_quad.m128_f32[2] = origin.v[2] * 0.03125; v95.m_translation.m_quad.m128_f32[3] = 0.0; hkVector4f::setTransformedInversePos(&v98, &v95, &b); CollisionTileModelShape = StaticModels_GetCollisionTileModelShape((v40[v39].m_modelIdxAndFlags & 0x4000) != 0, this->m_tileIdx, v40[v39].m_modelIdxAndFlags & 0x3FFF); (*(void (__fastcall **)(const void *, hkVector4f *, __m128 *))(*(_QWORD *)CollisionTileModelShape + 48i64))(CollisionTileModelShape, &v98, &v99); CollisionTileModelInstanceScale = StaticModels_GetCollisionTileModelInstanceScale(this->m_tileIdx, v40[v39].m_modelIdxAndFlags & 0x3FFF, v40[v39].m_instanceIdx); _mm_shuffle_ps((__m128)*(unsigned __int64 *)&CollisionTileModelInstanceScale, (__m128)*(unsigned __int64 *)&CollisionTileModelInstanceScale, 0); _XMM0 = *(_OWORD *)hkMath::hkSse_signMask; __asm { vandnps xmm3, xmm0, xmm1 } v46 = m128_f32; v16 = ++v87; v27 = ++v88; ++m128_f32; _mm_shuffle_ps(_XMM3, _XMM3, 0); _XMM0 = _mm_shuffle_ps(_XMM3, _XMM3, 85); __asm { vmaxps xmm2, xmm0, xmm1 } _XMM1 = _mm_shuffle_ps(_XMM3, _XMM3, 170); __asm { vmaxps xmm2, xmm1, xmm2 } _mm128_mul_ps(_XMM2, v99); _XMM1 = b.m_quad; __asm { vblendps xmm0, xmm1, xmm3, 8 } *v46 = _XMM0; } else { v16 = v87; v27 = v88; } } ++v28; --v29; } while ( v29 ); v26 = v90; v15 = 0; } ++m_data; } while ( m_data != v26 ); v12 = v86; v4 = v91; } } __asm { vcmpltps xmm0, xmm11, xmm8 vmovmskps eax, xmm0 } if ( (_EAX & 7) != 0 ) { _XMM8.m_quad = g_vectorfConstants[5]; _XMM11.m_quad = g_vectorfConstants[5]; } v55 = _mm128_mul_ps(_mm128_add_ps(_XMM11.m_quad, _XMM8.m_quad), g_vectorfConstants[21]); v56 = v16; if ( v16 > 0 ) { v57 = m_cur; do { _XMM0 = _mm128_sub_ps(v55, *v57); __asm { vdpps xmm4, xmm0, xmm0, 7Fh vcmpleps xmm5, xmm4, xmm6 vrsqrtps xmm1, xmm4 } _mm128_mul_ps(_mm128_mul_ps(_mm128_sub_ps(*(__m128 *)hkMath::hkSse_floatThree, _mm128_mul_ps(_XMM1, _mm128_mul_ps(_XMM4, _XMM1))), _mm128_mul_ps(_XMM1, *(__m128 *)hkMath::hkSse_floatHalf)), _XMM4); __asm { vandnps xmm2, xmm5, xmm1 } v64 = 0i64; *(float *)&v64 = *(float *)&_XMM7; _XMM7 = v64; __asm { vmaxss xmm7, xmm7, xmm2 } ++v57; --v56; } while ( v56 ); } _XMM1 = _mm128_mul_ps(_mm128_sub_ps(_XMM11.m_quad, _XMM8.m_quad), g_vectorfConstants[21]); __asm { vdpps xmm5, xmm1, xmm1, 7Fh } _XMM6 = 0i64; __asm { vcmpleps xmm4, xmm5, xmm6 vrsqrtps xmm1, xmm5 } _mm128_mul_ps(_mm128_mul_ps(_mm128_sub_ps(*(__m128 *)hkMath::hkSse_floatThree, _mm128_mul_ps(_XMM1, _mm128_mul_ps(_XMM5, _XMM1))), _mm128_mul_ps(_XMM1, *(__m128 *)hkMath::hkSse_floatHalf)), _XMM5); __asm { vandnps xmm2, xmm4, xmm1 } v72 = 0i64; *(float *)&v72 = *(float *)&_XMM7; _XMM4 = v72; __asm { vminss xmm4, xmm4, xmm1 vcmpeqps xmm2, xmm8, xmmword ptr [r13+70h] } _XMM0.m_quad = (__m128)this->m_aabb.m_max; __asm { vcmpeqps xmm1, xmm0, xmm11 } _XMM3 = _XMM2 & _XMM1; __asm { vpcmpeqd xmm0, xmm14, xmm14 vblendps xmm2, xmm6, xmm0, 7 vpand xmm1, xmm3, xmm2 vptest xmm1, xmm2 } if ( _CF ) v15 = 1; if ( v15 && *(float *)&_XMM4 == this->m_boundingRadius ) { v8 = 0; } else { this->m_aabb.m_min = (hkVector4f)_XMM8.m_quad; this->m_aabb.m_max = (hkVector4f)_XMM11.m_quad; this->m_boundingRadius = *(float *)&_XMM4; v8 = 1; } v83 = (hkMemoryRouter *)TlsGetValue(hkMemoryRouter::s_memoryRouter.m_slotID); if ( !v83 ) v83 = hkMemoryRouter::s_fallbackRouter; v84 = (v12 + 15) & 0xFFFFFFF0; if ( v12 > v83->m_stack.m_slabSize || (char *)m_cur + v84 != v83->m_stack.m_cur || v83->m_stack.m_firstNonLifoEnd == m_cur ) hkLifoAllocator::slowBlockFree(&v83->m_stack, m_cur, v84); else v83->m_stack.m_cur = m_cur; } else { v8 = 0; } if ( v4 ) hkMonitorStream::timerEnd(v4, "Et"); return v8; } /* ============== StaticModels_HavokShape::updateInstancesInBoundingVolume ============== */ void __fastcall StaticModels_HavokShape::updateInstancesInBoundingVolume(StaticModels_HavokShape *this, const hkHandle<unsigned short,65535,StaticModels_HavokShapeInstanceIdDiscriminant> *instanceIds, int numIds) { StaticModels_HavokShape::rebuild(this); }
f809d8be4cc84764ae0a4c01bde166d88980b0ce
951f8f8126843dee0a87348bdc3367b171be8f30
/ch07/Window_mgr.cpp
8d89043550bcc763939e1c94c077e67a6806ddfe
[]
no_license
Ryan-Git/cpp-primer
cfbc4f24e9126b1628e5bcb81b8a6236449f341a
249482276ee8183c72ee302734584f32db557bae
refs/heads/master
2021-09-03T06:37:39.495947
2018-01-06T14:19:03
2018-01-06T14:19:03
111,973,957
0
0
null
null
null
null
UTF-8
C++
false
false
646
cpp
Window_mgr.cpp
// // Created by Ryan on 01/12/2017. // #include "Window_mgr.h" #include "Screen.h" void Window_mgr::clear(ScreenIndex i) { Screen &s = screens[i]; s.contents = std::string(s.height * s.width, ' '); } Screen &Screen::move(Screen::Directions cm) { return (this->*Menu[cm])(); } Screen::Action Screen::Menu[] = { &Screen::home, &Screen::forward, &Screen::back, &Screen::up, &Screen::down, }; Window_mgr::Window_mgr(const Screen &s) : screens{Screen(24, 80, ' ')} {} Window_mgr::ScreenIndex Window_mgr::addScreen(const Screen &s) { screens.push_back(s); return screens.size() - 1; }
0770075b2127fb987c23db0a8898a7c0457d249c
903df65564a0a03893e1dc738f7593b34058262d
/test_package/example.cpp
e77a894475e6c49f7c1c0723da8883ee7475628c
[]
no_license
jgsogo/conan-podofo
3cbbb587590a7a8fcc8a3da497eff914578db995
5fa1a3b038c8d95926729751733f53272f2c7cba
refs/heads/master
2020-03-27T07:50:35.783549
2018-10-08T18:40:27
2018-10-08T18:40:27
146,195,007
0
0
null
null
null
null
UTF-8
C++
false
false
127
cpp
example.cpp
#include <iostream> #include "podofo/podofo.h" int main() { std::cout << "Podofo v" << PODOFO_VERSION_STR << std::endl; }
4ec067dbca0852b15f06034a52b8cf490a4888b7
0de63bbad4dbb22e9f078380d3cb670f3fd43e3a
/oop/lab2/main.cpp
abbdaa553af4678927ee3eca50a46ce3f6e31cc2
[]
no_license
znifer/archive
696ed3455f614425eb43c0bd44542ce8272c3867
25213a91b272a2929325e271b0554eacb4a2d4e0
refs/heads/master
2021-07-06T20:48:00.720205
2021-04-28T11:24:38
2021-04-28T11:24:38
235,637,953
0
0
null
null
null
null
UTF-8
C++
false
false
1,731
cpp
main.cpp
#include "adressBook.hpp" #include <locale.h> int main(){ system("chcp 1251"); int mode, pos, datSize, datMaxSize; ifstream fset; fset.open ("settings.txt"); fset >> datSize; datMaxSize = datSize * 2; fset.close(); adressField *dat; dat = (adressField*)malloc(datMaxSize*sizeof(adressField)); printf ("what to do? [H]elp\n"); initData (dat, datSize); while (mode != '0'){ mode = getchar(); mode = tolower(mode); switch (mode){ case 's': cout << "input surname:" << endl; char surname[20]; cin >> surname; searchBySurname(dat, datSize, surname); break; case 'a': if (datSize+1 > datMaxSize){ datMaxSize *= 2; dat = (adressField*) realloc (dat, datMaxSize * sizeof(adressField)); } dat[datSize].readData(); datSize++; break; case 'p': for (int i = 0; i < datSize; i++){ dat[i].printData(); } break; case 'r': cout << "which contact should be removed?" << endl; cin >> pos; if (pos-1 > datSize){ cout << "unable to remove!" << endl; } datSize = removeAdress(dat, pos-1, datSize); break; case '0': saveChanges(dat, datSize); return 0; case 'h': printf ("Available commands: [S]earch, [A]dd, [P]rint all contacts, [R]emove. 0 to stop\n"); break; } } return 0; }
c65e6d2f76b026a3d6e2ef5baed8fc911c21e0c0
1f50d80a1147e3b631d68cecf534f756688ea1a0
/test/TestParallelSuite.h
c13b99e7bce725b41c59d21750f808c17cff9e72
[ "MIT" ]
permissive
doe300/cpptest-lite
27745bcaece8e8bef8e02c9848d04f93480ce740
8e0ab01b32794be0861fd0fb8eb491bb7afe6477
refs/heads/master
2022-05-03T09:02:30.799579
2022-04-09T06:21:40
2022-04-09T06:21:40
42,398,765
7
5
MIT
2022-04-02T05:22:37
2015-09-13T14:25:55
C++
UTF-8
C++
false
false
334
h
TestParallelSuite.h
/* * File: TestParallelSuite.h * Author: daniel * * Created on October 16, 2015, 1:10 PM */ #ifndef TESTPARALLELSUITE_H #define TESTPARALLELSUITE_H #include "TestMacros.h" #include "TestSuites.h" class TestParallelSuite : public Test::ParallelSuite { public: TestParallelSuite(); }; #endif /* TESTPARALLELSUITE_H */
7862f0cdfef09aa7879931575e75c514904f80d1
4f76464ab556ee36e00881f661bbfdee98d69add
/projects/engine/nex/platform/windows/CrashHandlerWin32.hpp
64ade2b4a7fae593006285b1bbe252e5c5795ea2
[]
no_license
Neconspictor/Euclid
5406c25cf0089d0c11c319349ae4b7a7a437774c
3a144723d1e79b9670336ec66cbdee875d97a1d6
refs/heads/master
2022-04-14T17:48:23.527977
2020-04-01T14:47:18
2020-04-01T15:14:06
251,591,695
2
0
null
null
null
null
WINDOWS-1250
C++
false
false
4,021
hpp
CrashHandlerWin32.hpp
#pragma once #include <nex/platform/windows/StackWalker.h> #include <cstdio> #include <tchar.h> namespace nex { class StackWalkerToConsole : public StackWalker { protected: virtual void OnOutput(LPCSTR szText) { printf("%s", szText); } }; // For more info about "PreventSetUnhandledExceptionFilter" see: // "SetUnhandledExceptionFilter" and VC8 // http://blog.kalmbachnet.de/?postid=75 // and // Unhandled exceptions in VC8 and above… for x86 and x64 // http://blog.kalmbach-software.de/2008/04/02/unhandled-exceptions-in-vc8-and-above-for-x86-and-x64/ // Even better: http://blog.kalmbach-software.de/2013/05/23/improvedpreventsetunhandledexceptionfilter/ #if defined(_M_X64) || defined(_M_IX86) static BOOL PreventSetUnhandledExceptionFilter() { HMODULE hKernel32 = LoadLibrary(_T("kernel32.dll")); if (hKernel32 == NULL) return FALSE; void* pOrgEntry = GetProcAddress(hKernel32, "SetUnhandledExceptionFilter"); if (pOrgEntry == NULL) return FALSE; #ifdef _M_IX86 // Code for x86: // 33 C0 xor eax,eax // C2 04 00 ret 4 unsigned char szExecute[] = { 0x33, 0xC0, 0xC2, 0x04, 0x00 }; #elif _M_X64 // 33 C0 xor eax,eax // C3 ret unsigned char szExecute[] = { 0x33, 0xC0, 0xC3 }; #else #error "The following code only works for x86 and x64!" #endif DWORD dwOldProtect = 0; BOOL bProt = VirtualProtect(pOrgEntry, sizeof(szExecute), PAGE_EXECUTE_READWRITE, &dwOldProtect); SIZE_T bytesWritten = 0; BOOL bRet = WriteProcessMemory(GetCurrentProcess(), pOrgEntry, szExecute, sizeof(szExecute), &bytesWritten); if ((bProt != FALSE) && (dwOldProtect != PAGE_EXECUTE_READWRITE)) { DWORD dwBuf; VirtualProtect(pOrgEntry, sizeof(szExecute), dwOldProtect, &dwBuf); } return bRet; } #else #pragma message("This code works only for x86 and x64!") #endif static TCHAR s_szExceptionLogFileName[_MAX_PATH] = _T("\\exceptions.log"); // default static BOOL s_bUnhandledExeptionFilterSet = FALSE; static LONG __stdcall CrashHandlerExceptionFilter(EXCEPTION_POINTERS* pExPtrs) { VLDMarkAllLeaksAsReported(); VLDDisable(); #ifdef _M_IX86 if (pExPtrs->ExceptionRecord->ExceptionCode == EXCEPTION_STACK_OVERFLOW) { static char MyStack[1024 * 128]; // be sure that we have enough space... // it assumes that DS and SS are the same!!! (this is the case for Win32) // change the stack only if the selectors are the same (this is the case for Win32) //__asm push offset MyStack[1024*128]; //__asm pop esp; __asm mov eax, offset MyStack[1024 * 128]; __asm mov esp, eax; } #endif StackWalkerToConsole sw; // output to console sw.ShowCallstack(GetCurrentThread(), pExPtrs->ContextRecord); TCHAR lString[500]; _stprintf_s(lString, _T("*** Unhandled Exception! See console output for more infos!\n") _T(" ExpCode: 0x%8.8X\n") _T(" ExpFlags: %d\n") #if _MSC_VER >= 1900 _T(" ExpAddress: 0x%8.8p\n") #else _T(" ExpAddress: 0x%8.8X\n") #endif _T(" Please report!"), pExPtrs->ExceptionRecord->ExceptionCode, pExPtrs->ExceptionRecord->ExceptionFlags, pExPtrs->ExceptionRecord->ExceptionAddress); throw std::runtime_error("Unhandled exception!"); //FatalAppExit(-1, lString); //VLDMarkAllLeaksAsReported(); //VLDDisable(); return EXCEPTION_CONTINUE_SEARCH; } static void initWin32CrashHandler() { return; TCHAR szModName[_MAX_PATH]; if (GetModuleFileName(NULL, szModName, sizeof(szModName) / sizeof(TCHAR)) != 0) { _tcscpy_s(s_szExceptionLogFileName, szModName); _tcscat_s(s_szExceptionLogFileName, _T(".exp.log")); } if (s_bUnhandledExeptionFilterSet == FALSE) { // set global exception handler (for handling all unhandled exceptions) SetUnhandledExceptionFilter(CrashHandlerExceptionFilter); #if defined _M_X64 || defined _M_IX86 PreventSetUnhandledExceptionFilter(); #endif s_bUnhandledExeptionFilterSet = TRUE; } } }
92604cb3c8eca12a9c34ff7c03cc09bd2c724ca1
269086d18c4488219df5ea9ba6e8b3867c9bb12a
/src/expression/funcCallExpr.cpp
00202299b896e9e364a38be8f20337b05d5596bc
[]
no_license
GorodentsevD/llvm
a43c3e436895dd43f5d19c4eae5bd20ca50ad6dd
b1067f129a5556dc584744d9dc1a53d3832dfd91
refs/heads/master
2021-01-01T13:09:50.405775
2020-02-12T14:06:03
2020-02-12T14:06:03
239,293,564
0
0
null
null
null
null
UTF-8
C++
false
false
1,217
cpp
funcCallExpr.cpp
#include "expr.hpp" /* ====================== FUNC CALL EXPRESSION ====================== */ llvm::Value *FunctionCallExpression::codegen() { llvm::Function *callee_function = module->getFunction(m_function); if (callee_function == nullptr) { yyerror("Function " + m_function + " doesn't exist"); return nullptr; } unsigned arg_size = callee_function->arg_size(); if (arg_size != m_args.size()) { yyerror("Wrong number of arguments: " + m_function); return nullptr; } std::vector<llvm::Value *> generated_args; for (unsigned i = 0; i < arg_size; ++i) { llvm::Value *arg_value = m_args[i]->codegen(); if (arg_value == nullptr) { return nullptr; } generated_args.push_back(arg_value); } return builder.CreateCall(callee_function, generated_args, "calltmp"); } void FunctionCallExpression::print(int level) const { std::cout << prefix(level) << "#call:" << std::endl; std::cout << prefix(level + 1) << "function_id: " << m_function << std::endl; std::cout << prefix(level + 1) << "arguments: " << std::endl; for (const auto& arg : m_args) { arg->print(level + 2); } }
ab6628b8d8d85878b1d17308b7d477a7740cfae8
7f66cc610d50f49a853d1969c7ac461c57ae894f
/sources/tests/test_geometry.cpp
dfb5189cd409cd2087ded93ac0e1921a50732346
[ "BSD-3-Clause" ]
permissive
shumingcong/seq2map
ec819d42cd092c422152a27f55050629637d56ec
cc8cd20842b3c6db01f73d2e6ecf543189e56891
refs/heads/master
2020-04-04T03:33:46.173929
2018-04-21T18:54:27
2018-04-21T18:54:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,475
cpp
test_geometry.cpp
#define BOOST_TEST_MODULE "Geometry" #include <boost/test/unit_test.hpp> #include <seq2map/geometry.hpp> using namespace seq2map; BOOST_AUTO_TEST_CASE(constructors) { cv::Mat mat = (cv::Mat_<int>(3, 4) << 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12); Geometry g0(Geometry::ROW_MAJOR, mat); Geometry g1(g0); Geometry g2(static_cast<const Geometry&>(g0)); BOOST_CHECK(g0.mat.rows == g1.mat.rows && g0.mat.cols == g1.mat.cols && g0.mat.type() == g1.mat.type()); BOOST_CHECK(g0.mat.rows == g2.mat.rows && g0.mat.cols == g2.mat.cols && g0.mat.type() == g2.mat.type()); for (int i = 0; i < g0.mat.rows; i++) { g1.mat.row(i) = g1.mat.row((i + 1) % g0.mat.rows) - g1.mat.row(i); g2.mat.row(i) = g2.mat.row(i) - g2.mat.row((i + 1) % g0.mat.rows); } for (int i = 0; i < g0.mat.rows; i++) { for (int j = 0; j < g0.mat.cols; j++) { BOOST_CHECK(g0.mat.at<int>(i, j) == g1.mat.at<int>(i, j)); BOOST_CHECK(g0.mat.at<int>(i, j) != g2.mat.at<int>(i, j)); } } } BOOST_AUTO_TEST_CASE(reshape) { cv::Mat mat = (cv::Mat_<int>(4, 3) << 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); const Geometry g0(Geometry::ROW_MAJOR, mat); Geometry g1 = g0.Reshape(Geometry::ROW_MAJOR); Geometry g2 = g0.Reshape(Geometry::COL_MAJOR); Geometry g3 = g2.Reshape(Geometry::PACKED); BOOST_CHECK(g0.GetDimension() == g1.GetDimension() && g0.GetElements() == g1.GetElements()); BOOST_CHECK(g0.GetDimension() == g2.GetDimension() && g0.GetElements() == g2.GetElements()); for (int i = 0; i < g0.mat.rows; i++) { for (int j = 0; j < g0.mat.cols; j++) { const int& g_ij = g0.mat.at<int>(i, j); BOOST_CHECK(g_ij == g1.mat.at<int>(i, j)); BOOST_CHECK(g_ij == g2.mat.at<int>(j, i)); BOOST_CHECK(g_ij == g3.mat.at<cv::Vec3i>(i, 0)[j]); } } } BOOST_AUTO_TEST_CASE(rotation) { Rotation R0, R1, R2; BOOST_CHECK(R0.FromAngles( 45, 0, 0)); BOOST_CHECK(R1.FromAngles(-45, 0, 0)); BOOST_CHECK(R2.FromMatrix(R1.ToMatrix() * R0.ToMatrix())); BOOST_CHECK(R2.IsIdentity()); BOOST_CHECK(R2.FromMatrix(R0.ToMatrix().t() * R0.ToMatrix())); BOOST_CHECK(R2.IsIdentity()); Rotation::Vec v; BOOST_CHECK(R0.Store(v)); BOOST_CHECK(R1.Restore(v)); BOOST_CHECK(R0 == R1); } BOOST_AUTO_TEST_CASE(mahalanobis) { const double EPSILON = 1e-10; const cv::Mat gmat0 = (cv::Mat_<double>(4, 3) << 68, 76, 74, 39, 66, 17, 71, 3, 28, 5, 10, 82); const cv::Mat gmat1 = (cv::Mat_<double>(4, 3) << 69, 32, 95, 3, 44, 38, 77, 80, 19, 49, 45, 65); const cv::Mat cvar0 = (cv::Mat_<double>(4, 1) << 1, 3, 5, 7); const cv::Mat cvar1 = (cv::Mat_<double>(4, 3) << 1, 1, 1, 3, 3, 3, 5, 5, 5, 7, 7, 7); const cv::Mat cvar2 = (cv::Mat_<double>(4, 6) << 1, 0, 0, 1, 0, 1, 3, 0, 0, 3, 0, 3, 5, 0, 0, 5, 0, 5, 7, 0, 0, 7, 0, 7); const cv::Mat cvar3 = (cv::Mat_<double>(4, 6) << 47, 42, 39, 98, 66, 70, 48, 57, 51, 74, 66, 61, 56, 48, 55, 48, 48, 56, 33, 25, 46, 20, 35, 66); const cv::Mat tfrm0 = (cv::Mat_<double>(4, 6) << 40, 8, 24, 12, 18, 24, 21, 3, 45, 47, 25, 25, 17, 45, 19, 6, 39, 20, 19, 32, 8, 10, 75, 77); const cv::Mat cvar4 = (cv::Mat_<double>(4, 3) << 348152, 197056, 118496, 379092, 209904, 117408, 348224, 186928, 100736, 230184, 140136, 85632); const cv::Mat cvar5 = (cv::Mat_<double>(4, 3) << 348152, 197056, 118496, 531757, 476305, 433449, 332089, 264150, 235423, 620107, 700211, 793670); const cv::Mat cvar6 = (cv::Mat_<double>(4, 3) << 348152, 197056, 118496, 518923, 444013, 380847, 293762, 282625, 273968, 565143, 639472, 723694); const cv::Mat tfrm1 = (cv::Mat_<double>(1, 9) << 2, 4, 6, 8, 1, 3, 5, 7, 9); Geometry g0(Geometry::ROW_MAJOR, gmat0); Geometry g1(Geometry::ROW_MAJOR, gmat1); MahalanobisMetric m0(MahalanobisMetric::ISOTROPIC, 3); MahalanobisMetric m1(MahalanobisMetric::ANISOTROPIC_ORTHOGONAL, 3); MahalanobisMetric m2(MahalanobisMetric::ANISOTROPIC_ROTATED, 3); // test covariance matrix setter E_INFO << "expect to see 6 warnings below.."; BOOST_CHECK( m0.SetCovarianceMat(cvar0)); BOOST_CHECK(!m0.SetCovarianceMat(cvar1)); BOOST_CHECK(!m0.SetCovarianceMat(cvar2)); BOOST_CHECK(!m1.SetCovarianceMat(cvar0)); BOOST_CHECK( m1.SetCovarianceMat(cvar1)); BOOST_CHECK(!m1.SetCovarianceMat(cvar2)); BOOST_CHECK(!m2.SetCovarianceMat(cvar0)); BOOST_CHECK(!m2.SetCovarianceMat(cvar1)); BOOST_CHECK( m2.SetCovarianceMat(cvar2)); E_INFO << "expect to see 6 warnings above.."; // test distance measuring Geometry d0 = ((Metric&)m0)(g0, g1); Geometry d1 = ((Metric&)m1)(g0, g1); Geometry d2 = ((Metric&)m2)(g0, g1); BOOST_REQUIRE_SMALL(cv::norm(d0.mat, d1.mat), EPSILON); BOOST_REQUIRE_SMALL(cv::norm(d1.mat, d2.mat), EPSILON); // test transform EuclideanTransform T; T.GetRotation().FromAngles(30, 45, 60); Metric::Own m3 = m2.Transform(T); BOOST_CHECK(m3); Geometry d3 = ((*m3)(T(g0), T(g1))); BOOST_REQUIRE_SMALL(cv::norm(d0.mat, d3.mat), EPSILON); // test filtering MahalanobisMetric& m4 = *static_cast<MahalanobisMetric*>(m3.get()); const cv::Mat kal = m4.Update(m4); const cv::Mat cov = m4.GetFullCovMat(); // the Kalman gain of self-updating has to be I/2 for (int i = 0; i < kal.rows; i++) { const int DIMS = static_cast<int>(m4.dims); const cv::Mat K = kal.row(i).reshape(1, DIMS); for (int d0 = 0; d0 < DIMS; d0++) { for (int d1 = d0; d1 < DIMS; d1++) { const double Kij = K.at<double>(d0, d1); if (d0 == d1) BOOST_REQUIRE_CLOSE(Kij, 0.5f, EPSILON); else BOOST_REQUIRE_SMALL(Kij, EPSILON); } } } // test transformation MahalanobisMetric m5(MahalanobisMetric::ANISOTROPIC_ROTATED, 3); MahalanobisMetric m6(MahalanobisMetric::ANISOTROPIC_ROTATED, 3); Geometry jac0(Geometry::ROW_MAJOR, tfrm0.row(0)); Geometry jac1(Geometry::ROW_MAJOR, tfrm0); Geometry jac2(Geometry::ROW_MAJOR, tfrm1); BOOST_CHECK(m5.SetCovarianceMat(cvar3.row(0))); BOOST_CHECK(m6.SetCovarianceMat(cvar3)); // many-via-one transformation Metric::Own m7 = m6.Transform(EuclideanTransform::Identity, jac0); // one-via-many transformation Metric::Own m8 = m5.Transform(EuclideanTransform::Identity, jac1); // many-via-many transformation Metric::Own m9 = m6.Transform(EuclideanTransform::Identity, jac1); BOOST_CHECK(cv::norm(static_cast<MahalanobisMetric*>(m7.get())->GetFullCovMat(), cvar4) == 0); BOOST_CHECK(cv::norm(static_cast<MahalanobisMetric*>(m8.get())->GetFullCovMat(), cvar5) == 0); BOOST_CHECK(cv::norm(static_cast<MahalanobisMetric*>(m9.get())->GetFullCovMat(), cvar6) == 0); // rotation Metric::Own m10 = m6.Transform(T)->Transform(T.GetInverse()); BOOST_REQUIRE_SMALL(cv::norm(static_cast<MahalanobisMetric*>(m10.get())->GetFullCovMat(), cvar3), EPSILON); // rotation + Jacobian Metric::Own m11 = m6.Transform(EuclideanTransform::Identity, jac2); Metric::Own m12 = m6.Transform(T)->Transform(T.GetInverse(), jac2); BOOST_REQUIRE_SMALL(cv::norm( static_cast<MahalanobisMetric*>(m11.get())->GetFullCovMat(), static_cast<MahalanobisMetric*>(m12.get())->GetFullCovMat() ), EPSILON); }
d579a384e2c242618f583c01221349280b1ddc96
3594cb8a5233130863b86b3a358c1d3ffe246c51
/3_2.cpp
cb3bc99827b2eabb684073370d370870f7b6b970
[]
no_license
Latte2017/Cracking_theCoding_interview
9079f3ac0b2219dfb74fdb67eff01aa26b354db1
5fd7261274a146acb3f3f3e415c9eb9f2448b5fb
refs/heads/master
2022-11-23T21:19:33.004334
2020-07-25T14:34:53
2020-07-25T14:34:53
273,756,557
0
0
null
null
null
null
UTF-8
C++
false
false
979
cpp
3_2.cpp
/* Design a min stack which in addition to push and pop also returns min in O(1) */ #include<iostream> #include<vector> using namespace std; class stk { private: vector<int> numbers; vector<int> min_stk; int max_size; public: stk(int size) { max_size = size; } void push(int num) { if (numbers.empty()) { numbers.push_back(num); min_stk.push_back(num); } else { numbers.push_back(num); int tmp_num = min_stk.back(); if (num < tmp_num) { min_stk.push_back(num); } else { min_stk.push_back(tmp_num); } } } void pop() { if (numbers.empty()) { return; } numbers.pop_back(); min_stk.pop_back(); } int min() { if (numbers.empty()) { return -1; } return min_stk.back(); } }; int main() { stk mystk = stk(5); mystk.pop(); mystk.push(3); cout << mystk.min() << endl; mystk.push(2); cout << mystk.min() << endl; mystk.push(1); cout << mystk.min() << endl; mystk.pop(); cout << mystk.min() << endl; }
8978cbc0ccb7195d631e37f5daf77598f1723c10
0406821f59a5a524ba2fa87fd8a38e4692a8bf0d
/src/com/devsda/gargantua/topcoder/598/500.cpp
92732994fd6e9aff5a8457a4d85b93ba4c2e1500
[ "MIT" ]
permissive
devvsda/gargantua
bedc3fa2b8d4e9c5dfb6e28546bafd2c367a611c
9e41f87d5c73920611bafdfa15047639cb322809
refs/heads/master
2021-08-30T13:45:12.457326
2017-12-18T06:23:13
2017-12-18T06:23:13
114,602,637
0
0
null
null
null
null
UTF-8
C++
false
false
1,432
cpp
500.cpp
#include<iostream> #include<string> #include<vector> #include<map> #include<algorithm> #include<cmath> using namespace std; /* class BinPackingEasy { public : }; */ int minBins(vector <int> item) { int setItems = 0; int index; int done[item.size()]; memset(done, 0, sizeof(done)); int i, j; sort(item.begin(), item.end()); for(i = (item.size()-1); i >= 0; i--) { if(done[i]) continue; index = -1; for(j = 0; j < i; j++) { if( !done[j] && (item[i] + item[j] <= 300) ) { index = j; } } if(index != -1) { done[i] = done[index] = 1; setItems += 2; } cout << setItems << endl; } return ( (setItems/2) + (item.size()-setItems) ); } main() { int a[] = {123, 145, 167, 213, 245, 267, 289, 132, 154, 176, 198}; vector<int> v; v.push_back(123); v.push_back(145); v.push_back(167); v.push_back(213); v.push_back(245); v.push_back(267); v.push_back(289); v.push_back(132); v.push_back(154); v.push_back(176); v.push_back(198); cout << "answer : " << minBins(v) << endl; return 0; }
c10263fa59ed7162ee558fe0ba24f6bb8ab24cd0
b9fec31908e40cfc52400e13f847ac0f4e8c48bb
/matlab tests/DH/libs/obs/include/mrpt/obs/CObservationWirelessPower.h
4d7f2c0d2d0fb6bedef562434ae1b3803589a992
[ "BSD-3-Clause" ]
permissive
DavidRicardoGarcia/measurement-of-angles
e7ff8e9f15a9e50bc57c0d45f5807fcf1fa0ec74
ab16ca937262e05bf9f82dca5f425791cacfa459
refs/heads/master
2021-07-16T12:30:53.523173
2021-06-24T07:16:49
2021-06-24T07:16:49
122,414,543
2
1
null
null
null
null
UTF-8
C++
false
false
2,287
h
CObservationWirelessPower.h
/* +---------------------------------------------------------------------------+ | Mobile Robot Programming Toolkit (MRPT) | | http://www.mrpt.org/ | | | | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file | | See: http://www.mrpt.org/Authors - All rights reserved. | | Released under BSD License. See details in http://www.mrpt.org/License | +---------------------------------------------------------------------------+ */ #ifndef CObservationWirelessPower_H #define CObservationWirelessPower_H #include <mrpt/utils/CSerializable.h> #include <mrpt/obs/CObservation.h> #include <mrpt/poses/CPose3D.h> #include <mrpt/poses/CPose2D.h> namespace mrpt { namespace obs { DEFINE_SERIALIZABLE_PRE_CUSTOM_BASE_LINKAGE( CObservationWirelessPower, CObservation, OBS_IMPEXP) /** This represents a measurement of the wireless strength perceived by the robot. * The signal level is given as a percentage. * * \sa CObservation, mrpt::hwdrivers::CWirelessPower for a software sensor capable of reading this kind of observations. * \ingroup mrpt_obs_grp */ class OBS_IMPEXP CObservationWirelessPower : public CObservation { // This must be added to any CSerializable derived class: DEFINE_SERIALIZABLE( CObservationWirelessPower ) public: /** Constructor */ CObservationWirelessPower( ); /** @name The data members * @{ */ double power; //!< The power or signal strength as sensed by the Wifi receiver (In percentage: [0-100]) mrpt::poses::CPose3D sensorPoseOnRobot; //!< The location of the sensing antenna on the robot coordinate framework /** @} */ void getSensorPose( mrpt::poses::CPose3D &out_sensorPose ) const MRPT_OVERRIDE;// See base class docs void setSensorPose( const mrpt::poses::CPose3D &newSensorPose ) MRPT_OVERRIDE;// See base class docs void getDescriptionAsText(std::ostream &o) const MRPT_OVERRIDE;// See base class docs }; // End of class def. DEFINE_SERIALIZABLE_POST_CUSTOM_BASE_LINKAGE( CObservationWirelessPower, CObservation, OBS_IMPEXP) } // End of namespace } // End of namespace #endif
28c1bd406f6c0beb40e954ee20936b6e5b05d4b6
a5f0259469ce8d1dc1fdd9b1dfc9c5df383fe987
/tool/program_p2_c4.cpp
ac3c823d8ddd76223905f8f502a9fcc97e104879
[]
no_license
cyt2017/opengl_shaderLesson13_2
135ab7afd37db78cdfc772e8765cf25a20c90410
118b566572b5d5e7591ddc122ad1fdc93bf224e0
refs/heads/master
2021-08-22T20:28:01.949732
2017-12-01T06:19:35
2017-12-01T06:19:35
112,702,732
0
0
null
null
null
null
UTF-8
C++
false
false
4,322
cpp
program_p2_c4.cpp
#include "program_p2_c4.h" PROGRAM_P2_C4::PROGRAM_P2_C4() { _position = -1; _uv = -1; _uv1 = -1; _MVP = -1; _texMask = -1; _texBrush1 = -1; _texBrush2 = -1; _texBrush3 = -1; _texBrush4 = -1; } bool PROGRAM_P2_C4::initialize() { #if 0 //!使用1个模板文理和1个刷绘文理进行刷绘,使用参数和相对应的shader程序 //! 参数1、attribute _position; //! 参数2、attribute _uv; //! 参数3、uniform _MVP; //! 参数4、uniform _texBrush; //! 参数5、uniform _texMask; const char* vs = { "uniform mat4 _MVP;" "attribute vec3 _position;" "attribute vec2 _uv;" "varying vec2 _outUV;" "void main()" "{" " _outUV = _uv;" " gl_Position = _MVP * vec4(_position,1.0);" "}" }; const char* ps = { "precision lowp float; " "uniform sampler2D _texMask;" "uniform sampler2D _texBrush;" "varying vec2 _outUV;" "void main()" "{" " vec4 color0 = texture2D(_texMask,_outUV);" " vec4 color1 = texture2D(_texBrush,_outUV);" " gl_FragColor = color0.r * color1;" "}" }; #elif 1 //!注意1:这里使用了两套uv,一个uv是模板的,一个uv1是刷绘文理的。 //! uv1的迭代要视情况调整,一般比uv大,可以清晰的看到刷绘文理的纹路。 //!注意2:这里把通道a的颜色去掉了,是因为使用的图像没有a通道, //! 如果使用,会使背景有文理而其它的文理都变成混合的白色。 const char* vs = { "uniform mat4 _MVP;" "attribute vec3 _position;" "attribute vec2 _uv;" "attribute vec2 _uv1;" "varying vec2 _outUV;" "varying vec2 _outUV1;" "void main()" "{" " _outUV = _uv;" " _outUV1 = _uv1;" " gl_Position = _MVP * vec4(_position,1.0);" "}" }; const char* ps = { "precision lowp float; " "uniform sampler2D _texMask;" "uniform sampler2D _texBrush1;" "uniform sampler2D _texBrush2;" "uniform sampler2D _texBrush3;" "uniform sampler2D _texBrush4;" "varying vec2 _outUV;" "varying vec2 _outUV1;" "void main()" "{" " vec4 color0 = texture2D(_texMask,_outUV);" " vec4 color1 = texture2D(_texBrush1,_outUV1);" " vec4 color2 = texture2D(_texBrush2,_outUV1);" " vec4 color3 = texture2D(_texBrush3,_outUV1);" " vec4 color4 = texture2D(_texBrush4,_outUV1);" " vec4 color = color0.r * color1;" " color += color0.g * color2;" " color += color0.b * color3;" // " color += color0.a * color4;" " gl_FragColor = color;" "}" }; #else #endif bool res = createProgram(vs,ps); if(res) { _position = glGetAttribLocation(_programId,"_position"); _uv = glGetAttribLocation(_programId,"_uv"); _uv1 = glGetAttribLocation(_programId,"_uv1"); _MVP = glGetUniformLocation(_programId,"_MVP"); _texMask = glGetUniformLocation(_programId,"_texMask"); _texBrush1 = glGetUniformLocation(_programId,"_texBrush1"); _texBrush2 = glGetUniformLocation(_programId,"_texBrush2"); _texBrush3 = glGetUniformLocation(_programId,"_texBrush3"); _texBrush4 = glGetUniformLocation(_programId,"_texBrush4"); } return res; } void PROGRAM_P2_C4::begin() { glUseProgram(_programId); //!在显卡里面使用的局部变量,在使用时是需要进行使能和关闭的 glEnableVertexAttribArray(_position); glEnableVertexAttribArray(_uv); glEnableVertexAttribArray(_uv1); } void PROGRAM_P2_C4::end() { glDisableVertexAttribArray(_position); glDisableVertexAttribArray(_uv); glDisableVertexAttribArray(_uv1); glUseProgram(0); }
2daf284e7a737d203169e83edc9e5bc46a8badda
de813a0ee710328aae34d30b5abc4b98146cf894
/FibonacciFirst.cpp
b0c6cf7cb053bf0b3185f41b8480032e3ce76f6e
[ "MIT" ]
permissive
vanigupta20024/Programming-Challenges
ab885d9af98ce6a967e1b8edbc70da1dcd17ac73
578dba33e9f6b04052a503bcb5de9b32f33494a5
refs/heads/master
2023-08-31T08:11:54.650564
2021-10-07T07:09:19
2021-10-07T07:09:19
271,755,231
21
4
MIT
2020-08-25T19:17:14
2020-06-12T09:03:13
Python
UTF-8
C++
false
false
1,556
cpp
FibonacciFirst.cpp
/* FIBONACCI Challenge #1, Difficulty #1 (beginner-friendly) Suggested language: Java, C++, Python Languages you shouldnt use: Assembler :P void task() { Take two integers as input by the user. Now calculate atleast 10 iterations of the Fibonacci-sequence with the two integers as starting point. Output those calculations. } void extraTask () { 1) ask the user how many iterations of the Fibonacci sequence the program should calculate 2) If one number in the sequence is divisible by x (let the user input that too), output "FIZZ" instead of it } */ #include<bits/stdc++.h> #define ll long long int using namespace std; // using memoization ~ TopToBottom ll dp[200] = {0}; int fibRec(ll s, ll e, ll n){ if (n == s || n == e){ dp[n] = n; return n; } if(dp[n]!=0){ return dp[n]; } ll answer = fibRec(s, e, n-1) + fibRec(s, e, n-2); dp[n] = answer; return answer; } void printFib(ll s, ll e, ll n, ll d){ ll count = 0; ll a = s, b = e, c; while(count < n){ c = a + b; a = b; b = c; if (c%d == 0) cout<<"FIZZ "; else cout<<c<<" "; count++; } } int main(){ // #ifndef ONLINE_JUDGE // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); // #endif ios_base::sync_with_stdio(false); cin.tie(NULL); ll start, end, num, div; cin>>start>>end>>num>>div; cout<< fibRec(start, end, num) <<endl; // extended task printFib(start, end, num, div); return 0; }
75521033a8002809c2d836d600dde3cb00c6fe33
a941b182980b464611158779b8c0a8b1159f4ee1
/Adler32/Klasa.cpp
37ebb1a4a4432b8353c5c7247c6054f3f1df7870
[]
no_license
Matus942/Adler32
c5c2cac9a5a7c837ddfddf7b0194e5e72c462e41
f6e50550a1adbc81a3c8111a6a9a4bc96c7ac5f6
refs/heads/main
2023-02-27T00:21:34.326225
2021-02-01T06:22:32
2021-02-01T06:22:32
334,851,330
0
0
null
null
null
null
UTF-8
C++
false
false
964
cpp
Klasa.cpp
#include "stdafx.h" #include "Klasa.h" unsigned int klasa::licz(string str) { unsigned int k = 0; for (int i = 0; i < str.size(); i++) { k = str[i]; A = (A + k)%65521; B = (B + A)%65521; } return (B*65536)+A; } void klasa::symuluj(int d) { string x = ""; srand(time(NULL)); ofstream plik("dane.txt"); for (int i = 0; i < 130000; i++) { for (int j = 0; j < d; j++) { x += (rand() % 25) + 97; } tab1.push_back(x); tab2.push_back(licz(x)); plik << x << " " << licz(x) << endl; x = ""; } } void klasa::kolizja() { string tmp = ""; unsigned int tmp1 = 0; unsigned int licznik = 0; for (int i = 0; i < 130000; i++) { tmp = tab1[i]; tmp1 = tab2[i]; for (int j = i + 1; j < 130000; j++) { if (tmp1 == tab2[j]) { cout << tmp << " " << tab1[j] << " " << tmp1 << endl; licznik++; } } } cout <<"ilosc kolizji: "<< licznik << endl; }
722732e988a3516da0c3a9bcb244a083015a032d
d83666da73ec2f4e20ee6ed743c3941923c2d7b2
/assigment .cpp
04087f0120ad46e994898eddbf644b2e09863e83
[]
no_license
Alkhateem75872/newassigment
9999fcff3ff75184e05b471c9e55a5eb9bc18b98
e719baffe25276322760cefc0683297e05e87bb8
refs/heads/master
2023-01-19T15:04:26.113626
2020-12-05T18:09:51
2020-12-05T18:09:51
318,854,258
0
0
null
null
null
null
UTF-8
C++
false
false
5,688
cpp
assigment .cpp
/* name : mohammed kabashi hammad class : second deparment : computer e */ #include <iostream> #include <string> using namespace std; class Shape // الكلاس الاب { protected : int width , height , radius; // هنا لادخال البيانات وانواعها float pi = 3.14 ; public : void set_Width() //داله ادخال العرض { cout << "Width = "; cin >> width; } void set_Height() //داله ادخال الارتفاع { cout <<"Height = "; cin >> height; } void set_Radius() //لادخال نق { cout << "Radius = "; cin >> radius; } virtual int area(void)=0; void printArea(void) //هناتعوض فيها دوال ايجاد المساحة للكلاسات الوارثة ومن ثم تقوم بطباعته { cout<< this -> area() << endl; } virtual int circumference(void) = 0; void printCircumference(void) { cout << this->circumference() << endl; } }; class Polygon : public Shape // هنا يتم تعريف الكلاس بوليقون ويرث من الكلاس الاب shape { public: int area() { cout << "\nThe Polygon's Area = "; return (radius * height * width); } int circumference() // لايجاد محيط المضلع { cout << "The Polygon's Circumference = "; return(width*height); } }; class Triangle : public Polygon // هنا نقوم بتعريف الكلاس تراينقل ويتم الوراثه من بوليقون { int area() //لايجاد مساحه المثلث { cout << "\nThe Triangle's Area = "; return (width * height / 2); } int circumference() //لايجاد محيط المثلث { cout << "The Triangle's Circumference = "; return (width + height*2); } }; class Rectangle : public Polygon // هنا نقوم بتعريف الكلاس رتانقل ويتم فيه الوراثه من بوليقون { int area() //لايجاد مساحه المستطيل { cout << "\nThe Rectangle's Area = "; return (width * height); } int circumference() //لايجاد محيط المستطيل { cout << "The Rectangle's Circumference = "; return (2*(height*width)); } }; class Square : public Polygon // هنا نقوم بتعريف الكلاس سكوير ويتم فبه الوراثه من بوليقون { int area() //لايجاد مساحه المربع { cout << "\nThe Square's Area = "; return (height * height); } int circumference() //لايجاد محيط المربع { cout << "The Square's Circumference = "; return (4*height); } }; class Ellipse : public Shape //هما يرث الكلاس البيس من الكلاس الاب شيب { public: int area() // هنا الداله لايجاد مساحه الشكل البيضاوي { cout << "\nThe Ellipse's Area = "; return (pi * width * height); } int circumference() // لايجاد محيط الشكل البيضاوي { cout << "The Ellipse's Circumference = "; return (pi*(radius*radius)); } }; class Circle : public Ellipse // الكلاس سيركل يرث من الكلاس اليبس { public: int area() //لايجاد مساحه الدائره { cout << "\nThe Circle's Area = "; return (pi/4*(radius*radius)); } int circumference() //لايجاد محيط الدائره { cout << "The Circle's Circumference = "; return (pi * radius); } }; int main() { Polygon polygon ; Triangle triangle ; Rectangle rectangle ; Square square ; Ellipse ellipse ; Circle circle; //objects Shape *pointer1 = &polygon; Shape *pointer2 = &ellipse; Polygon *pointer3 = &triangle; Polygon *pointer4 = &rectangle; Polygon *pointer5 = &square; Ellipse *pointer6 = &circle; cout << "\nEnter The Value of Polygon's Width , Height and Radius:\n"; pointer1->set_Width(); pointer1->set_Height(); pointer1->set_Radius(); pointer1->printArea(); pointer1->printCircumference(); cout << "\nEnter The Value of Ellipse's Width , Height and Radius:\n"; pointer2->set_Width(); pointer2->set_Height(); pointer2->set_Radius(); pointer2->printArea(); pointer2->printCircumference(); cout << "\nEnter The Value of Triangle's Width and Height:\n"; pointer3->set_Width(); pointer3->set_Height(); pointer3->printArea(); pointer3->printCircumference(); cout << "\nEnter The Value of Rectangle's Width and Height:\n"; pointer4->set_Width(); pointer4->set_Height(); pointer4->printArea(); pointer4->printCircumference(); cout << "\nEnter The Value of Square's Height:\n"; pointer5->set_Height(); pointer5->printArea(); pointer5->printCircumference(); cout << "\nEnter The Value of Circle's Radius:\n"; pointer6->set_Radius(); pointer6->printArea(); pointer6->printCircumference(); cout << "\n the finall result is ....\n"; cout << "polygon :"; pointer1->printArea(); pointer1->printCircumference(); cout << "\n ellipse :"; pointer2->printArea(); pointer2->printCircumference(); cout << "\ntriangle :"; pointer3->printArea(); pointer3->printCircumference(); cout << "\nrectangle :"; pointer4->printArea(); pointer4->printCircumference(); cout << "\nsquare :"; pointer5->printArea(); pointer5->printCircumference(); cout << "\ncircle:"; pointer6->printArea(); pointer6->printCircumference(); }
9be0725c2b7d0b5306e6bbdbebf0cbff042c0430
be9873b81f1d35b43bc9dbfaacfd163624177a29
/main.cpp
712a42cef0f62e78b3ed6099d3f0ba3f824ac6b3
[ "MIT" ]
permissive
tuvok302/burroughsLSeriesTapeReader
367af9f0dc5147d14e1fe06b0241a7dea81f6bf3
386d90038af4ff6887206cdb3d1046bc274cb976
refs/heads/master
2020-09-26T09:45:08.938218
2019-12-06T02:31:39
2019-12-06T02:31:39
226,229,779
0
0
null
null
null
null
UTF-8
C++
false
false
1,276
cpp
main.cpp
#include <iostream> #include <fstream> #include <sys/stat.h> #include <vector> #include "SerialPort.h" #include <bitset> #include <conio.h> #define DATA_LENGTH 64 //send 512 byte blobs of data to the arduino at a time using namespace std; char* portName = "\\\\.\\COM9"; SerialPort *arduino; int main(int argc, char *argv[]) { //cout << "Hello world!" << endl; ofstream tapeData (argv[1], ios::out | ios::binary); cout << "File: " << argv[1] << endl; char * readData = new char [1]; int hasData = 0; cout << "TEST" << endl; arduino = new SerialPort(portName); cout << "ASDFASDF" << endl; if (!arduino->isConnected()){ delete arduino; delete readData; return -1; } std::cout << "is connected: " << arduino->isConnected() << std::endl; cout << "Beggining Serial communication:" << endl; char ch = 'z'; while(!kbhit()){ hasData = arduino->readSerialPort(readData,1); if(hasData != 0){ //cout << "ASDFASDF" << endl; tapeData << readData[0]; cout << std::bitset<8>(readData[0]) << endl; readData[0] = 0; hasData = 0; } } tapeData.close(); return 0; }
6ffe83438f90bd24e10f06c229ac17538917953a
0f174c0938f269e8adb2b36e227867f534cfeed8
/SFRTestDemo/sfr.h
8895ebc58575dd2e5800cfc80ddc04328a393c41
[]
no_license
lnengbo/sfrTest
fccc3fab6c97c263523a7fac285d20fdc6147f0a
43b761940dd32bf84df1e0d3fa39dcd0ac0247a6
refs/heads/master
2023-05-09T07:50:03.204547
2021-06-08T02:31:54
2021-06-08T02:31:54
374,859,551
0
0
null
null
null
null
UTF-8
C++
false
false
203
h
sfr.h
#pragma once #include "opencv2/opencv.hpp" #include <vector> #define M_PI 3.1415 int SFRCalculation(cv::Mat &ROI, double gamma,std::vector<double> &resVec,std::vector<double>&,std::vector<double>&);
0af99c30dcc28a1704a461c2c4fe9f9fba4d5707
a1809f8abdb7d0d5bbf847b076df207400e7b08a
/Simpsons Hit&Run/game/libs/pure3d/pddi/GameCube/gcrefractionshader.cpp
aabe821ca1240addaa8facc206dc9028e0ccf776
[]
no_license
RolphWoggom/shr.tar
556cca3ff89fff3ff46a77b32a16bebca85acabf
147796d55e69f490fb001f8cbdb9bf7de9e556ad
refs/heads/master
2023-07-03T19:15:13.649803
2021-08-27T22:24:13
2021-08-27T22:24:13
400,380,551
8
0
null
null
null
null
UTF-8
C++
false
false
13,107
cpp
gcrefractionshader.cpp
//============================================================================= // Copyright (c) 2002 Radical Games Ltd. All rights reserved. //============================================================================= #include <pddi/gamecube/gcrefractionshader.hpp> #include <pddi/gamecube/gctex.hpp> #include <pddi/gamecube/gccon.hpp> #include <pddi/gamecube/gcbufcopy.hpp> #include <dolphin/gx.h> static bool g_AllowBufferCapture = false; //------------------------------------------------------- pddiShadeColourTable RefractionShader::gColourTable[] = { { PDDI_SP_DIFFUSE, SHADE_COLOUR(&SetDiffuseColour) }, { PDDI_SP_AMBIENT, SHADE_COLOUR(&SetAmbientColour) }, { PDDI_SP_REFRACTCOLOUR, SHADE_COLOUR(&SetRefractionColour) }, { PDDI_SP_NULL, NULL } }; //------------------------------------------------------- pddiShadeTextureTable RefractionShader::gTextureTable[] = { { PDDI_SP_BASETEX, SHADE_TEXTURE(&SetBaseTexture) }, { PDDI_SP_NULL, NULL} }; //------------------------------------------------------- pddiShadeIntTable RefractionShader::gIntTable[] = { { PDDI_SP_NULL , NULL } }; //------------------------------------------------------- pddiShadeFloatTable RefractionShader::gFloatTable[] = { { PDDI_SP_REFRACTINDEX, SHADE_FLOAT(&SetRefractionIndex) }, { PDDI_SP_REFRACTBLEND, SHADE_FLOAT(&SetRefractionBlend) }, { PDDI_SP_NULL, NULL} }; extern unsigned long gcShaderAllocSize; extern unsigned long gcShaderAllocCount; gcTexture *RefractionShader::mIndTexture = NULL; gcTexture *RefractionShader::mBackTexture = NULL; //------------------------------------------------------- //------------------------------------------------------- RefractionShader::RefractionShader(gcContext* c) { mContext = c; mLowQuality = true; mBlend = 0.95F; mTexture = NULL; // Create a graident if (mIndTexture == NULL) { mIndTexture = new gcTexture(mContext); mIndTexture->Create(8, 8, 8, 0, 0, PDDI_TEXTYPE_LUMINANCE); mIndTexture->SetSwizzleEnable(false); pddiLockInfo *lock = mIndTexture->Lock(0); unsigned *data = (unsigned *)lock->bits; int dwords = lock->height * lock->pitch / 4; int a; for (a = 0; a < dwords; a++) data[a] = 0; mIndTexture->Unlock(0); mIndTexture->SetWrapMode(GX_CLAMP); // GX_CLAMP, GX_REPEAT, GX_MIRROR } if (mBackTexture == NULL) { gcExtBufferCopy *bufcopier = (gcExtBufferCopy *)mContext->GetExtension(PDDI_EXT_BUFCOPY); mBackTexture = (gcTexture *) bufcopier->CreateBackTexture(320, 240, 32, true); pddiLockInfo *lock = mBackTexture->Lock(0); mBackTexture->Unlock(0); } gcShaderAllocSize += sizeof(RefractionShader); gcShaderAllocCount++; } //------------------------------------------------------- RefractionShader::~RefractionShader() { if (mTexture != NULL) mTexture->Release(); gcShaderAllocSize -= sizeof(RefractionShader); gcShaderAllocCount--; } //------------------------------------------------------- void RefractionShader::AllowOneBufferCapture() { g_AllowBufferCapture = true; } //------------------------------------------------------- void RefractionShader::Install(void) { pddiBaseShader::InstallShader("refract", &RefractionShader::Allocate, NULL); } //------------------------------------------------------- // this function is called by the base shader to allocate // a new instance of a simple shader pddiBaseShader *RefractionShader::Allocate(pddiRenderContext *c, const char *name, const char *aux) { return new RefractionShader((gcContext*)c); } //------------------------------------------------------- const char *RefractionShader::GetType(void) { static char refract[] = "refract"; return refract; } //------------------------------------------------------- int RefractionShader::GetPasses(void) { return 1; } //------------------------------------------------------- void RefractionShader::LowQuality(bool q) { mLowQuality = q; } //------------------------------------------------------- void RefractionShader::SetRefractionColour(pddiColour col) { mRColour = col; } //------------------------------------------------------- void RefractionShader::SetDiffuseColour(pddiColour col) { mDiffuse = col; } //------------------------------------------------------- void RefractionShader::SetAmbientColour(pddiColour col) { mAmbient.r = col.Red(); mAmbient.g = col.Green(); mAmbient.b = col.Blue(); mAmbient.a = col.Alpha(); } //------------------------------------------------------- void RefractionShader::SetBaseTexture(pddiTexture *t) { if (t == mTexture) return; if (mTexture != NULL) mTexture->Release(); mTexture = (gcTexture *)t; if (mTexture != NULL) mTexture->AddRef(); } //------------------------------------------------------- void RefractionShader::SetRefractionIndex(float index) { // PS2 index is in TEXELS! mRIndex = index / -500.0F; } //------------------------------------------------------- void RefractionShader::SetRefractionBlend(float f) { mBlend = f; if (mBlend < 0.0F) mBlend = 0.0F; if (mBlend > 1.0F) mBlend = 1.0F; } //------------------------------------------------------- void RefractionShader::PostRender(void) { // Turn off indirect texturing GXSetTevDirect(GX_TEVSTAGE1); } static inline void FillGXMatrix(float gx[3][4], pddiMatrix &m) { gx[0][0] = m.m[0][0]; gx[0][1] = m.m[1][0]; gx[0][2] = m.m[2][0]; gx[0][3] = m.m[3][0]; gx[1][0] = m.m[0][1]; gx[1][1] = m.m[1][1]; gx[1][2] = m.m[2][1]; gx[1][3] = m.m[3][1]; gx[2][0] = m.m[0][2]; gx[2][1] = m.m[1][2]; gx[2][2] = m.m[2][2]; gx[2][3] = m.m[3][2]; } //------------------------------------------------------- void RefractionShader::SetPass(int pass) { mContext->PreMultiplyLights(mDiffuse, (pddiColour) 0x00000000, 10.0F); float near, far, aspect, fov; mContext->GetCamera(&near, &far, &fov, &aspect); // one colour rasterization GXSetNumChans(1); GXColor white; white.r = 255; white.g = 255; white.b = 255; white.a = 255; // Need to scale the ambient material value by the ambient light value pddiColour al = mContext->GetAmbientLight(); int r = ((mAmbient.r * al.Red()) >> 8); int g = ((mAmbient.g * al.Green()) >> 8); int b = ((mAmbient.b * al.Blue()) >> 8); int alpha = ((mAmbient.a * al.Alpha()) >> 8); if (r > 255) r = 255; if (g > 255) g = 255; if (b > 255) b = 255; if (alpha > 255) alpha = 255; GXColor amb; amb.r = r; amb.g = g; amb.b = b; amb.a = alpha; GXSetChanAmbColor(GX_COLOR0A0, amb); GXSetChanMatColor(GX_COLOR0A0, white); // build the currently active light mask int lightmask = 0; int a; for (a = 0; a < mContext->GetMaxLights(); a++) { if (mContext->IsLightEnabled(a)) { lightmask |= (1 << a); } } GXSetChanCtrl(GX_COLOR0A0, true, GX_SRC_REG, GX_SRC_REG, (GXLightID) lightmask, GX_DF_CLAMP, GX_AF_NONE); // Setup UV generation to scale normals by mRIndex and to add it to screen space UV GXSetNumTexGens(3); // Texcoord 0: Regular texture coords GXSetTexCoordGen(GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_IDENTITY); // Texcoord 1: CTM * Positions then scale & offset GXSetTexCoordGen2(GX_TEXCOORD1, GX_TG_MTX3x4, GX_TG_POS, GX_TEXMTX0, GX_FALSE, GX_PTTEXMTX0); //GXSetTexCoordGen2(GX_TEXCOORD1, GX_TG_MTX3x4, GX_TG_POS, GX_TEXMTX0, GX_FALSE, GX_PTIDENTITY); // Texcoord 2: Scale * Normals GXSetTexCoordGen(GX_TEXCOORD2, GX_TG_MTX2x4, GX_TG_NRM, GX_TEXMTX1); // Load textures gcExtBufferCopy *bufcopier = (gcExtBufferCopy *)mContext->GetExtension(PDDI_EXT_BUFCOPY); if( g_AllowBufferCapture ) { bufcopier->CopyBackBuf(mBackTexture, false, true); g_AllowBufferCapture = false; } // add an assert her4e Ian. mTexture->LoadTexture(GX_TEXMAP0); mBackTexture->LoadTexture(GX_TEXMAP1); mIndTexture->LoadTexture(GX_TEXMAP2); // Load CTM into TEXMTX0 Mtx gxmtx; rmt::Matrix m = *(mContext->GetMatrix(PDDI_MATRIX_MODELVIEW)); rmt::Matrix project; fov = 1.0f / tanf(fov * 0.5F); float p0 = fov * 0.25F; float p1 = 0.0F; float p2 = aspect * fov * -0.3F; float p3 = 0.0F; float p4 = (near / (near - far)); project.m[0][0] = p0; project.m[0][1] = 0.0F; project.m[0][2] = p1; project.m[0][3] = 0.0F; project.m[1][0] = 0.0F; project.m[1][1] = p2; project.m[1][2] = p3; project.m[1][3] = 0.0F; project.m[2][0] = 0.0F; project.m[2][1] = 0.0F; project.m[2][2] = p4; project.m[2][3] = 0.0F; project.m[3][0] = 0.5F; project.m[3][1] = 0.5F; project.m[3][2] = 1.0F; project.m[3][3] = 0.0F; m.MultFull(project); FillGXMatrix(gxmtx, m); GXLoadTexMtxImm(gxmtx, GX_TEXMTX0, GX_MTX3x4); // Load Scale & offset for CTM into GX_PTTEXMTX0 m.Identity(); m.FillScale(0.5F, 0.5F, 0.0F); m.FillTranslate(rmt::Vector(0.5F, 0.5F, 0.0F)); FillGXMatrix(gxmtx, m); GXLoadTexMtxImm(gxmtx, GX_PTTEXMTX0, GX_MTX3x4); // Load Index of Refraction (normal scale) TEXMTX1 m.Identity(); m.FillScale(mRIndex, mRIndex, 0.0F); m.FillTranslate(rmt::Vector(0.0F, 0.0F, 0.00)); FillGXMatrix(gxmtx, m); GXLoadTexMtxImm(gxmtx, GX_TEXMTX1, GX_MTX3x4); // Setup indirect texturing GXSetNumIndStages(1); GXSetIndTexOrder(GX_INDTEXSTAGE0, GX_TEXCOORD2, GX_TEXMAP2); GXSetTevIndirect(GX_TEVSTAGE2, // TEV Stage UV to modify GX_INDTEXSTAGE0, // Which IND stage to use GX_ITF_8, // Number of bits for bump alpha GX_ITB_NONE, // Bias select GX_ITM_OFF, // Which IND Matrix GX_ITW_OFF, // S Wrapping type GX_ITW_OFF, // T Wrapping type GX_FALSE, // Add to previous stage GX_FALSE, // UTC Lod GX_ITBA_OFF); // Bump alpha channel select GXSetNumTevStages(3); GXSetTevSwapMode(GX_TEVSTAGE0, GX_TEV_SWAP0, GX_TEV_SWAP0); // TEV stage 0: Generate texture colour // a b c d GXSetTevColorIn(GX_TEVSTAGE0, GX_CC_ZERO, GX_CC_RASC, GX_CC_TEXC, GX_CC_ZERO); GXSetTevAlphaIn(GX_TEVSTAGE0, GX_CA_ZERO, GX_CA_ZERO, GX_CA_ZERO, GX_CA_KONST); GXSetTevColorOp(GX_TEVSTAGE0, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVREG0); GXSetTevAlphaOp(GX_TEVSTAGE0, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVREG0); GXSetTevOrder(GX_TEVSTAGE0, GX_TEXCOORD0, GX_TEXMAP0, GX_COLOR0A0); // TEV stage 1: placeholder for ST coord generation // a b c d GXSetTevColorIn(GX_TEVSTAGE1, GX_CC_ZERO, GX_CC_ZERO, GX_CC_ZERO, GX_CC_KONST); GXSetTevAlphaIn(GX_TEVSTAGE1, GX_CA_ZERO, GX_CA_ZERO, GX_CA_ZERO, GX_CA_KONST); GXSetTevColorOp(GX_TEVSTAGE1, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVPREV); GXSetTevAlphaOp(GX_TEVSTAGE1, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVPREV); GXSetTevOrder(GX_TEVSTAGE1, GX_TEXCOORD1, GX_TEXMAP1, GX_COLOR_NULL); // Set TEV 2 to modulate texture colour with blend colour and to pass through alpha // a b c d GXSetTevColorIn(GX_TEVSTAGE2, GX_CC_C0, GX_CC_TEXC, GX_CC_APREV, GX_CC_ZERO); GXSetTevAlphaIn(GX_TEVSTAGE2, GX_CA_ZERO, GX_CA_ZERO, GX_CA_ZERO, GX_CA_KONST); GXSetTevColorOp(GX_TEVSTAGE2, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVPREV); GXSetTevAlphaOp(GX_TEVSTAGE2, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVPREV); GXSetTevOrder(GX_TEVSTAGE2, GX_TEXCOORD1, GX_TEXMAP1, GX_COLOR_NULL); // Never alpha blending with the refraction shader GXSetBlendMode(GX_BM_NONE, GX_BL_SRCALPHA, GX_BL_INVSRCALPHA, GX_LO_COPY); // Load the konst register with my data GXSetTevKColorSel(GX_TEVSTAGE2, GX_TEV_KCSEL_K0); GXSetTevKAlphaSel(GX_TEVSTAGE2, GX_TEV_KASEL_K0_A); GXSetTevKColorSel(GX_TEVSTAGE1, GX_TEV_KCSEL_K0); GXSetTevKAlphaSel(GX_TEVSTAGE1, GX_TEV_KASEL_K0_A); GXSetTevKColorSel(GX_TEVSTAGE0, GX_TEV_KCSEL_K0); GXSetTevKAlphaSel(GX_TEVSTAGE0, GX_TEV_KASEL_K0_A); GXColor c; c.r = mRColour.Red(); c.g = mRColour.Green(); c.b = mRColour.Blue(); c.a = (unsigned char) (mBlend * 255.0F); GXSetTevKColor(GX_KCOLOR0, c); }
4aa4d4d23d1c37b802bb886ab83935438d996d27
2e3b8e766956b5d0cf15be181979a2e869da37cd
/src/Core/Geometry/VertexDistance.cpp
841d4efb1c64616768641cc4f13624e07169c820
[ "Apache-2.0" ]
permissive
benardp/Radium-Engine
71a921f481cc1f737dec2fe5b955813a448c0ba5
3bc6fcafb31d6f1a32be839913ada226c8ba9a3c
refs/heads/master
2021-09-11T17:24:10.631591
2021-09-01T12:34:50
2021-09-01T12:34:50
214,979,558
0
1
Apache-2.0
2020-10-02T07:49:57
2019-10-14T07:43:11
C++
UTF-8
C++
false
false
1,761
cpp
VertexDistance.cpp
#include <Core/Geometry/VertexDistance.hpp> namespace Ra { namespace Core { namespace Geometry { void vertexDistance( const VectorArray<Vector3>& v0, const VectorArray<Vector3>& v1, std::vector<Scalar>& sqrDist, Scalar& sqrMin, Scalar& sqrMax, Scalar& sqrAvg ) { const uint n = v0.size(); sqrMin = std::numeric_limits<Scalar>::max(); sqrMax = 0.0; sqrAvg = 0.0; sqrDist.resize( n ); for ( uint i = 0; i < n; ++i ) { sqrDist[i] = ( v0[i] - v1[i] ).squaredNorm(); sqrMax = ( sqrDist[i] > sqrMax ) ? sqrDist[i] : sqrMax; sqrMin = ( sqrDist[i] < sqrMin ) ? sqrDist[i] : sqrMin; } sqrAvg = ( sqrMax + sqrMin ) * 0.5; } void vertexDistance( const VectorArray<Vector3>& v0, const VectorArray<Vector3>& v1, Scalar& sqrMin, Scalar& sqrMax, Scalar& sqrAvg ) { const uint n = v0.size(); sqrMax = 0.0; sqrMin = std::numeric_limits<Scalar>::max(); for ( uint i = 0; i < n; ++i ) { Scalar sqrDist = ( v0[i] - v1[i] ).squaredNorm(); sqrMax = ( sqrDist > sqrMax ) ? sqrDist : sqrMax; sqrMin = ( sqrDist < sqrMin ) ? sqrDist : sqrMin; } sqrAvg = ( sqrMax + sqrMin ) * 0.5; } Scalar vertexDistance( const VectorArray<Vector3>& v0, const VectorArray<Vector3>& v1 ) { const uint n = v0.size(); Scalar sqrAvg = 0.0; for ( uint i = 0; i < n; ++i ) { sqrAvg += ( v0[i] - v1[i] ).squaredNorm(); } return ( sqrAvg / (Scalar)n ); } } // namespace Geometry } // namespace Core } // namespace Ra
3bfb76b19e966e9d58be24d62b437fd17de83f6c
cc07d76ea85c48087898af08aca15acd0523c0ac
/Firmeware/EnsembleSix/EnsembleSix.ino
d3104277385c1a28bcb1397fca6e121903dc004f
[ "MIT" ]
permissive
Sonoscopia/Phobos
4c9540307e63eaa4a675622db630cf171fcd2aae
5f420055d18f2776db2e68ef79ae80f345ab77dd
refs/heads/master
2020-06-30T20:13:12.284804
2017-06-26T14:22:11
2017-06-26T14:22:11
74,355,175
0
0
null
null
null
null
UTF-8
C++
false
false
6,256
ino
EnsembleSix.ino
/* PHOBOS - EnsembleFive firmware v.0.3 (20.06.2017) * * using: * Arduino v1.8.0 * MIDI_Library v.4.3.1 by fortyseveneffects * Servo Library v.1.1.2 * EEPROM Library v.2.0.0 * * plays: * A - 2 sevos striking pendulums * B - 4 lights controlled by relays */ #include <EEPROM.h> #include <Servo.h> #include <MIDI.h> #define MIDICH 1 #define START 52 #define SIZE 6 // PENDULUMS' PINS #define A1 6 #define A2 7 // LIGHTS' PINS #define B1 2 #define B2 3 #define B3 4 #define B4 5 /* Addresses on Arduino EEPROM for servo control parameters*/ #define S1MININC 0 // servo1 min increment (cc=120) #define S1MAXINC 1 // servo1 max increment (cc=121) #define S2MININC 2 // servo2 min increment (cc=122) #define S2MAXINC 3 // servo2 max increment (cc=123) #define S1MINANG 4 // servo1 min angle (cc=124) #define S1MAXANG 5 // servo1 max angle (cc=125) #define S2MINANG 6 // servo2 min angle (cc=126) #define S2MAXANG 7 // servo2 max angle (cc=127) // servos Servo servo1, servo2; bool servoState[2]; // servo state to control servos out of MIDI loop bool _servoState[2]; // servo previous state float servoPos[2]; // servo current position float servoInc[2]; //servo increment value which relates to movement speed float servoMinInc[2]; // servo min increment values float servoMaxInc[2]; // servo min increment values float servoMinAng[2]; // servo min angle float servoMaxAng[2]; // servo max angle // make note to pin array byte note2pin[16]; byte vel, pitch, val, cc; MIDI_CREATE_DEFAULT_INSTANCE(); void setup() { MIDI.begin(MIDICH); MIDI.turnThruOn(); // set output pins servo1.attach(A1); servo2.attach(A2); pinMode(B1, OUTPUT); pinMode(B2, OUTPUT); pinMode(B3, OUTPUT); pinMode(B4, OUTPUT); // turn relays off digitalWrite(B1, HIGH); digitalWrite(B2, HIGH); digitalWrite(B3, HIGH); digitalWrite(B4, HIGH); // set servos to initial position servoPos[0] = midi2angle(EEPROM.read(S1MINANG)); servo1.write(servoPos[0]); servoPos[1] = midi2angle(EEPROM.read(S2MINANG)); servo2.write(servoPos[1]); // set servos previous state _servoState[0] = false; _servoState[1] = false; // set servos' min&max increment values // NOTE: min/max inc values are between 0 and 127 (after mapped correspond to 0.1 to 10 degrees per millisecond) servoMinInc[0] = EEPROM.read(S1MININC); servoMaxInc[0] = EEPROM.read(S1MAXINC); servoMinInc[1] = EEPROM.read(S2MININC); servoMaxInc[1] = EEPROM.read(S2MAXINC); // set servos0 min&max angle // NOTE: min/max angle values are already converted to angles servoMinAng[0] = midi2angle( EEPROM.read(S1MINANG) ); servoMaxAng[0] = midi2angle( EEPROM.read(S1MAXANG) ); servoMinAng[1] = midi2angle( EEPROM.read(S2MINANG) ); servoMaxAng[1] = midi2angle( EEPROM.read(S2MAXANG) ); // set note2pin array note2pin[52-START] = A1; // servos note2pin[53-START] = A2; note2pin[54-START] = B1; // relays note2pin[55-START] = B2; note2pin[56-START] = B3; note2pin[57-START] = B4; } void loop() { if(MIDI.read()){ switch(MIDI.getType()){ case midi::NoteOn: pitch = MIDI.getData1(); vel = MIDI.getData2(); if(pitch >= START && pitch < START+2){ // set servos' values only (activation is done in runServos function) if(pitch < 27){ // servoInc[pitch] = velocity2inc( servoMinInc[pitch-START], servoMaxInc[pitch-START], vel); servoState[pitch-START] = true; _servoState[pitch-START] = true; } if(pitch > 53 && pitch < 58){ // activate relays digitalWrite(note2pin[pitch-START], LOW); } break; case midi::NoteOff: pitch = MIDI.getData1(); if(pitch >= START && pitch < START+2){ // deactivate servos servoState[pitch-START] = false; } if(pitch > 53 && pitch < 58){ // deactivate relays digitalWrite(note2pin[pitch-START], HIGH); } break; // CONTROL CHANGE (SET SERVO PARAMETERS) case midi::ControlChange: cc = MIDI.getData1(); val = MIDI.getData2(); // from cc=112 to cc=119 if(cc > 111 && cc < 120){ EEPROM.write(cc-112, val); // store... updateServoParams(cc, val);//...and update } break; } } runServos(); // activate servos //delay(1); // (used only to set servo increments in a millisecond basis) } /***************** FUNTCIONS *****************/ byte voltage2byte(float v){ return v*255/5.f; } float midi2angle(byte m){ return 180/127.f*m; } float velocity2inc(byte _min, byte _max, byte v){ // translate velocity values into position increments usign a min/max inc. return map(v, 0, 127, _min, _max); } void runServos(){ // servo1 attack if( servoState[0]==true && servoPos[0] < servoMaxAng[0] ){ servo1.write(servoPos[0]); servoPos[0] += servoInc[0]; } // servo1 release else if (servoState[0] == false && _servoState[0] == true){ servoPos[0] = servoMinAng[0]; servo1.write( servoPos[0] ); _servoState[0] = false; } // servo2 attack if( servoState[1]==true && servoPos[1] < servoMaxAng[1] ){ servo2.write(servoPos[1]); servoPos[1] += servoInc[1]; } // servo2 release else if (servoState[1] == false && _servoState[1] == true){ servoPos[1] = servoMinAng[1]; servo2.write( servoPos[1] ); _servoState[1] = false; } } void updateServoParams(byte addr, byte val){ switch(addr){ case 112: servoMinInc[0] = val; break; case 113: servoMaxInc[0] = val; break; case 114: servoMinInc[1] = val; break; case 115: servoMaxInc[1] = val; break; case 116: servoMinAng[0] = midi2angle(val); servo1.write(servoMinAng[0]); break; case 117: servoMaxAng[0] = midi2angle(val); servo1.write(servoMaxAng[0]); break; case 118: servoMinAng[1] = midi2angle(val); servo1.write(servoMinAng[1]); break; case 119: servoMaxAng[1] = midi2angle(val); servo1.write(servoMaxAng[1]); break; default: break; } }
75e48eb0c966a871cc61cd9b583a9c50947de06a
236f97fcc4c598167fc6872b9be9057768762323
/sketch_may27a/sketch_may27a.ino
be80db794d22e97931e4a25fbf572759534df2c6
[]
no_license
cgardan99/physical_variables_monitoring
92847102c1266bba81fa030e5db8161446cd2920
5fbea49e0733e81b06ea0a18c1154cf055ec0daf
refs/heads/main
2023-05-26T11:02:24.675455
2021-06-15T23:41:26
2021-06-15T23:41:26
376,620,523
0
0
null
null
null
null
UTF-8
C++
false
false
3,537
ino
sketch_may27a.ino
#include <DHT.h> #include <WiFi.h> #include <HTTPClient.h> // Definimos el pin digital donde se conecta el sensor #define DHTPIN 4 // Dependiendo del tipo de sensor #define DHTTYPE DHT11 // Pin digital del sensor de vibración #define vs 5 // Definimos el pin digital donde se conecta el sensor de movimiento #define MOVSENS 15 // Inicializamos el sensor DHT11 DHT dht(DHTPIN, DHTTYPE); const char *ssid = "Totalplay-119C"; const char *pwd = "jamonensalsademiel8"; const char *servidor = "http://ec2-3-19-28-45.us-east-2.compute.amazonaws.com:3050/add"; const char *servidor_mov = "http://ec2-3-19-28-45.us-east-2.compute.amazonaws.com:3050/movimiento"; String payload = ""; int valor; long measurement; TaskHandle_t Task1; void Task1code( void * parameter) { for(;;){ valor = digitalRead(MOVSENS); if (valor != HIGH) { if(WiFi.status()== WL_CONNECTED){ HTTPClient http; // Your Domain name with URL path or IP address with path http.begin(servidor_mov); // Specify content-type header http.addHeader("Content-Type", "application/x-www-form-urlencoded"); int httpResponseCode = http.POST(payload); Serial.print("Movimiento, Codigo de respuesta: "); Serial.println(httpResponseCode); // Free resources http.end(); payload = ""; } else { Serial.println("WiFi Disconnected"); } delay(200); } } } void setup(){ Serial.begin(115200); WiFi.begin(ssid, pwd); while(WiFi.status() != WL_CONNECTED) { delay(500); Serial.println("Connecting to WiFi..."); } Serial.println("Conectado a la red WiFi"); Serial.println(WiFi.localIP()); // Comenzamos el sensor DHT dht.begin(); //Inicializa Serial a 115200 baudios Serial.println("Iniciando ..."); pinMode(MOVSENS, INPUT); xTaskCreatePinnedToCore( Task1code, /* Function to implement the task */ "Task1", /* Name of the task */ 10000, /* Stack size in words */ NULL, /* Task input parameter */ 0, /* Priority of the task */ &Task1, /* Task handle. */ 1); } long vibration(){ long measurement=pulseIn (vs, HIGH); //wait for the pin to get HIGH and returns measurement return measurement; } void loop() { Serial.println("Censando..."); delay(50); // Leemos la humedad relativa float h = dht.readHumidity(); // Leemos la temperatura en grados centígrados (por defecto) float t = dht.readTemperature(); long v = vibration(); delay(50); if(WiFi.status()== WL_CONNECTED){ HTTPClient http; // Your Domain name with URL path or IP address with path http.begin(servidor); // Specify content-type header http.addHeader("Content-Type", "application/x-www-form-urlencoded"); // Data to send with HTTP POST payload.concat("humedad="); payload.concat(h); payload.concat("&temperatura="); payload.concat(t); payload.concat("&vibraciones="); payload.concat(v); int httpResponseCode = http.POST(payload); Serial.print("Codigo de respuesta: "); Serial.println(httpResponseCode); // Free resources http.end(); payload = ""; } else { Serial.println("WiFi Disconnected"); } delay(60000); }
ae99418bdbf87b8beb6b7f275616db441fefebc9
8f129ee9745e1464bce580712be6f97af15c8c29
/FilmBuff/Movie.h
c80cc3083044e52d6225090a9c75665d1f25b9d0
[]
no_license
FilmBuffProject/FilmBuff
a0d5784c25eb08d7ff25689336e943024a8ad532
e4ad90dba48ada477f7e96ee312c2a1748a17ff8
refs/heads/main
2023-02-02T23:25:37.778080
2020-12-21T19:00:34
2020-12-21T19:00:34
314,633,979
0
0
null
null
null
null
UTF-8
C++
false
false
391
h
Movie.h
#pragma once #include <string> using namespace std; class Movie { private: string title; string genre; string description; int year; double score; public: Movie(); Movie(string _title, int _year, string _genre, string _description, double _score); string getTitle() const; string getGenre() const; string getDescription() const; int getYear() const; double getScore() const; };
973a6e2e1ae2648c4edd8e9302e1955d1a60e264
01e013db1632e0302ae9f4ba3b5cee5e6782b1ac
/Sensor/fsr_sensor_board_dual/fsr_sensor_board_dual.ino
7dbdf06434b1be381a9a988bff5b3fa245a75303
[]
no_license
seihan/feetback
8c9e2fed2bf5b2b812370a2870428f5be4dc90cf
f077655bf3d8c1d7e88cf85f50a4c7dc81725845
refs/heads/master
2022-10-14T01:54:33.071320
2021-10-12T16:17:28
2021-10-12T16:31:28
96,529,175
1
1
null
null
null
null
UTF-8
C++
false
false
7,709
ino
fsr_sensor_board_dual.ino
/********************************************************************* This is an example for our nRF52 based Bluefruit LE modules Pick one up today in the adafruit shop! Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! MIT license, check LICENSE for more information All text above, and the splash screen below must be included in any redistribution *********************************************************************/ /* This sketch demonstrate how to run both Central and Peripheral roles at the same time. It will act as a relay between an central (mobile) to another peripheral using bleuart service. Mobile <--> DualRole <--> peripheral Ble Uart */ #include <bluefruit.h> #include <SPI.h> SPISettings settings(20000000, MSBFIRST, SPI_MODE0); // Peripheral uart service BLEUart bleuart; // Central uart client BLEClientUart clientUart; #define MAX_VALUES 2 // 956 #include "protocol.h" #include "sole_fsr956.h" #include "sole.h" struct message_t msg; bool ready = false; bool central = false; void setup() { Serial.begin(115200); Serial.println("FSR Sensor Board - Wireless BLE UART"); Serial.println("---------------------------\n"); msg.length = MAX_VALUES; analogReference(AR_INTERNAL_1_2); analogReadResolution(14); pinMode(MuxDC_PIN, OUTPUT); pinMode(MuxADC_PIN, OUTPUT); for (int i = 0; i < 7; i++) pinMode(DC_PINS[ i ], OUTPUT); for (int i = 0; i < 5; i++) pinMode(ADC_PINS[ i ], INPUT); SPI.begin(); // Initialize Bluefruit with max concurrent connections as Peripheral = 1, Central = 1 // SRAM usage required by SoftDevice will increase with number of connections Bluefruit.begin(true, true); // Set max power. Accepted values are: -40, -30, -20, -16, -12, -8, -4, 0, 4 Bluefruit.setTxPower(4); Bluefruit.setName("FSR Sensor - left"); // Callbacks for Peripheral Bluefruit.setConnectCallback(prph_connect_callback); Bluefruit.setDisconnectCallback(prph_disconnect_callback); // Callbacks for Central Bluefruit.Central.setConnectCallback(cent_connect_callback); Bluefruit.Central.setDisconnectCallback(cent_disconnect_callback); // Configure and Start BLE Uart Service bleuart.begin(); bleuart.setRxCallback(prph_bleuart_rx_callback); // Init BLE Central Uart Serivce clientUart.begin(); clientUart.setRxCallback(cent_bleuart_rx_callback); /* Start Central Scanning - Enable auto scan if disconnected - Interval = 100 ms, window = 80 ms - Filter only accept bleuart service - Don't use active scan - Start(timeout) with timeout = 0 will scan forever (until connected) */ Bluefruit.Scanner.setRxCallback(scan_callback); Bluefruit.Scanner.restartOnDisconnect(true); Bluefruit.Scanner.setInterval(160, 80); // in unit of 0.625 ms Bluefruit.Scanner.filterUuid(bleuart.uuid); Bluefruit.Scanner.useActiveScan(false); Bluefruit.Scanner.start(0); // 0 = Don't stop scanning after n seconds // Set up and start advertising startAdv(); } void startAdv(void) { // Advertising packet Bluefruit.Advertising.addFlags(BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE); Bluefruit.Advertising.addTxPower(); // Include bleuart 128-bit uuid Bluefruit.Advertising.addService(bleuart); // Secondary Scan Response packet (optional) // Since there is no room for 'Name' in Advertising packet Bluefruit.ScanResponse.addName(); /* Start Advertising - Enable auto advertising if disconnected - Interval: fast mode = 20 ms, slow mode = 152.5 ms - Timeout for fast mode is 30 seconds - Start(timeout) with timeout = 0 will advertise forever (until connected) For recommended advertising interval https://developer.apple.com/library/content/qa/qa1931/_index.html */ Bluefruit.Advertising.restartOnDisconnect(true); Bluefruit.Advertising.setInterval(32, 244); // in unit of 0.625 ms Bluefruit.Advertising.setFastTimeout(30); // number of seconds in fast mode Bluefruit.Advertising.start(0); // 0 = Don't stop advertising after n seconds } void loop() { uint16_t values[ 956 ] = {}; uint16_t data[ 4 ] = {}; for (uint16_t& val : msg.data) val = 0; read_sole(values); for (int i = 0; i < 956; i++) { if ( i <= 428 ) { if ( data[ 0 ] < values[ i ] ) data[ 0 ] = values[ i ]; } else { if ( data[ 1 ] < values[ i ] ) data[ 1 ] = values[ i ]; } } if (ready) { int bytesread = receive_message(&msg); for (int i = 0; i < 2; i++){ data[ i + 2 ] = msg.data[ i ]; } } else { // Request CPU to enter low-power mode until an event/interrupt occurs waitForEvent(); } if (central) { bleuart.println(String(data[ 0 ]) + ";" + String(data[ 1 ]) + ";" + String(data[ 2 ]) + ";" + String(data[ 3 ])); } else { // Request CPU to enter low-power mode until an event/interrupt occurs waitForEvent(); } } /*------------------------------------------------------------------*/ /* Peripheral ------------------------------------------------------------------*/ void prph_connect_callback(uint16_t conn_handle) { char peer_name[32] = { 0 }; Bluefruit.Gap.getPeerName(conn_handle, peer_name, sizeof(peer_name)); central = true; Serial.print("[Prph] Connected to "); Serial.println(peer_name); } void prph_disconnect_callback(uint16_t conn_handle, uint8_t reason) { (void) conn_handle; (void) reason; central = false; Serial.println(); Serial.println("[Prph] Disconnected"); } void prph_bleuart_rx_callback(void) { // Forward data from Mobile to our peripheral /*char str[20 + 1] = { 0 }; bleuart.read(str, 20); Serial.print("[Prph] RX: "); Serial.println(str); if ( clientUart.discovered() ) { clientUart.print(str); } else { bleuart.println("[Prph] Central role not connected"); }*/ } /*------------------------------------------------------------------*/ /* Central ------------------------------------------------------------------*/ void scan_callback(ble_gap_evt_adv_report_t* report) { // Check if advertising contain BleUart service if ( Bluefruit.Scanner.checkReportForService(report, clientUart) ) { Serial.println("BLE UART service detected. Connecting ... "); // Connect to device with bleuart service in advertising Bluefruit.Central.connect(report); } } void cent_connect_callback(uint16_t conn_handle) { char peer_name[32] = { 0 }; Bluefruit.Gap.getPeerName(conn_handle, peer_name, sizeof(peer_name)); ready = true; Serial.print("[Cent] Connected to "); Serial.println(peer_name);; if ( clientUart.discover(conn_handle) ) { // Enable TXD's notify clientUart.enableTXD(); } else { // disconect since we couldn't find bleuart service Bluefruit.Central.disconnect(conn_handle); } } void cent_disconnect_callback(uint16_t conn_handle, uint8_t reason) { (void) conn_handle; (void) reason; ready = false; Serial.println("[Cent] Disconnected"); } /** Callback invoked when uart received data @param cent_uart Reference object to the service where the data arrived. In this example it is clientUart */ void cent_bleuart_rx_callback(BLEClientUart& cent_uart) { /*char str[20 + 1] = { 0 }; cent_uart.read(str, 20); Serial.print("[Cent] RX: "); Serial.println(str); if ( bleuart.notifyEnabled() ) { // Forward data from our peripheral to Mobile bleuart.print( str ); } else { // response with no prph message clientUart.println("[Cent] Peripheral role not connected"); }*/ }
ecc553111e57cc4985e803cb6ae334917754d7a7
ca07c9746711f554983e9fbafa577087729a070f
/WorkerMoney.cpp
63dc26bf382dbff7db37b8040d5aecdd8e34c66b
[]
no_license
LionOpeter/TheBank
77cd095ff1655fea81ceb152fca6ce8b5c7a81ba
fd1ab535ba4ffdc40fd0a4870d9c16f3dc454d86
refs/heads/master
2021-06-26T02:03:33.075209
2020-11-18T14:25:45
2020-11-18T14:25:45
159,335,665
0
0
null
null
null
null
UTF-8
C++
false
false
4,009
cpp
WorkerMoney.cpp
//============================================================================ // Name : WorkerMoney.cpp // Author : LironT // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include <iostream> #include <vector> using namespace std; struct CPerson; /* * Paycheck adds the money to current money * and returns the sum */ int Paycheck(int iCurrentMoney, int iPaycheck); /* * iDepositAmount - the total amount from which to deposit. * Return val - money amount after deposit * */ int Deposit(int *iCurrentMoney, int iDepositAmount); /*! * iFee - an amount which is being payed to the bank for * keeping the rich mens money. * Return val - money amount after paying to the bank */ int BankFee(int *iCurrentMoney, int iFee); int DepositToVector(vector<CPerson>* vPersons, size_t size, int iDepositAmount); class CBank { // private by defualt int iMoneyForWealthyPersons; // Money in favor of wealth person int iMoneyForBank; // Money in favor of bank // public methods and variables public: CBank(): iMoneyForWealthyPersons(0){} void AddToWealthyPerson(int iAdd) { iMoneyForWealthyPersons += iAdd; } void AddToBankWealth(int iAdd) { iMoneyForBank += iAdd; } int getWealthPersonCash() { return iMoneyForWealthyPersons; } int getBankWealth() { return iMoneyForBank; } }; struct CPerson { int iCurrentMoney; int iPaycheck; CPerson(): iCurrentMoney(120) , iPaycheck(10) {} }; CBank cBank; int main() { int iPaycheck = 10; int iBankFee = 2; vector<CPerson> vPeople(10); vPeople[1]; CPerson cMoshe; CPerson cHertzel; cout << "*** " << vPeople.size() << " rich persons + bank ***" << endl; cout << "People amount:\t2\nPaycheck:\t" << iPaycheck << endl; cout << "Money:\t\t" << cMoshe.iCurrentMoney << "\n\n"; cout << "RchPpls" <<"\t| "<< "Bank(for Others)" <<"\t| " << "Bank(for Bank)" << "\n"; cout << vPeople[0].iCurrentMoney*vPeople.size() <<"\t| "<< cBank.getWealthPersonCash() <<"\t\t| " << cBank.getBankWealth() << "\n"; Deposit(&cMoshe.iCurrentMoney, 100); Deposit(&cHertzel.iCurrentMoney, 100); DepositToVector(&vPeople, vPeople.size(),100); cout << vPeople[0].iCurrentMoney*vPeople.size() <<"\t| "<< cBank.getWealthPersonCash() <<"\t\t| " << cBank.getBankWealth() << "\n"; for (int i = 1;i<13;++i) { // one period of time passed. Bank should have its fee. The fee is iBankFee cashes. BankFee(&cMoshe.iCurrentMoney, iBankFee); BankFee(&cHertzel.iCurrentMoney, iBankFee); // Paycheck arrives and increases bills current money by iPaycheck cashes cMoshe.iCurrentMoney = Paycheck(cMoshe.iCurrentMoney, iPaycheck); cHertzel.iCurrentMoney = Paycheck(cHertzel.iCurrentMoney, iPaycheck); // Bill decides to deposit his paycheck every time Deposit(&cMoshe.iCurrentMoney, iPaycheck -2); Deposit(&cHertzel.iCurrentMoney, iPaycheck -2); // Print the cashes status cout << cMoshe.iCurrentMoney + cHertzel.iCurrentMoney<<"\t| "<< cBank.getWealthPersonCash() <<"\t\t| " << cBank.getBankWealth() << "\n"; } cout << endl; return 0; } int Deposit(int *iCurrentMoney, int iDepositAmount) { cBank.AddToWealthyPerson(iDepositAmount); *iCurrentMoney -= iDepositAmount; return *iCurrentMoney; } int DepositToVector(vector<CPerson>* vPersons, size_t size, int iDepositAmount) { for (auto &i : *vPersons) { cBank.AddToWealthyPerson(iDepositAmount); i.iCurrentMoney -= iDepositAmount; } return 0; } /* int BankFeeFromVector(vector<CPerson>* vPersons, size_t size, int iDepositAmount) { for (auto &i : *vPersons) { cBank.AddToWealthyPerson(iDepositAmount); i.iCurrentMoney -= iDepositAmount; } return 0; } */ int BankFee(int *iCurrentMoney, int iFee) { cBank.AddToBankWealth(iFee); *iCurrentMoney -= iFee; return *iCurrentMoney; } int Paycheck(int iCurrentMoney, int iPaycheck) { iCurrentMoney += iPaycheck; return iCurrentMoney; }
9ea0b35c04ffb7803cc392a725b3cf4688ab9e0d
c7c6fb590e9eb4c01a3872fff856dd62c747c5bb
/boj/11052_PS_card.cpp
1ec00729006794d6d52eb979fb1df25871e5f600
[]
no_license
r3dzone/Algorithm
60d51cd00fdf86b845c936dfad3077b7b9fb04ee
29a4fcf40b0cfff2b6dc848fe72f83209c32b782
refs/heads/master
2023-05-13T20:02:40.901720
2023-05-05T13:52:25
2023-05-05T13:52:25
224,964,196
0
0
null
null
null
null
UTF-8
C++
false
false
499
cpp
11052_PS_card.cpp
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int MAXN = 1e3; int memo[MAXN+5]; int arr[MAXN+5]; int n; int DP(int x){ if(x <= 0) return 0; if(x == 1) return arr[x]; int& ret = memo[x]; if(ret != -1) return ret; int tmp = 0; for(int i = 1; i <= x ; i++) tmp = max(DP(x-i)+arr[i],tmp); return ret = tmp; } int main(){ memset(memo,-1,sizeof(memo)); scanf("%d",&n); for(int i = 1; i <= n ; i++) scanf("%d",&arr[i]); printf("%d\n",DP(n)); }
f10c1805ad25ec7fcba97661877e93dd29b5f8d1
9b5a1dac6cb8dbcf052193aaff14087407abfd16
/Project 3/Main.cpp
1be8bf50558aaacc1910a78de9562e0f85d04269
[]
no_license
TjayCargle/Project-3
61ec6e175afb027065cb22e1d0f89a8b577663d7
16d110cc9f6b59a1d85557f42b71e580fd853ad9
refs/heads/master
2020-12-25T14:23:55.856984
2016-07-27T02:19:49
2016-07-27T02:19:49
64,269,897
0
0
null
null
null
null
UTF-8
C++
false
false
1,374
cpp
Main.cpp
#pragma once #include "Game.h" #include <conio.h> #define VK_BackSpace 8 #define VK_RETURN 13 #define VK_ESCAPE 27 #define VK_UP 72 #define VK_DOWN 80 #define VK_Left 75 #define VK_Right 77 class DTSTimer { unsigned int startTime; public: DTSTimer() { reset(); } void reset() { startTime = clock(); } unsigned int getElapsedTime() { return (clock() - startTime); } static void delay(const unsigned int milli) { unsigned int st = clock(); while (clock() - st < milli) {} } }; int main(int argc, char ** argv) { //Also need this for memory leak code stuff _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF); _CrtSetBreakAlloc(-1); DTSTimer myTimer; Game theGame; theGame.Start(); while (theGame.isGameOver() == false) { if (_kbhit()) { char yo = _getch(); if (yo == -32) yo = _getch(); if (yo == VK_ESCAPE) break; if (yo == VK_UP) { theGame.upPressed(); } if (yo == VK_DOWN) { theGame.downPressed(); } if (yo == VK_Right) { theGame.rightPressed(); } if (yo == VK_Left) { theGame.leftPressed(); } if (yo == VK_RETURN) { theGame.returnedPressed(); } } system("cls"); theGame.Display(); //theGame.Update(); myTimer.delay(250); } return 0; }
d97b35ce0e57d4e71c53918915e52469598bac04
f125d550d0457a35220ed35a375c8820efd373e6
/Userland/Libraries/LibC/termcap.cpp
034663af9f809b49c9995118e06c5ad26ef1360e
[ "BSD-2-Clause" ]
permissive
seven1m/serenity
3c4a744fe1cc65e54c9aa62c9f97fb5df04b43bf
447b8e808219d7f326fa6a4fd922adf7a3f86759
refs/heads/master
2021-06-24T19:44:42.274014
2021-02-07T17:25:30
2021-02-07T17:36:31
207,917,650
1
0
BSD-2-Clause
2019-09-11T22:28:44
2019-09-11T22:28:44
null
UTF-8
C++
false
false
4,763
cpp
termcap.cpp
/* * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> * 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 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 HOLDER 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 <AK/Debug.h> #include <AK/HashMap.h> #include <AK/String.h> #include <AK/Vector.h> #include <assert.h> #include <stdio.h> #include <string.h> #include <termcap.h> extern "C" { char PC; char* UP; char* BC; int tgetent([[maybe_unused]] char* bp, [[maybe_unused]] const char* name) { #if TERMCAP_DEBUG fprintf(stderr, "tgetent: bp=%p, name='%s'\n", bp, name); #endif PC = '\0'; BC = const_cast<char*>("\033[D"); UP = const_cast<char*>("\033[A"); return 1; } static HashMap<String, const char*>* caps = nullptr; static void ensure_caps() { if (caps) return; caps = new HashMap<String, const char*>; caps->set("DC", "\033[%p1%dP"); caps->set("IC", "\033[%p1%d@"); caps->set("ce", "\033[K"); caps->set("cl", "\033[H\033[J"); caps->set("cr", "\015"); caps->set("dc", "\033[P"); caps->set("ei", ""); caps->set("ic", ""); caps->set("im", ""); caps->set("kd", "\033[B"); caps->set("kl", "\033[D"); caps->set("kr", "\033[C"); caps->set("ku", "\033[A"); caps->set("ks", ""); caps->set("ke", ""); caps->set("le", "\033[D"); caps->set("mm", ""); caps->set("mo", ""); caps->set("pc", ""); caps->set("up", "\033[A"); caps->set("vb", ""); caps->set("am", ""); caps->set("@7", ""); caps->set("kH", ""); caps->set("kI", "\033[L"); caps->set("kh", "\033[H"); caps->set("vs", ""); caps->set("ve", ""); caps->set("E3", ""); caps->set("kD", ""); caps->set("nd", "\033[C"); caps->set("co", "80"); caps->set("li", "25"); } // Unfortunately, tgetstr() doesn't accept a size argument for the buffer // pointed to by area, so we have to use bare strcpy(). #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" char* tgetstr(const char* id, char** area) { ensure_caps(); #if TERMCAP_DEBUG fprintf(stderr, "tgetstr: id='%s'\n", id); #endif auto it = caps->find(id); if (it != caps->end()) { char* ret = *area; const char* val = (*it).value; strcpy(*area, val); *area += strlen(val) + 1; return ret; } fprintf(stderr, "tgetstr: missing cap id='%s'\n", id); return nullptr; } #pragma GCC diagnostic pop int tgetflag([[maybe_unused]] const char* id) { #if TERMCAP_DEBUG fprintf(stderr, "tgetflag: '%s'\n", id); #endif auto it = caps->find(id); if (it != caps->end()) return 1; return 0; } int tgetnum(const char* id) { #if TERMCAP_DEBUG fprintf(stderr, "tgetnum: '%s'\n", id); #endif auto it = caps->find(id); if (it != caps->end()) return atoi((*it).value); ASSERT_NOT_REACHED(); } static Vector<char> s_tgoto_buffer; char* tgoto([[maybe_unused]] const char* cap, [[maybe_unused]] int col, [[maybe_unused]] int row) { auto cap_str = String(cap); cap_str.replace("%p1%d", String::number(col)); cap_str.replace("%p2%d", String::number(row)); s_tgoto_buffer.clear_with_capacity(); s_tgoto_buffer.ensure_capacity(cap_str.length()); (void)cap_str.copy_characters_to_buffer(s_tgoto_buffer.data(), cap_str.length()); return s_tgoto_buffer.data(); } int tputs(const char* str, [[maybe_unused]] int affcnt, int (*putc)(int)) { size_t len = strlen(str); for (size_t i = 0; i < len; ++i) putc(str[i]); return 0; } }
aa3b558f21a79435c88f71f4f37f907336c41667
16e130599e881b7c1782ae822f3c52d88eac5892
/leetcode/validParentheses/main.cpp
b26386ac9fed911937c2752253b23e59e17b5796
[]
no_license
knightzf/review
9b40221a908d8197a3288ba3774651aa31aef338
8c716b13b5bfba7eafc218f29e4f240700ae3707
refs/heads/master
2023-04-27T04:43:36.840289
2023-04-22T22:15:26
2023-04-22T22:15:26
10,069,788
0
0
null
null
null
null
UTF-8
C++
false
false
997
cpp
main.cpp
#include "header.h" class Solution { public: bool isValid(string s) { std::stack<char> ss; for(char c : s) { switch(c) { case '(': case '[': case '{': ss.push(c); break; case ')': case ']': case '}': { if(ss.empty() || !isOpposite(ss.top(), c)) return false; ss.pop(); break; } default: break; } } return ss.empty(); } private: bool isOpposite(char c, char d) { switch(c) { case '(': return d == ')'; case '[': return d == ']'; case '{': return d == '}'; } return false; } }; int main() { Solution s; }
244409f91095d6f69e76fbb5402ab0719db83b0f
6aeccfb60568a360d2d143e0271f0def40747d73
/sandbox/assign_v2/boost/assign/v2/support/check/equal_container/lifo.hpp
6a599bcf0c3cbb8e9cd8f96cefc9376f19c638f5
[]
no_license
ttyang/sandbox
1066b324a13813cb1113beca75cdaf518e952276
e1d6fde18ced644bb63e231829b2fe0664e51fac
refs/heads/trunk
2021-01-19T17:17:47.452557
2013-06-07T14:19:55
2013-06-07T14:19:55
13,488,698
1
3
null
2023-03-20T11:52:19
2013-10-11T03:08:51
C++
UTF-8
C++
false
false
1,654
hpp
lifo.hpp
////////////////////////////////////////////////////////////////////////////// // Boost.Assign v2 // // // // Copyright (C) 2003-2004 Thorsten Ottosen // // Copyright (C) 2011 Erwann Rogard // // 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) // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_ASSIGN_V2_SUPPORT_CHECK_EQUAL_CONTAINER_LIFO_ER_2011_HPP #define BOOST_ASSIGN_V2_SUPPORT_CHECK_EQUAL_CONTAINER_LIFO_ER_2011_HPP #include <boost/assign/v2/support/check/equal_container/pp.hpp> #include <boost/assign/v2/support/config/check.hpp> namespace boost{ namespace assign{ namespace v2{ namespace check_aux{ struct lifo{}; template<typename C, typename R> void equal_container(lifo, C const & cont, R const& r) { BOOST_ASSIGN_V2_CHECK_AUX_CONTAINER_SIZE BOOST_ASSIGN_V2_CHECK_AUX_CONTAINER_ELEM_AT C cpy = cont; for(size_type i = 0; i < n1; i++) { BOOST_ASSIGN_V2_CHECK( cpy.top() == elem_at( n1 - ( 1 + i ) ) ); cpy.pop(); } BOOST_ASSIGN_V2_CHECK( cpy.empty() ); // consistency check } }// check_aux }// v2 }// assign }// boost #endif // BOOST_ASSIGN_V2_SUPPORT_CHECK_EQUAL_CONTAINER_LIFO_ER_2011_HPP
57a83e3c8c3c0d0235660da1394cc9e8b781ee9e
90fc041cb98dd71d34bfff72761226d63c74f23e
/markus_crack/src/main.cpp
e1dfec9e78465d50a9a228b9fe5615049842d2c2
[ "Unlicense" ]
permissive
mudlord/crackme_solutions
510eb3258778febc0971dea4bb0aef67837cb95f
9877a16e51bc41027d0363841f182e49bcee70ff
refs/heads/master
2023-03-27T21:45:58.205384
2022-06-15T00:28:54
2022-06-15T00:28:54
212,070,700
8
6
null
null
null
null
UTF-8
C++
false
false
744
cpp
main.cpp
#include "patternfind.h" #include <stdio.h> #include <string.h> int main(int argc, char* argv[]) { unsigned char data[0x100]; memcpy(data, main, sizeof(data)); //find pattern offset size_t found = patternfind(data, sizeof(data), "68 ?? ?1 0? 00"); printf("found: main+%p\n", found); if(found == -1) //not found return 0; //print current data for(int i = 0; i < 5; i++) printf("%.2X ", data[found + i]); puts(""); //search & replace if(!patternsnr(data, sizeof(data), "68 ?? ?1 0? 00", "?? ?1 1? 21 23")) return 0; //search & replace failed //print replaced data for(int i = 0; i < 5; i++) printf("%.2X ", data[found + i]); puts(""); return 0; }
b7c6a6eccf3e38f79a679a06505dd59d40f8d508
f157735a34957e381ecd2758a26e43edf9f7c6ca
/DM2125/USE ME/MyGraphics/Test/Test.cpp
56b99f3b421f25bad082e14b5e9724674a96f468
[]
no_license
155129R/School-Stuff
fe753812e77650053fe127ab8ffa36bb8b3aa472
03c19b13a53e2681b44004fe16aff40edf448dad
refs/heads/master
2021-01-13T13:00:39.082294
2016-02-15T15:55:19
2016-02-15T15:55:19
47,772,195
0
0
null
null
null
null
UTF-8
C++
false
false
8,550
cpp
Test.cpp
#include "gtest/gtest.h" #include "MathUtility.h" //***********************************************************************FACTORIAL TESTS //Tests factorial for zero TEST(FactorialTest, HandlesZeroInput){ EXPECT_EQ(1, factorial(0)); } //Tests factorial of positive numbers TEST(FactorialTest, HandlesPositiveInput){ EXPECT_EQ(1, factorial(1)) << "Factorial(1) error"; EXPECT_EQ(2, factorial(2)) << "Factorial(2) error"; EXPECT_EQ(6, factorial(3)) << "Factorial(3) error"; EXPECT_EQ(40320, factorial(8)) <<"Factorial(8) error"; } //Tests factorial for negative numbers TEST(FactorialTest, HandlesNegativeInput){ EXPECT_EQ(-1, factorial(-1))<<"Factorial(-1) error"; EXPECT_EQ(-1, factorial(-8)) << "Factorial(-8) error"; } //***********************************************************************nCr TESTS //Test nCr for positive input TEST(nCrTest, HandlesPositiveInput){ EXPECT_EQ(10, nCr(5, 2))<<"nCr(5,2) error"; EXPECT_EQ(210, nCr(10, 6)) <<"nCr(10,6) error"; } //Test nCr for negative input TEST(nCrTest, HandlesNegativeInput){ EXPECT_EQ(0, nCr(-5, -2)) << "nCr(-5,-2) error"; EXPECT_EQ(0, nCr(-8, -10)) << "nCr(-8,-10) error"; } //Test nCr for n negative input TEST(nCrTest, Handles_n_NegativeInput){ EXPECT_EQ(0, nCr(-5, 2)) << "nCr(-5,2) error"; } //Test nCr for r negative input TEST(nCrTest, Handles_r_NegativeInput){ EXPECT_EQ(0, nCr(5, -2)) << "nCr(5,-2) error"; } //Test nCr for 0 input TEST(nCrTest, HandlesZeroInput){ EXPECT_EQ(1, nCr(0, 0)) << "nCr(0,0) error"; } //Test nCr for when n is 0 TEST(nCrTest, Handles_n_ZeroInput){ EXPECT_EQ(0, nCr(0, 5)) << "nCr(0,5) error"; } //Test nCr for when r is 0 TEST(nCrTest, Handles_r_ZeroInput){ EXPECT_EQ(1, nCr(5, 0)) << "nCr(5,0) error"; EXPECT_EQ(1, nCr(10, 0)) << "nCr(10,0) error"; } //***********************************************************************nPr TESTS //Test nPr for Positive input TEST(nPrTest, HandlesPositiveInput){ EXPECT_EQ(20, nPr(5,2))<<"nPr(5,2) error"; EXPECT_EQ(151200, nPr(10, 6)) << "nPr(10, 6) error"; } //Test nPr for Zero input TEST(nPrTest, HandlesZeroInput){ EXPECT_EQ(1, nPr(0, 0)) << "nPr(0,0) error"; } //Test nPr for n Zero input TEST(nPrTest, Handles_n_ZeroInput){ EXPECT_EQ(1, nPr(0, 1)) << "nPr(0,1) error"; } //Test nPr for r Zero input TEST(nPrTest, Handles_r_ZeroInput){ EXPECT_EQ(1, nPr(1, 0)) << "nPr(1,0) error"; } //Test nPr for negative input TEST(nPrTest, HandlesNegativeInput){ EXPECT_EQ(0, nPr(-1, -1)) << "nPr(-1,-1) error"; } //Test nPr for n negative input TEST(nPrTest, Handles_n_NegativeInput){ EXPECT_EQ(0, nPr(-1, 3)) << "nPr(-1,3) error"; } //Test nPr for r negative input TEST(nPrTest, Handles_r_NegativeInput){ EXPECT_EQ(0, nPr(3, -1)) << "nPr(3,-1) error"; } //***********************************************************************nTermAP TESTS //Test nTermAP for positive input TEST(nTermAP, HandlesPositiveInput){ EXPECT_EQ(49, nTermAP(1, 6, 9)) << "nTermAP(1, 6, 9) error"; EXPECT_EQ(62, nTermAP(5, 3, 20)) << "nTermAP(5, 3, 20) error"; } //Test nTermAP for zero input TEST(nTermAP, HandlesZeroInput){ EXPECT_EQ(0, nTermAP(0, 0, 0)) << "nTermAP(1, 6, 9) error"; } //Test nTermAP for a zero input TEST(nTermAP, Handles_a_ZeroInput){ EXPECT_EQ(10, nTermAP(0, 5, 3)) << "nTermAP(0, 5, 3) error"; } //Test nTermAP for d zero input TEST(nTermAP, Handles_d_ZeroInput){ EXPECT_EQ(5, nTermAP(5, 0, 3)) << "nTermAP(5, 0, 3) error"; } //Test nTermAP for n zero input TEST(nTermAP, Handles_n_ZeroInput){ EXPECT_EQ(2, nTermAP(5, 3, 0)) << "nTermAP(5, 3, 0) error"; } //Test nTermAP for negative TEST(nTermAP, HandlesNegativeInput){ EXPECT_EQ(6, nTermAP(-3, -3, -2)) << "nTermAP(-3, -3, -2) error"; } //Test nTermAP for a negative TEST(nTermAP, Handles_a_NegativeInput){ EXPECT_EQ(9, nTermAP(-3, 3, 5)) << "nTermAP(-3, 3, 5) error"; } //Test nTermAP for n negative TEST(nTermAP, Handles_n_NegativeInput){ EXPECT_EQ(-15, nTermAP(3, 3, -5)) << "nTermAP(3, 3, -5) error"; } //Test nTermAP for d negative TEST(nTermAP, Handles_d_NegativeInput){ EXPECT_EQ(-9, nTermAP(3, -3, 5)) << "nTermAP(3, -3, 5) error"; } //***********************************************************************summationAP TESTS //Test summationAP for positive input TEST(summationAP, HandlesPositiveInput){ EXPECT_EQ(225, summationAP(1, 6, 9))<<"summationAP(1, 6, 9) error"; } //Test summationAP for zero input TEST(summationAP, HandlesZeroInput){ EXPECT_EQ(0, summationAP(0, 0, 0)) << "summationAP(0, 0, 0) error"; } //Test summationAP for a zero input TEST(summationAP, Handles_a_ZeroInput){ EXPECT_EQ(216, summationAP(0, 6, 9)) << "summationAP(0, 6, 9) error"; } //Test summationAP for a zero input TEST(summationAP, Handles_d_ZeroInput){ EXPECT_EQ(9, summationAP(1, 0, 9)) << "summationAP(1, 0, 9) error"; } //Test summationAP for a zero input TEST(summationAP, Handles_n_ZeroInput){ EXPECT_EQ(0, summationAP(1, 6, 0)) << "summationAP(1, 6, 0) error"; } //Test summationAP for negative input TEST(summationAP, HandlesNegativeInput){ EXPECT_EQ(-261, summationAP(-1, -6, -9)) << "summationAP(-1, -6, -9) error"; } //Test summationAP for a negative input TEST(summationAP, Handles_a_NegativeInput){ EXPECT_EQ(207, summationAP(-1, 6, 9)) << "summationAP(-1, 6, 9) error"; } //Test summationAP for d negative input TEST(summationAP, Handles_d_NegativeInput){ EXPECT_EQ(-207, summationAP(1, -6, 9)) << "summationAP(1, -6, 9) error"; } //Test summationAP for n negative input TEST(summationAP, Handles_n_NegativeInput){ EXPECT_EQ(261, summationAP(1, 6, -9)) << "summationAP(1, 6, -9) error"; } //***********************************************************************nTermGP TESTS //Test nTermGP for positive input TEST(nTermGP, HandlesPositiveInput){ EXPECT_EQ(16, nTermGP(1, 2, 5)) << "nTermGP(1, 2, 5) error"; } //Test nTermGP for Zero input TEST(nTermGP, HandlesZeroInput){ EXPECT_EQ(0, nTermGP(0, 0, 0)) << "nTermGP(0, 0, 0) error"; } //Test nTermGP for a Zero input TEST(nTermGP, Handles_a_ZeroInput){ EXPECT_EQ(0, nTermGP(0, 2, 5)) << "nTermGP(0, 2, 5) error"; } //Test nTermGP for r Zero input TEST(nTermGP, Handles_r_ZeroInput){ EXPECT_EQ(0, nTermGP(1, 0, 5)) << "nTermGP(1, 0, 5) error"; } //Test nTermGP for n Zero input TEST(nTermGP, Handles_n_ZeroInput){ EXPECT_EQ(0, nTermGP(1, 2, 0)) << "nTermGP(1, 2, 0) error"; } //Test nTermGP for negative input TEST(nTermGP, HandlesNegativeInput){ EXPECT_EQ(0, nTermGP(-1, -2, -9)) << "nTermGP(-1, -2, -9) error"; } //Test nTermGP for a negative input TEST(nTermGP, Handles_a_NegativeInput){ EXPECT_EQ(-256, nTermGP(-1, 2, 9)) << "nTermGP(-1, 2, 9) error"; } //Test nTermGP for r negative input TEST(nTermGP, Handles_r_NegativeInput){ EXPECT_EQ(256, nTermGP(1, -2, 9)) << "nTermGP(1, -2, 9) error"; } //Test nTermGP for n negative input TEST(nTermGP, Handles_n_NegativeInput){ EXPECT_EQ(0, nTermGP(1, 2, -9)) << "nTermGP(1, 2, -9) error"; } //***********************************************************************summationGP TESTS //Test summationGP for negative input TEST(summationGP, HandlesPositiveInput){ EXPECT_EQ(511, summationGP(1, 2, 9)) << "summationGP(1, 2, 9) error"; } //Test summationGP for negative input TEST(summationGP, HandlesNegativeInput){ EXPECT_EQ(0, summationGP(-1, -2, -9)) << "summationGP(-1, -2, -9) error"; } //Test summationGP for a negative input TEST(summationGP, Handles_a_NegativeInput){ EXPECT_EQ(-511, summationGP(-1, 2, 9)) << "summationGP(-1, 2, 9) error"; } //Test summationGP for r negative input TEST(summationGP, Handles_r_NegativeInput){ EXPECT_EQ(171, summationGP(1, -2, 9)) << "summationGP(1, -2, 9) error"; } //Test summationGP for n negative input TEST(summationGP, Handles_n_NegativeInput){ EXPECT_EQ(-1, summationGP(1, 2, -9)) << "summationGP(1, 2, -9) error"; } //Test summationGP for negative input TEST(summationGP, HandlesZeroInput){ EXPECT_EQ(0, summationGP(0, 0, 0)) << "summationGP(0, 0, 0) error"; } //Test summationGP for a negative input TEST(summationGP, Handles_a_ZeroInput){ EXPECT_EQ(0, summationGP(0, 2, 9)) << "summationGP(0, 2, 9) error"; } //Test summationGP for r negative input TEST(summationGP, Handles_r_ZeroInput){ EXPECT_EQ(1, summationGP(1, 0, 9)) << "summationGP(1, 0, 9) error"; } //Test summationGP for n negative input TEST(summationGP, Handles_n_ZeroInput){ EXPECT_EQ(0, summationGP(1, 2, 0)) << "summationGP(1, 2, 0) error"; }
64c60e9693143ff8e604d9354067afe3528e160e
703a7df711c0809893f85fe28a69b7cf1d707148
/UWP/Il2CppOutputProject/Source/il2cppOutput/Il2CppGenericMethodDefinitions.cpp
fa0bd0be41c485e588f9f171d97251b482fc81b6
[]
no_license
gunsolex/Vuforiav2
a982d431da59ad96e6a88e9dd951047756f29b34
bca16cc3ba71006258cd971dedd67c7fabeb2f57
refs/heads/master
2020-04-18T09:09:02.388382
2018-12-17T07:43:46
2018-12-17T07:43:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,024,042
cpp
Il2CppGenericMethodDefinitions.cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include "class-internals.h" #include "codegen/il2cpp-codegen.h" extern const Il2CppMethodSpec g_Il2CppMethodSpecTable[50044] = { { 76, -1, 0 }, { 78, -1, 0 }, { 79, -1, 0 }, { 80, -1, 0 }, { 81, -1, 0 }, { 82, -1, 0 }, { 84, -1, 0 }, { 86, -1, 0 }, { 87, -1, 0 }, { 88, -1, 0 }, { 89, -1, 0 }, { 90, -1, 0 }, { 184, -1, 0 }, { 185, -1, 9 }, { 186, -1, 0 }, { 187, -1, 9 }, { 188, -1, 0 }, { 189, -1, 9 }, { 190, -1, 0 }, { 191, -1, 9 }, { 192, -1, 9 }, { 193, -1, 0 }, { 194, -1, 0 }, { 195, -1, 0 }, { 196, -1, 0 }, { 197, -1, 9 }, { 198, -1, 0 }, { 199, -1, 9 }, { 200, -1, 0 }, { 201, -1, 9 }, { 202, -1, 0 }, { 203, -1, 9 }, { 204, -1, 0 }, { 205, -1, 0 }, { 206, -1, 0 }, { 207, -1, 0 }, { 208, -1, 9 }, { 209, -1, 0 }, { 212, -1, 0 }, { 213, -1, 0 }, { 214, -1, 0 }, { 215, -1, 9 }, { 216, -1, 0 }, { 217, -1, 0 }, { 218, -1, 0 }, { 219, -1, 0 }, { 220, -1, 0 }, { 221, -1, 0 }, { 222, -1, 0 }, { 223, -1, 0 }, { 224, -1, 0 }, { 225, -1, 0 }, { 226, -1, 0 }, { 227, -1, 0 }, { 228, -1, 0 }, { 229, -1, 0 }, { 230, -1, 0 }, { 231, -1, 0 }, { 232, -1, 0 }, { 233, -1, 0 }, { 234, -1, 0 }, { 235, -1, 0 }, { 236, -1, 0 }, { 237, -1, 0 }, { 238, -1, 0 }, { 239, -1, 0 }, { 241, -1, 0 }, { 242, -1, 0 }, { 243, -1, 9 }, { 247, 0, -1 }, { 249, 0, -1 }, { 244, 0, -1 }, { 245, 0, -1 }, { 246, 0, -1 }, { 248, 0, -1 }, { 338, 0, -1 }, { 1130, 0, -1 }, { 1133, 0, -1 }, { 1129, 0, -1 }, { 1131, 0, -1 }, { 1132, 0, -1 }, { 1134, 0, -1 }, { 1483, 0, -1 }, { 1484, 0, -1 }, { 1485, 0, -1 }, { 1486, 0, -1 }, { 1491, 9, -1 }, { 1492, 9, -1 }, { 1493, 9, -1 }, { 1494, 9, -1 }, { 1495, 122, -1 }, { 1496, 122, -1 }, { 1497, 122, -1 }, { 1498, 122, -1 }, { 1499, 123, -1 }, { 1500, 123, -1 }, { 1501, 123, -1 }, { 1502, 123, -1 }, { 1503, 0, -1 }, { 1504, 0, -1 }, { 1505, 0, -1 }, { 1506, 0, -1 }, { 1507, 9, -1 }, { 1508, 9, -1 }, { 1509, 9, -1 }, { 1510, 9, -1 }, { 1511, 122, -1 }, { 1512, 122, -1 }, { 1513, 122, -1 }, { 1514, 122, -1 }, { 1515, 123, -1 }, { 1516, 123, -1 }, { 1517, 123, -1 }, { 1518, 123, -1 }, { 1519, 124, -1 }, { 1520, 124, -1 }, { 1521, 124, -1 }, { 1522, 124, -1 }, { 1523, 124, -1 }, { 1524, 124, -1 }, { 1525, 124, -1 }, { 1526, 124, -1 }, { 1527, 125, -1 }, { 1528, 125, -1 }, { 1529, 125, -1 }, { 1530, 125, -1 }, { 1531, 126, -1 }, { 1532, 126, -1 }, { 1533, 126, -1 }, { 1534, 126, -1 }, { 1535, 127, -1 }, { 1536, 127, -1 }, { 1537, 127, -1 }, { 1538, 127, -1 }, { 1539, 125, -1 }, { 1540, 125, -1 }, { 1541, 125, -1 }, { 1542, 125, -1 }, { 1543, 126, -1 }, { 1544, 126, -1 }, { 1545, 126, -1 }, { 1546, 126, -1 }, { 1547, 127, -1 }, { 1548, 127, -1 }, { 1549, 127, -1 }, { 1550, 127, -1 }, { 1551, 128, -1 }, { 1552, 128, -1 }, { 1553, 128, -1 }, { 1554, 128, -1 }, { 1555, 0, -1 }, { 1556, 0, -1 }, { 1557, 0, -1 }, { 1558, 0, -1 }, { 1559, 9, -1 }, { 1560, 9, -1 }, { 1561, 9, -1 }, { 1562, 9, -1 }, { 1563, 0, -1 }, { 1564, 0, -1 }, { 1565, 0, -1 }, { 1566, 0, -1 }, { 1572, -1, 0 }, { 1618, 0, -1 }, { 1619, 0, -1 }, { 1620, 0, -1 }, { 1624, 0, -1 }, { 1625, 0, -1 }, { 1629, 0, -1 }, { 1630, 0, -1 }, { 1617, 0, -1 }, { 1621, 0, -1 }, { 1622, 0, -1 }, { 1623, 0, -1 }, { 1626, 0, -1 }, { 1627, 0, -1 }, { 1628, 0, -1 }, { 1631, 0, -1 }, { 1632, 0, -1 }, { 1633, 0, -1 }, { 1634, 0, -1 }, { 1635, 0, -1 }, { 1636, 0, -1 }, { 1637, 0, -1 }, { 1640, 0, -1 }, { 1641, 0, -1 }, { 1638, 0, -1 }, { 1639, 0, -1 }, { 1642, 0, -1 }, { 1643, 0, -1 }, { 2444, 0, -1 }, { 2445, 0, -1 }, { 2446, 0, -1 }, { 2447, 0, -1 }, { 2506, 0, -1 }, { 2526, 0, -1 }, { 2633, 0, -1 }, { 2955, -1, 0 }, { 3261, -1, 9 }, { 3262, -1, 122 }, { 3263, -1, 123 }, { 3267, 9, -1 }, { 3268, 9, -1 }, { 3269, 9, -1 }, { 3270, 9, -1 }, { 3271, 9, -1 }, { 3272, 9, -1 }, { 3273, 9, -1 }, { 3274, 9, -1 }, { 3275, 9, -1 }, { 3276, 9, -1 }, { 3277, 9, -1 }, { 3278, 122, -1 }, { 3279, 122, -1 }, { 3280, 122, -1 }, { 3281, 122, -1 }, { 3282, 122, -1 }, { 3283, 122, -1 }, { 3284, 122, -1 }, { 3285, 122, -1 }, { 3286, 122, -1 }, { 3287, 122, -1 }, { 3288, 122, -1 }, { 3289, 122, -1 }, { 3290, 123, -1 }, { 3291, 123, -1 }, { 3292, 123, -1 }, { 3293, 123, -1 }, { 3294, 123, -1 }, { 3295, 123, -1 }, { 3296, 123, -1 }, { 3297, 123, -1 }, { 3298, 123, -1 }, { 3299, 123, -1 }, { 3300, 123, -1 }, { 3301, 123, -1 }, { 3302, 123, -1 }, { 3774, 0, -1 }, { 3775, 0, -1 }, { 3776, 0, -1 }, { 3777, 0, -1 }, { 3778, 0, -1 }, { 3779, 0, -1 }, { 3780, 0, -1 }, { 3781, 0, -1 }, { 3782, 0, -1 }, { 3787, 0, -1 }, { 3788, 0, -1 }, { 3789, 0, -1 }, { 3790, 0, -1 }, { 3798, 9, -1 }, { 3799, 9, -1 }, { 3800, 9, -1 }, { 3801, 9, -1 }, { 3802, 9, -1 }, { 3803, 9, -1 }, { 3804, 9, -1 }, { 3805, 9, -1 }, { 3806, 9, -1 }, { 3827, 9, -1 }, { 3831, 9, -1 }, { 3832, 9, -1 }, { 3833, 9, -1 }, { 3834, 9, -1 }, { 3835, 9, -1 }, { 3836, 9, -1 }, { 3837, 9, -1 }, { 3791, 9, -1 }, { 3792, 9, -1 }, { 3793, 9, -1 }, { 3794, 9, -1 }, { 3795, 9, -1 }, { 3796, 9, -1 }, { 3797, 9, -1 }, { 3807, 9, -1 }, { 3808, 9, -1 }, { 3809, 9, -1 }, { 3810, 9, -1 }, { 3811, 9, -1 }, { 3812, 9, -1 }, { 3813, 9, -1 }, { 3814, 9, -1 }, { 3815, 9, -1 }, { 3816, 9, -1 }, { 3817, 9, -1 }, { 3818, 9, -1 }, { 3819, 9, -1 }, { 3820, 9, -1 }, { 3821, 9, -1 }, { 3822, 9, -1 }, { 3823, 9, -1 }, { 3824, 9, -1 }, { 3825, 9, -1 }, { 3826, 9, -1 }, { 3828, 9, -1 }, { 3829, 9, -1 }, { 3830, 9, -1 }, { 3838, 9, -1 }, { 3839, 9, -1 }, { 3840, 9, -1 }, { 3841, 9, -1 }, { 3842, 9, -1 }, { 3845, 9, -1 }, { 3847, 9, -1 }, { 3849, 9, -1 }, { 3850, 9, -1 }, { 3851, 9, -1 }, { 3843, 9, -1 }, { 3844, 9, -1 }, { 3846, 9, -1 }, { 3848, 9, -1 }, { 3855, 9, -1 }, { 3856, 9, -1 }, { 3864, 9, -1 }, { 3865, 9, -1 }, { 3852, 9, -1 }, { 3853, 9, -1 }, { 3854, 9, -1 }, { 3857, 9, -1 }, { 3858, 9, -1 }, { 3859, 9, -1 }, { 3860, 9, -1 }, { 3861, 9, -1 }, { 3862, 9, -1 }, { 3863, 9, -1 }, { 3869, 9, -1 }, { 3870, 9, -1 }, { 3866, 9, -1 }, { 3867, 9, -1 }, { 3868, 9, -1 }, { 3871, 9, -1 }, { 3875, 9, -1 }, { 3876, 9, -1 }, { 3884, 9, -1 }, { 3885, 9, -1 }, { 3872, 9, -1 }, { 3873, 9, -1 }, { 3874, 9, -1 }, { 3877, 9, -1 }, { 3878, 9, -1 }, { 3879, 9, -1 }, { 3880, 9, -1 }, { 3881, 9, -1 }, { 3882, 9, -1 }, { 3883, 9, -1 }, { 3889, 9, -1 }, { 3890, 9, -1 }, { 3886, 9, -1 }, { 3887, 9, -1 }, { 3888, 9, -1 }, { 3891, 9, -1 }, { 3892, 0, -1 }, { 3893, 0, -1 }, { 3894, 0, -1 }, { 3895, 0, -1 }, { 3896, 0, -1 }, { 3897, 0, -1 }, { 3898, 0, -1 }, { 3899, 0, -1 }, { 3900, 0, -1 }, { 3901, 0, -1 }, { 3902, 0, -1 }, { 3903, 0, -1 }, { 3904, 0, -1 }, { 3905, 0, -1 }, { 3912, 0, -1 }, { 3913, 0, -1 }, { 3914, 0, -1 }, { 3915, 0, -1 }, { 3916, 0, -1 }, { 3917, 0, -1 }, { 3944, 0, -1 }, { 3945, 0, -1 }, { 3946, 0, -1 }, { 3947, 0, -1 }, { 3948, 0, -1 }, { 3949, 0, -1 }, { 3950, 0, -1 }, { 3951, 0, -1 }, { 3952, 9, -1 }, { 3953, 9, -1 }, { 3954, 9, -1 }, { 3955, 9, -1 }, { 3956, 9, -1 }, { 3957, 9, -1 }, { 3958, 9, -1 }, { 3959, 9, -1 }, { 3960, 0, -1 }, { 3961, 0, -1 }, { 3962, 0, -1 }, { 3963, 0, -1 }, { 3964, 0, -1 }, { 3965, 0, -1 }, { 3966, 0, -1 }, { 3967, 0, -1 }, { 3968, 0, -1 }, { 3969, 0, -1 }, { 3972, 9, -1 }, { 3973, 9, -1 }, { 3974, 9, -1 }, { 3970, 9, -1 }, { 3971, 9, -1 }, { 3975, 0, -1 }, { 3980, 9, -1 }, { 3981, 9, -1 }, { 3979, 9, -1 }, { 3982, 9, -1 }, { 3986, 0, -1 }, { 3987, 0, -1 }, { 3988, 0, -1 }, { 3989, 0, -1 }, { 3990, 0, -1 }, { 3991, 0, -1 }, { 3992, 0, -1 }, { 3993, 0, -1 }, { 3994, 0, -1 }, { 3995, 0, -1 }, { 3997, 0, -1 }, { 3998, 0, -1 }, { 3983, 0, -1 }, { 3984, 0, -1 }, { 3985, 0, -1 }, { 3996, 0, -1 }, { 3999, 0, -1 }, { 4000, 0, -1 }, { 4001, 0, -1 }, { 4002, 0, -1 }, { 4003, 0, -1 }, { 4004, 0, -1 }, { 4005, 0, -1 }, { 4006, 0, -1 }, { 4007, 0, -1 }, { 4008, 0, -1 }, { 4009, 0, -1 }, { 4010, 0, -1 }, { 4011, 0, -1 }, { 4012, 0, -1 }, { 4013, 0, -1 }, { 4014, 0, -1 }, { 4015, 0, -1 }, { 4016, 0, -1 }, { 4017, 0, -1 }, { 4018, 0, -1 }, { 4019, 0, -1 }, { 4020, 0, -1 }, { 4021, 0, -1 }, { 4022, 0, -1 }, { 4023, 0, -1 }, { 4024, 0, -1 }, { 4025, 0, -1 }, { 4026, 0, -1 }, { 4027, 0, -1 }, { 4028, 0, -1 }, { 4029, 0, -1 }, { 4030, 0, -1 }, { 4031, 0, -1 }, { 4032, 0, -1 }, { 4033, 0, -1 }, { 4034, 0, -1 }, { 4035, 0, -1 }, { 4036, 0, -1 }, { 4037, 0, -1 }, { 4038, 0, -1 }, { 4043, 0, -1 }, { 4044, 0, -1 }, { 4039, 0, -1 }, { 4040, 0, -1 }, { 4041, 0, -1 }, { 4042, 0, -1 }, { 4045, 0, -1 }, { 4051, 0, -1 }, { 4052, 0, -1 }, { 4053, 0, -1 }, { 4054, 0, -1 }, { 4068, 0, -1 }, { 4070, 0, -1 }, { 4071, 0, -1 }, { 4073, 0, -1 }, { 4074, 0, -1 }, { 4075, 0, -1 }, { 4076, 0, -1 }, { 4050, 0, -1 }, { 4055, 0, -1 }, { 4056, 0, -1 }, { 4057, 0, -1 }, { 4058, 0, -1 }, { 4059, 0, -1 }, { 4060, 0, -1 }, { 4061, 0, -1 }, { 4062, 0, -1 }, { 4063, 0, -1 }, { 4064, 0, -1 }, { 4065, 0, -1 }, { 4066, 0, -1 }, { 4067, 0, -1 }, { 4069, 0, -1 }, { 4072, 0, -1 }, { 4077, 0, -1 }, { 4078, 0, -1 }, { 4079, 0, -1 }, { 4080, 0, -1 }, { 4081, 0, -1 }, { 4082, 0, -1 }, { 4086, 9, -1 }, { 4088, 9, -1 }, { 4083, 9, -1 }, { 4084, 9, -1 }, { 4085, 9, -1 }, { 4087, 9, -1 }, { 4089, 9, -1 }, { 4090, 9, -1 }, { 4091, 9, -1 }, { 4092, 9, -1 }, { 4093, 9, -1 }, { 4094, 9, -1 }, { 4095, 9, -1 }, { 4096, 9, -1 }, { 4098, 0, -1 }, { 4099, 0, -1 }, { 4104, 0, -1 }, { 4105, 0, -1 }, { 4106, 0, -1 }, { 4113, 0, -1 }, { 4114, 0, -1 }, { 4116, 0, -1 }, { 4117, 0, -1 }, { 4118, 0, -1 }, { 4119, 0, -1 }, { 4097, 0, -1 }, { 4100, 0, -1 }, { 4101, 0, -1 }, { 4102, 0, -1 }, { 4103, 0, -1 }, { 4107, 0, -1 }, { 4108, 0, -1 }, { 4109, 0, -1 }, { 4110, 0, -1 }, { 4111, 0, -1 }, { 4112, 0, -1 }, { 4115, 0, -1 }, { 4120, 0, -1 }, { 4121, 0, -1 }, { 4122, 0, -1 }, { 4123, 0, -1 }, { 4124, 0, -1 }, { 4125, 0, -1 }, { 4126, 0, -1 }, { 4127, 0, -1 }, { 4129, 9, -1 }, { 4130, 9, -1 }, { 4132, 9, -1 }, { 4134, 9, -1 }, { 4135, 9, -1 }, { 4138, 9, -1 }, { 4139, 9, -1 }, { 4140, 9, -1 }, { 4143, 9, -1 }, { 4154, 9, -1 }, { 4155, 9, -1 }, { 4157, 9, -1 }, { 4158, 9, -1 }, { 4159, 9, -1 }, { 4161, 9, -1 }, { 4162, 9, -1 }, { 4163, 9, -1 }, { 4164, 9, -1 }, { 4128, 9, -1 }, { 4131, 9, -1 }, { 4133, 9, -1 }, { 4136, 9, -1 }, { 4137, 9, -1 }, { 4141, 9, -1 }, { 4142, 9, -1 }, { 4144, 9, -1 }, { 4145, 9, -1 }, { 4146, 9, -1 }, { 4147, 9, -1 }, { 4148, 9, -1 }, { 4149, 9, -1 }, { 4150, 9, -1 }, { 4151, 9, -1 }, { 4152, 9, -1 }, { 4153, 9, -1 }, { 4156, 9, -1 }, { 4160, 9, -1 }, { 4166, 9, -1 }, { 4167, 9, -1 }, { 4168, 9, -1 }, { 4169, 9, -1 }, { 4165, 9, -1 }, { 4170, 9, -1 }, { 4171, 9, -1 }, { 4177, 9, -1 }, { 4178, 9, -1 }, { 4183, 9, -1 }, { 4184, 9, -1 }, { 4172, 9, -1 }, { 4173, 9, -1 }, { 4174, 9, -1 }, { 4175, 9, -1 }, { 4176, 9, -1 }, { 4179, 9, -1 }, { 4180, 9, -1 }, { 4181, 9, -1 }, { 4182, 9, -1 }, { 4190, 9, -1 }, { 4191, 9, -1 }, { 4196, 9, -1 }, { 4197, 9, -1 }, { 4185, 9, -1 }, { 4186, 9, -1 }, { 4187, 9, -1 }, { 4188, 9, -1 }, { 4189, 9, -1 }, { 4192, 9, -1 }, { 4193, 9, -1 }, { 4194, 9, -1 }, { 4195, 9, -1 }, { 4198, -1, 0 }, { 4217, 9, -1 }, { 4218, 9, -1 }, { 4219, 9, -1 }, { 4222, 9, -1 }, { 4223, 9, -1 }, { 4224, 9, -1 }, { 4225, 9, -1 }, { 4228, 9, -1 }, { 4234, 9, -1 }, { 4235, 9, -1 }, { 4237, 9, -1 }, { 4238, 9, -1 }, { 4239, 9, -1 }, { 4241, 9, -1 }, { 4242, 9, -1 }, { 4245, 9, -1 }, { 4200, 9, -1 }, { 4201, 9, -1 }, { 4202, 9, -1 }, { 4203, 9, -1 }, { 4204, 9, -1 }, { 4205, 9, -1 }, { 4206, 9, -1 }, { 4207, 9, -1 }, { 4208, 9, -1 }, { 4209, 9, -1 }, { 4210, 9, -1 }, { 4211, 9, -1 }, { 4212, 9, -1 }, { 4213, 9, -1 }, { 4214, 9, -1 }, { 4215, 9, -1 }, { 4216, 9, -1 }, { 4220, 9, -1 }, { 4221, 9, -1 }, { 4226, 9, -1 }, { 4227, 9, -1 }, { 4229, 9, -1 }, { 4230, 9, -1 }, { 4231, 9, -1 }, { 4232, 9, -1 }, { 4233, 9, -1 }, { 4236, 9, -1 }, { 4240, 9, -1 }, { 4243, 9, -1 }, { 4244, 9, -1 }, { 4246, 9, -1 }, { 4247, 9, -1 }, { 4248, 9, -1 }, { 4249, 9, -1 }, { 4250, 9, -1 }, { 4251, 9, -1 }, { 4252, 9, -1 }, { 4253, 9, -1 }, { 4254, 9, -1 }, { 4255, 9, -1 }, { 4256, 9, -1 }, { 4258, 9, -1 }, { 4259, 9, -1 }, { 4260, 9, -1 }, { 4261, 9, -1 }, { 4257, 9, -1 }, { 4262, 9, -1 }, { 4263, 9, -1 }, { 4267, 9, -1 }, { 4269, 9, -1 }, { 4264, 9, -1 }, { 4265, 9, -1 }, { 4266, 9, -1 }, { 4268, 9, -1 }, { 4279, -1, 0 }, { 4281, -1, 0 }, { 4409, -1, 0 }, { 4410, -1, 0 }, { 4446, 0, -1 }, { 4445, 0, -1 }, { 4447, 0, -1 }, { 4449, 0, -1 }, { 4450, 0, -1 }, { 4451, 0, -1 }, { 4452, 0, -1 }, { 4453, 0, -1 }, { 4512, 0, -1 }, { 4511, 0, -1 }, { 4513, 0, -1 }, { 4515, 0, -1 }, { 4516, 0, -1 }, { 4514, 0, -1 }, { 4519, 0, -1 }, { 4520, 0, -1 }, { 4521, 0, -1 }, { 4517, 0, -1 }, { 4518, 0, -1 }, { 4522, 0, -1 }, { 4577, -1, 0 }, { 4578, -1, 0 }, { 4710, 0, -1 }, { 4709, 0, -1 }, { 4711, 0, -1 }, { 4712, 0, -1 }, { 4773, -1, 0 }, { 4779, 0, -1 }, { 4780, 0, -1 }, { 4781, 0, -1 }, { 4782, 0, -1 }, { 4783, 0, -1 }, { 4784, 0, -1 }, { 4785, 0, -1 }, { 4786, 0, -1 }, { 4787, 0, 9 }, { 4788, 9, -1 }, { 4789, 9, -1 }, { 4790, 9, -1 }, { 4791, 9, -1 }, { 4792, 0, -1 }, { 4793, 0, -1 }, { 4794, 0, -1 }, { 4795, 0, -1 }, { 4813, 0, -1 }, { 4932, -1, 0 }, { 4934, -1, 0 }, { 4937, -1, 0 }, { 4938, -1, 0 }, { 4939, -1, 0 }, { 4941, -1, 0 }, { 4971, 0, -1 }, { 4972, 0, -1 }, { 4973, 0, -1 }, { 4974, 0, -1 }, { 4975, 0, -1 }, { 4976, 0, -1 }, { 4977, 0, -1 }, { 4978, 0, -1 }, { 4979, 0, -1 }, { 4980, 0, -1 }, { 4994, 0, -1 }, { 4995, 0, -1 }, { 5000, 0, -1 }, { 4981, 0, -1 }, { 4982, 0, -1 }, { 4983, 0, -1 }, { 4984, 0, -1 }, { 4985, 0, -1 }, { 4986, 0, -1 }, { 4987, 0, -1 }, { 4988, 0, -1 }, { 4989, 0, -1 }, { 4990, 0, -1 }, { 4991, 0, -1 }, { 4992, 0, -1 }, { 4993, 0, -1 }, { 4996, 0, -1 }, { 4997, 0, -1 }, { 4998, 0, -1 }, { 4999, 0, -1 }, { 5001, 0, -1 }, { 5002, 0, -1 }, { 5003, 0, -1 }, { 5004, 0, -1 }, { 5005, 0, -1 }, { 5006, 0, -1 }, { 5007, 0, -1 }, { 5009, 0, -1 }, { 5008, 0, -1 }, { 5010, 0, -1 }, { 5011, 0, -1 }, { 5012, 0, -1 }, { 5013, 0, -1 }, { 5079, -1, 0 }, { 7847, -1, 0 }, { 7860, -1, 0 }, { 7866, -1, 0 }, { 7934, -1, 0 }, { 7941, -1, 0 }, { 7945, -1, 0 }, { 7972, 9, -1 }, { 7973, 9, -1 }, { 7974, 9, -1 }, { 7975, 9, -1 }, { 7976, 9, -1 }, { 7977, 9, -1 }, { 7978, 9, -1 }, { 7979, 9, -1 }, { 7980, 9, -1 }, { 7981, 9, -1 }, { 7982, 9, -1 }, { 7983, 9, -1 }, { 7984, 9, -1 }, { 7985, 9, -1 }, { 7993, -1, 0 }, { 7999, -1, 0 }, { 8001, -1, 9 }, { 8007, -1, 0 }, { 8009, -1, 9 }, { 8010, -1, 9 }, { 8020, 0, -1 }, { 8015, 0, -1 }, { 8016, 0, 0 }, { 8017, 0, -1 }, { 8018, 0, 9 }, { 8019, 0, 9 }, { 8021, 0, -1 }, { 8022, 0, -1 }, { 8023, 0, -1 }, { 8024, 0, -1 }, { 8025, 0, -1 }, { 8027, -1, 0 }, { 8085, 0, -1 }, { 8084, 0, -1 }, { 8086, 0, -1 }, { 8087, 0, -1 }, { 8088, 0, -1 }, { 8096, 0, -1 }, { 8097, 0, -1 }, { 8099, 0, -1 }, { 8098, 0, -1 }, { 8100, 0, -1 }, { 8101, 0, -1 }, { 8102, 0, -1 }, { 8333, -1, 0 }, { 8619, -1, 9 }, { 8620, -1, 0 }, { 8633, 9, -1 }, { 8634, 9, -1 }, { 8635, 9, -1 }, { 8636, 9, -1 }, { 8637, 0, -1 }, { 8638, 0, -1 }, { 8639, 0, -1 }, { 8640, 0, -1 }, { 8760, -1, 0 }, { 8762, -1, 0 }, { 9551, -1, 0 }, { 9924, 0, -1 }, { 9930, 0, -1 }, { 9923, 0, -1 }, { 9925, 0, -1 }, { 9926, 0, -1 }, { 9927, 0, -1 }, { 9928, 0, -1 }, { 9929, 0, -1 }, { 9931, 0, -1 }, { 9932, 0, -1 }, { 9933, 0, -1 }, { 9934, 0, -1 }, { 9935, 0, -1 }, { 9936, 0, -1 }, { 9937, 0, -1 }, { 9938, 0, -1 }, { 9939, 0, -1 }, { 9940, 0, -1 }, { 9941, 0, -1 }, { 9942, 0, -1 }, { 9943, 0, -1 }, { 9944, 0, -1 }, { 9945, 0, -1 }, { 9946, 0, -1 }, { 9947, 0, -1 }, { 9948, 0, -1 }, { 12316, 0, -1 }, { 12318, 0, -1 }, { 12314, 0, -1 }, { 12315, 0, -1 }, { 12317, 0, -1 }, { 12319, 0, -1 }, { 12342, 9, -1 }, { 12343, 9, -1 }, { 12349, 9, -1 }, { 12350, 9, -1 }, { 12351, 9, -1 }, { 12352, 9, -1 }, { 12340, 9, -1 }, { 12341, 9, -1 }, { 12344, 9, -1 }, { 12345, 9, -1 }, { 12346, 9, -1 }, { 12347, 9, -1 }, { 12348, 9, -1 }, { 12353, 9, -1 }, { 12354, 9, -1 }, { 12355, 9, -1 }, { 12356, 9, -1 }, { 12360, 9, -1 }, { 12361, 9, -1 }, { 12357, 9, -1 }, { 12358, 9, -1 }, { 12359, 9, -1 }, { 12362, 9, -1 }, { 12363, 9, -1 }, { 12364, 9, -1 }, { 12365, 9, -1 }, { 12366, 9, -1 }, { 12369, 9, -1 }, { 12371, 9, -1 }, { 12367, 9, -1 }, { 12368, 9, -1 }, { 12370, 9, -1 }, { 12372, 9, -1 }, { 12376, 9, -1 }, { 12377, 9, -1 }, { 12373, 9, -1 }, { 12374, 9, -1 }, { 12375, 9, -1 }, { 12378, 9, -1 }, { 12379, 9, -1 }, { 12380, 9, -1 }, { 12381, 9, -1 }, { 12382, 9, -1 }, { 12385, 9, -1 }, { 12387, 9, -1 }, { 12383, 9, -1 }, { 12384, 9, -1 }, { 12386, 9, -1 }, { 12388, 9, -1 }, { 12389, 0, -1 }, { 12390, 0, -1 }, { 12393, 0, -1 }, { 12394, 0, -1 }, { 12400, 0, -1 }, { 12401, 0, -1 }, { 12391, 0, -1 }, { 12392, 0, -1 }, { 12395, 0, -1 }, { 12396, 0, -1 }, { 12397, 0, -1 }, { 12398, 0, -1 }, { 12399, 0, -1 }, { 12402, 0, -1 }, { 12403, 0, -1 }, { 12404, 0, -1 }, { 12407, 9, -1 }, { 12410, 9, -1 }, { 12411, 9, -1 }, { 12412, 9, -1 }, { 12405, 9, -1 }, { 12406, 9, -1 }, { 12408, 9, -1 }, { 12409, 9, -1 }, { 12413, 9, -1 }, { 12414, 9, -1 }, { 12415, 9, -1 }, { 12418, 9, -1 }, { 12420, 9, -1 }, { 12416, 9, -1 }, { 12417, 9, -1 }, { 12419, 9, -1 }, { 12421, 9, -1 }, { 12422, 9, -1 }, { 12423, 9, -1 }, { 12424, 9, -1 }, { 12427, 9, -1 }, { 12429, 9, -1 }, { 12425, 9, -1 }, { 12426, 9, -1 }, { 12428, 9, -1 }, { 12430, 9, -1 }, { 12433, 0, -1 }, { 12434, 0, -1 }, { 12431, 0, -1 }, { 12432, 0, -1 }, { 12442, 0, -1 }, { 12443, 0, -1 }, { 12440, 0, -1 }, { 12441, 0, -1 }, { 12444, 0, -1 }, { 12445, 0, -1 }, { 12446, 0, -1 }, { 12447, 0, -1 }, { 12448, 0, -1 }, { 12449, 0, -1 }, { 12450, 0, -1 }, { 12451, 0, -1 }, { 12452, 0, -1 }, { 12453, 0, -1 }, { 12456, 0, -1 }, { 12454, 0, -1 }, { 12455, 0, -1 }, { 12457, 0, -1 }, { 12782, -1, 0 }, { 16192, 0, -1 }, { 16193, 0, -1 }, { 16194, 0, -1 }, { 16195, 0, -1 }, { 16216, 0, -1 }, { 16217, 0, -1 }, { 16190, 0, -1 }, { 16191, 0, -1 }, { 16196, 0, -1 }, { 16197, 0, -1 }, { 16198, 0, -1 }, { 16199, 0, -1 }, { 16200, 0, -1 }, { 16201, 0, -1 }, { 16202, 0, -1 }, { 16203, 0, -1 }, { 16204, 0, -1 }, { 16205, 0, -1 }, { 16206, 0, -1 }, { 16207, 0, -1 }, { 16208, 0, -1 }, { 16209, 0, -1 }, { 16210, 0, -1 }, { 16211, 0, -1 }, { 16212, 0, -1 }, { 16213, 0, -1 }, { 16214, 0, -1 }, { 16215, 0, -1 }, { 16218, 0, -1 }, { 16219, 0, -1 }, { 16222, 0, -1 }, { 16223, 0, -1 }, { 16220, 0, -1 }, { 16221, 0, -1 }, { 16224, 0, -1 }, { 16225, 0, -1 }, { 16226, 0, -1 }, { 16227, 0, -1 }, { 16228, 0, -1 }, { 16230, 0, -1 }, { 16231, 0, -1 }, { 16229, 0, -1 }, { 16232, 0, -1 }, { 16235, 0, -1 }, { 16236, 0, -1 }, { 16237, 0, -1 }, { 16233, 0, -1 }, { 16234, 0, -1 }, { 16238, 0, -1 }, { 16239, 0, -1 }, { 16240, 0, -1 }, { 16241, 0, -1 }, { 16242, 0, -1 }, { 16243, 0, -1 }, { 16244, 0, -1 }, { 16245, 0, -1 }, { 16246, 0, -1 }, { 16247, 0, -1 }, { 16251, 0, -1 }, { 16252, 0, -1 }, { 16248, 0, -1 }, { 16249, 0, -1 }, { 16250, 0, -1 }, { 16253, 0, -1 }, { 16259, 9, -1 }, { 16260, 9, -1 }, { 16261, 9, -1 }, { 16262, 9, -1 }, { 16263, 9, -1 }, { 16264, 9, -1 }, { 16265, 9, -1 }, { 16266, 9, -1 }, { 16267, 9, -1 }, { 16268, 9, -1 }, { 16279, 9, -1 }, { 16280, 9, -1 }, { 16281, 9, -1 }, { 16282, 9, -1 }, { 16283, 9, -1 }, { 16289, 9, -1 }, { 16290, 9, -1 }, { 16254, 9, -1 }, { 16255, 9, -1 }, { 16256, 9, -1 }, { 16257, 9, -1 }, { 16258, 9, -1 }, { 16269, 9, -1 }, { 16270, 9, -1 }, { 16271, 9, -1 }, { 16272, 9, -1 }, { 16273, 9, -1 }, { 16274, 9, -1 }, { 16275, 9, -1 }, { 16276, 9, -1 }, { 16277, 9, -1 }, { 16278, 9, -1 }, { 16284, 9, -1 }, { 16285, 9, -1 }, { 16286, 9, -1 }, { 16287, 9, -1 }, { 16288, 9, -1 }, { 16291, 9, -1 }, { 16295, 9, -1 }, { 16296, 9, -1 }, { 16299, 9, -1 }, { 16300, 9, -1 }, { 16301, 9, -1 }, { 16302, 9, -1 }, { 16292, 9, -1 }, { 16293, 9, -1 }, { 16294, 9, -1 }, { 16297, 9, -1 }, { 16298, 9, -1 }, { 16308, 9, -1 }, { 16309, 9, -1 }, { 16314, 9, -1 }, { 16315, 9, -1 }, { 16303, 9, -1 }, { 16304, 9, -1 }, { 16305, 9, -1 }, { 16306, 9, -1 }, { 16307, 9, -1 }, { 16310, 9, -1 }, { 16311, 9, -1 }, { 16312, 9, -1 }, { 16313, 9, -1 }, { 16319, 9, -1 }, { 16320, 9, -1 }, { 16316, 9, -1 }, { 16317, 9, -1 }, { 16318, 9, -1 }, { 16321, 9, -1 }, { 16322, 9, -1 }, { 16323, 9, -1 }, { 16324, 9, -1 }, { 16325, 9, -1 }, { 16326, 9, -1 }, { 16332, 9, -1 }, { 16333, 9, -1 }, { 16338, 9, -1 }, { 16339, 9, -1 }, { 16327, 9, -1 }, { 16328, 9, -1 }, { 16329, 9, -1 }, { 16330, 9, -1 }, { 16331, 9, -1 }, { 16334, 9, -1 }, { 16335, 9, -1 }, { 16336, 9, -1 }, { 16337, 9, -1 }, { 16343, 9, -1 }, { 16344, 9, -1 }, { 16340, 9, -1 }, { 16341, 9, -1 }, { 16342, 9, -1 }, { 16345, 9, -1 }, { 16346, 9, -1 }, { 16347, 9, -1 }, { 16348, 9, -1 }, { 16349, 9, -1 }, { 16350, 9, -1 }, { 16351, 9, -1 }, { 16352, 9, -1 }, { 16353, 9, -1 }, { 16354, 9, -1 }, { 16355, 9, -1 }, { 16356, 9, -1 }, { 16357, 0, -1 }, { 16358, 0, -1 }, { 16359, 0, -1 }, { 16360, 0, -1 }, { 16361, 0, -1 }, { 16362, 0, -1 }, { 16363, 0, -1 }, { 16364, 0, -1 }, { 16370, 0, -1 }, { 16371, 0, -1 }, { 16372, 0, -1 }, { 16373, 0, -1 }, { 16374, 0, -1 }, { 16365, 0, -1 }, { 16366, 0, -1 }, { 16367, 0, -1 }, { 16368, 0, -1 }, { 16369, 0, -1 }, { 16375, 0, -1 }, { 16376, 0, -1 }, { 16377, 0, -1 }, { 16378, 0, -1 }, { 16379, 0, -1 }, { 16380, 0, -1 }, { 16381, 0, -1 }, { 16382, 0, -1 }, { 16383, 0, -1 }, { 16384, 0, -1 }, { 16385, 0, -1 }, { 16386, 0, -1 }, { 16387, 0, -1 }, { 16388, 0, -1 }, { 16389, 0, -1 }, { 16390, 0, -1 }, { 16391, 0, -1 }, { 16392, 0, -1 }, { 16393, 0, -1 }, { 16394, 0, -1 }, { 16395, 0, -1 }, { 16396, 0, -1 }, { 16397, 0, -1 }, { 16398, 0, -1 }, { 16399, 0, -1 }, { 16400, 0, -1 }, { 16401, 0, -1 }, { 16402, 0, -1 }, { 16403, 0, -1 }, { 16404, 0, -1 }, { 16405, 0, -1 }, { 16406, 0, -1 }, { 16407, 0, -1 }, { 16408, 0, -1 }, { 16409, 0, -1 }, { 16410, 0, -1 }, { 16411, 0, -1 }, { 16412, 0, -1 }, { 16413, 0, -1 }, { 16414, 0, -1 }, { 16424, 0, -1 }, { 16425, 0, -1 }, { 16426, 0, -1 }, { 16415, 0, -1 }, { 16416, 0, -1 }, { 16417, 0, -1 }, { 16418, 0, -1 }, { 16419, 0, -1 }, { 16420, 0, -1 }, { 16421, 0, -1 }, { 16422, 0, -1 }, { 16423, 0, -1 }, { 16427, 0, -1 }, { 16428, 0, -1 }, { 16429, 0, -1 }, { 16430, 0, -1 }, { 16431, 0, -1 }, { 16432, 0, -1 }, { 16433, 0, -1 }, { 16434, 0, -1 }, { 16437, 0, -1 }, { 16438, 0, -1 }, { 16439, 0, -1 }, { 16435, 0, -1 }, { 16436, 0, -1 }, { 16440, 0, -1 }, { 16441, 0, -1 }, { 16442, 0, -1 }, { 16443, 0, -1 }, { 16444, 0, -1 }, { 16445, 0, -1 }, { 16446, 0, -1 }, { 16447, 0, -1 }, { 16448, 0, -1 }, { 16449, 0, -1 }, { 16453, 0, -1 }, { 16454, 0, -1 }, { 16450, 0, -1 }, { 16451, 0, -1 }, { 16452, 0, -1 }, { 16455, 0, -1 }, { 21452, -1, 0 }, { 23179, 128, -1 }, { 23180, 128, -1 }, { 23181, 128, -1 }, { 23182, 128, -1 }, { 23183, 636, -1 }, { 23184, 636, -1 }, { 23185, 636, -1 }, { 23186, 636, -1 }, { 23187, 637, -1 }, { 23188, 637, -1 }, { 23189, 637, -1 }, { 23190, 637, -1 }, { 23191, 638, -1 }, { 23192, 638, -1 }, { 23193, 638, -1 }, { 23194, 638, -1 }, { 23195, 639, -1 }, { 23196, 639, -1 }, { 23197, 639, -1 }, { 23198, 639, -1 }, { 23199, 640, -1 }, { 23200, 640, -1 }, { 23201, 640, -1 }, { 23202, 640, -1 }, { 23203, 641, -1 }, { 23204, 641, -1 }, { 23205, 641, -1 }, { 23206, 641, -1 }, { 23207, 642, -1 }, { 23208, 642, -1 }, { 23209, 642, -1 }, { 23210, 642, -1 }, { 23211, 636, -1 }, { 23212, 636, -1 }, { 23213, 636, -1 }, { 23214, 636, -1 }, { 23215, 637, -1 }, { 23216, 637, -1 }, { 23217, 637, -1 }, { 23218, 637, -1 }, { 23219, 638, -1 }, { 23220, 638, -1 }, { 23221, 638, -1 }, { 23222, 638, -1 }, { 23223, 639, -1 }, { 23224, 639, -1 }, { 23225, 639, -1 }, { 23226, 639, -1 }, { 23227, 640, -1 }, { 23228, 640, -1 }, { 23229, 640, -1 }, { 23230, 640, -1 }, { 23231, 641, -1 }, { 23232, 641, -1 }, { 23233, 641, -1 }, { 23234, 641, -1 }, { 23235, 642, -1 }, { 23236, 642, -1 }, { 23237, 642, -1 }, { 23238, 642, -1 }, { 23239, 643, -1 }, { 23240, 643, -1 }, { 23241, 643, -1 }, { 23242, 643, -1 }, { 23288, 0, -1 }, { 23289, 0, -1 }, { 23290, 0, -1 }, { 23291, 0, -1 }, { 23292, 0, -1 }, { 23293, 0, -1 }, { 23294, 0, -1 }, { 23295, 0, -1 }, { 23296, 0, -1 }, { 23297, 0, -1 }, { 23298, 0, -1 }, { 23299, 0, -1 }, { 23300, 0, -1 }, { 23301, 0, -1 }, { 23302, 0, -1 }, { 23308, 0, -1 }, { 23309, 0, -1 }, { 23313, 0, -1 }, { 23314, 0, -1 }, { 23319, 0, -1 }, { 23323, 0, -1 }, { 23328, 0, -1 }, { 23330, 0, -1 }, { 23331, 0, -1 }, { 23333, 0, -1 }, { 23334, 0, -1 }, { 23306, 0, -1 }, { 23307, 0, -1 }, { 23310, 0, -1 }, { 23311, 0, -1 }, { 23312, 0, -1 }, { 23315, 0, -1 }, { 23316, 0, -1 }, { 23317, 0, -1 }, { 23318, 0, -1 }, { 23320, 0, -1 }, { 23321, 0, -1 }, { 23322, 0, -1 }, { 23324, 0, -1 }, { 23325, 0, -1 }, { 23326, 0, -1 }, { 23327, 0, -1 }, { 23329, 0, -1 }, { 23332, 0, -1 }, { 23335, 0, -1 }, { 23336, 0, -1 }, { 23337, 0, -1 }, { 23338, 0, -1 }, { 23339, 0, -1 }, { 23340, 0, -1 }, { 23342, 0, -1 }, { 23344, 0, -1 }, { 23341, 0, -1 }, { 23343, 0, -1 }, { 23345, 0, -1 }, { 23346, 0, -1 }, { 23347, 0, -1 }, { 23348, 0, -1 }, { 23356, -1, 9 }, { 23357, -1, 0 }, { 23358, -1, 0 }, { 23359, -1, 0 }, { 23360, -1, 0 }, { 23361, -1, 0 }, { 23362, -1, 0 }, { 23363, -1, 0 }, { 23364, -1, 0 }, { 23365, -1, 0 }, { 23366, -1, 0 }, { 23367, -1, 0 }, { 23368, -1, 0 }, { 23369, -1, 0 }, { 23370, -1, 0 }, { 23371, -1, 0 }, { 23372, -1, 9 }, { 23373, -1, 0 }, { 23374, -1, 0 }, { 23375, -1, 0 }, { 23376, -1, 0 }, { 23377, -1, 9 }, { 23378, -1, 9 }, { 23379, -1, 9 }, { 23380, -1, 0 }, { 23381, -1, 0 }, { 23382, -1, 0 }, { 23383, -1, 0 }, { 23384, -1, 0 }, { 23385, -1, 0 }, { 23386, -1, 0 }, { 23387, -1, 0 }, { 23388, -1, 0 }, { 23389, -1, 0 }, { 23390, -1, 0 }, { 23392, 0, -1 }, { 23399, 0, -1 }, { 23391, 0, -1 }, { 23393, 0, -1 }, { 23394, 0, -1 }, { 23395, 0, -1 }, { 23396, 0, -1 }, { 23397, 0, 0 }, { 23398, 0, -1 }, { 23400, 0, -1 }, { 23401, 0, -1 }, { 23402, 9, -1 }, { 23403, 9, -1 }, { 23404, 9, -1 }, { 23405, 9, -1 }, { 23406, 9, 0 }, { 23407, 9, -1 }, { 23408, 9, -1 }, { 23409, 9, -1 }, { 23410, 9, -1 }, { 23411, 9, -1 }, { 23412, 9, -1 }, { 23413, 9, 0 }, { 23414, 9, -1 }, { 23415, 9, -1 }, { 23416, 9, -1 }, { 23417, 9, -1 }, { 23418, 9, -1 }, { 23419, 9, -1 }, { 23420, 9, -1 }, { 23421, 9, -1 }, { 23422, 9, -1 }, { 23423, 9, 0 }, { 23424, 9, -1 }, { 23425, 9, -1 }, { 23426, 9, -1 }, { 23427, 9, -1 }, { 23428, 9, -1 }, { 23429, 9, -1 }, { 23430, 9, -1 }, { 23431, 9, -1 }, { 23432, 9, -1 }, { 23433, 9, -1 }, { 23434, 9, 0 }, { 23435, 9, -1 }, { 23436, 9, -1 }, { 23437, 9, -1 }, { 23438, 9, -1 }, { 23439, 9, -1 }, { 23440, 9, -1 }, { 23441, 9, -1 }, { 23442, 9, -1 }, { 23443, 9, -1 }, { 23444, 9, -1 }, { 23445, 9, 0 }, { 23446, 9, -1 }, { 23447, 9, -1 }, { 23448, 9, -1 }, { 23449, 9, -1 }, { 23450, 9, -1 }, { 23451, 9, -1 }, { 23452, 9, -1 }, { 23453, 9, -1 }, { 23454, 9, -1 }, { 23455, 9, -1 }, { 23456, 9, -1 }, { 23457, 9, -1 }, { 23458, 9, -1 }, { 23459, 9, -1 }, { 23460, 9, -1 }, { 23461, 0, -1 }, { 23462, 0, -1 }, { 23463, 0, -1 }, { 23464, 0, -1 }, { 23465, 0, -1 }, { 23466, 0, -1 }, { 23467, 0, -1 }, { 23468, 0, -1 }, { 23469, 0, -1 }, { 23470, 0, -1 }, { 23471, 0, -1 }, { 23472, 0, -1 }, { 23473, 0, -1 }, { 23474, 0, -1 }, { 23475, 0, -1 }, { 23476, 0, -1 }, { 23477, 0, -1 }, { 23478, 0, -1 }, { 23479, 0, -1 }, { 23480, 0, -1 }, { 23481, 0, -1 }, { 23482, 0, -1 }, { 23483, 0, -1 }, { 23484, 0, -1 }, { 23485, 0, -1 }, { 23486, 0, 0 }, { 23487, 0, -1 }, { 23488, 0, -1 }, { 23489, 0, -1 }, { 23490, 0, -1 }, { 23491, 0, -1 }, { 23492, 0, -1 }, { 23493, 0, -1 }, { 23494, 0, 0 }, { 23495, 0, -1 }, { 23496, 0, -1 }, { 23497, 0, -1 }, { 23498, 0, -1 }, { 23499, 0, -1 }, { 23500, 0, -1 }, { 23501, 0, -1 }, { 23502, 0, 0 }, { 23503, 0, -1 }, { 23504, 0, -1 }, { 23505, 0, -1 }, { 23506, 9, -1 }, { 23507, 9, -1 }, { 23508, 9, -1 }, { 23509, 9, -1 }, { 23510, 9, 0 }, { 23511, 9, -1 }, { 23512, 9, -1 }, { 23513, 9, -1 }, { 23514, 9, -1 }, { 23515, 9, -1 }, { 23516, 9, -1 }, { 23517, 9, 0 }, { 23518, 9, -1 }, { 23519, 9, -1 }, { 23520, 9, -1 }, { 23521, 9, -1 }, { 23522, 9, -1 }, { 23523, 9, -1 }, { 23524, 9, -1 }, { 23525, 9, 0 }, { 23526, 9, -1 }, { 23527, 9, -1 }, { 23532, 0, -1 }, { 23534, 0, -1 }, { 23528, 0, -1 }, { 23529, 0, -1 }, { 23530, 0, -1 }, { 23531, 0, -1 }, { 23533, 0, -1 }, { 23535, 0, -1 }, { 23536, 0, -1 }, { 23537, 0, -1 }, { 23542, 9, -1 }, { 23543, 9, -1 }, { 23552, 9, -1 }, { 23553, 9, -1 }, { 23538, 9, -1 }, { 23539, 9, -1 }, { 23540, 9, -1 }, { 23541, 9, -1 }, { 23544, 9, -1 }, { 23545, 9, -1 }, { 23546, 9, -1 }, { 23547, 9, -1 }, { 23548, 9, -1 }, { 23549, 9, -1 }, { 23550, 9, -1 }, { 23551, 9, -1 }, { 23557, 9, -1 }, { 23559, 9, -1 }, { 23554, 9, -1 }, { 23555, 9, -1 }, { 23556, 9, -1 }, { 23558, 9, -1 }, { 23560, 9, -1 }, { 23561, 9, -1 }, { 23562, 9, -1 }, { 23563, 9, -1 }, { 23564, 9, -1 }, { 23565, 9, -1 }, { 23568, 9, -1 }, { 23566, 9, -1 }, { 23567, 9, -1 }, { 23569, 9, -1 }, { 23570, 9, -1 }, { 23571, 9, -1 }, { 23572, 9, -1 }, { 23573, 9, -1 }, { 23574, 9, -1 }, { 23575, 9, -1 }, { 23576, 9, -1 }, { 23580, 9, -1 }, { 23582, 9, -1 }, { 23577, 9, -1 }, { 23578, 9, -1 }, { 23579, 9, -1 }, { 23581, 9, -1 }, { 23583, 0, -1 }, { 23584, 0, -1 }, { 23585, 0, -1 }, { 23586, 0, -1 }, { 23587, 0, -1 }, { 23588, 0, -1 }, { 23589, 0, -1 }, { 23590, 0, -1 }, { 23591, 0, -1 }, { 23592, 0, -1 }, { 23593, 0, -1 }, { 23594, 0, -1 }, { 23595, 0, -1 }, { 23596, 0, -1 }, { 23597, 0, -1 }, { 23598, 0, -1 }, { 23602, 0, -1 }, { 23604, 0, -1 }, { 23599, 0, -1 }, { 23600, 0, -1 }, { 23601, 0, -1 }, { 23603, 0, -1 }, { 23605, 9, -1 }, { 23606, 9, -1 }, { 23607, 9, -1 }, { 23608, 0, -1 }, { 23609, 0, -1 }, { 23610, 0, -1 }, { 23611, 9, -1 }, { 23612, 9, -1 }, { 23613, 9, -1 }, { 23614, 9, -1 }, { 23615, 9, -1 }, { 23616, 9, -1 }, { 23617, 0, -1 }, { 23618, 0, -1 }, { 23619, 0, -1 }, { 23620, 0, -1 }, { 23621, 0, -1 }, { 23622, 0, -1 }, { 23623, 0, -1 }, { 23624, 0, -1 }, { 23625, 0, -1 }, { 23626, 9, -1 }, { 23627, 9, -1 }, { 23628, 9, -1 }, { 23629, 0, -1 }, { 23630, 0, -1 }, { 23631, 0, -1 }, { 23632, 0, -1 }, { 23633, 0, -1 }, { 23634, 0, -1 }, { 23639, 0, -1 }, { 23640, 0, -1 }, { 23635, 0, -1 }, { 23636, 0, -1 }, { 23637, 0, -1 }, { 23638, 0, -1 }, { 23641, 0, -1 }, { 23642, 0, -1 }, { 23643, 0, -1 }, { 23644, 0, -1 }, { 23645, 0, -1 }, { 23646, 0, -1 }, { 23647, 0, -1 }, { 23648, 0, -1 }, { 23649, 0, -1 }, { 23655, 0, -1 }, { 23650, 0, -1 }, { 23651, 0, -1 }, { 23652, 0, -1 }, { 23653, 0, -1 }, { 23654, 0, -1 }, { 23656, 0, -1 }, { 23657, -1, 0 }, { 23658, -1, 0 }, { 23659, -1, 122 }, { 23660, 0, -1 }, { 23661, 0, -1 }, { 23662, 122, -1 }, { 23663, 122, -1 }, { 23847, -1, 0 }, { 23849, -1, 0 }, { 23881, -1, 0 }, { 23882, -1, 0 }, { 23883, -1, 0 }, { 23884, -1, 0 }, { 24284, -1, 0 }, { 24285, -1, 0 }, { 24288, -1, 0 }, { 24325, -1, 0 }, { 24326, -1, 0 }, { 24327, -1, 0 }, { 24339, -1, 0 }, { 24458, 0, -1 }, { 24459, 0, -1 }, { 24457, 0, -1 }, { 24460, 0, -1 }, { 24461, 0, -1 }, { 24462, 0, -1 }, { 24463, 0, -1 }, { 24464, 0, -1 }, { 24465, 0, -1 }, { 24467, 0, -1 }, { 24466, 0, -1 }, { 24468, 0, -1 }, { 24469, 0, -1 }, { 24470, 0, -1 }, { 24472, 0, -1 }, { 24471, 0, -1 }, { 24473, 0, -1 }, { 24474, 0, -1 }, { 24475, 0, -1 }, { 24477, 0, -1 }, { 24476, 0, -1 }, { 24478, 0, -1 }, { 24479, 0, -1 }, { 24480, 0, -1 }, { 24482, 0, -1 }, { 24481, 0, -1 }, { 24483, 0, -1 }, { 24484, 0, -1 }, { 24485, 0, -1 }, { 24487, 0, -1 }, { 24486, 0, -1 }, { 24488, 0, -1 }, { 24489, 0, -1 }, { 24490, 0, -1 }, { 24492, 0, -1 }, { 24493, 0, -1 }, { 24491, 0, -1 }, { 24647, 0, -1 }, { 24646, 0, -1 }, { 24655, -1, 122 }, { 24656, -1, 122 }, { 24657, -1, 123 }, { 24658, -1, 0 }, { 24660, 122, -1 }, { 24661, 122, -1 }, { 24662, 122, -1 }, { 24663, 122, -1 }, { 24664, 122, -1 }, { 24665, 122, -1 }, { 24666, 123, -1 }, { 24667, 123, -1 }, { 24668, 123, -1 }, { 24864, -1, 0 }, { 25010, -1, 0 }, { 25016, 9, -1 }, { 25017, 9, -1 }, { 25018, 9, -1 }, { 25143, -1, 0 }, { 25230, -1, 0 }, { 25257, -1, 0 }, { 25288, -1, 0 }, { 25340, -1, 0 }, { 25478, 9, -1 }, { 25474, 9, -1 }, { 25475, 9, -1 }, { 25476, 9, -1 }, { 25477, 9, -1 }, { 25479, 9, -1 }, { 25480, -1, 0 }, { 25485, -1, 0 }, { 25486, -1, 0 }, { 25506, -1, 0 }, { 25507, -1, 0 }, { 25514, -1, 0 }, { 25515, -1, 0 }, { 25581, -1, 0 }, { 25582, -1, 0 }, { 25583, -1, 0 }, { 25584, -1, 0 }, { 25585, -1, 0 }, { 25586, 0, -1 }, { 25590, -1, 0 }, { 25591, -1, 0 }, { 25592, 0, -1 }, { 25593, 0, -1 }, { 25598, 0, -1 }, { 25599, 0, -1 }, { 25604, 0, -1 }, { 25605, 0, -1 }, { 25594, 0, -1 }, { 25595, 0, -1 }, { 25596, 0, -1 }, { 25597, 0, -1 }, { 25600, 0, -1 }, { 25601, 0, -1 }, { 25602, 0, -1 }, { 25603, 0, -1 }, { 25606, 0, -1 }, { 25607, 0, -1 }, { 25608, 0, -1 }, { 25609, 0, -1 }, { 25613, 0, -1 }, { 25615, 0, -1 }, { 25610, 0, -1 }, { 25611, 0, -1 }, { 25612, 0, -1 }, { 25614, 0, -1 }, { 25621, 0, -1 }, { 25622, 0, -1 }, { 25623, 0, -1 }, { 25620, 0, -1 }, { 25624, 0, -1 }, { 25625, 0, -1 }, { 25626, 0, -1 }, { 25627, 0, -1 }, { 25628, -1, 0 }, { 25629, -1, 0 }, { 25630, -1, 0 }, { 25631, -1, 0 }, { 25632, -1, 0 }, { 25639, 0, -1 }, { 25637, 0, -1 }, { 25638, 0, -1 }, { 25640, 0, -1 }, { 25641, 0, -1 }, { 25642, 0, -1 }, { 25643, 0, -1 }, { 25644, 0, -1 }, { 25645, 0, -1 }, { 25646, 0, -1 }, { 25647, 0, -1 }, { 25648, 0, -1 }, { 25649, 0, -1 }, { 25650, 0, -1 }, { 25651, 0, -1 }, { 25656, 0, -1 }, { 25657, 0, -1 }, { 25655, 0, -1 }, { 25658, 0, -1 }, { 25659, 0, -1 }, { 25660, 0, -1 }, { 25661, 0, -1 }, { 25672, 0, -1 }, { 25673, 0, -1 }, { 25662, 0, -1 }, { 25663, 0, -1 }, { 25664, 0, -1 }, { 25665, 0, -1 }, { 25666, 0, -1 }, { 25667, 0, -1 }, { 25668, 0, -1 }, { 25669, 0, -1 }, { 25670, 0, -1 }, { 25671, 0, -1 }, { 25674, 0, -1 }, { 25675, 0, -1 }, { 25676, 0, -1 }, { 25677, 0, -1 }, { 25678, 0, -1 }, { 25679, 0, -1 }, { 25680, 0, -1 }, { 25681, 0, -1 }, { 25682, 0, -1 }, { 25683, 0, -1 }, { 25684, 0, -1 }, { 25685, 0, -1 }, { 25686, 0, -1 }, { 25687, 0, -1 }, { 25688, 0, -1 }, { 25692, 0, -1 }, { 25693, 0, -1 }, { 25689, 0, -1 }, { 25690, 0, -1 }, { 25691, 0, -1 }, { 25694, 0, -1 }, { 25752, -1, 0 }, { 25834, -1, 0 }, { 25836, -1, 0 }, { 25837, -1, 0 }, { 25838, -1, 0 }, { 25839, -1, 0 }, { 25840, -1, 0 }, { 25841, -1, 0 }, { 25843, -1, 0 }, { 25844, -1, 0 }, { 25845, -1, 0 }, { 25848, -1, 0 }, { 25849, -1, 0 }, { 25913, -1, 0 }, { 25915, -1, 0 }, { 25916, -1, 0 }, { 25918, -1, 0 }, { 25919, -1, 0 }, { 25920, -1, 0 }, { 25921, -1, 0 }, { 25922, -1, 0 }, { 25923, -1, 0 }, { 25924, -1, 0 }, { 25925, -1, 0 }, { 25938, -1, 0 }, { 26389, -1, 0 }, { 26390, -1, 0 }, { 26392, -1, 0 }, { 26394, -1, 0 }, { 26395, -1, 0 }, { 26396, -1, 0 }, { 26417, -1, 0 }, { 26461, -1, 0 }, { 26463, -1, 0 }, { 26464, -1, 0 }, { 26467, -1, 0 }, { 26661, -1, 0 }, { 26662, -1, 0 }, { 26663, -1, 0 }, { 26664, -1, 0 }, { 26665, -1, 0 }, { 26666, -1, 0 }, { 26667, -1, 0 }, { 26685, -1, 0 }, { 26960, -1, 0 }, { 27152, -1, 0 }, { 27162, 0, -1 }, { 27163, 0, -1 }, { 27164, 0, -1 }, { 27165, 0, -1 }, { 27166, 0, -1 }, { 27167, 0, -1 }, { 27168, 0, -1 }, { 27169, 9, -1 }, { 27170, 9, -1 }, { 27171, 9, -1 }, { 27172, 122, -1 }, { 27173, 122, -1 }, { 27174, 122, -1 }, { 27175, 123, -1 }, { 27176, 123, -1 }, { 27177, 123, -1 }, { 27178, 0, -1 }, { 27179, 0, -1 }, { 27180, 0, -1 }, { 27223, 0, -1 }, { 27224, 0, -1 }, { 27225, 0, -1 }, { 27226, 0, -1 }, { 27227, 0, -1 }, { 27228, 0, -1 }, { 27229, 0, -1 }, { 27230, 0, -1 }, { 27231, 0, -1 }, { 27232, 0, -1 }, { 27233, 0, -1 }, { 27234, 9, -1 }, { 27235, 9, -1 }, { 27236, 9, -1 }, { 27237, 9, -1 }, { 27238, 9, -1 }, { 27239, 9, -1 }, { 27240, 9, -1 }, { 27241, 122, -1 }, { 27242, 122, -1 }, { 27243, 122, -1 }, { 27244, 122, -1 }, { 27245, 122, -1 }, { 27246, 122, -1 }, { 27247, 122, -1 }, { 27248, 123, -1 }, { 27249, 123, -1 }, { 27250, 123, -1 }, { 27251, 123, -1 }, { 27252, 123, -1 }, { 27253, 123, -1 }, { 27254, 123, -1 }, { 27559, -1, 0 }, { 27621, 0, -1 }, { 27622, 0, -1 }, { 27654, 0, -1 }, { 27655, 0, -1 }, { 27656, 0, -1 }, { 27657, 0, -1 }, { 27658, 0, -1 }, { 27659, 0, -1 }, { 27660, 0, -1 }, { 27661, 0, -1 }, { 27662, 0, -1 }, { 27663, 0, -1 }, { 27664, 0, -1 }, { 27665, 0, -1 }, { 27666, 0, -1 }, { 27671, -1, 0 }, { 28055, 9, -1 }, { 28056, 9, -1 }, { 28057, 9, -1 }, { 28058, 9, -1 }, { 28064, 9, -1 }, { 28067, 9, -1 }, { 28068, 9, -1 }, { 28069, 9, -1 }, { 28074, 9, -1 }, { 28075, 9, -1 }, { 28059, 9, -1 }, { 28060, 9, -1 }, { 28061, 9, -1 }, { 28062, 9, -1 }, { 28063, 9, -1 }, { 28065, 9, -1 }, { 28066, 9, -1 }, { 28070, 9, -1 }, { 28071, 9, -1 }, { 28072, 9, -1 }, { 28073, 9, -1 }, { 28076, 9, -1 }, { 28077, 9, -1 }, { 28078, 9, -1 }, { 28095, -1, 0 }, { 28783, -1, 0 }, { 28973, -1, 9 }, { 28978, 0, -1 }, { 28979, 0, -1 }, { 28980, 0, -1 }, { 28981, 0, -1 }, { 28982, 9, -1 }, { 28983, 9, -1 }, { 28984, 9, -1 }, { 28985, 9, -1 }, { 28988, 9, -1 }, { 28989, 9, -1 }, { 28986, 9, -1 }, { 28987, 9, -1 }, { 28990, 9, -1 }, { 28991, 9, -1 }, { 29581, 0, -1 }, { 29582, 0, -1 }, { 29939, 9, -1 }, { 29940, 9, -1 }, { 29941, 9, -1 }, { 29942, 9, -1 }, { 29943, -1, 0 }, { 29944, -1, 0 }, { 29947, -1, 0 }, { 29949, -1, 0 }, { 29971, -1, 0 }, { 29973, -1, 0 }, { 29974, -1, 0 }, { 29975, -1, 0 }, { 29976, -1, 0 }, { 29977, -1, 0 }, { 29982, 0, -1 }, { 29983, 0, -1 }, { 29984, 0, -1 }, { 30028, 9, -1 }, { 30031, 9, -1 }, { 30032, 9, -1 }, { 30033, 9, -1 }, { 30038, 9, -1 }, { 30039, 9, -1 }, { 30044, 9, -1 }, { 30045, 9, -1 }, { 30048, 9, -1 }, { 30050, 9, -1 }, { 30052, 9, -1 }, { 30053, 9, -1 }, { 30054, 9, -1 }, { 30026, 9, -1 }, { 30027, 9, -1 }, { 30029, 9, -1 }, { 30030, 9, -1 }, { 30034, 9, -1 }, { 30035, 9, -1 }, { 30036, 9, -1 }, { 30037, 9, -1 }, { 30040, 9, -1 }, { 30041, 9, -1 }, { 30042, 9, -1 }, { 30043, 9, -1 }, { 30046, 9, -1 }, { 30047, 9, -1 }, { 30049, 9, -1 }, { 30051, 9, -1 }, { 30056, 123, -1 }, { 30057, 123, -1 }, { 30058, 123, -1 }, { 30059, 123, -1 }, { 30055, 123, -1 }, { 30060, 123, -1 }, { 30061, 123, -1 }, { 30062, 9, -1 }, { 30063, 9, -1 }, { 30064, 9, -1 }, { 30065, 0, -1 }, { 30066, 0, -1 }, { 30068, 0, -1 }, { 30067, 0, -1 }, { 30069, 0, -1 }, { 30070, 0, -1 }, { 30144, -1, 0 }, { 30145, -1, 0 }, { 30146, -1, 0 }, { 30147, -1, 0 }, { 30148, -1, 0 }, { 30149, -1, 0 }, { 30155, 0, -1 }, { 30156, 0, -1 }, { 30157, 0, -1 }, { 30158, 0, -1 }, { 30159, 0, -1 }, { 30160, 0, -1 }, { 30161, 0, -1 }, { 30162, 0, -1 }, { 30163, 0, -1 }, { 30164, 0, -1 }, { 30165, 0, -1 }, { 30166, 0, -1 }, { 30167, 0, -1 }, { 30168, 0, -1 }, { 30172, 9, -1 }, { 30173, 9, -1 }, { 30174, 9, -1 }, { 30175, 9, -1 }, { 30188, -1, 0 }, { 30189, -1, 0 }, { 30190, -1, 0 }, { 30192, -1, 0 }, { 30193, -1, 0 }, { 30194, -1, 0 }, { 30195, -1, 0 }, { 30196, -1, 0 }, { 30245, -1, 0 }, { 30246, -1, 0 }, { 30247, -1, 0 }, { 30295, 9, -1 }, { 30296, 9, -1 }, { 30297, 9, -1 }, { 30375, 0, -1 }, { 30376, 0, -1 }, { 30428, 9, -1 }, { 30429, 9, -1 }, { 30434, 9, -1 }, { 30436, 9, -1 }, { 30430, 9, -1 }, { 30431, 9, -1 }, { 30432, 9, -1 }, { 30433, 9, -1 }, { 30435, 9, -1 }, { 30729, -1, 0 }, { 30738, -1, 0 }, { 30739, -1, 0 }, { 30740, -1, 0 }, { 30748, 0, -1 }, { 30749, 0, -1 }, { 30750, 0, -1 }, { 30751, 0, -1 }, { 30878, 0, -1 }, { 30879, 0, -1 }, { 30880, 0, -1 }, { 30881, 0, -1 }, { 30882, 0, -1 }, { 30883, 0, -1 }, { 30884, 0, -1 }, { 31017, -1, 0 }, { 31280, -1, 9 }, { 31284, -1, 0 }, { 31285, -1, 0 }, { 31286, -1, 0 }, { 31287, -1, 9 }, { 31288, -1, 9 }, { 31294, 9, -1 }, { 31295, 9, -1 }, { 31300, 0, -1 }, { 31299, 0, -1 }, { 31301, 0, -1 }, { 31302, 0, -1 }, { 31303, 0, -1 }, { 31304, 0, 0 }, { 31305, 0, -1 }, { 31306, 0, -1 }, { 31307, 0, -1 }, { 31308, 0, -1 }, { 31309, 0, -1 }, { 31310, 9, -1 }, { 31311, 9, -1 }, { 31312, 9, -1 }, { 31326, 123, -1 }, { 31327, 123, -1 }, { 31328, 123, -1 }, { 31329, 123, -1 }, { 31330, 123, -1 }, { 31332, 123, -1 }, { 31333, 123, -1 }, { 31348, 123, -1 }, { 31349, 123, -1 }, { 31350, 123, -1 }, { 31351, 123, -1 }, { 31354, 123, -1 }, { 31355, 123, -1 }, { 31356, 123, -1 }, { 31321, 123, -1 }, { 31322, 123, -1 }, { 31323, 123, -1 }, { 31324, 123, -1 }, { 31325, 123, -1 }, { 31331, 123, -1 }, { 31334, 123, -1 }, { 31335, 123, -1 }, { 31336, 123, -1 }, { 31337, 123, -1 }, { 31338, 123, -1 }, { 31339, 123, -1 }, { 31340, 123, -1 }, { 31341, 123, -1 }, { 31342, 123, -1 }, { 31343, 123, -1 }, { 31344, 123, -1 }, { 31345, 123, -1 }, { 31346, 123, -1 }, { 31347, 123, -1 }, { 31352, 123, -1 }, { 31353, 123, -1 }, { 31357, 123, -1 }, { 31358, 123, -1 }, { 31359, 123, -1 }, { 31360, 123, -1 }, { 31361, 123, -1 }, { 31362, 0, -1 }, { 31363, 0, -1 }, { 31364, 0, -1 }, { 31365, 0, -1 }, { 31366, 9, -1 }, { 31367, 9, -1 }, { 31368, 9, -1 }, { 31369, 9, -1 }, { 31370, 9, -1 }, { 31371, 9, -1 }, { 31372, 9, -1 }, { 31379, -1, 0 }, { 31380, -1, 9 }, { 31381, -1, 9 }, { 31382, -1, 9 }, { 31386, 9, -1 }, { 31392, 9, -1 }, { 31393, 9, -1 }, { 31394, 9, -1 }, { 31383, 9, -1 }, { 31384, 9, -1 }, { 31385, 9, -1 }, { 31387, 9, -1 }, { 31388, 9, -1 }, { 31389, 9, -1 }, { 31390, 9, -1 }, { 31391, 9, -1 }, { 31395, 9, -1 }, { 31396, 9, -1 }, { 31397, 9, -1 }, { 31398, 9, -1 }, { 31401, 9, -1 }, { 31402, 9, -1 }, { 31399, 9, -1 }, { 31400, 9, -1 }, { 31403, 9, -1 }, { 31404, 9, -1 }, { 31514, -1, 0 }, { 31625, 0, -1 }, { 31626, 0, -1 }, { 31627, 0, -1 }, { 31628, 0, -1 }, { 31629, 0, -1 }, { 31631, 0, -1 }, { 31630, 0, -1 }, { 31632, 0, -1 }, { 31633, 0, -1 }, { 31635, 0, -1 }, { 31634, 0, -1 }, { 31636, 0, -1 }, { 31637, 0, -1 }, { 31638, 0, -1 }, { 31639, 0, -1 }, { 31640, 0, -1 }, { 31641, 0, -1 }, { 31642, 0, -1 }, { 31643, 0, -1 }, { 31644, 0, -1 }, { 31645, 0, -1 }, { 31646, 9, -1 }, { 31647, 9, -1 }, { 31649, 9, -1 }, { 31648, 9, -1 }, { 31650, 9, -1 }, { 31651, 9, -1 }, { 31652, 9, -1 }, { 31653, 9, -1 }, { 31654, 9, -1 }, { 31656, 9, -1 }, { 31655, 9, -1 }, { 31657, 9, -1 }, { 31658, 9, -1 }, { 31659, 9, -1 }, { 31660, 9, -1 }, { 31662, 9, -1 }, { 31661, 9, -1 }, { 31664, 9, -1 }, { 31663, 9, -1 }, { 31665, 9, -1 }, { 31666, 0, -1 }, { 31667, 0, -1 }, { 31669, 0, -1 }, { 31668, 0, -1 }, { 31670, 0, -1 }, { 31671, 9, -1 }, { 31672, 9, -1 }, { 31673, 0, -1 }, { 31674, 9, -1 }, { 31675, 9, -1 }, { 31676, 0, -1 }, { 31677, 0, -1 }, { 32055, -1, 0 }, { 32066, -1, 0 }, { 32067, -1, 0 }, { 32223, 0, -1 }, { 32224, 0, -1 }, { 32681, -1, 0 }, { 33556, -1, 0 }, { 33557, -1, 0 }, { 33628, -1, 0 }, { 33664, -1, 0 }, { 33665, -1, 0 }, { 33666, -1, 0 }, { 33667, -1, 0 }, { 33668, -1, 0 }, { 33669, -1, 0 }, { 33672, 0, -1 }, { 33673, 0, -1 }, { 33674, 0, -1 }, { 33675, 0, -1 }, { 34048, -1, 0 }, { 34710, -1, 0 }, { 35034, -1, 0 }, { 35103, 0, -1 }, { 35104, 0, -1 }, { 35108, 0, -1 }, { 35109, 0, -1 }, { 35094, 0, -1 }, { 35095, 0, -1 }, { 35096, 0, -1 }, { 35097, 0, -1 }, { 35098, 0, -1 }, { 35099, 0, -1 }, { 35100, 0, -1 }, { 35101, 0, -1 }, { 35102, 0, -1 }, { 35105, 0, -1 }, { 35106, 0, -1 }, { 35107, 0, -1 }, { 35110, 0, -1 }, { 35111, 0, -1 }, { 35112, 0, -1 }, { 35113, 0, -1 }, { 35114, 0, -1 }, { 35115, 0, -1 }, { 35117, 0, -1 }, { 35118, 0, -1 }, { 35119, 0, -1 }, { 35120, 0, -1 }, { 35116, 0, -1 }, { 35121, 0, -1 }, { 35122, 0, -1 }, { 35411, -1, 0 }, { 35412, -1, 0 }, { 35535, -1, 0 }, { 35537, -1, 0 }, { 35538, -1, 9 }, { 36357, -1, 0 }, { 36536, -1, 0 }, { 36559, -1, 0 }, { 38048, -1, 0 }, { 38049, -1, 0 }, { 38050, -1, 0 }, { 39022, -1, 0 }, { 39142, -1, 0 }, { 41442, 0, -1 }, { 41443, 0, -1 }, { 41444, 0, -1 }, { 41445, 0, -1 }, { 41446, 0, -1 }, { 41447, 0, -1 }, { 41448, 0, -1 }, { 41449, 0, -1 }, { 41450, 0, -1 }, { 41451, 0, -1 }, { 41452, 0, -1 }, { 41453, 0, -1 }, { 41454, 0, -1 }, { 41455, 0, -1 }, { 41456, 0, -1 }, { 41457, 0, -1 }, { 41458, 0, -1 }, { 41583, 0, -1 }, { 41584, 0, -1 }, { 41585, 0, -1 }, { 41586, 0, -1 }, { 41587, 0, -1 }, { 41588, 0, -1 }, { 41589, 0, -1 }, { 41590, 0, -1 }, { 41591, 0, -1 }, { 41592, 0, -1 }, { 41593, 0, -1 }, { 41594, 0, -1 }, { 41595, 0, -1 }, { 41596, 0, -1 }, { 41597, 0, -1 }, { 41598, 0, -1 }, { 41599, 0, -1 }, { 41600, 0, -1 }, { 41601, 0, -1 }, { 41602, 0, -1 }, { 41621, -1, 0 }, { 41622, -1, 9 }, { 41623, -1, 122 }, { 41624, -1, 123 }, { 41629, -1, 0 }, { 41630, -1, 0 }, { 41632, -1, 0 }, { 41633, -1, 0 }, { 41634, -1, 0 }, { 41636, -1, 0 }, { 41645, -1, 0 }, { 41651, -1, 0 }, { 41652, -1, 0 }, { 41653, -1, 0 }, { 41654, -1, 0 }, { 41655, -1, 0 }, { 41660, -1, 0 }, { 41661, 0, -1 }, { 41662, 0, -1 }, { 41800, 0, -1 }, { 41801, 0, -1 }, { 41802, 0, -1 }, { 41803, 0, -1 }, { 41804, 0, -1 }, { 41805, 0, -1 }, { 41806, 0, -1 }, { 41807, 0, -1 }, { 41808, 0, -1 }, { 41809, 0, -1 }, { 41810, 0, -1 }, { 41793, 0, -1 }, { 41794, 0, -1 }, { 41795, 0, -1 }, { 41796, 0, -1 }, { 41797, 0, -1 }, { 41798, 0, -1 }, { 41799, 0, -1 }, { 41811, 0, -1 }, { 41812, 0, -1 }, { 41813, 0, -1 }, { 41814, 0, -1 }, { 41815, 0, -1 }, { 41816, 0, -1 }, { 41817, 0, -1 }, { 41818, 0, -1 }, { 41819, 0, -1 }, { 41820, 0, -1 }, { 41821, 0, -1 }, { 41927, 0, -1 }, { 41928, 0, -1 }, { 41929, 0, -1 }, { 41930, 0, -1 }, { 41932, 0, -1 }, { 41931, 0, -1 }, { 41933, 0, -1 }, { 41934, 0, -1 }, { 41935, 0, -1 }, { 41936, 0, -1 }, { 41937, 0, -1 }, { 41949, 0, -1 }, { 41950, 0, -1 }, { 41946, 0, -1 }, { 41947, 0, -1 }, { 41948, 0, -1 }, { 41951, 0, -1 }, { 41952, 0, -1 }, { 41953, 0, -1 }, { 42080, 0, -1 }, { 42123, 9, -1 }, { 42124, 9, -1 }, { 42125, 9, -1 }, { 42126, 9, -1 }, { 42127, 9, -1 }, { 42128, 9, -1 }, { 42129, 9, -1 }, { 42130, 9, -1 }, { 42131, 9, -1 }, { 42132, 9, -1 }, { 42133, 9, -1 }, { 42134, 9, -1 }, { 42135, 9, -1 }, { 42136, 9, -1 }, { 42137, 9, -1 }, { 42138, 9, -1 }, { 42139, 9, -1 }, { 42140, 9, -1 }, { 42141, 9, -1 }, { 42142, 9, -1 }, { 42143, 9, -1 }, { 42144, 9, -1 }, { 42145, 9, -1 }, { 42146, 9, -1 }, { 42147, 9, -1 }, { 42148, 9, -1 }, { 42149, 9, -1 }, { 42150, 9, -1 }, { 42151, 9, -1 }, { 42152, 9, -1 }, { 42153, 9, -1 }, { 42157, 9, -1 }, { 42159, 9, -1 }, { 42154, 9, -1 }, { 42155, 9, -1 }, { 42156, 9, -1 }, { 42158, 9, -1 }, { 42163, 9, -1 }, { 42165, 9, -1 }, { 42160, 9, -1 }, { 42161, 9, -1 }, { 42162, 9, -1 }, { 42164, 9, -1 }, { 42169, 9, -1 }, { 42171, 9, -1 }, { 42166, 9, -1 }, { 42167, 9, -1 }, { 42168, 9, -1 }, { 42170, 9, -1 }, { 42175, 9, -1 }, { 42177, 9, -1 }, { 42172, 9, -1 }, { 42173, 9, -1 }, { 42174, 9, -1 }, { 42176, 9, -1 }, { 42181, 9, -1 }, { 42183, 9, -1 }, { 42178, 9, -1 }, { 42179, 9, -1 }, { 42180, 9, -1 }, { 42182, 9, -1 }, { 42187, 9, -1 }, { 42189, 9, -1 }, { 42184, 9, -1 }, { 42185, 9, -1 }, { 42186, 9, -1 }, { 42188, 9, -1 }, { 42256, -1, 0 }, { 42393, 0, -1 }, { 42394, 0, -1 }, { 42395, 0, -1 }, { 42396, 0, -1 }, { 42401, -1, 0 }, { 42409, 0, -1 }, { 42410, 0, -1 }, { 42411, 0, -1 }, { 42412, 0, -1 }, { 42413, 0, -1 }, { 42414, 0, -1 }, { 42415, 0, -1 }, { 42416, 0, -1 }, { 42417, 0, -1 }, { 42418, 0, -1 }, { 42422, 0, -1 }, { 42424, 0, -1 }, { 42419, 0, -1 }, { 42420, 0, -1 }, { 42421, 0, -1 }, { 42423, 0, -1 }, { 42627, -1, 0 }, { 42628, -1, 9 }, { 42629, -1, 122 }, { 42630, -1, 123 }, { 42631, -1, 124 }, { 42632, -1, 125 }, { 42633, -1, 126 }, { 42634, -1, 127 }, { 42657, 9, -1 }, { 42662, 9, -1 }, { 42663, 9, -1 }, { 42655, 9, -1 }, { 42656, 9, -1 }, { 42658, 9, -1 }, { 42659, 9, -1 }, { 42660, 9, -1 }, { 42661, 9, -1 }, { 42664, 9, -1 }, { 42665, 9, -1 }, { 42666, 9, -1 }, { 42667, 9, -1 }, { 42668, 9, -1 }, { 42669, 9, -1 }, { 42670, 9, -1 }, { 42671, 9, -1 }, { 42672, 9, -1 }, { 42677, 9, -1 }, { 42679, 9, -1 }, { 42673, 9, -1 }, { 42674, 9, -1 }, { 42675, 9, -1 }, { 42676, 9, -1 }, { 42678, 9, -1 }, { 42680, 9, -1 }, { 42681, 9, -1 }, { 42682, 9, -1 }, { 42683, 9, -1 }, { 42723, 0, -1 }, { 42724, 0, -1 }, { 42722, 0, -1 }, { 42725, 0, -1 }, { 42726, 0, -1 }, { 42727, 0, -1 }, { 42728, 0, -1 }, { 42729, 0, -1 }, { 42730, 0, -1 }, { 42731, 0, -1 }, { 42732, 0, -1 }, { 42733, -1, 0 }, { 43267, -1, 0 }, { 43268, 0, -1 }, { 43269, 0, -1 }, { 43270, 0, -1 }, { 43518, 0, -1 }, { 43870, -1, 0 }, { 43871, 0, -1 }, { 43872, 0, -1 }, { 43873, 0, -1 }, { 43878, -1, 0 }, { 43879, -1, 0 }, { 43880, 0, -1 }, { 43881, 0, -1 }, { 43882, 0, -1 }, { 43883, 0, -1 }, { 43884, 0, -1 }, { 43885, 0, -1 }, { 43886, 0, -1 }, { 43887, 0, -1 }, { 44872, -1, 0 }, { 44873, -1, 0 }, { 45120, -1, 0 }, { 244, 2005, -1 }, { 186, -1, 2006 }, { 187, -1, 2007 }, { 193, -1, 2008 }, { 186, -1, 2009 }, { 192, -1, 2010 }, { 190, -1, 2011 }, { 191, -1, 2012 }, { 193, -1, 2013 }, { 190, -1, 2014 }, { 192, -1, 2015 }, { 199, -1, 2017 }, { 199, -1, 2018 }, { 199, -1, 2019 }, { 199, -1, 2020 }, { 199, -1, 2021 }, { 199, -1, 2022 }, { 199, -1, 2023 }, { 199, -1, 2024 }, { 199, -1, 2025 }, { 199, -1, 2026 }, { 199, -1, 2027 }, { 199, -1, 2028 }, { 199, -1, 2029 }, { 3774, 2016, -1 }, { 207, -1, 2016 }, { 203, -1, 2030 }, { 3774, 2031, -1 }, { 207, -1, 2031 }, { 204, -1, 2031 }, { 196, -1, 2032 }, { 196, -1, 2033 }, { 206, -1, 2034 }, { 2506, 2035, -1 }, { 208, -1, 2036 }, { 2506, 2037, -1 }, { 209, -1, 2037 }, { 2506, 2038, -1 }, { 208, -1, 2039 }, { 197, -1, 2039 }, { 2506, 2040, -1 }, { 209, -1, 2040 }, { 198, -1, 2040 }, { 208, -1, 2042 }, { 209, -1, 2043 }, { 208, -1, 2045 }, { 201, -1, 2045 }, { 209, -1, 2046 }, { 202, -1, 2046 }, { 1556, 2047, -1 }, { 209, -1, 2047 }, { 1556, 2048, -1 }, { 209, -1, 2048 }, { 205, -1, 2048 }, { 241, -1, 2050 }, { 242, -1, 2050 }, { 1564, 2051, -1 }, { 1484, 2052, -1 }, { 1560, 2053, -1 }, { 219, -1, 2054 }, { 219, -1, 2055 }, { 219, -1, 2056 }, { 1564, 2057, -1 }, { 223, -1, 2058 }, { 223, -1, 2059 }, { 223, -1, 2060 }, { 1564, 2061, -1 }, { 227, -1, 2062 }, { 227, -1, 2063 }, { 227, -1, 2064 }, { 3774, 2065, -1 }, { 230, -1, 2066 }, { 230, -1, 2067 }, { 3892, 2068, -1 }, { 3896, 2068, -1 }, { 232, -1, 2069 }, { 233, -1, 2070 }, { 3892, 2071, -1 }, { 3894, 2071, -1 }, { 1564, 2072, -1 }, { 212, -1, 2072 }, { 1564, 2074, -1 }, { 4097, 2075, -1 }, { 1564, 2076, -1 }, { 1564, 2077, -1 }, { 87, -1, 2078 }, { 247, 2078, -1 }, { 483, 2080, -1 }, { 212, -1, 2081 }, { 1640, 2083, -1 }, { 1623, 2082, -1 }, { 230, -1, 2082 }, { 1638, 2082, -1 }, { 3269, 2084, -1 }, { 3281, 2085, -1 }, { 3294, 2086, -1 }, { 3775, 2090, -1 }, { 3790, 2090, -1 }, { 3776, 2090, -1 }, { 2506, 2091, -1 }, { 3778, 2091, -1 }, { 480, 2093, -1 }, { 2506, 2093, -1 }, { 3778, 2092, -1 }, { 3778, 2094, -1 }, { 3979, 2099, -1 }, { 3980, 2099, -1 }, { 3981, 2099, -1 }, { 3866, 2101, -1 }, { 3798, 2101, -1 }, { 3812, 2101, -1 }, { 3854, 2101, -1 }, { 3886, 2105, -1 }, { 3798, 2105, -1 }, { 3813, 2105, -1 }, { 3874, 2105, -1 }, { 3794, 2096, -1 }, { 3819, 2096, -1 }, { 3892, 2095, -1 }, { 3796, 2096, -1 }, { 3980, 2096, -1 }, { 3981, 2096, -1 }, { 3807, 2096, -1 }, { 3852, 2096, -1 }, { 3872, 2096, -1 }, { 3818, 2096, -1 }, { 3820, 2096, -1 }, { 3892, 2097, -1 }, { 3894, 2097, -1 }, { 3824, 2096, -1 }, { 3798, 2096, -1 }, { 3979, 2096, -1 }, { 3843, 2096, -1 }, { 3814, 2096, -1 }, { 3822, 2096, -1 }, { 3823, 2096, -1 }, { 3799, 2096, -1 }, { 3802, 2096, -1 }, { 3838, 2096, -1 }, { 2955, -1, 2097 }, { 3806, 2096, -1 }, { 3812, 2096, -1 }, { 3893, 2109, -1 }, { 3917, 2109, -1 }, { 3894, 2109, -1 }, { 3895, 2109, -1 }, { 2526, 2110, -1 }, { 3899, 2110, -1 }, { 480, 2112, -1 }, { 2526, 2112, -1 }, { 3899, 2111, -1 }, { 3899, 2113, -1 }, { 7994, -1, 2114 }, { 3899, 2114, -1 }, { 3926, 2115, -1 }, { 7994, -1, 2115 }, { 3926, 2116, -1 }, { 7994, -1, 2116 }, { 7995, -1, 2117 }, { 3899, 2117, -1 }, { 3980, 2131, -1 }, { 3981, 2131, -1 }, { 4042, 2133, -1 }, { 4043, 2133, -1 }, { 3999, 2132, -1 }, { 241, -1, 2132 }, { 3994, 2132, -1 }, { 2955, -1, 2132 }, { 3995, 2132, -1 }, { 4012, 2132, -1 }, { 3988, 2132, -1 }, { 4024, 2132, -1 }, { 4097, 2132, -1 }, { 227, -1, 2132 }, { 4003, 2132, -1 }, { 3892, 2132, -1 }, { 3894, 2132, -1 }, { 3996, 2132, -1 }, { 4006, 2132, -1 }, { 4011, 2132, -1 }, { 3987, 2132, -1 }, { 1564, 2132, -1 }, { 4015, 2132, -1 }, { 1484, 2132, -1 }, { 4039, 2132, -1 }, { 230, -1, 2132 }, { 4020, 2132, -1 }, { 4022, 2132, -1 }, { 4028, 2132, -1 }, { 4025, 2132, -1 }, { 4031, 2132, -1 }, { 4034, 2132, -1 }, { 190, -1, 2132 }, { 195, -1, 2132 }, { 3983, 2134, -1 }, { 4067, 2134, -1 }, { 4065, 2134, -1 }, { 4064, 2134, -1 }, { 4066, 2134, -1 }, { 4051, 2134, -1 }, { 2955, -1, 2134 }, { 4054, 2134, -1 }, { 4055, 2134, -1 }, { 4082, 2134, -1 }, { 4058, 2134, -1 }, { 4060, 2134, -1 }, { 4061, 2134, -1 }, { 4062, 2134, -1 }, { 4085, 2137, -1 }, { 4050, 2135, -1 }, { 3892, 2136, -1 }, { 3805, 2137, -1 }, { 4052, 2135, -1 }, { 4090, 2137, -1 }, { 3812, 2137, -1 }, { 4064, 2135, -1 }, { 3811, 2137, -1 }, { 4094, 2137, -1 }, { 4065, 2135, -1 }, { 4096, 2137, -1 }, { 4066, 2135, -1 }, { 3806, 2137, -1 }, { 4067, 2135, -1 }, { 3807, 2137, -1 }, { 4095, 2137, -1 }, { 4087, 2137, -1 }, { 3793, 2137, -1 }, { 3824, 2137, -1 }, { 4098, 2138, -1 }, { 4122, 2138, -1 }, { 4100, 2138, -1 }, { 4103, 2138, -1 }, { 3980, 2143, -1 }, { 3981, 2143, -1 }, { 4166, 2143, -1 }, { 4198, -1, 2145 }, { 4198, -1, 2146 }, { 4172, 2139, -1 }, { 4185, 2139, -1 }, { 4129, 2139, -1 }, { 4130, 2139, -1 }, { 4149, 2139, -1 }, { 4131, 2139, -1 }, { 4165, 2139, -1 }, { 4135, 2139, -1 }, { 4140, 2139, -1 }, { 3980, 2139, -1 }, { 3981, 2139, -1 }, { 3979, 2139, -1 }, { 4215, 2155, -1 }, { 3980, 2155, -1 }, { 3981, 2155, -1 }, { 4258, 2155, -1 }, { 4409, -1, 2159 }, { 3979, 2157, -1 }, { 4245, 2149, -1 }, { 3892, 2150, -1 }, { 4203, 2149, -1 }, { 3980, 2149, -1 }, { 3981, 2149, -1 }, { 4216, 2149, -1 }, { 4251, 2149, -1 }, { 4255, 2149, -1 }, { 4208, 2149, -1 }, { 4207, 2149, -1 }, { 4244, 2149, -1 }, { 3892, 2151, -1 }, { 3894, 2151, -1 }, { 4410, -1, 2160 }, { 4409, -1, 2160 }, { 4246, 2149, -1 }, { 4248, 2149, -1 }, { 4212, 2149, -1 }, { 3979, 2149, -1 }, { 4264, 2149, -1 }, { 4256, 2149, -1 }, { 4243, 2149, -1 }, { 4204, 2149, -1 }, { 4206, 2149, -1 }, { 4249, 2149, -1 }, { 4250, 2149, -1 }, { 4215, 2149, -1 }, { 4205, 2149, -1 }, { 4257, 2149, -1 }, { 4218, 2149, -1 }, { 4213, 2149, -1 }, { 4214, 2149, -1 }, { 4247, 2149, -1 }, { 3983, 2150, -1 }, { 3999, 2150, -1 }, { 4097, 2150, -1 }, { 3983, 2151, -1 }, { 3999, 2151, -1 }, { 4097, 2151, -1 }, { 4211, 2149, -1 }, { 4202, 2149, -1 }, { 4200, 2149, -1 }, { 4453, 2162, -1 }, { 1484, 2161, -1 }, { 4449, 2163, -1 }, { 4451, 2163, -1 }, { 4452, 2163, -1 }, { 4517, 2164, -1 }, { 4520, 2164, -1 }, { 4279, -1, 2164 }, { 4514, 2164, -1 }, { 4518, 2164, -1 }, { 4279, -1, 2165 }, { 4518, 2167, -1 }, { 4409, -1, 2167 }, { 4279, -1, 2167 }, { 4409, -1, 2168 }, { 4578, -1, 2168 }, { 1504, 2169, -1 }, { 4279, -1, 2169 }, { 4410, -1, 2170 }, { 4991, 2172, -1 }, { 4788, 2177, -1 }, { 1520, 2175, -1 }, { 4790, 2177, -1 }, { 4981, 2178, -1 }, { 4790, 2180, -1 }, { 1512, 2179, -1 }, { 4992, 2178, -1 }, { 4993, 2178, -1 }, { 4999, 2178, -1 }, { 4997, 2178, -1 }, { 4789, 2180, -1 }, { 4784, 2181, -1 }, { 4784, 2183, -1 }, { 4781, 2173, -1 }, { 4779, 2173, -1 }, { 4990, 2173, -1 }, { 1508, 2174, -1 }, { 4999, 2173, -1 }, { 4997, 2173, -1 }, { 4992, 2173, -1 }, { 4993, 2173, -1 }, { 4786, 2173, -1 }, { 4794, 2173, -1 }, { 4982, 2173, -1 }, { 4792, 2173, -1 }, { 4793, 2173, -1 }, { 4784, 2173, -1 }, { 4795, 2173, -1 }, { 4983, 2184, -1 }, { 4981, 2185, -1 }, { 4997, 2185, -1 }, { 4984, 2186, -1 }, { 4937, -1, 2187 }, { 4981, 2188, -1 }, { 4999, 2188, -1 }, { 4990, 2189, -1 }, { 4979, 2191, -1 }, { 3267, 2192, -1 }, { 3268, 2192, -1 }, { 4973, 2191, -1 }, { 4982, 2190, -1 }, { 4975, 2190, -1 }, { 4973, 2190, -1 }, { 4974, 2190, -1 }, { 4976, 2190, -1 }, { 4980, 2190, -1 }, { 3261, -1, 2193 }, { 4994, 2194, -1 }, { 4977, 2190, -1 }, { 4999, 2190, -1 }, { 4997, 2190, -1 }, { 4994, 2190, -1 }, { 4992, 2190, -1 }, { 4998, 2190, -1 }, { 5006, 2198, -1 }, { 4989, 2196, -1 }, { 4987, 2196, -1 }, { 4986, 2196, -1 }, { 4988, 2196, -1 }, { 4992, 2196, -1 }, { 4996, 2196, -1 }, { 4999, 2196, -1 }, { 1504, 2196, -1 }, { 1508, 2195, -1 }, { 8084, 2196, -1 }, { 8096, 2196, -1 }, { 4780, 2196, -1 }, { 5007, 2196, -1 }, { 1507, 2197, -1 }, { 4981, 2199, -1 }, { 4997, 2199, -1 }, { 5010, 2199, -1 }, { 4992, 2199, -1 }, { 4998, 2199, -1 }, { 5002, 2200, -1 }, { 8088, 2200, -1 }, { 7945, -1, 2202 }, { 7941, -1, 2202 }, { 1508, 2203, -1 }, { 1508, 2204, -1 }, { 7975, 2205, -1 }, { 7974, 2205, -1 }, { 7976, 2205, -1 }, { 7979, 2205, -1 }, { 7983, 2205, -1 }, { 7977, 2205, -1 }, { 243, -1, 2206 }, { 243, -1, 2207 }, { 243, -1, 2208 }, { 8018, 198, 2209 }, { 8019, 198, 2210 }, { 8020, 2211, -1 }, { 4981, 2211, -1 }, { 8024, 2211, -1 }, { 4992, 2211, -1 }, { 8021, 2211, -1 }, { 4997, 2211, -1 }, { 4999, 2211, -1 }, { 7993, -1, 2212 }, { 4983, 2211, -1 }, { 8027, -1, 2211 }, { 4984, 2213, -1 }, { 4995, 2214, -1 }, { 4995, 2216, -1 }, { 8098, 2215, -1 }, { 8634, 2217, -1 }, { 8638, 2218, -1 }, { 1564, 2219, -1 }, { 9927, 2220, -1 }, { 9925, 2220, -1 }, { 9924, 2220, -1 }, { 9928, 2220, -1 }, { 9923, 2221, -1 }, { 9943, 2221, -1 }, { 9945, 2221, -1 }, { 9944, 2221, -1 }, { 9934, 2221, -1 }, { 9940, 2221, -1 }, { 9939, 2221, -1 }, { 9946, 2221, -1 }, { 9947, 2221, -1 }, { 9935, 2221, -1 }, { 9927, 2221, -1 }, { 9941, 2221, -1 }, { 9942, 2221, -1 }, { 9926, 2221, -1 }, { 12359, 2224, -1 }, { 12375, 2224, -1 }, { 12353, 2122, -1 }, { 12358, 2228, -1 }, { 12372, 2228, -1 }, { 3980, 2228, -1 }, { 12371, 2230, -1 }, { 3980, 2230, -1 }, { 12374, 2234, -1 }, { 12388, 2234, -1 }, { 3892, 2233, -1 }, { 3981, 2234, -1 }, { 3894, 2233, -1 }, { 12387, 2236, -1 }, { 3981, 2236, -1 }, { 12319, 2239, -1 }, { 12408, 2129, -1 }, { 12415, 2242, -1 }, { 12424, 2242, -1 }, { 12414, 2246, -1 }, { 12421, 2246, -1 }, { 12420, 2247, -1 }, { 3980, 2247, -1 }, { 12423, 2251, -1 }, { 12430, 2251, -1 }, { 12429, 2252, -1 }, { 3981, 2252, -1 }, { 12449, 2256, -1 }, { 12450, 2256, -1 }, { 12451, 2256, -1 }, { 12452, 2256, -1 }, { 12453, 2256, -1 }, { 3892, 2256, -1 }, { 3894, 2256, -1 }, { 12457, 2257, -1 }, { 16192, 2260, -1 }, { 16210, 2260, -1 }, { 16193, 2260, -1 }, { 16199, 2259, -1 }, { 16229, 2259, -1 }, { 16212, 2259, -1 }, { 16211, 2259, -1 }, { 16214, 2259, -1 }, { 16230, 2259, -1 }, { 16232, 2259, -1 }, { 16203, 2259, -1 }, { 16192, 2259, -1 }, { 3892, 2259, -1 }, { 3894, 2259, -1 }, { 16220, 2259, -1 }, { 16204, 2259, -1 }, { 16213, 2259, -1 }, { 16215, 2259, -1 }, { 16202, 2259, -1 }, { 16245, 2263, -1 }, { 16246, 2262, -1 }, { 16248, 2262, -1 }, { 16387, 2269, -1 }, { 16422, 2269, -1 }, { 16423, 2269, -1 }, { 16424, 2269, -1 }, { 16426, 2269, -1 }, { 16427, 2269, -1 }, { 16296, 2268, -1 }, { 16295, 2268, -1 }, { 3980, 2268, -1 }, { 3981, 2268, -1 }, { 3979, 2268, -1 }, { 16274, 2272, -1 }, { 16294, 2272, -1 }, { 16293, 2272, -1 }, { 16295, 2272, -1 }, { 3980, 2272, -1 }, { 16296, 2272, -1 }, { 16319, 2272, -1 }, { 16297, 2272, -1 }, { 3980, 2275, -1 }, { 3980, 2277, -1 }, { 16316, 2270, -1 }, { 16322, 2270, -1 }, { 16308, 2270, -1 }, { 16323, 2270, -1 }, { 16361, 2278, -1 }, { 16368, 2278, -1 }, { 16326, 2270, -1 }, { 16262, 2270, -1 }, { 16306, 2270, -1 }, { 16324, 2270, -1 }, { 16325, 2270, -1 }, { 16271, 2270, -1 }, { 16274, 2281, -1 }, { 16294, 2281, -1 }, { 16293, 2281, -1 }, { 16295, 2281, -1 }, { 3981, 2281, -1 }, { 16296, 2281, -1 }, { 16343, 2281, -1 }, { 16297, 2281, -1 }, { 3981, 2284, -1 }, { 3981, 2286, -1 }, { 16340, 2279, -1 }, { 16346, 2279, -1 }, { 16332, 2279, -1 }, { 16347, 2279, -1 }, { 16361, 2287, -1 }, { 16368, 2287, -1 }, { 16350, 2279, -1 }, { 16262, 2279, -1 }, { 16330, 2279, -1 }, { 16348, 2279, -1 }, { 16349, 2279, -1 }, { 16272, 2279, -1 }, { 3778, 2288, -1 }, { 3774, 2290, -1 }, { 3980, 2289, -1 }, { 3981, 2292, -1 }, { 3981, 2294, -1 }, { 3894, 2295, -1 }, { 16255, 2265, -1 }, { 16351, 2265, -1 }, { 16358, 2267, -1 }, { 16377, 2267, -1 }, { 16400, 2267, -1 }, { 3981, 2265, -1 }, { 3892, 2266, -1 }, { 3894, 2266, -1 }, { 16380, 2267, -1 }, { 3979, 2265, -1 }, { 3980, 2265, -1 }, { 16401, 2267, -1 }, { 16370, 2267, -1 }, { 16303, 2265, -1 }, { 16263, 2265, -1 }, { 16327, 2265, -1 }, { 16266, 2265, -1 }, { 16382, 2267, -1 }, { 16383, 2267, -1 }, { 16353, 2265, -1 }, { 16354, 2265, -1 }, { 16361, 2267, -1 }, { 16368, 2267, -1 }, { 16355, 2265, -1 }, { 16356, 2265, -1 }, { 16384, 2267, -1 }, { 16292, 2265, -1 }, { 16286, 2265, -1 }, { 16277, 2265, -1 }, { 12782, -1, 2266 }, { 16261, 2265, -1 }, { 16269, 2265, -1 }, { 16271, 2265, -1 }, { 16276, 2265, -1 }, { 16365, 2296, -1 }, { 16366, 2296, -1 }, { 16367, 2296, -1 }, { 16379, 2296, -1 }, { 16375, 2300, -1 }, { 16370, 2300, -1 }, { 16412, 2300, -1 }, { 16436, 2301, -1 }, { 16421, 2300, -1 }, { 16418, 2300, -1 }, { 16426, 2300, -1 }, { 16420, 2300, -1 }, { 16371, 2300, -1 }, { 16424, 2300, -1 }, { 16422, 2300, -1 }, { 16376, 2300, -1 }, { 16448, 2301, -1 }, { 16437, 2301, -1 }, { 16447, 2301, -1 }, { 16440, 2301, -1 }, { 16427, 2300, -1 }, { 16413, 2300, -1 }, { 3774, 2298, -1 }, { 16369, 2298, -1 }, { 16370, 2298, -1 }, { 16412, 2298, -1 }, { 16436, 2304, -1 }, { 16448, 2304, -1 }, { 16447, 2304, -1 }, { 16362, 2298, -1 }, { 16437, 2304, -1 }, { 16375, 2298, -1 }, { 16379, 2298, -1 }, { 16414, 2298, -1 }, { 16393, 2298, -1 }, { 16407, 2298, -1 }, { 16396, 2298, -1 }, { 16391, 2298, -1 }, { 16413, 2298, -1 }, { 16381, 2298, -1 }, { 16392, 2298, -1 }, { 16390, 2298, -1 }, { 16402, 2298, -1 }, { 16404, 2298, -1 }, { 16398, 2298, -1 }, { 16397, 2298, -1 }, { 16406, 2298, -1 }, { 16405, 2298, -1 }, { 16403, 2298, -1 }, { 16399, 2298, -1 }, { 16400, 2298, -1 }, { 16385, 2298, -1 }, { 16430, 2298, -1 }, { 16431, 2298, -1 }, { 16361, 2298, -1 }, { 16368, 2298, -1 }, { 16434, 2298, -1 }, { 16384, 2298, -1 }, { 16432, 2298, -1 }, { 16433, 2298, -1 }, { 16415, 2298, -1 }, { 16394, 2298, -1 }, { 16395, 2298, -1 }, { 16409, 2298, -1 }, { 16411, 2298, -1 }, { 16377, 2298, -1 }, { 3892, 2305, -1 }, { 3894, 2305, -1 }, { 16450, 2305, -1 }, { 3983, 2307, -1 }, { 3999, 2307, -1 }, { 4036, 2307, -1 }, { 23299, 2309, -1 }, { 23297, 2309, -1 }, { 23290, 2308, -1 }, { 23288, 2308, -1 }, { 23291, 2308, -1 }, { 23292, 2308, -1 }, { 23294, 2308, -1 }, { 23293, 2308, -1 }, { 23296, 2308, -1 }, { 23295, 2308, -1 }, { 23300, 2308, -1 }, { 23301, 2308, -1 }, { 23884, -1, 2308 }, { 24460, 2308, -1 }, { 23302, 2308, -1 }, { 23882, -1, 2308 }, { 235, -1, 2310 }, { 23315, 2310, -1 }, { 230, -1, 2310 }, { 23337, 2310, -1 }, { 3892, 2310, -1 }, { 3894, 2310, -1 }, { 23310, 2310, -1 }, { 23312, 2310, -1 }, { 23341, 2310, -1 }, { 23321, 2310, -1 }, { 23339, 2310, -1 }, { 23340, 2310, -1 }, { 23309, 2310, -1 }, { 23338, 2310, -1 }, { 23317, 2310, -1 }, { 23311, 2310, -1 }, { 23320, 2310, -1 }, { 23313, 2310, -1 }, { 23314, 2310, -1 }, { 23335, 2310, -1 }, { 23347, 2310, -1 }, { 23308, 2310, -1 }, { 4097, 2312, -1 }, { 1512, 2314, -1 }, { 1508, 2317, -1 }, { 1508, 2319, -1 }, { 23361, -1, 2320 }, { 23528, 2321, -1 }, { 23363, -1, 2322 }, { 3892, 2323, -1 }, { 235, -1, 2326 }, { 23370, -1, 2327 }, { 23370, -1, 2328 }, { 23371, -1, 2329 }, { 23595, 2332, -1 }, { 1508, 2333, -1 }, { 23560, 2335, -1 }, { 23375, -1, 2338 }, { 23376, -1, 2339 }, { 23597, 2342, -1 }, { 1508, 2343, -1 }, { 23605, 2345, -1 }, { 23397, 2346, 2348 }, { 23410, 2347, -1 }, { 23420, 2347, -1 }, { 23430, 2347, -1 }, { 23441, 2347, -1 }, { 23402, 2347, -1 }, { 23454, 2352, -1 }, { 23381, -1, 2353 }, { 3892, 2354, -1 }, { 1508, 2357, -1 }, { 1508, 2360, -1 }, { 25631, -1, 2361 }, { 3985, 2362, -1 }, { 23389, -1, 2363 }, { 23657, -1, 2364 }, { 23473, 2364, -1 }, { 23464, 2364, -1 }, { 23398, 2365, -1 }, { 23490, 2365, -1 }, { 23498, 2365, -1 }, { 23481, 2365, -1 }, { 23402, 2368, -1 }, { 23393, 2367, -1 }, { 23481, 2367, -1 }, { 23392, 2367, -1 }, { 23395, 2367, -1 }, { 23659, -1, 2376 }, { 23402, 2377, -1 }, { 23391, 2371, -1 }, { 23402, 2373, -1 }, { 23394, 2371, -1 }, { 1508, 2373, -1 }, { 25637, 2371, -1 }, { 25640, 2371, -1 }, { 25645, 2371, -1 }, { 3983, 2371, -1 }, { 3999, 2371, -1 }, { 23659, -1, 2382 }, { 23410, 2383, -1 }, { 23391, 2378, -1 }, { 23410, 2379, -1 }, { 23394, 2378, -1 }, { 1508, 2379, -1 }, { 3984, 2378, -1 }, { 3999, 2378, -1 }, { 23659, -1, 2389 }, { 23420, 2390, -1 }, { 23391, 2384, -1 }, { 23420, 2386, -1 }, { 4017, 2385, -1 }, { 4041, 2385, -1 }, { 4043, 2385, -1 }, { 1508, 2386, -1 }, { 23394, 2384, -1 }, { 3988, 2385, -1 }, { 235, -1, 2384 }, { 3994, 2385, -1 }, { 3984, 2384, -1 }, { 3999, 2384, -1 }, { 23659, -1, 2396 }, { 23430, 2397, -1 }, { 23391, 2391, -1 }, { 23430, 2393, -1 }, { 1508, 2393, -1 }, { 23394, 2391, -1 }, { 235, -1, 2391 }, { 3984, 2391, -1 }, { 3999, 2391, -1 }, { 23659, -1, 2403 }, { 23441, 2404, -1 }, { 23391, 2398, -1 }, { 23441, 2400, -1 }, { 1508, 2400, -1 }, { 23394, 2398, -1 }, { 25637, 2398, -1 }, { 25640, 2398, -1 }, { 25645, 2398, -1 }, { 23449, 2400, -1 }, { 235, -1, 2398 }, { 23450, 2400, -1 }, { 3983, 2398, -1 }, { 3984, 2398, -1 }, { 3999, 2398, -1 }, { 23391, 2405, -1 }, { 23454, 2408, -1 }, { 23394, 2405, -1 }, { 1508, 2407, -1 }, { 23364, -1, 2405 }, { 25655, 2405, -1 }, { 25628, -1, 2405 }, { 25660, 2405, -1 }, { 25624, 2409, -1 }, { 25658, 2405, -1 }, { 25661, 2405, -1 }, { 25657, 2405, -1 }, { 25623, 2409, -1 }, { 25629, -1, 2405 }, { 3983, 2405, -1 }, { 4001, 2405, -1 }, { 23391, 2410, -1 }, { 23394, 2410, -1 }, { 23650, 2410, -1 }, { 23651, 2410, -1 }, { 23463, 2410, -1 }, { 23465, 2410, -1 }, { 23466, 2410, -1 }, { 23467, 2410, -1 }, { 23469, 2410, -1 }, { 23653, 2410, -1 }, { 23654, 2410, -1 }, { 23655, 2410, -1 }, { 23461, 2411, -1 }, { 23473, 2411, -1 }, { 23477, 2411, -1 }, { 23461, 2412, -1 }, { 23477, 2412, -1 }, { 23463, 2412, -1 }, { 23473, 2412, -1 }, { 23520, 2415, -1 }, { 23391, 2413, -1 }, { 23481, 2413, -1 }, { 23394, 2413, -1 }, { 1508, 2414, -1 }, { 25637, 2413, -1 }, { 25640, 2413, -1 }, { 25645, 2413, -1 }, { 3983, 2413, -1 }, { 3999, 2413, -1 }, { 23658, -1, 2413 }, { 23506, 2419, -1 }, { 23391, 2417, -1 }, { 23490, 2417, -1 }, { 1508, 2418, -1 }, { 23394, 2417, -1 }, { 25638, 2417, -1 }, { 25640, 2417, -1 }, { 25645, 2417, -1 }, { 3983, 2417, -1 }, { 3999, 2417, -1 }, { 23658, -1, 2417 }, { 23513, 2423, -1 }, { 23391, 2421, -1 }, { 23498, 2421, -1 }, { 3994, 2421, -1 }, { 1508, 2422, -1 }, { 3988, 2421, -1 }, { 4017, 2421, -1 }, { 4043, 2421, -1 }, { 4041, 2421, -1 }, { 23394, 2421, -1 }, { 25638, 2421, -1 }, { 25640, 2421, -1 }, { 25645, 2421, -1 }, { 3983, 2421, -1 }, { 3999, 2421, -1 }, { 23658, -1, 2421 }, { 23659, -1, 2430 }, { 23506, 2431, -1 }, { 23391, 2425, -1 }, { 23506, 2427, -1 }, { 1508, 2426, -1 }, { 1508, 2427, -1 }, { 23394, 2425, -1 }, { 25638, 2425, -1 }, { 25640, 2425, -1 }, { 25645, 2425, -1 }, { 3983, 2425, -1 }, { 3999, 2425, -1 }, { 23659, -1, 2438 }, { 23513, 2439, -1 }, { 23391, 2432, -1 }, { 23513, 2435, -1 }, { 3994, 2433, -1 }, { 1508, 2434, -1 }, { 1508, 2435, -1 }, { 3988, 2433, -1 }, { 4017, 2433, -1 }, { 4043, 2433, -1 }, { 4041, 2433, -1 }, { 23394, 2432, -1 }, { 25638, 2432, -1 }, { 25640, 2432, -1 }, { 25645, 2432, -1 }, { 3983, 2432, -1 }, { 3999, 2432, -1 }, { 23659, -1, 2446 }, { 23520, 2447, -1 }, { 23391, 2440, -1 }, { 23520, 2443, -1 }, { 23394, 2440, -1 }, { 1508, 2442, -1 }, { 1508, 2443, -1 }, { 25637, 2440, -1 }, { 25640, 2440, -1 }, { 25645, 2440, -1 }, { 3983, 2440, -1 }, { 3999, 2440, -1 }, { 23531, 2448, -1 }, { 23529, 2448, -1 }, { 23528, 2448, -1 }, { 23535, 2448, -1 }, { 25632, -1, 2449 }, { 212, -1, 2451 }, { 23554, 2452, -1 }, { 23540, 2452, -1 }, { 230, -1, 2451 }, { 23566, 2459, -1 }, { 23569, 2459, -1 }, { 23561, 2456, -1 }, { 23568, 2459, -1 }, { 23567, 2465, -1 }, { 1508, 2463, -1 }, { 23575, 2465, -1 }, { 23539, 2465, -1 }, { 3892, 2464, -1 }, { 23577, 2465, -1 }, { 3984, 2466, -1 }, { 3999, 2466, -1 }, { 23569, 2465, -1 }, { 23574, 2465, -1 }, { 23576, 2465, -1 }, { 23538, 2465, -1 }, { 23537, 2472, -1 }, { 23583, 2472, -1 }, { 23588, 2470, -1 }, { 23620, 2470, -1 }, { 23599, 2470, -1 }, { 23537, 2470, -1 }, { 23583, 2470, -1 }, { 3984, 2470, -1 }, { 3999, 2470, -1 }, { 23364, -1, 2470 }, { 23589, 2470, -1 }, { 23591, 2470, -1 }, { 23584, 2470, -1 }, { 23594, 2470, -1 }, { 23621, 2470, -1 }, { 23590, 2470, -1 }, { 23609, 2470, -1 }, { 23608, 2470, -1 }, { 1508, 2471, -1 }, { 23598, 2473, -1 }, { 3774, 2475, -1 }, { 23626, 2474, -1 }, { 23589, 2473, -1 }, { 23614, 2474, -1 }, { 23611, 2474, -1 }, { 23591, 2473, -1 }, { 23610, 2476, -1 }, { 1508, 2477, -1 }, { 23611, 2479, -1 }, { 1508, 2479, -1 }, { 23608, 2481, -1 }, { 23609, 2481, -1 }, { 23613, 2479, -1 }, { 23617, 2482, -1 }, { 23619, 2482, -1 }, { 23623, 2482, -1 }, { 23624, 2482, -1 }, { 23618, 2482, -1 }, { 23622, 2482, -1 }, { 23625, 2483, -1 }, { 1508, 2484, -1 }, { 23617, 2483, -1 }, { 23618, 2483, -1 }, { 235, -1, 2488 }, { 3983, 2488, -1 }, { 23635, 2488, -1 }, { 3892, 2489, -1 }, { 23656, 2489, -1 }, { 23652, 2489, -1 }, { 3984, 2489, -1 }, { 3999, 2489, -1 }, { 3892, 2490, -1 }, { 23660, 2492, -1 }, { 23661, 2492, -1 }, { 1507, 2491, -1 }, { 23662, 2496, -1 }, { 23663, 2496, -1 }, { 1507, 2495, -1 }, { 1508, 2497, -1 }, { 1508, 2499, -1 }, { 1508, 2498, -1 }, { 25506, -1, 2500 }, { 25507, -1, 2501 }, { 23883, -1, 2502 }, { 23884, -1, 2503 }, { 23884, -1, 2504 }, { 24285, -1, 2506 }, { 4102, 2507, -1 }, { 4098, 2509, -1 }, { 4099, 2509, -1 }, { 1508, 2510, -1 }, { 23347, 2509, -1 }, { 4098, 2511, -1 }, { 4099, 2511, -1 }, { 23347, 2511, -1 }, { 24462, 2512, -1 }, { 24461, 2513, -1 }, { 24339, -1, 2513 }, { 25257, -1, 2513 }, { 24466, 2513, -1 }, { 24471, 2513, -1 }, { 24476, 2513, -1 }, { 24481, 2513, -1 }, { 24486, 2513, -1 }, { 24491, 2513, -1 }, { 24457, 2514, -1 }, { 23881, -1, 2514 }, { 24457, 2515, -1 }, { 23881, -1, 2515 }, { 24457, 2516, -1 }, { 23881, -1, 2516 }, { 24457, 2517, -1 }, { 23881, -1, 2517 }, { 24457, 2518, -1 }, { 23884, -1, 2518 }, { 24486, 2519, -1 }, { 24662, 2520, -1 }, { 3263, -1, 2521 }, { 24665, 2522, -1 }, { 1507, 2523, -1 }, { 3262, -1, 2524 }, { 24658, -1, 2525 }, { 24668, 2526, -1 }, { 1507, 2527, -1 }, { 3263, -1, 2528 }, { 24658, -1, 2529 }, { 4773, -1, 2531 }, { 5002, 2531, -1 }, { 8085, 2531, -1 }, { 8088, 2531, -1 }, { 24661, 2532, -1 }, { 3290, 2533, -1 }, { 3291, 2533, -1 }, { 3292, 2533, -1 }, { 3293, 2533, -1 }, { 1496, 2532, -1 }, { 24664, 2534, -1 }, { 3278, 2536, -1 }, { 3279, 2536, -1 }, { 3280, 2536, -1 }, { 1512, 2534, -1 }, { 24667, 2537, -1 }, { 3290, 2539, -1 }, { 3291, 2539, -1 }, { 3292, 2539, -1 }, { 3293, 2539, -1 }, { 1516, 2537, -1 }, { 25625, 2540, -1 }, { 23347, 2540, -1 }, { 3791, 2541, -1 }, { 3825, 2541, -1 }, { 16233, 2542, -1 }, { 3807, 2541, -1 }, { 16240, 2542, -1 }, { 16235, 2542, -1 }, { 16244, 2542, -1 }, { 3824, 2541, -1 }, { 25010, -1, 2543 }, { 23348, 2544, -1 }, { 24465, 2545, -1 }, { 4098, 2546, -1 }, { 4099, 2546, -1 }, { 25475, 2548, -1 }, { 4409, -1, 2549 }, { 25479, 2548, -1 }, { 4410, -1, 2549 }, { 25477, 2548, -1 }, { 25585, -1, 2553 }, { 4279, -1, 2554 }, { 4099, 2555, -1 }, { 25585, -1, 2556 }, { 25515, -1, 2556 }, { 4098, 2558, -1 }, { 4101, 2558, -1 }, { 23347, 2558, -1 }, { 23336, 2559, -1 }, { 25631, -1, 2559 }, { 23347, 2559, -1 }, { 235, -1, 2560 }, { 23347, 2560, -1 }, { 3892, 2562, -1 }, { 3894, 2562, -1 }, { 25663, 2562, -1 }, { 25679, 2562, -1 }, { 1508, 2561, -1 }, { 25669, 2562, -1 }, { 3825, 2563, -1 }, { 3806, 2563, -1 }, { 25592, 2565, -1 }, { 25593, 2565, -1 }, { 25594, 2565, -1 }, { 25592, 2564, -1 }, { 25593, 2564, -1 }, { 25594, 2564, -1 }, { 25595, 2564, -1 }, { 25610, 2564, -1 }, { 25607, 2564, -1 }, { 25621, 2566, -1 }, { 25627, 2566, -1 }, { 25626, 2566, -1 }, { 235, -1, 2566 }, { 25630, -1, 2568 }, { 235, -1, 2570 }, { 25637, 2570, -1 }, { 25641, 2570, -1 }, { 25645, 2570, -1 }, { 212, -1, 2571 }, { 235, -1, 2571 }, { 25638, 2572, -1 }, { 235, -1, 2572 }, { 25647, 2572, -1 }, { 25644, 2572, -1 }, { 25622, 2573, -1 }, { 25623, 2573, -1 }, { 25646, 2572, -1 }, { 25642, 2572, -1 }, { 25624, 2573, -1 }, { 25648, 2574, -1 }, { 25637, 2575, -1 }, { 25639, 2575, -1 }, { 25641, 2575, -1 }, { 25643, 2575, -1 }, { 25656, 2575, -1 }, { 25645, 2575, -1 }, { 25659, 2575, -1 }, { 25692, 2577, -1 }, { 3892, 2576, -1 }, { 25663, 2576, -1 }, { 25665, 2576, -1 }, { 25684, 2576, -1 }, { 25680, 2576, -1 }, { 25683, 2576, -1 }, { 25687, 2576, -1 }, { 25688, 2576, -1 }, { 25682, 2576, -1 }, { 25689, 2576, -1 }, { 25681, 2576, -1 }, { 25686, 2576, -1 }, { 25685, 2576, -1 }, { 25837, -1, 2578 }, { 25921, -1, 2579 }, { 25922, -1, 2580 }, { 25838, -1, 2581 }, { 25839, -1, 2582 }, { 25925, -1, 2583 }, { 25924, -1, 2584 }, { 25919, -1, 2586 }, { 25916, -1, 2587 }, { 25921, -1, 2590 }, { 26389, -1, 2592 }, { 3988, 2593, -1 }, { 26392, -1, 2594 }, { 26392, -1, 2595 }, { 26395, -1, 2596 }, { 26461, -1, 2597 }, { 26665, -1, 2598 }, { 26461, -1, 2599 }, { 27164, 2600, -1 }, { 4279, -1, 2601 }, { 27152, -1, 2600 }, { 27224, 2600, -1 }, { 27152, -1, 2603 }, { 27152, -1, 2604 }, { 27235, 2602, -1 }, { 27152, -1, 2606 }, { 27152, -1, 2607 }, { 27152, -1, 2608 }, { 27242, 2605, -1 }, { 27152, -1, 2610 }, { 27152, -1, 2611 }, { 27152, -1, 2612 }, { 27152, -1, 2613 }, { 27249, 2609, -1 }, { 27162, 2614, -1 }, { 27167, 2614, -1 }, { 27232, 2615, -1 }, { 27162, 2615, -1 }, { 27163, 2615, -1 }, { 27167, 2615, -1 }, { 27169, 2616, -1 }, { 27172, 2617, -1 }, { 27175, 2618, -1 }, { 27622, 2619, -1 }, { 27658, 2621, -1 }, { 27661, 2621, -1 }, { 27664, 2621, -1 }, { 27666, 2621, -1 }, { 27665, 2621, -1 }, { 27661, 2620, -1 }, { 27663, 2620, -1 }, { 27664, 2620, -1 }, { 27662, 2620, -1 }, { 28061, 2622, -1 }, { 3825, 2622, -1 }, { 28056, 2622, -1 }, { 3791, 2622, -1 }, { 3806, 2622, -1 }, { 3795, 2622, -1 }, { 3812, 2622, -1 }, { 3799, 2622, -1 }, { 28068, 2622, -1 }, { 3802, 2622, -1 }, { 28060, 2622, -1 }, { 3798, 2622, -1 }, { 3815, 2622, -1 }, { 23307, 2626, -1 }, { 3983, 2627, -1 }, { 1572, -1, 2627 }, { 3999, 2627, -1 }, { 28986, 2628, -1 }, { 1572, -1, 2630 }, { 28983, 2629, -1 }, { 29940, 2633, -1 }, { 3793, 2633, -1 }, { 3793, 2634, -1 }, { 1508, 2638, -1 }, { 29982, 2641, -1 }, { 29983, 2641, -1 }, { 1503, 2641, -1 }, { 29984, 2641, -1 }, { 23881, -1, 2644 }, { 24460, 2644, -1 }, { 30195, -1, 2646 }, { 30196, -1, 2648 }, { 30059, 2655, -1 }, { 30056, 2655, -1 }, { 3980, 2654, -1 }, { 3981, 2654, -1 }, { 30063, 2656, -1 }, { 3979, 2656, -1 }, { 23360, -1, 2649 }, { 23387, -1, 2649 }, { 23360, -1, 2650 }, { 23387, -1, 2650 }, { 23362, -1, 2652 }, { 3979, 2651, -1 }, { 3980, 2651, -1 }, { 3981, 2651, -1 }, { 30064, 2651, -1 }, { 1507, 2658, -1 }, { 23378, -1, 2658 }, { 30041, 2651, -1 }, { 30055, 2659, -1 }, { 30068, 2660, -1 }, { 30065, 2660, -1 }, { 30155, 2662, -1 }, { 30156, 2662, -1 }, { 30172, 2661, -1 }, { 30157, 2662, -1 }, { 30158, 2663, -1 }, { 30159, 2663, -1 }, { 1503, 2663, -1 }, { 30160, 2663, -1 }, { 30161, 2665, -1 }, { 30162, 2665, -1 }, { 1507, 2664, -1 }, { 30163, 2667, -1 }, { 30164, 2667, -1 }, { 1507, 2666, -1 }, { 30165, 2669, -1 }, { 30166, 2669, -1 }, { 1491, 2668, -1 }, { 30167, 2671, -1 }, { 30168, 2671, -1 }, { 1491, 2670, -1 }, { 30193, -1, 2673 }, { 30194, -1, 2673 }, { 30196, -1, 2675 }, { 30195, -1, 2675 }, { 30246, -1, 2682 }, { 30247, -1, 2683 }, { 23368, -1, 2683 }, { 23360, -1, 2684 }, { 23386, -1, 2684 }, { 3791, 2685, -1 }, { 3825, 2685, -1 }, { 30297, 2685, -1 }, { 1508, 2685, -1 }, { 3806, 2685, -1 }, { 3795, 2685, -1 }, { 30296, 2686, -1 }, { 30740, -1, 2687 }, { 1507, 2686, -1 }, { 30295, 2686, -1 }, { 30433, 2690, -1 }, { 3980, 2690, -1 }, { 3981, 2690, -1 }, { 30431, 2690, -1 }, { 30430, 2689, -1 }, { 30428, 2689, -1 }, { 30375, 2692, -1 }, { 30246, -1, 2693 }, { 30246, -1, 2694 }, { 30738, -1, 2695 }, { 30739, -1, 2695 }, { 30246, -1, 2695 }, { 30879, 2697, -1 }, { 30881, 2697, -1 }, { 23366, -1, 2697 }, { 30878, 2697, -1 }, { 31294, 2699, -1 }, { 31295, 2699, -1 }, { 31671, 2699, -1 }, { 31285, -1, 2701 }, { 5002, 2701, -1 }, { 31286, -1, 2702 }, { 31326, 2704, -1 }, { 31332, 2704, -1 }, { 31333, 2704, -1 }, { 4932, -1, 2703 }, { 4934, -1, 2703 }, { 4938, -1, 2703 }, { 31299, 2703, -1 }, { 31303, 2703, -1 }, { 31666, 2703, -1 }, { 31301, 2703, -1 }, { 5009, 2703, -1 }, { 31288, -1, 2705 }, { 31326, 2710, -1 }, { 31332, 2710, -1 }, { 31333, 2710, -1 }, { 31280, -1, 2707 }, { 4932, -1, 2709 }, { 4934, -1, 2709 }, { 4938, -1, 2709 }, { 31299, 2709, -1 }, { 31304, 2709, 2708 }, { 31659, 2707, -1 }, { 31301, 2709, -1 }, { 5009, 2709, -1 }, { 31312, 2714, -1 }, { 31307, 2716, -1 }, { 31311, 2718, -1 }, { 5008, 2713, -1 }, { 31308, 2713, -1 }, { 31300, 2713, -1 }, { 5009, 2713, -1 }, { 5011, 2713, -1 }, { 31305, 2713, -1 }, { 31309, 2713, -1 }, { 1507, 2715, -1 }, { 1508, 2715, -1 }, { 5012, 2713, -1 }, { 5013, 2713, -1 }, { 31358, 2720, -1 }, { 31343, 2720, -1 }, { 3278, 2721, -1 }, { 3279, 2721, -1 }, { 3280, 2721, -1 }, { 31336, 2720, -1 }, { 3267, 2722, -1 }, { 3268, 2722, -1 }, { 31337, 2720, -1 }, { 31331, 2724, -1 }, { 31346, 2724, -1 }, { 31359, 2724, -1 }, { 31347, 2724, -1 }, { 31326, 2724, -1 }, { 31334, 2724, -1 }, { 31329, 2724, -1 }, { 4409, -1, 2725 }, { 31341, 2724, -1 }, { 31335, 2724, -1 }, { 31360, 2724, -1 }, { 3262, -1, 2726 }, { 4409, -1, 2727 }, { 31336, 2724, -1 }, { 31338, 2724, -1 }, { 31340, 2724, -1 }, { 31342, 2724, -1 }, { 31344, 2724, -1 }, { 31337, 2724, -1 }, { 31361, 2724, -1 }, { 3261, -1, 2728 }, { 31328, 2724, -1 }, { 31354, 2724, -1 }, { 31327, 2724, -1 }, { 31321, 2724, -1 }, { 5002, 2729, -1 }, { 8088, 2729, -1 }, { 1508, 2730, -1 }, { 1512, 2731, -1 }, { 4279, -1, 2725 }, { 4281, -1, 2725 }, { 31356, 2724, -1 }, { 4281, -1, 2727 }, { 31330, 2724, -1 }, { 31322, 2732, -1 }, { 31345, 2732, -1 }, { 31667, 2733, -1 }, { 31349, 2732, -1 }, { 31322, 2734, -1 }, { 31323, 2734, -1 }, { 31345, 2734, -1 }, { 31660, 2735, -1 }, { 31672, 2735, -1 }, { 31351, 2734, -1 }, { 31349, 2734, -1 }, { 31362, 2737, -1 }, { 31366, 2741, -1 }, { 31367, 2742, -1 }, { 31367, 2743, -1 }, { 31325, 2744, -1 }, { 3980, 2749, -1 }, { 3774, 2750, -1 }, { 31401, 2752, -1 }, { 31385, 2745, -1 }, { 186, -1, 2746 }, { 31388, 2745, -1 }, { 31399, 2745, -1 }, { 31386, 2745, -1 }, { 31384, 2745, -1 }, { 3979, 2745, -1 }, { 227, -1, 2746 }, { 3981, 2745, -1 }, { 31391, 2745, -1 }, { 3980, 2745, -1 }, { 31397, 2745, -1 }, { 3983, 2766, -1 }, { 1504, 2766, -1 }, { 3999, 2766, -1 }, { 3791, 2768, -1 }, { 1504, 2767, -1 }, { 3807, 2768, -1 }, { 1572, -1, 2769 }, { 33667, -1, 2770 }, { 33673, 2770, -1 }, { 33664, -1, 2771 }, { 33666, -1, 2772 }, { 33667, -1, 2773 }, { 33668, -1, 2774 }, { 33935, 2775, -1 }, { 33934, 2775, -1 }, { 33931, 2775, -1 }, { 25913, -1, 2776 }, { 25938, -1, 2776 }, { 3892, 2777, -1 }, { 3894, 2777, -1 }, { 3983, 2778, -1 }, { 3791, 2779, -1 }, { 3999, 2778, -1 }, { 3988, 2778, -1 }, { 3807, 2779, -1 }, { 3812, 2779, -1 }, { 3825, 2779, -1 }, { 35107, 2778, -1 }, { 35098, 2778, -1 }, { 4005, 2778, -1 }, { 3811, 2779, -1 }, { 4011, 2778, -1 }, { 3994, 2778, -1 }, { 3824, 2779, -1 }, { 4028, 2778, -1 }, { 3995, 2778, -1 }, { 3806, 2779, -1 }, { 1564, 2778, -1 }, { 35097, 2778, -1 }, { 4035, 2778, -1 }, { 4005, 2780, -1 }, { 35121, 2781, -1 }, { 35122, 2781, -1 }, { 35112, 2780, -1 }, { 27223, 2781, -1 }, { 35116, 2781, -1 }, { 16435, 2782, -1 }, { 35117, 2782, -1 }, { 35120, 2782, -1 }, { 16437, 2782, -1 }, { 1572, -1, 2782 }, { 35118, 2782, -1 }, { 16447, 2782, -1 }, { 27224, 2782, -1 }, { 16446, 2782, -1 }, { 16448, 2782, -1 }, { 35412, -1, 2783 }, { 3983, 2784, -1 }, { 25838, -1, 2784 }, { 3999, 2784, -1 }, { 4036, 2784, -1 }, { 1484, 2785, -1 }, { 36536, -1, 2788 }, { 25838, -1, 2789 }, { 4279, -1, 2792 }, { 3791, 2791, -1 }, { 41446, 2790, -1 }, { 3806, 2791, -1 }, { 1484, 2790, -1 }, { 3824, 2791, -1 }, { 3798, 2791, -1 }, { 3984, 2790, -1 }, { 3815, 2791, -1 }, { 3845, 2791, -1 }, { 3981, 2791, -1 }, { 3999, 2790, -1 }, { 3844, 2791, -1 }, { 4036, 2790, -1 }, { 3802, 2791, -1 }, { 3873, 2791, -1 }, { 41451, 2790, -1 }, { 41450, 2790, -1 }, { 41458, 2790, -1 }, { 41457, 2790, -1 }, { 3812, 2791, -1 }, { 3805, 2791, -1 }, { 41448, 2790, -1 }, { 41584, 2793, -1 }, { 41583, 2793, -1 }, { 41589, 2793, -1 }, { 41586, 2793, -1 }, { 41592, 2793, -1 }, { 41590, 2793, -1 }, { 41591, 2793, -1 }, { 41585, 2793, -1 }, { 41595, 2793, -1 }, { 41593, 2793, -1 }, { 1483, 2793, -1 }, { 41442, 2793, -1 }, { 41594, 2793, -1 }, { 41444, 2793, -1 }, { 41443, 2793, -1 }, { 41445, 2793, -1 }, { 41597, 2793, -1 }, { 41598, 2793, -1 }, { 41451, 2793, -1 }, { 41446, 2794, -1 }, { 1484, 2795, -1 }, { 1492, 2796, -1 }, { 1496, 2797, -1 }, { 1500, 2798, -1 }, { 25913, -1, 2799 }, { 25938, -1, 2799 }, { 41629, -1, 2800 }, { 41634, -1, 2801 }, { 41634, -1, 2802 }, { 25834, -1, 2803 }, { 25919, -1, 2804 }, { 1484, 2804, -1 }, { 3774, 2805, -1 }, { 4097, 2806, -1 }, { 23386, -1, 2807 }, { 41651, -1, 2807 }, { 3774, 2808, -1 }, { 4004, 2808, -1 }, { 4022, 2808, -1 }, { 41661, 2811, -1 }, { 41807, 2813, -1 }, { 4279, -1, 2815 }, { 41802, 2813, -1 }, { 41820, 2813, -1 }, { 41621, -1, 2814 }, { 41806, 2813, -1 }, { 41808, 2813, -1 }, { 41801, 2813, -1 }, { 41813, 2813, -1 }, { 41810, 2813, -1 }, { 41817, 2813, -1 }, { 41805, 2813, -1 }, { 41815, 2813, -1 }, { 41818, 2813, -1 }, { 41812, 2813, -1 }, { 41800, 2813, -1 }, { 41821, 2813, -1 }, { 26666, -1, 2816 }, { 41932, 2817, -1 }, { 26666, -1, 2817 }, { 41930, 2817, -1 }, { 41949, 2818, -1 }, { 41951, 2818, -1 }, { 41952, 2818, -1 }, { 41950, 2818, -1 }, { 41936, 2818, -1 }, { 42137, 2820, -1 }, { 42145, 2822, -1 }, { 42145, 2824, -1 }, { 42150, 2828, -1 }, { 42150, 2830, -1 }, { 3984, 2819, -1 }, { 42128, 2833, -1 }, { 42134, 2833, -1 }, { 42130, 2833, -1 }, { 4006, 2819, -1 }, { 42127, 2833, -1 }, { 3999, 2819, -1 }, { 42126, 2833, -1 }, { 4025, 2819, -1 }, { 42147, 2833, -1 }, { 42148, 2833, -1 }, { 42136, 2833, -1 }, { 42143, 2833, -1 }, { 42141, 2833, -1 }, { 42140, 2833, -1 }, { 42137, 2833, -1 }, { 42149, 2833, -1 }, { 42138, 2833, -1 }, { 42139, 2833, -1 }, { 42145, 2833, -1 }, { 42152, 2833, -1 }, { 42154, 2833, -1 }, { 42142, 2833, -1 }, { 42160, 2833, -1 }, { 42144, 2833, -1 }, { 42166, 2833, -1 }, { 42146, 2833, -1 }, { 42172, 2833, -1 }, { 42150, 2833, -1 }, { 42178, 2833, -1 }, { 42184, 2833, -1 }, { 7860, -1, 2834 }, { 7847, -1, 2834 }, { 42419, 2835, -1 }, { 42418, 2836, -1 }, { 42411, 2836, -1 }, { 42417, 2837, -1 }, { 42409, 2838, -1 }, { 42410, 2838, -1 }, { 42412, 2838, -1 }, { 42413, 2838, -1 }, { 42414, 2838, -1 }, { 42415, 2838, -1 }, { 1484, 2838, -1 }, { 42627, -1, 2839 }, { 42627, -1, 2840 }, { 42628, -1, 2841 }, { 42627, -1, 2842 }, { 42629, -1, 2843 }, { 42627, -1, 2844 }, { 42630, -1, 2845 }, { 42627, -1, 2846 }, { 42631, -1, 2847 }, { 42627, -1, 2848 }, { 42632, -1, 2849 }, { 42627, -1, 2850 }, { 42633, -1, 2851 }, { 42627, -1, 2852 }, { 42676, 2859, -1 }, { 42658, 2859, -1 }, { 3981, 2859, -1 }, { 42674, 2859, -1 }, { 42673, 2857, -1 }, { 42671, 2857, -1 }, { 3892, 2863, -1 }, { 3981, 2862, -1 }, { 3894, 2863, -1 }, { 3892, 2865, -1 }, { 3981, 2864, -1 }, { 3894, 2865, -1 }, { 3774, 2853, -1 }, { 42656, 2854, -1 }, { 3983, 2855, -1 }, { 42670, 2854, -1 }, { 4017, 2855, -1 }, { 42658, 2854, -1 }, { 4005, 2855, -1 }, { 3979, 2854, -1 }, { 3999, 2855, -1 }, { 42668, 2854, -1 }, { 3988, 2855, -1 }, { 3994, 2855, -1 }, { 3995, 2855, -1 }, { 4028, 2855, -1 }, { 42669, 2854, -1 }, { 42680, 2854, -1 }, { 42681, 2854, -1 }, { 1507, 2866, -1 }, { 23358, -1, 2855 }, { 42682, 2854, -1 }, { 42683, 2854, -1 }, { 1563, 2855, -1 }, { 4014, 2855, -1 }, { 3980, 2854, -1 }, { 3981, 2854, -1 }, { 1564, 2856, -1 }, { 25672, 2867, -1 }, { 42732, 2867, -1 }, { 25669, 2867, -1 }, { 25670, 2867, -1 }, { 25674, 2867, -1 }, { 42722, 2868, -1 }, { 43270, 2869, -1 }, { 43269, 2870, -1 }, { 43873, 2871, -1 }, { 43872, 2872, -1 }, { 43884, 2873, -1 }, { 43885, 2875, -1 }, { 43881, 2877, -1 }, { 43883, 2877, -1 }, { 43886, 2877, -1 }, { 43884, 2877, -1 }, { 43880, 2877, -1 }, { 43882, 2877, -1 }, { 33664, -1, 2880 }, { 33665, -1, 2880 }, { 3777, 2091, -1 }, { 3777, 2092, -1 }, { 3777, 2094, -1 }, { 3898, 2110, -1 }, { 3897, 2110, -1 }, { 3898, 2111, -1 }, { 3897, 2111, -1 }, { 3898, 2113, -1 }, { 3897, 2113, -1 }, { 3898, 7, -1 }, { 3897, 7, -1 }, { 3898, 2114, -1 }, { 3897, 2114, -1 }, { 3896, 2114, -1 }, { 3929, 2115, -1 }, { 3930, 2115, -1 }, { 3898, 2115, -1 }, { 3897, 2115, -1 }, { 3924, 2115, -1 }, { 3896, 2115, -1 }, { 3928, 2115, -1 }, { 3929, 2116, -1 }, { 3930, 2116, -1 }, { 3898, 2116, -1 }, { 3897, 2116, -1 }, { 3924, 2116, -1 }, { 3896, 2116, -1 }, { 3928, 2116, -1 }, { 3898, 2117, -1 }, { 3897, 2117, -1 }, { 3896, 2117, -1 }, { 4053, 2135, -1 }, { 4054, 2135, -1 }, { 4060, 2135, -1 }, { 4061, 2135, -1 }, { 4063, 2135, -1 }, { 4051, 2135, -1 }, { 4068, 2135, -1 }, { 4055, 2135, -1 }, { 4056, 2135, -1 }, { 4058, 2135, -1 }, { 4057, 2135, -1 }, { 4062, 2135, -1 }, { 4059, 2135, -1 }, { 4069, 2135, -1 }, { 4073, 2135, -1 }, { 4074, 2135, -1 }, { 4077, 2135, -1 }, { 4078, 2135, -1 }, { 4075, 2135, -1 }, { 4076, 2135, -1 }, { 4079, 2135, -1 }, { 4080, 2135, -1 }, { 4081, 2135, -1 }, { 4072, 2135, -1 }, { 4071, 2135, -1 }, { 4070, 2135, -1 }, { 5001, 63, -1 }, { 5001, 173, -1 }, { 5001, 2178, -1 }, { 5001, 198, -1 }, { 5001, 2190, -1 }, { 9928, 2221, -1 }, { 9931, 2221, -1 }, { 9924, 2221, -1 }, { 9930, 2221, -1 }, { 9932, 2221, -1 }, { 5001, 11, -1 }, { 3777, 2288, -1 }, { 16370, 2296, -1 }, { 16372, 2296, -1 }, { 16378, 2296, -1 }, { 16382, 2296, -1 }, { 16383, 2296, -1 }, { 16384, 2296, -1 }, { 16380, 2296, -1 }, { 16388, 2296, -1 }, { 16389, 2296, -1 }, { 16386, 2296, -1 }, { 16374, 2296, -1 }, { 16373, 2296, -1 }, { 16408, 2296, -1 }, { 16410, 2296, -1 }, { 16369, 2296, -1 }, { 16375, 2296, -1 }, { 16376, 2296, -1 }, { 16377, 2296, -1 }, { 16381, 2296, -1 }, { 16400, 2296, -1 }, { 16409, 2296, -1 }, { 16411, 2296, -1 }, { 3994, 633, -1 }, { 3995, 633, -1 }, { 4020, 633, -1 }, { 4022, 633, -1 }, { 4028, 633, -1 }, { 3988, 633, -1 }, { 3990, 633, -1 }, { 3999, 633, -1 }, { 4005, 633, -1 }, { 4006, 633, -1 }, { 4011, 633, -1 }, { 4025, 633, -1 }, { 4018, 633, -1 }, { 4019, 633, -1 }, { 3997, 633, -1 }, { 3998, 633, -1 }, { 4000, 633, -1 }, { 4007, 633, -1 }, { 3991, 633, -1 }, { 3989, 633, -1 }, { 4021, 633, -1 }, { 4023, 633, -1 }, { 4026, 633, -1 }, { 4009, 633, -1 }, { 3993, 633, -1 }, { 3992, 633, -1 }, { 4105, 2312, -1 }, { 4106, 2312, -1 }, { 4103, 2312, -1 }, { 4109, 2312, -1 }, { 4111, 2312, -1 }, { 4098, 2312, -1 }, { 4104, 2312, -1 }, { 4107, 2312, -1 }, { 4108, 2312, -1 }, { 4100, 2312, -1 }, { 4101, 2312, -1 }, { 4110, 2312, -1 }, { 4102, 2312, -1 }, { 4112, 2312, -1 }, { 4118, 2312, -1 }, { 4119, 2312, -1 }, { 4120, 2312, -1 }, { 4123, 2312, -1 }, { 4121, 2312, -1 }, { 4117, 2312, -1 }, { 4116, 2312, -1 }, { 4124, 2312, -1 }, { 4125, 2312, -1 }, { 4126, 2312, -1 }, { 4127, 2312, -1 }, { 4115, 2312, -1 }, { 4114, 2312, -1 }, { 4113, 2312, -1 }, { 4099, 2312, -1 }, { 23395, 2371, -1 }, { 23400, 2371, -1 }, { 23392, 2371, -1 }, { 23399, 2371, -1 }, { 23401, 2371, -1 }, { 23398, 2371, -1 }, { 23395, 2378, -1 }, { 23400, 2378, -1 }, { 23392, 2378, -1 }, { 23399, 2378, -1 }, { 23401, 2378, -1 }, { 23398, 2378, -1 }, { 23395, 2384, -1 }, { 23400, 2384, -1 }, { 23392, 2384, -1 }, { 23399, 2384, -1 }, { 23401, 2384, -1 }, { 23398, 2384, -1 }, { 23395, 2391, -1 }, { 23400, 2391, -1 }, { 23392, 2391, -1 }, { 23399, 2391, -1 }, { 23401, 2391, -1 }, { 23398, 2391, -1 }, { 23395, 2398, -1 }, { 23400, 2398, -1 }, { 23392, 2398, -1 }, { 23399, 2398, -1 }, { 23401, 2398, -1 }, { 23398, 2398, -1 }, { 23395, 2405, -1 }, { 23400, 2405, -1 }, { 23392, 2405, -1 }, { 23399, 2405, -1 }, { 23401, 2405, -1 }, { 23397, 2405, -1 }, { 23398, 2405, -1 }, { 23395, 2410, -1 }, { 23400, 2410, -1 }, { 23392, 2410, -1 }, { 23399, 2410, -1 }, { 23401, 2410, -1 }, { 23397, 2410, -1 }, { 23398, 2410, -1 }, { 23395, 2411, -1 }, { 23400, 2411, -1 }, { 23392, 2411, -1 }, { 23462, 2411, -1 }, { 23468, 2411, -1 }, { 23399, 2411, -1 }, { 23401, 2411, -1 }, { 23397, 2411, -1 }, { 23398, 2411, -1 }, { 23470, 2411, -1 }, { 23471, 2411, -1 }, { 23472, 2411, -1 }, { 23395, 2412, -1 }, { 23400, 2412, -1 }, { 23392, 2412, -1 }, { 23462, 2412, -1 }, { 23468, 2412, -1 }, { 23399, 2412, -1 }, { 23401, 2412, -1 }, { 23397, 2412, -1 }, { 23398, 2412, -1 }, { 23470, 2412, -1 }, { 23471, 2412, -1 }, { 23472, 2412, -1 }, { 23395, 2413, -1 }, { 23400, 2413, -1 }, { 23392, 2413, -1 }, { 23399, 2413, -1 }, { 23401, 2413, -1 }, { 23395, 2417, -1 }, { 23400, 2417, -1 }, { 23392, 2417, -1 }, { 23399, 2417, -1 }, { 23401, 2417, -1 }, { 23395, 2421, -1 }, { 23400, 2421, -1 }, { 23392, 2421, -1 }, { 23399, 2421, -1 }, { 23401, 2421, -1 }, { 23395, 2425, -1 }, { 23400, 2425, -1 }, { 23392, 2425, -1 }, { 23399, 2425, -1 }, { 23401, 2425, -1 }, { 23398, 2425, -1 }, { 23395, 2432, -1 }, { 23400, 2432, -1 }, { 23392, 2432, -1 }, { 23399, 2432, -1 }, { 23401, 2432, -1 }, { 23398, 2432, -1 }, { 23395, 2440, -1 }, { 23400, 2440, -1 }, { 23392, 2440, -1 }, { 23399, 2440, -1 }, { 23401, 2440, -1 }, { 23398, 2440, -1 }, { 23584, 2473, -1 }, { 23592, 2473, -1 }, { 23593, 2473, -1 }, { 23594, 2473, -1 }, { 23596, 2473, -1 }, { 23585, 2473, -1 }, { 23586, 2473, -1 }, { 23587, 2473, -1 }, { 24463, 2514, -1 }, { 24458, 2514, -1 }, { 24459, 2514, -1 }, { 24464, 2514, -1 }, { 24463, 2515, -1 }, { 24458, 2515, -1 }, { 24459, 2515, -1 }, { 24464, 2515, -1 }, { 24463, 2516, -1 }, { 24458, 2516, -1 }, { 24459, 2516, -1 }, { 24464, 2516, -1 }, { 24463, 2517, -1 }, { 24458, 2517, -1 }, { 24459, 2517, -1 }, { 24464, 2517, -1 }, { 24463, 2518, -1 }, { 24458, 2518, -1 }, { 24459, 2518, -1 }, { 24464, 2518, -1 }, { 24463, 2519, -1 }, { 24458, 2519, -1 }, { 24459, 2519, -1 }, { 24489, 2519, -1 }, { 24488, 2519, -1 }, { 24487, 2519, -1 }, { 24464, 2519, -1 }, { 24490, 2519, -1 }, { 25598, 645, -1 }, { 25599, 645, -1 }, { 25595, 645, -1 }, { 25596, 645, -1 }, { 25597, 645, -1 }, { 25604, 645, -1 }, { 25605, 645, -1 }, { 25600, 645, -1 }, { 25601, 645, -1 }, { 25602, 645, -1 }, { 25603, 645, -1 }, { 25606, 645, -1 }, { 25607, 645, -1 }, { 25608, 645, -1 }, { 27168, 2614, -1 }, { 27230, 805, -1 }, { 27231, 805, -1 }, { 27230, 11, -1 }, { 27231, 11, -1 }, { 4053, 948, -1 }, { 4054, 948, -1 }, { 4060, 948, -1 }, { 4061, 948, -1 }, { 4063, 948, -1 }, { 4051, 948, -1 }, { 4068, 948, -1 }, { 4055, 948, -1 }, { 4056, 948, -1 }, { 4058, 948, -1 }, { 4057, 948, -1 }, { 4062, 948, -1 }, { 4059, 948, -1 }, { 4069, 948, -1 }, { 4073, 948, -1 }, { 4074, 948, -1 }, { 4077, 948, -1 }, { 4078, 948, -1 }, { 4075, 948, -1 }, { 4076, 948, -1 }, { 4079, 948, -1 }, { 4080, 948, -1 }, { 4081, 948, -1 }, { 4072, 948, -1 }, { 4071, 948, -1 }, { 4070, 948, -1 }, { 4064, 948, -1 }, { 4065, 948, -1 }, { 4066, 948, -1 }, { 4067, 948, -1 }, { 4053, 1049, -1 }, { 4054, 1049, -1 }, { 4060, 1049, -1 }, { 4061, 1049, -1 }, { 4063, 1049, -1 }, { 4051, 1049, -1 }, { 4068, 1049, -1 }, { 4055, 1049, -1 }, { 4056, 1049, -1 }, { 4058, 1049, -1 }, { 4057, 1049, -1 }, { 4062, 1049, -1 }, { 4059, 1049, -1 }, { 4069, 1049, -1 }, { 4073, 1049, -1 }, { 4074, 1049, -1 }, { 4077, 1049, -1 }, { 4078, 1049, -1 }, { 4075, 1049, -1 }, { 4076, 1049, -1 }, { 4079, 1049, -1 }, { 4080, 1049, -1 }, { 4081, 1049, -1 }, { 4072, 1049, -1 }, { 4071, 1049, -1 }, { 4070, 1049, -1 }, { 4089, 1087, -1 }, { 4091, 1087, -1 }, { 4092, 1087, -1 }, { 4093, 1087, -1 }, { 4053, 1105, -1 }, { 4054, 1105, -1 }, { 4060, 1105, -1 }, { 4061, 1105, -1 }, { 4063, 1105, -1 }, { 4051, 1105, -1 }, { 4068, 1105, -1 }, { 4055, 1105, -1 }, { 4056, 1105, -1 }, { 4058, 1105, -1 }, { 4057, 1105, -1 }, { 4062, 1105, -1 }, { 4059, 1105, -1 }, { 4069, 1105, -1 }, { 4073, 1105, -1 }, { 4074, 1105, -1 }, { 4077, 1105, -1 }, { 4078, 1105, -1 }, { 4075, 1105, -1 }, { 4076, 1105, -1 }, { 4079, 1105, -1 }, { 4080, 1105, -1 }, { 4081, 1105, -1 }, { 4072, 1105, -1 }, { 4071, 1105, -1 }, { 4070, 1105, -1 }, { 30065, 1120, -1 }, { 31324, 1154, -1 }, { 31355, 1154, -1 }, { 31356, 1154, -1 }, { 31354, 1154, -1 }, { 31352, 1154, -1 }, { 31353, 1154, -1 }, { 31339, 1154, -1 }, { 31336, 1154, -1 }, { 31348, 1154, -1 }, { 31349, 1154, -1 }, { 31350, 1154, -1 }, { 31351, 1154, -1 }, { 31324, 2732, -1 }, { 31355, 2732, -1 }, { 31356, 2732, -1 }, { 31354, 2732, -1 }, { 31352, 2732, -1 }, { 31353, 2732, -1 }, { 31339, 2732, -1 }, { 31336, 2732, -1 }, { 31348, 2732, -1 }, { 31350, 2732, -1 }, { 31351, 2732, -1 }, { 31324, 2734, -1 }, { 31355, 2734, -1 }, { 31356, 2734, -1 }, { 31354, 2734, -1 }, { 31352, 2734, -1 }, { 31353, 2734, -1 }, { 31339, 2734, -1 }, { 31348, 2734, -1 }, { 31350, 2734, -1 }, { 27230, 1386, -1 }, { 27231, 1386, -1 }, { 27230, 784, -1 }, { 27231, 784, -1 }, { 27230, 19, -1 }, { 27231, 19, -1 }, { 27230, 25, -1 }, { 27231, 25, -1 }, { 27230, 63, -1 }, { 27231, 63, -1 }, { 27230, 783, -1 }, { 27231, 783, -1 }, { 41934, 1680, -1 }, { 41935, 1680, -1 }, { 41934, 1722, -1 }, { 41589, 1709, -1 }, { 41455, 2794, -1 }, { 41456, 2794, -1 }, { 41452, 2794, -1 }, { 41453, 2794, -1 }, { 41934, 2818, -1 }, { 41935, 2818, -1 }, { 41935, 1717, -1 }, { 41934, 1769, -1 }, { 41935, 1769, -1 }, { 41928, 1819, -1 }, { 41935, 1832, -1 }, { 41934, 1836, -1 }, { 41935, 1836, -1 }, { 41935, 1847, -1 }, { 41935, 1853, -1 }, { 41934, 1909, -1 }, { 41935, 1909, -1 }, { 41934, 1910, -1 }, { 41935, 1910, -1 }, { 41935, 1767, -1 }, { 41934, 1915, -1 }, { 41935, 1915, -1 }, { 41934, 1917, -1 }, { 41935, 1917, -1 }, { 41935, 1818, -1 }, { 41935, 1834, -1 }, { 41934, 1954, -1 }, { 41935, 1954, -1 }, { 41935, 1830, -1 }, { 41934, 1979, -1 }, { 41935, 1979, -1 }, { 41934, 1989, -1 }, { 41935, 1989, -1 }, { 41934, 1990, -1 }, { 41935, 1990, -1 }, { 41935, 2003, -1 }, { 3983, 25, -1 }, { 3999, 25, -1 }, { 4036, 25, -1 }, { 3791, 221, -1 }, { 3806, 221, -1 }, { 3798, 221, -1 }, { 3815, 221, -1 }, { 3845, 221, -1 }, { 3981, 221, -1 }, { 3844, 221, -1 }, { 3846, 221, -1 }, { 3983, 420, -1 }, { 3983, 422, -1 }, { 3999, 420, -1 }, { 3999, 422, -1 }, { 4033, 420, -1 }, { 1555, 422, -1 }, { 4035, 422, -1 }, { 4036, 420, -1 }, { 4036, 422, -1 }, { 3988, 25, -1 }, { 4028, 25, -1 }, { 4022, 25, -1 }, { 3994, 25, -1 }, { 4005, 25, -1 }, { 4097, 129, -1 }, { 3985, 129, -1 }, { 3985, 131, -1 }, { 4098, 129, -1 }, { 4101, 129, -1 }, { 3983, 129, -1 }, { 3983, 132, -1 }, { 3999, 132, -1 }, { 3994, 132, -1 }, { 3999, 129, -1 }, { 3988, 132, -1 }, { 4099, 129, -1 }, { 3791, 138, -1 }, { 3825, 138, -1 }, { 3806, 138, -1 }, { 3791, 8, -1 }, { 3812, 8, -1 }, { 3806, 8, -1 }, { 3824, 8, -1 }, { 199, -1, 190 }, { 199, -1, 1694 }, { 199, -1, 2882 }, { 199, -1, 2883 }, { 199, -1, 2884 }, { 199, -1, 2885 }, { 199, -1, 2886 }, { 199, -1, 1329 }, { 199, -1, 2887 }, { 199, -1, 2888 }, { 199, -1, 2889 }, { 199, -1, 1822 }, { 199, -1, 2890 }, { 3983, 1, -1 }, { 3983, 48, -1 }, { 4006, 1, -1 }, { 3999, 1, -1 }, { 3999, 48, -1 }, { 3988, 48, -1 }, { 4011, 48, -1 }, { 3899, 7, -1 }, { 7972, 34, -1 }, { 7977, 34, -1 }, { 7979, 34, -1 }, { 7978, 34, -1 }, { 3984, 25, -1 }, { 4010, 25, -1 }, { 1563, 1, -1 }, { 9551, -1, 1 }, { 3983, 364, -1 }, { 3999, 364, -1 }, { 4036, 364, -1 }, { 3774, 22, -1 }, { 187, -1, 2891 }, { 3793, 401, -1 }, { 3825, 401, -1 }, { 3806, 401, -1 }, { 3791, 391, -1 }, { 3791, 395, -1 }, { 3806, 391, -1 }, { 3806, 395, -1 }, { 3825, 391, -1 }, { 3825, 395, -1 }, { 480, 11, -1 }, { 481, 11, -1 }, { 3807, 221, -1 }, { 3825, 221, -1 }, { 4006, 25, -1 }, { 480, 63, -1 }, { 479, 63, -1 }, { 481, 63, -1 }, { 4937, -1, 11 }, { 8007, -1, 2892 }, { 8007, -1, 2893 }, { 5079, -1, 11 }, { 4994, 11, -1 }, { 4932, -1, 11 }, { 4934, -1, 11 }, { 8015, 11, -1 }, { 8016, 11, 2894 }, { 8020, 11, -1 }, { 8007, -1, 2895 }, { 8010, -1, 2896 }, { 8010, -1, 2897 }, { 8019, 11, 2898 }, { 8019, 11, 2899 }, { 5003, 11, -1 }, { 8097, 11, -1 }, { 8099, 11, -1 }, { 8019, 11, 2900 }, { 8102, 11, -1 }, { 8023, 11, -1 }, { 8021, 11, -1 }, { 8017, 11, -1 }, { 8010, -1, 2901 }, { 8010, -1, 2902 }, { 3985, 25, -1 }, { 480, 14, -1 }, { 479, 14, -1 }, { 481, 14, -1 }, { 9933, 25, -1 }, { 1617, 7, -1 }, { 4939, -1, 11 }, { 4939, -1, 198 }, { 235, -1, 13 }, { 1503, 368, -1 }, { 4577, -1, 368 }, { 8007, -1, 2903 }, { 1507, 182, -1 }, { 5002, 11, -1 }, { 8088, 11, -1 }, { 1519, 369, -1 }, { 1511, 371, -1 }, { 4787, 11, 2904 }, { 1491, 197, -1 }, { 3261, -1, 376 }, { 1511, 377, -1 }, { 4787, 198, 2904 }, { 3267, 376, -1 }, { 3268, 376, -1 }, { 8010, -1, 2905 }, { 8010, -1, 2906 }, { 4984, 11, -1 }, { 4985, 11, -1 }, { 1503, 382, -1 }, { 4577, -1, 382 }, { 9948, 25, -1 }, { 1507, 383, -1 }, { 3290, 384, -1 }, { 3291, 384, -1 }, { 3292, 384, -1 }, { 3293, 384, -1 }, { 3267, 386, -1 }, { 3268, 386, -1 }, { 3267, 388, -1 }, { 3268, 388, -1 }, { 3290, 389, -1 }, { 3291, 389, -1 }, { 3292, 389, -1 }, { 3293, 389, -1 }, { 3999, 117, -1 }, { 4025, 117, -1 }, { 3807, 118, -1 }, { 3826, 118, -1 }, { 3824, 118, -1 }, { 3994, 117, -1 }, { 3988, 117, -1 }, { 3983, 117, -1 }, { 3791, 118, -1 }, { 3792, 51, -1 }, { 3825, 51, -1 }, { 3807, 51, -1 }, { 237, -1, 55 }, { 3791, 45, -1 }, { 3825, 45, -1 }, { 3806, 45, -1 }, { 231, -1, 38 }, { 212, -1, 13 }, { 8333, -1, 306 }, { 237, -1, 306 }, { 8333, -1, 307 }, { 237, -1, 307 }, { 3988, 129, -1 }, { 4036, 129, -1 }, { 3984, 304, -1 }, { 3999, 304, -1 }, { 4036, 304, -1 }, { 3791, 355, -1 }, { 3791, 352, -1 }, { 3792, 257, -1 }, { 3825, 257, -1 }, { 3806, 257, -1 }, { 3825, 355, -1 }, { 3806, 355, -1 }, { 8760, -1, 2907 }, { 3791, 293, -1 }, { 3825, 297, -1 }, { 3793, 297, -1 }, { 3806, 297, -1 }, { 3807, 297, -1 }, { 8027, -1, 11 }, { 8027, -1, 63 }, { 8017, 198, -1 }, { 8020, 198, -1 }, { 8022, 198, -1 }, { 8023, 198, -1 }, { 4098, 131, -1 }, { 4099, 131, -1 }, { 3983, 275, -1 }, { 3999, 275, -1 }, { 7979, 282, -1 }, { 3791, 283, -1 }, { 7977, 282, -1 }, { 3825, 283, -1 }, { 3791, 278, -1 }, { 3807, 283, -1 }, { 7972, 282, -1 }, { 3825, 288, -1 }, { 7972, 277, -1 }, { 3807, 288, -1 }, { 3793, 288, -1 }, { 3824, 288, -1 }, { 235, -1, 25 }, { 4036, 274, -1 }, { 4017, 274, -1 }, { 4043, 274, -1 }, { 4041, 274, -1 }, { 4040, 274, -1 }, { 3983, 274, -1 }, { 3999, 274, -1 }, { 3988, 274, -1 }, { 3994, 274, -1 }, { 3825, 265, -1 }, { 3807, 265, -1 }, { 3791, 265, -1 }, { 4208, 8, -1 }, { 4218, 8, -1 }, { 4201, 8, -1 }, { 1507, 76, -1 }, { 1515, 77, -1 }, { 3984, 1, -1 }, { 3994, 1, -1 }, { 3792, 228, -1 }, { 3983, 253, -1 }, { 3999, 253, -1 }, { 3988, 253, -1 }, { 3812, 228, -1 }, { 3805, 228, -1 }, { 3806, 228, -1 }, { 2445, 256, -1 }, { 3983, 105, -1 }, { 3999, 105, -1 }, { 4030, 105, -1 }, { 3988, 105, -1 }, { 4017, 105, -1 }, { 4043, 105, -1 }, { 4041, 105, -1 }, { 4040, 105, -1 }, { 3791, 257, -1 }, { 3812, 257, -1 }, { 3807, 257, -1 }, { 1129, 105, -1 }, { 1134, 105, -1 }, { 1129, 102, -1 }, { 1134, 102, -1 }, { 1129, 94, -1 }, { 1134, 94, -1 }, { 1129, 111, -1 }, { 1134, 111, -1 }, { 1129, 92, -1 }, { 1134, 92, -1 }, { 1129, 1, -1 }, { 1134, 1, -1 }, { 1131, 105, -1 }, { 1131, 102, -1 }, { 1131, 94, -1 }, { 1131, 92, -1 }, { 1133, 105, -1 }, { 1133, 102, -1 }, { 1133, 94, -1 }, { 1133, 111, -1 }, { 1133, 92, -1 }, { 1133, 1, -1 }, { 1132, 105, -1 }, { 1132, 102, -1 }, { 1132, 94, -1 }, { 1132, 111, -1 }, { 1132, 92, -1 }, { 1132, 1, -1 }, { 1130, 105, -1 }, { 1130, 102, -1 }, { 1130, 94, -1 }, { 1131, 111, -1 }, { 1131, 1, -1 }, { 224, -1, 22 }, { 228, -1, 25 }, { 3984, 105, -1 }, { 4008, 105, -1 }, { 3984, 79, -1 }, { 3999, 79, -1 }, { 3988, 79, -1 }, { 4008, 79, -1 }, { 3793, 218, -1 }, { 3807, 218, -1 }, { 3793, 221, -1 }, { 3825, 218, -1 }, { 3980, 221, -1 }, { 3805, 221, -1 }, { 3811, 221, -1 }, { 8016, 11, 2908 }, { 8007, -1, 2909 }, { 8018, 11, 2910 }, { 8019, 11, 2911 }, { 8019, 11, 2912 }, { 8009, -1, 2913 }, { 8010, -1, 2914 }, { 1504, 226, -1 }, { 1503, 226, -1 }, { 3984, 212, -1 }, { 4515, 162, -1 }, { 4516, 162, -1 }, { 4522, 162, -1 }, { 4409, -1, 163 }, { 4511, 162, -1 }, { 4513, 162, -1 }, { 4512, 162, -1 }, { 4520, 162, -1 }, { 4519, 162, -1 }, { 4521, 162, -1 }, { 3825, 164, -1 }, { 3791, 164, -1 }, { 3795, 164, -1 }, { 3806, 164, -1 }, { 3983, 166, -1 }, { 3985, 166, -1 }, { 3999, 166, -1 }, { 4017, 166, -1 }, { 4043, 166, -1 }, { 4041, 166, -1 }, { 4040, 166, -1 }, { 5002, 63, -1 }, { 8088, 63, -1 }, { 4937, -1, 63 }, { 8015, 63, -1 }, { 8016, 63, 2915 }, { 8020, 63, -1 }, { 4984, 63, -1 }, { 5003, 173, -1 }, { 8097, 173, -1 }, { 8099, 173, -1 }, { 8019, 63, 2916 }, { 8102, 173, -1 }, { 5003, 63, -1 }, { 8097, 63, -1 }, { 8099, 63, -1 }, { 8019, 63, 2917 }, { 8102, 63, -1 }, { 8023, 63, -1 }, { 8021, 63, -1 }, { 8017, 63, -1 }, { 4981, 63, -1 }, { 4992, 63, -1 }, { 1484, 173, -1 }, { 1492, 197, -1 }, { 3806, 189, -1 }, { 3824, 189, -1 }, { 3281, 196, -1 }, { 4813, 161, -1 }, { 3278, 196, -1 }, { 3279, 196, -1 }, { 3280, 196, -1 }, { 4577, -1, 195 }, { 4097, 131, -1 }, { 4027, 173, -1 }, { 3983, 173, -1 }, { 3999, 173, -1 }, { 4017, 173, -1 }, { 4043, 173, -1 }, { 4041, 173, -1 }, { 4040, 173, -1 }, { 4934, -1, 198 }, { 5000, 173, -1 }, { 4783, 173, -1 }, { 4971, 198, -1 }, { 3791, 189, -1 }, { 1503, 195, -1 }, { 1563, 173, -1 }, { 4981, 198, -1 }, { 4998, 198, -1 }, { 4992, 198, -1 }, { 4017, 131, -1 }, { 4043, 131, -1 }, { 4102, 129, -1 }, { 4041, 131, -1 }, { 4040, 131, -1 }, { 3984, 131, -1 }, { 3999, 131, -1 }, { 4001, 131, -1 }, { 3994, 131, -1 }, { 3988, 131, -1 }, { 4981, 173, -1 }, { 4992, 173, -1 }, { 7977, 187, -1 }, { 2445, 188, -1 }, { 7972, 187, -1 }, { 4450, 157, -1 }, { 1483, 159, -1 }, { 4445, 157, -1 }, { 4446, 157, -1 }, { 4710, 184, -1 }, { 4409, -1, 184 }, { 4709, 184, -1 }, { 4410, -1, 183 }, { 4409, -1, 183 }, { 4711, 184, -1 }, { 4712, 184, -1 }, { 3984, 160, -1 }, { 3999, 160, -1 }, { 3988, 160, -1 }, { 3994, 160, -1 }, { 4005, 160, -1 }, { 3986, 160, -1 }, { 3987, 160, -1 }, { 3984, 59, -1 }, { 3999, 59, -1 }, { 4036, 59, -1 }, { 3825, 64, -1 }, { 3791, 64, -1 }, { 3807, 64, -1 }, { 3983, 59, -1 }, { 480, 68, -1 }, { 481, 68, -1 }, { 479, 68, -1 }, { 1507, 69, -1 }, { 1508, 69, -1 }, { 4017, 73, -1 }, { 4043, 73, -1 }, { 4041, 73, -1 }, { 4040, 73, -1 }, { 3994, 75, -1 }, { 3988, 75, -1 }, { 4017, 72, -1 }, { 4043, 72, -1 }, { 4041, 72, -1 }, { 4040, 72, -1 }, { 1508, 76, -1 }, { 1516, 77, -1 }, { 3983, 73, -1 }, { 3999, 73, -1 }, { 3983, 72, -1 }, { 3999, 72, -1 }, { 3983, 75, -1 }, { 3999, 75, -1 }, { 3983, 11, -1 }, { 3999, 11, -1 }, { 4036, 11, -1 }, { 16235, 423, -1 }, { 16244, 423, -1 }, { 16233, 423, -1 }, { 16240, 423, -1 }, { 1620, 7, -1 }, { 1618, 7, -1 }, { 1619, 7, -1 }, { 3984, 427, -1 }, { 3999, 427, -1 }, { 4002, 427, -1 }, { 3984, 428, -1 }, { 3999, 428, -1 }, { 4002, 428, -1 }, { 4102, 428, -1 }, { 4102, 427, -1 }, { 4097, 427, -1 }, { 4097, 428, -1 }, { 3791, 432, -1 }, { 3812, 432, -1 }, { 3806, 432, -1 }, { 3825, 432, -1 }, { 3824, 432, -1 }, { 4098, 428, -1 }, { 4099, 428, -1 }, { 4098, 427, -1 }, { 3983, 429, -1 }, { 3999, 429, -1 }, { 4036, 429, -1 }, { 3983, 430, -1 }, { 4006, 430, -1 }, { 3999, 430, -1 }, { 4036, 430, -1 }, { 2445, 434, -1 }, { 485, 63, -1 }, { 479, 425, -1 }, { 228, -1, 157 }, { 3812, 221, -1 }, { 3983, 495, -1 }, { 3999, 495, -1 }, { 4036, 495, -1 }, { 230, -1, 498 }, { 230, -1, 500 }, { 4409, -1, 2918 }, { 3999, 457, -1 }, { 3988, 457, -1 }, { 3984, 457, -1 }, { 3994, 457, -1 }, { 4005, 457, -1 }, { 4001, 457, -1 }, { 4037, 457, -1 }, { 3983, 457, -1 }, { 3980, 442, -1 }, { 3981, 442, -1 }, { 3979, 442, -1 }, { 3984, 461, -1 }, { 3999, 461, -1 }, { 4017, 461, -1 }, { 4043, 461, -1 }, { 4041, 461, -1 }, { 4040, 461, -1 }, { 2444, 434, -1 }, { 224, -1, 25 }, { 1507, 463, -1 }, { 1484, 462, -1 }, { 3988, 429, -1 }, { 4017, 429, -1 }, { 4043, 429, -1 }, { 4041, 429, -1 }, { 4040, 429, -1 }, { 228, -1, 7 }, { 4050, 429, -1 }, { 4057, 429, -1 }, { 4051, 429, -1 }, { 4055, 429, -1 }, { 4058, 429, -1 }, { 4059, 429, -1 }, { 3791, 489, -1 }, { 3825, 489, -1 }, { 3807, 489, -1 }, { 3798, 489, -1 }, { 3802, 489, -1 }, { 3873, 489, -1 }, { 3889, 489, -1 }, { 3888, 489, -1 }, { 3887, 489, -1 }, { 3791, 484, -1 }, { 3825, 484, -1 }, { 3807, 484, -1 }, { 3798, 484, -1 }, { 3802, 484, -1 }, { 3873, 484, -1 }, { 3889, 484, -1 }, { 3888, 484, -1 }, { 3887, 484, -1 }, { 3983, 493, -1 }, { 7847, -1, 493 }, { 3999, 493, -1 }, { 4036, 493, -1 }, { 7847, -1, 2919 }, { 3825, 464, -1 }, { 3791, 464, -1 }, { 3807, 464, -1 }, { 3798, 464, -1 }, { 3824, 464, -1 }, { 3802, 464, -1 }, { 3985, 466, -1 }, { 4017, 466, -1 }, { 4043, 466, -1 }, { 3983, 466, -1 }, { 3999, 466, -1 }, { 4041, 466, -1 }, { 4040, 466, -1 }, { 3812, 464, -1 }, { 1508, 463, -1 }, { 3791, 480, -1 }, { 4017, 477, -1 }, { 4043, 477, -1 }, { 3805, 480, -1 }, { 4041, 477, -1 }, { 4040, 477, -1 }, { 3988, 477, -1 }, { 3994, 477, -1 }, { 3983, 477, -1 }, { 3999, 477, -1 }, { 3807, 480, -1 }, { 4025, 477, -1 }, { 4020, 477, -1 }, { 3824, 480, -1 }, { 7866, -1, 7 }, { 1483, 173, -1 }, { 2445, 483, -1 }, { 16190, 457, -1 }, { 16199, 457, -1 }, { 16190, 468, -1 }, { 16204, 468, -1 }, { 16222, 468, -1 }, { 16206, 468, -1 }, { 16197, 468, -1 }, { 16224, 468, -1 }, { 16226, 468, -1 }, { 16192, 468, -1 }, { 16194, 468, -1 }, { 16231, 468, -1 }, { 16193, 468, -1 }, { 16230, 468, -1 }, { 3983, 470, -1 }, { 3999, 470, -1 }, { 16207, 468, -1 }, { 4017, 470, -1 }, { 4043, 470, -1 }, { 4041, 470, -1 }, { 4040, 470, -1 }, { 4409, -1, 25 }, { 4410, -1, 25 }, { 3983, 444, -1 }, { 4017, 444, -1 }, { 4043, 444, -1 }, { 3999, 444, -1 }, { 4041, 444, -1 }, { 4040, 444, -1 }, { 4005, 444, -1 }, { 16193, 445, -1 }, { 16231, 445, -1 }, { 16207, 445, -1 }, { 16198, 445, -1 }, { 16230, 445, -1 }, { 16197, 445, -1 }, { 16192, 445, -1 }, { 16208, 445, -1 }, { 16190, 445, -1 }, { 3792, 221, -1 }, { 3984, 446, -1 }, { 3999, 446, -1 }, { 3988, 446, -1 }, { 3994, 446, -1 }, { 4034, 446, -1 }, { 3995, 446, -1 }, { 4029, 446, -1 }, { 3988, 450, -1 }, { 3994, 450, -1 }, { 4031, 450, -1 }, { 3995, 450, -1 }, { 4024, 450, -1 }, { 4029, 450, -1 }, { 3984, 450, -1 }, { 3999, 450, -1 }, { 3983, 453, -1 }, { 3988, 453, -1 }, { 4029, 453, -1 }, { 3774, 11, -1 }, { 186, -1, 11 }, { 3999, 453, -1 }, { 3994, 453, -1 }, { 4028, 453, -1 }, { 3994, 11, -1 }, { 3988, 11, -1 }, { 4031, 25, -1 }, { 3805, 257, -1 }, { 3792, 438, -1 }, { 3806, 438, -1 }, { 3825, 438, -1 }, { 3798, 438, -1 }, { 4932, -1, 63 }, { 3802, 562, -1 }, { 3873, 562, -1 }, { 3889, 562, -1 }, { 3888, 562, -1 }, { 3887, 562, -1 }, { 3825, 547, -1 }, { 3807, 547, -1 }, { 3812, 552, -1 }, { 3824, 547, -1 }, { 16435, 566, -1 }, { 16448, 566, -1 }, { 16447, 566, -1 }, { 16437, 566, -1 }, { 16446, 566, -1 }, { 3812, 556, -1 }, { 3807, 556, -1 }, { 3824, 562, -1 }, { 3807, 552, -1 }, { 3791, 562, -1 }, { 3825, 562, -1 }, { 3807, 562, -1 }, { 3825, 556, -1 }, { 3988, 511, -1 }, { 3791, 509, -1 }, { 4017, 511, -1 }, { 4043, 511, -1 }, { 3806, 509, -1 }, { 4041, 511, -1 }, { 4040, 511, -1 }, { 3812, 509, -1 }, { 3812, 609, -1 }, { 3807, 609, -1 }, { 3812, 542, -1 }, { 16435, 586, -1 }, { 16448, 586, -1 }, { 16437, 586, -1 }, { 16447, 586, -1 }, { 4005, 589, -1 }, { 3983, 589, -1 }, { 3999, 589, -1 }, { 3994, 589, -1 }, { 4029, 589, -1 }, { 3995, 589, -1 }, { 3988, 589, -1 }, { 3806, 604, -1 }, { 3807, 542, -1 }, { 3983, 593, -1 }, { 3999, 593, -1 }, { 3994, 593, -1 }, { 3988, 593, -1 }, { 3791, 542, -1 }, { 3791, 609, -1 }, { 3825, 542, -1 }, { 3983, 507, -1 }, { 3999, 507, -1 }, { 3802, 542, -1 }, { 3873, 542, -1 }, { 3889, 542, -1 }, { 3888, 542, -1 }, { 3887, 542, -1 }, { 3791, 547, -1 }, { 3791, 604, -1 }, { 3791, 556, -1 }, { 3791, 552, -1 }, { 3812, 604, -1 }, { 3799, 604, -1 }, { 3853, 604, -1 }, { 3869, 604, -1 }, { 3807, 604, -1 }, { 3868, 604, -1 }, { 3867, 604, -1 }, { 3815, 547, -1 }, { 3845, 547, -1 }, { 3980, 547, -1 }, { 3812, 547, -1 }, { 3981, 547, -1 }, { 3844, 547, -1 }, { 3846, 547, -1 }, { 3802, 552, -1 }, { 3873, 552, -1 }, { 3889, 552, -1 }, { 3888, 552, -1 }, { 3887, 552, -1 }, { 3802, 547, -1 }, { 3873, 547, -1 }, { 3889, 547, -1 }, { 3888, 547, -1 }, { 3887, 547, -1 }, { 16435, 588, -1 }, { 16448, 588, -1 }, { 16437, 588, -1 }, { 16447, 588, -1 }, { 21452, -1, 63 }, { 21452, -1, 7 }, { 21452, -1, 597 }, { 21452, -1, 14 }, { 21452, -1, 134 }, { 21452, -1, 15 }, { 21452, -1, 16 }, { 21452, -1, 17 }, { 21452, -1, 11 }, { 21452, -1, 12 }, { 21452, -1, 18 }, { 21452, -1, 19 }, { 21452, -1, 25 }, { 21452, -1, 68 }, { 21452, -1, 20 }, { 21452, -1, 21 }, { 21452, -1, 22 }, { 21452, -1, 600 }, { 21452, -1, 582 }, { 21452, -1, 511 }, { 21452, -1, 583 }, { 21452, -1, 623 }, { 3791, 617, -1 }, { 3983, 620, -1 }, { 3807, 617, -1 }, { 3999, 620, -1 }, { 3825, 617, -1 }, { 3806, 617, -1 }, { 3995, 620, -1 }, { 3811, 617, -1 }, { 4005, 620, -1 }, { 3824, 617, -1 }, { 4028, 620, -1 }, { 3994, 620, -1 }, { 3988, 620, -1 }, { 3798, 617, -1 }, { 3812, 617, -1 }, { 3815, 542, -1 }, { 1503, 462, -1 }, { 4941, -1, 462 }, { 8015, 462, -1 }, { 8016, 462, 2920 }, { 8020, 462, -1 }, { 5000, 570, -1 }, { 1511, 171, -1 }, { 1507, 571, -1 }, { 4785, 570, -1 }, { 5003, 570, -1 }, { 8097, 570, -1 }, { 8099, 570, -1 }, { 8019, 462, 2921 }, { 8102, 570, -1 }, { 8023, 462, -1 }, { 8021, 462, -1 }, { 8017, 462, -1 }, { 3994, 513, -1 }, { 3988, 513, -1 }, { 3983, 513, -1 }, { 3999, 513, -1 }, { 3802, 556, -1 }, { 3873, 556, -1 }, { 3889, 556, -1 }, { 3888, 556, -1 }, { 3887, 556, -1 }, { 3799, 221, -1 }, { 3853, 221, -1 }, { 3824, 221, -1 }, { 3294, 522, -1 }, { 4932, -1, 521 }, { 188, -1, 526 }, { 3812, 527, -1 }, { 3791, 527, -1 }, { 3807, 527, -1 }, { 3824, 527, -1 }, { 3793, 257, -1 }, { 3824, 257, -1 }, { 8016, 0, 2922 }, { 5003, 462, -1 }, { 8097, 462, -1 }, { 8099, 462, -1 }, { 8019, 0, 2923 }, { 8102, 462, -1 }, { 3811, 257, -1 }, { 3798, 257, -1 }, { 3983, 511, -1 }, { 3985, 511, -1 }, { 4005, 511, -1 }, { 3812, 575, -1 }, { 3805, 575, -1 }, { 3983, 630, -1 }, { 3988, 630, -1 }, { 4017, 630, -1 }, { 4043, 630, -1 }, { 4041, 630, -1 }, { 4040, 630, -1 }, { 3999, 630, -1 }, { 4025, 630, -1 }, { 3983, 633, -1 }, { 4017, 633, -1 }, { 4043, 633, -1 }, { 4041, 633, -1 }, { 4040, 633, -1 }, { 235, -1, 762 }, { 4028, 457, -1 }, { 3791, 763, -1 }, { 3825, 763, -1 }, { 3806, 763, -1 }, { 3980, 8, -1 }, { 3981, 8, -1 }, { 25480, -1, 24 }, { 3979, 8, -1 }, { 25480, -1, 25 }, { 4098, 644, -1 }, { 4099, 644, -1 }, { 23347, 644, -1 }, { 25583, -1, 40 }, { 4097, 645, -1 }, { 24326, -1, 645 }, { 25609, 645, -1 }, { 25476, 767, -1 }, { 25478, 767, -1 }, { 25474, 767, -1 }, { 23347, 645, -1 }, { 25620, 645, -1 }, { 25620, 644, -1 }, { 25626, 645, -1 }, { 25626, 644, -1 }, { 24864, -1, 644 }, { 24864, -1, 645 }, { 235, -1, 644 }, { 23849, -1, 644 }, { 4097, 644, -1 }, { 23847, -1, 644 }, { 3791, 677, -1 }, { 3791, 681, -1 }, { 3812, 182, -1 }, { 3807, 182, -1 }, { 25591, -1, 689 }, { 3825, 691, -1 }, { 3815, 687, -1 }, { 3845, 687, -1 }, { 3980, 687, -1 }, { 3981, 687, -1 }, { 3844, 687, -1 }, { 3846, 687, -1 }, { 3811, 691, -1 }, { 3807, 691, -1 }, { 3825, 182, -1 }, { 3793, 182, -1 }, { 3791, 687, -1 }, { 3791, 691, -1 }, { 3791, 697, -1 }, { 3791, 709, -1 }, { 3792, 697, -1 }, { 3807, 697, -1 }, { 3802, 709, -1 }, { 3873, 709, -1 }, { 3889, 709, -1 }, { 3888, 709, -1 }, { 3887, 709, -1 }, { 3811, 709, -1 }, { 4098, 645, -1 }, { 25620, 12, -1 }, { 4102, 645, -1 }, { 4131, 713, -1 }, { 4135, 713, -1 }, { 25626, 12, -1 }, { 25625, 12, -1 }, { 25143, -1, 12 }, { 3807, 709, -1 }, { 3825, 709, -1 }, { 4133, 713, -1 }, { 1507, 715, -1 }, { 23390, -1, 645 }, { 25585, -1, 645 }, { 3815, 704, -1 }, { 3845, 704, -1 }, { 3980, 704, -1 }, { 3981, 704, -1 }, { 3844, 704, -1 }, { 3846, 704, -1 }, { 3812, 709, -1 }, { 3825, 704, -1 }, { 3805, 697, -1 }, { 25674, 707, -1 }, { 25692, 707, -1 }, { 25691, 707, -1 }, { 25690, 707, -1 }, { 25581, -1, 645 }, { 3792, 713, -1 }, { 4099, 645, -1 }, { 3807, 713, -1 }, { 4128, 713, -1 }, { 25662, 721, -1 }, { 3983, 721, -1 }, { 3999, 721, -1 }, { 25672, 721, -1 }, { 25679, 721, -1 }, { 4017, 721, -1 }, { 4043, 721, -1 }, { 4041, 721, -1 }, { 4040, 721, -1 }, { 25669, 721, -1 }, { 23367, -1, 721 }, { 1507, 723, -1 }, { 25590, -1, 721 }, { 3988, 721, -1 }, { 3812, 724, -1 }, { 3825, 724, -1 }, { 3791, 724, -1 }, { 3807, 724, -1 }, { 4102, 668, -1 }, { 235, -1, 1 }, { 3983, 734, -1 }, { 3999, 734, -1 }, { 4017, 734, -1 }, { 4043, 734, -1 }, { 4041, 734, -1 }, { 4040, 734, -1 }, { 4098, 666, -1 }, { 4099, 666, -1 }, { 4098, 664, -1 }, { 4099, 664, -1 }, { 1495, 736, -1 }, { 24655, -1, 736 }, { 3802, 724, -1 }, { 3873, 724, -1 }, { 3889, 724, -1 }, { 3888, 724, -1 }, { 3887, 724, -1 }, { 3825, 677, -1 }, { 4098, 668, -1 }, { 4099, 668, -1 }, { 4102, 644, -1 }, { 3994, 741, -1 }, { 3988, 741, -1 }, { 3988, 742, -1 }, { 3994, 742, -1 }, { 4001, 741, -1 }, { 4028, 742, -1 }, { 3999, 741, -1 }, { 3983, 741, -1 }, { 3999, 742, -1 }, { 1507, 744, -1 }, { 23359, -1, 668 }, { 25662, 15, -1 }, { 25679, 15, -1 }, { 1555, 741, -1 }, { 4035, 741, -1 }, { 3983, 742, -1 }, { 4017, 741, -1 }, { 4043, 741, -1 }, { 4041, 741, -1 }, { 4040, 741, -1 }, { 23373, -1, 741 }, { 479, 346, -1 }, { 481, 346, -1 }, { 3984, 664, -1 }, { 25620, 668, -1 }, { 3999, 664, -1 }, { 25626, 668, -1 }, { 25230, -1, 745 }, { 3988, 664, -1 }, { 24864, -1, 668 }, { 4102, 669, -1 }, { 25016, 729, -1 }, { 3805, 677, -1 }, { 3805, 681, -1 }, { 25018, 729, -1 }, { 25017, 729, -1 }, { 1507, 746, -1 }, { 23359, -1, 644 }, { 1515, 747, -1 }, { 24657, -1, 747 }, { 25625, 644, -1 }, { 23347, 664, -1 }, { 23347, 666, -1 }, { 25288, -1, 644 }, { 25288, -1, 668 }, { 4097, 668, -1 }, { 4099, 669, -1 }, { 25288, -1, 669 }, { 4098, 669, -1 }, { 4097, 669, -1 }, { 1507, 758, -1 }, { 23358, -1, 40 }, { 3984, 644, -1 }, { 3999, 644, -1 }, { 3988, 644, -1 }, { 3987, 644, -1 }, { 25480, -1, 644 }, { 3988, 645, -1 }, { 3994, 645, -1 }, { 4028, 645, -1 }, { 3999, 645, -1 }, { 16435, 645, -1 }, { 16448, 645, -1 }, { 3983, 645, -1 }, { 16437, 645, -1 }, { 16447, 645, -1 }, { 16435, 679, -1 }, { 16435, 685, -1 }, { 1511, 759, -1 }, { 24656, -1, 759 }, { 16446, 685, -1 }, { 3806, 677, -1 }, { 16448, 679, -1 }, { 16447, 679, -1 }, { 16446, 679, -1 }, { 3812, 697, -1 }, { 25663, 707, -1 }, { 25679, 707, -1 }, { 16443, 679, -1 }, { 16453, 679, -1 }, { 16452, 679, -1 }, { 16451, 679, -1 }, { 3791, 704, -1 }, { 25591, -1, 645 }, { 3806, 697, -1 }, { 25585, -1, 644 }, { 23373, -1, 644 }, { 25662, 645, -1 }, { 25679, 645, -1 }, { 23386, -1, 644 }, { 7979, 654, -1 }, { 25584, -1, 40 }, { 25474, 658, -1 }, { 25476, 658, -1 }, { 25478, 658, -1 }, { 1520, 659, -1 }, { 25476, 655, -1 }, { 25478, 655, -1 }, { 25585, -1, 664 }, { 25585, -1, 666 }, { 25585, -1, 4 }, { 1507, 667, -1 }, { 23385, -1, 102 }, { 4098, 4, -1 }, { 4099, 4, -1 }, { 23347, 4, -1 }, { 25485, -1, 644 }, { 25585, -1, 668 }, { 25486, -1, 668 }, { 25585, -1, 669 }, { 25486, -1, 669 }, { 25474, 655, -1 }, { 3791, 182, -1 }, { 3798, 182, -1 }, { 24284, -1, 645 }, { 24284, -1, 644 }, { 24326, -1, 683 }, { 24327, -1, 645 }, { 1507, 670, -1 }, { 24325, -1, 668 }, { 1507, 671, -1 }, { 24325, -1, 669 }, { 24326, -1, 2924 }, { 1507, 672, -1 }, { 24325, -1, 666 }, { 1507, 673, -1 }, { 24325, -1, 664 }, { 25514, -1, 664 }, { 25514, -1, 666 }, { 25514, -1, 644 }, { 24646, 63, -1 }, { 24646, 7, -1 }, { 24646, 13, -1 }, { 24646, 14, -1 }, { 24646, 15, -1 }, { 24646, 16, -1 }, { 24646, 17, -1 }, { 24646, 11, -1 }, { 24646, 12, -1 }, { 24646, 129, -1 }, { 24646, 648, -1 }, { 24646, 18, -1 }, { 24646, 19, -1 }, { 24646, 25, -1 }, { 24646, 20, -1 }, { 24646, 21, -1 }, { 24646, 22, -1 }, { 25514, -1, 645 }, { 23847, -1, 645 }, { 25514, -1, 668 }, { 25514, -1, 669 }, { 1484, 769, -1 }, { 16435, 1, -1 }, { 16448, 1, -1 }, { 16447, 1, -1 }, { 16437, 1, -1 }, { 4036, 1, -1 }, { 26960, -1, 2925 }, { 3825, 806, -1 }, { 3791, 806, -1 }, { 3983, 800, -1 }, { 3999, 800, -1 }, { 3994, 800, -1 }, { 3988, 800, -1 }, { 4006, 800, -1 }, { 1563, 800, -1 }, { 4027, 800, -1 }, { 4005, 800, -1 }, { 4001, 800, -1 }, { 27178, 19, -1 }, { 27178, 11, -1 }, { 27178, 25, -1 }, { 27178, 63, -1 }, { 3983, 799, -1 }, { 4017, 799, -1 }, { 4043, 799, -1 }, { 4041, 799, -1 }, { 4040, 799, -1 }, { 3825, 190, -1 }, { 3806, 190, -1 }, { 3791, 190, -1 }, { 26392, -1, 11 }, { 26390, -1, 778 }, { 26394, -1, 778 }, { 26390, -1, 779 }, { 26394, -1, 779 }, { 26390, -1, 783 }, { 26394, -1, 783 }, { 26394, -1, 784 }, { 26389, -1, 785 }, { 26396, -1, 778 }, { 26396, -1, 779 }, { 26395, -1, 785 }, { 26417, -1, 783 }, { 25752, -1, 2926 }, { 27233, 11, -1 }, { 3983, 803, -1 }, { 1507, 804, -1 }, { 23390, -1, 803 }, { 23357, -1, 803 }, { 27233, 805, -1 }, { 27227, 11, -1 }, { 27227, 805, -1 }, { 27235, 790, -1 }, { 27224, 791, -1 }, { 27235, 792, -1 }, { 25834, -1, 2927 }, { 1483, 794, -1 }, { 16234, 801, -1 }, { 16240, 801, -1 }, { 16244, 801, -1 }, { 16235, 801, -1 }, { 1504, 63, -1 }, { 4017, 812, -1 }, { 4043, 812, -1 }, { 4041, 812, -1 }, { 4040, 812, -1 }, { 4017, 813, -1 }, { 4043, 813, -1 }, { 4041, 813, -1 }, { 4040, 813, -1 }, { 3999, 814, -1 }, { 3988, 814, -1 }, { 3994, 814, -1 }, { 3995, 814, -1 }, { 4028, 814, -1 }, { 3983, 812, -1 }, { 3983, 813, -1 }, { 3983, 814, -1 }, { 3983, 597, -1 }, { 3999, 597, -1 }, { 3994, 597, -1 }, { 3988, 597, -1 }, { 27657, 819, -1 }, { 27654, 819, -1 }, { 27655, 819, -1 }, { 27656, 819, -1 }, { 27657, 457, -1 }, { 27654, 457, -1 }, { 27655, 457, -1 }, { 27656, 457, -1 }, { 27671, -1, 2928 }, { 3983, 828, -1 }, { 25834, -1, 1357 }, { 1484, 835, -1 }, { 3984, 836, -1 }, { 3984, 837, -1 }, { 3984, 838, -1 }, { 3807, 8, -1 }, { 3799, 8, -1 }, { 3825, 8, -1 }, { 3802, 8, -1 }, { 3805, 8, -1 }, { 3811, 8, -1 }, { 3798, 8, -1 }, { 3815, 8, -1 }, { 28055, 839, -1 }, { 28059, 839, -1 }, { 28055, 842, -1 }, { 28059, 842, -1 }, { 28055, 848, -1 }, { 28059, 848, -1 }, { 3791, 843, -1 }, { 3791, 849, -1 }, { 3979, 850, -1 }, { 3981, 843, -1 }, { 3980, 843, -1 }, { 28095, -1, 863 }, { 26685, -1, 865 }, { 26685, -1, 867 }, { 26685, -1, 869 }, { 3983, 875, -1 }, { 3988, 875, -1 }, { 4017, 875, -1 }, { 4043, 875, -1 }, { 4041, 875, -1 }, { 4040, 875, -1 }, { 3994, 875, -1 }, { 3825, 871, -1 }, { 3806, 871, -1 }, { 3791, 871, -1 }, { 1512, 876, -1 }, { 1508, 877, -1 }, { 3812, 882, -1 }, { 3805, 882, -1 }, { 3806, 882, -1 }, { 3791, 882, -1 }, { 25838, -1, 892 }, { 3983, 920, -1 }, { 4017, 920, -1 }, { 4043, 920, -1 }, { 3999, 920, -1 }, { 4041, 920, -1 }, { 4040, 920, -1 }, { 3988, 920, -1 }, { 3994, 920, -1 }, { 3983, 894, -1 }, { 3988, 894, -1 }, { 3994, 894, -1 }, { 3798, 895, -1 }, { 3983, 903, -1 }, { 3988, 903, -1 }, { 28783, -1, 903 }, { 3988, 901, -1 }, { 28783, -1, 901 }, { 3983, 912, -1 }, { 4017, 901, -1 }, { 4043, 901, -1 }, { 3999, 912, -1 }, { 4041, 901, -1 }, { 4040, 901, -1 }, { 28982, 914, -1 }, { 28973, -1, 914 }, { 28979, 913, -1 }, { 28982, 915, -1 }, { 28973, -1, 915 }, { 28982, 916, -1 }, { 28973, -1, 916 }, { 28982, 919, -1 }, { 28973, -1, 919 }, { 3983, 918, -1 }, { 4017, 903, -1 }, { 4043, 903, -1 }, { 3999, 918, -1 }, { 4041, 903, -1 }, { 4040, 903, -1 }, { 28979, 917, -1 }, { 3812, 904, -1 }, { 3824, 904, -1 }, { 3807, 904, -1 }, { 3825, 904, -1 }, { 3791, 904, -1 }, { 27559, -1, 2929 }, { 4005, 778, -1 }, { 1484, 921, -1 }, { 1484, 922, -1 }, { 1484, 923, -1 }, { 1484, 924, -1 }, { 1484, 925, -1 }, { 1484, 926, -1 }, { 1484, 927, -1 }, { 1484, 928, -1 }, { 1484, 929, -1 }, { 1484, 930, -1 }, { 1484, 931, -1 }, { 1484, 932, -1 }, { 1484, 933, -1 }, { 1484, 934, -1 }, { 1484, 935, -1 }, { 1484, 936, -1 }, { 1484, 937, -1 }, { 1484, 938, -1 }, { 1484, 941, -1 }, { 1484, 939, -1 }, { 1484, 940, -1 }, { 480, 944, -1 }, { 481, 944, -1 }, { 25913, -1, 1486 }, { 25938, -1, 1486 }, { 3999, 1145, -1 }, { 4017, 1145, -1 }, { 3983, 1145, -1 }, { 479, 11, -1 }, { 485, 11, -1 }, { 3999, 1144, -1 }, { 4017, 1144, -1 }, { 3983, 1144, -1 }, { 3983, 1125, -1 }, { 3999, 1125, -1 }, { 30296, 1033, -1 }, { 30296, 1121, -1 }, { 1507, 1126, -1 }, { 23383, -1, 1125 }, { 23386, -1, 48 }, { 1507, 1121, -1 }, { 30295, 1121, -1 }, { 1507, 1033, -1 }, { 30295, 1033, -1 }, { 30296, 1127, -1 }, { 1507, 1127, -1 }, { 30295, 1127, -1 }, { 1507, 1132, -1 }, { 23378, -1, 1132 }, { 23387, -1, 1131 }, { 1507, 1135, -1 }, { 23378, -1, 1135 }, { 23360, -1, 1131 }, { 3983, 1131, -1 }, { 3999, 1131, -1 }, { 4030, 1131, -1 }, { 4017, 1131, -1 }, { 4043, 1131, -1 }, { 4041, 1131, -1 }, { 4040, 1131, -1 }, { 1507, 1134, -1 }, { 23385, -1, 1131 }, { 3791, 1140, -1 }, { 3825, 1140, -1 }, { 3807, 1140, -1 }, { 3815, 1140, -1 }, { 3845, 1140, -1 }, { 3981, 1140, -1 }, { 3988, 1131, -1 }, { 3994, 1131, -1 }, { 3980, 1140, -1 }, { 3844, 1140, -1 }, { 3846, 1140, -1 }, { 23359, -1, 1131 }, { 23357, -1, 1131 }, { 29943, -1, 1131 }, { 23390, -1, 1131 }, { 4050, 948, -1 }, { 3994, 950, -1 }, { 3988, 950, -1 }, { 480, 950, -1 }, { 485, 950, -1 }, { 4017, 950, -1 }, { 4043, 950, -1 }, { 4041, 950, -1 }, { 4040, 950, -1 }, { 479, 950, -1 }, { 3983, 950, -1 }, { 3999, 950, -1 }, { 4028, 950, -1 }, { 479, 16, -1 }, { 479, 15, -1 }, { 479, 134, -1 }, { 1504, 947, -1 }, { 29943, -1, 948 }, { 480, 946, -1 }, { 480, 962, -1 }, { 480, 963, -1 }, { 480, 964, -1 }, { 480, 945, -1 }, { 480, 965, -1 }, { 480, 953, -1 }, { 480, 951, -1 }, { 480, 952, -1 }, { 480, 966, -1 }, { 480, 967, -1 }, { 1504, 968, -1 }, { 480, 954, -1 }, { 480, 955, -1 }, { 480, 956, -1 }, { 480, 957, -1 }, { 480, 958, -1 }, { 480, 959, -1 }, { 480, 960, -1 }, { 485, 954, -1 }, { 479, 954, -1 }, { 485, 955, -1 }, { 479, 955, -1 }, { 485, 956, -1 }, { 479, 956, -1 }, { 485, 958, -1 }, { 479, 958, -1 }, { 485, 960, -1 }, { 479, 960, -1 }, { 2445, 961, -1 }, { 485, 945, -1 }, { 485, 965, -1 }, { 485, 953, -1 }, { 485, 951, -1 }, { 485, 952, -1 }, { 485, 964, -1 }, { 485, 946, -1 }, { 485, 962, -1 }, { 485, 963, -1 }, { 485, 966, -1 }, { 485, 967, -1 }, { 480, 19, -1 }, { 485, 19, -1 }, { 480, 16, -1 }, { 485, 16, -1 }, { 23387, -1, 969 }, { 3988, 969, -1 }, { 3999, 969, -1 }, { 4036, 969, -1 }, { 480, 21, -1 }, { 485, 21, -1 }, { 480, 12, -1 }, { 485, 12, -1 }, { 480, 22, -1 }, { 485, 22, -1 }, { 480, 17, -1 }, { 485, 17, -1 }, { 480, 20, -1 }, { 485, 20, -1 }, { 480, 13, -1 }, { 485, 13, -1 }, { 480, 7, -1 }, { 485, 7, -1 }, { 480, 18, -1 }, { 485, 18, -1 }, { 480, 15, -1 }, { 485, 15, -1 }, { 485, 14, -1 }, { 480, 134, -1 }, { 485, 134, -1 }, { 480, 44, -1 }, { 485, 44, -1 }, { 485, 68, -1 }, { 479, 13, -1 }, { 479, 18, -1 }, { 479, 17, -1 }, { 479, 20, -1 }, { 479, 7, -1 }, { 479, 21, -1 }, { 479, 12, -1 }, { 479, 22, -1 }, { 479, 19, -1 }, { 479, 44, -1 }, { 3983, 1105, -1 }, { 3994, 1105, -1 }, { 3988, 1105, -1 }, { 30879, 1105, -1 }, { 30878, 1105, -1 }, { 29949, -1, 1105 }, { 23360, -1, 1113 }, { 3980, 1111, -1 }, { 3981, 1111, -1 }, { 3979, 1111, -1 }, { 30067, 1116, -1 }, { 1507, 1117, -1 }, { 23378, -1, 1117 }, { 30066, 1116, -1 }, { 3806, 1111, -1 }, { 4064, 1105, -1 }, { 3811, 1111, -1 }, { 3812, 1111, -1 }, { 3793, 1111, -1 }, { 4065, 1105, -1 }, { 4052, 1105, -1 }, { 4066, 1105, -1 }, { 3824, 1111, -1 }, { 4067, 1105, -1 }, { 3825, 1111, -1 }, { 3799, 1111, -1 }, { 4050, 1105, -1 }, { 228, -1, 1119 }, { 31017, -1, 2930 }, { 30066, 1105, -1 }, { 30067, 1105, -1 }, { 3774, 25, -1 }, { 480, 1119, -1 }, { 485, 1119, -1 }, { 30067, 1120, -1 }, { 30066, 1120, -1 }, { 3825, 1039, -1 }, { 3791, 1039, -1 }, { 3795, 1039, -1 }, { 3806, 1039, -1 }, { 1507, 1037, -1 }, { 23390, -1, 4 }, { 23387, -1, 4 }, { 3983, 4, -1 }, { 4017, 4, -1 }, { 4043, 4, -1 }, { 4006, 4, -1 }, { 3999, 4, -1 }, { 30740, -1, 1046 }, { 30740, -1, 1047 }, { 30740, -1, 1048 }, { 4041, 4, -1 }, { 4040, 4, -1 }, { 29944, -1, 1049 }, { 30729, -1, 2931 }, { 1507, 1050, -1 }, { 23379, -1, 1051 }, { 23374, -1, 4 }, { 30245, -1, 1052 }, { 23367, -1, 102 }, { 23390, -1, 102 }, { 23387, -1, 102 }, { 480, 949, -1 }, { 30729, -1, 2932 }, { 29944, -1, 1053 }, { 29944, -1, 1054 }, { 4017, 1, -1 }, { 4043, 1, -1 }, { 3983, 1053, -1 }, { 3999, 1053, -1 }, { 3983, 1054, -1 }, { 3999, 1054, -1 }, { 4041, 1, -1 }, { 4040, 1, -1 }, { 4030, 1, -1 }, { 1507, 221, -1 }, { 1507, 1055, -1 }, { 23377, -1, 1055 }, { 23387, -1, 1049 }, { 479, 949, -1 }, { 479, 952, -1 }, { 30740, -1, 1057 }, { 30740, -1, 1052 }, { 30740, -1, 1058 }, { 30740, -1, 1059 }, { 29944, -1, 4 }, { 29942, 8, -1 }, { 29941, 8, -1 }, { 1507, 1060, -1 }, { 30295, 1060, -1 }, { 23289, 1068, -1 }, { 23289, 1075, -1 }, { 1507, 1067, -1 }, { 30295, 1067, -1 }, { 1507, 1074, -1 }, { 30295, 1074, -1 }, { 30296, 1067, -1 }, { 1512, 1069, -1 }, { 3825, 1080, -1 }, { 3791, 1080, -1 }, { 3806, 1080, -1 }, { 4084, 1087, -1 }, { 4052, 1049, -1 }, { 4087, 1087, -1 }, { 4086, 1087, -1 }, { 4088, 1087, -1 }, { 3994, 1049, -1 }, { 3988, 1049, -1 }, { 3892, 25, -1 }, { 29940, 8, -1 }, { 23386, -1, 948 }, { 486, 951, -1 }, { 486, 952, -1 }, { 486, 945, -1 }, { 485, 949, -1 }, { 1508, 221, -1 }, { 30375, 1097, -1 }, { 30375, 1048, -1 }, { 30729, -1, 2933 }, { 30296, 1090, -1 }, { 1508, 1091, -1 }, { 1507, 1091, -1 }, { 1507, 1090, -1 }, { 30295, 1090, -1 }, { 1507, 1104, -1 }, { 23378, -1, 1104 }, { 23386, -1, 1 }, { 3825, 976, -1 }, { 3791, 976, -1 }, { 3807, 976, -1 }, { 1507, 983, -1 }, { 30295, 983, -1 }, { 29939, 221, -1 }, { 23360, -1, 1012 }, { 1507, 1013, -1 }, { 23378, -1, 1013 }, { 23384, -1, 25 }, { 29942, 221, -1 }, { 29941, 221, -1 }, { 1507, 1014, -1 }, { 23390, -1, 92 }, { 1507, 1008, -1 }, { 30295, 1008, -1 }, { 3983, 991, -1 }, { 3983, 644, -1 }, { 1507, 1016, -1 }, { 23369, -1, 1015 }, { 1507, 1017, -1 }, { 23369, -1, 105 }, { 3983, 1015, -1 }, { 3999, 1015, -1 }, { 3983, 13, -1 }, { 3999, 13, -1 }, { 23388, -1, 13 }, { 3791, 1025, -1 }, { 23382, -1, 4 }, { 4001, 4, -1 }, { 3988, 4, -1 }, { 3984, 4, -1 }, { 1507, 1031, -1 }, { 23372, -1, 1031 }, { 23364, -1, 4 }, { 23367, -1, 4 }, { 1507, 1032, -1 }, { 23378, -1, 1032 }, { 23384, -1, 4 }, { 3985, 4, -1 }, { 23360, -1, 92 }, { 3985, 94, -1 }, { 4001, 94, -1 }, { 3994, 94, -1 }, { 3995, 94, -1 }, { 3988, 94, -1 }, { 1507, 1035, -1 }, { 29947, -1, 94 }, { 23357, -1, 40 }, { 230, -1, 13 }, { 23390, -1, 94 }, { 23384, -1, 94 }, { 479, 1036, -1 }, { 23390, -1, 105 }, { 23384, -1, 105 }, { 23384, -1, 102 }, { 23386, -1, 4 }, { 23387, -1, 94 }, { 23358, -1, 4 }, { 3983, 94, -1 }, { 23358, -1, 94 }, { 3983, 92, -1 }, { 23358, -1, 92 }, { 23387, -1, 92 }, { 23380, -1, 1 }, { 480, 1036, -1 }, { 485, 1036, -1 }, { 31666, 63, -1 }, { 31381, -1, 1177 }, { 31382, -1, 1177 }, { 1511, 1192, -1 }, { 31380, -1, 1177 }, { 1511, 1194, -1 }, { 31380, -1, 1179 }, { 1507, 1201, -1 }, { 31379, -1, 63 }, { 8015, 1188, -1 }, { 8016, 1188, 2934 }, { 8020, 1188, -1 }, { 8019, 1188, 2935 }, { 8023, 1188, -1 }, { 8021, 1188, -1 }, { 8017, 1188, -1 }, { 8015, 21, -1 }, { 8016, 21, 2936 }, { 8020, 21, -1 }, { 8016, 21, 2937 }, { 8019, 21, 2938 }, { 8023, 21, -1 }, { 8021, 21, -1 }, { 8017, 21, -1 }, { 8019, 21, 2939 }, { 8016, 63, 2940 }, { 8019, 63, 2941 }, { 31659, 1177, -1 }, { 31659, 1179, -1 }, { 7979, 569, -1 }, { 7982, 569, -1 }, { 7980, 569, -1 }, { 7972, 569, -1 }, { 7972, 1206, -1 }, { 31514, -1, 1231 }, { 31514, -1, 2942 }, { 31514, -1, 2943 }, { 31287, -1, 1179 }, { 31286, -1, 63 }, { 8016, 11, 2944 }, { 31287, -1, 1177 }, { 5003, 1188, -1 }, { 8097, 1188, -1 }, { 8099, 1188, -1 }, { 8019, 11, 2945 }, { 8102, 1188, -1 }, { 31345, 1154, -1 }, { 31326, 1154, -1 }, { 31332, 1154, -1 }, { 31333, 1154, -1 }, { 31299, 1149, -1 }, { 31302, 1149, -1 }, { 31301, 1149, -1 }, { 5009, 1149, -1 }, { 12434, 1233, -1 }, { 12456, 1233, -1 }, { 12390, 1233, -1 }, { 31667, 21, -1 }, { 3983, 16, -1 }, { 3999, 16, -1 }, { 481, 16, -1 }, { 3812, 1251, -1 }, { 3805, 1251, -1 }, { 32067, -1, 2946 }, { 32224, 1255, -1 }, { 3994, 1255, -1 }, { 1503, 1263, -1 }, { 32055, -1, 1263 }, { 1503, 1265, -1 }, { 32055, -1, 1265 }, { 32067, -1, 2947 }, { 32067, -1, 2948 }, { 32224, 1267, -1 }, { 3994, 1267, -1 }, { 32224, 1260, -1 }, { 3994, 1260, -1 }, { 32224, 1268, -1 }, { 3994, 1268, -1 }, { 3791, 1282, -1 }, { 3825, 1278, -1 }, { 3807, 1282, -1 }, { 3791, 1278, -1 }, { 3988, 1276, -1 }, { 3994, 1276, -1 }, { 1503, 1255, -1 }, { 32055, -1, 1255 }, { 1503, 1286, -1 }, { 32055, -1, 1286 }, { 1503, 1267, -1 }, { 32055, -1, 1267 }, { 1503, 1260, -1 }, { 32055, -1, 1260 }, { 1503, 1268, -1 }, { 32055, -1, 1268 }, { 1503, 1269, -1 }, { 32055, -1, 1269 }, { 1503, 1270, -1 }, { 32055, -1, 1270 }, { 1503, 1271, -1 }, { 32055, -1, 1271 }, { 1503, 1272, -1 }, { 32055, -1, 1272 }, { 1503, 1275, -1 }, { 32055, -1, 1275 }, { 1503, 1276, -1 }, { 32055, -1, 1276 }, { 1503, 1277, -1 }, { 32055, -1, 1277 }, { 1503, 1261, -1 }, { 32055, -1, 1261 }, { 32224, 1269, -1 }, { 3994, 1269, -1 }, { 32067, -1, 2949 }, { 32224, 1270, -1 }, { 3994, 1270, -1 }, { 1503, 1287, -1 }, { 32055, -1, 1287 }, { 32224, 1271, -1 }, { 3994, 1271, -1 }, { 3791, 1288, -1 }, { 1503, 1290, -1 }, { 32066, -1, 1290 }, { 1503, 1293, -1 }, { 32055, -1, 1293 }, { 3994, 16, -1 }, { 32224, 1272, -1 }, { 3994, 1272, -1 }, { 3983, 1273, -1 }, { 3999, 1273, -1 }, { 32224, 1275, -1 }, { 3994, 1275, -1 }, { 32224, 1276, -1 }, { 1503, 1273, -1 }, { 32055, -1, 1273 }, { 32224, 1277, -1 }, { 3994, 1277, -1 }, { 32224, 1261, -1 }, { 3994, 1261, -1 }, { 16233, 1294, -1 }, { 3983, 1294, -1 }, { 16244, 1294, -1 }, { 3988, 1294, -1 }, { 3999, 1294, -1 }, { 16235, 1294, -1 }, { 16238, 1294, -1 }, { 16240, 1294, -1 }, { 3994, 1294, -1 }, { 4028, 1294, -1 }, { 3988, 1295, -1 }, { 3999, 1295, -1 }, { 3995, 1295, -1 }, { 4005, 1295, -1 }, { 3791, 1305, -1 }, { 26463, -1, 1302 }, { 3806, 1305, -1 }, { 3812, 1305, -1 }, { 3805, 1305, -1 }, { 3824, 1305, -1 }, { 33557, -1, 2950 }, { 26662, -1, 1350 }, { 25913, -1, 1302 }, { 33557, -1, 2951 }, { 33557, -1, 2952 }, { 3802, 1296, -1 }, { 3873, 1296, -1 }, { 3889, 1296, -1 }, { 3888, 1296, -1 }, { 3887, 1296, -1 }, { 33557, -1, 2953 }, { 33557, -1, 2954 }, { 33557, -1, 2955 }, { 3999, 1314, -1 }, { 3994, 1314, -1 }, { 4028, 1314, -1 }, { 3988, 1314, -1 }, { 3983, 1295, -1 }, { 3983, 1314, -1 }, { 3983, 1316, -1 }, { 16435, 1316, -1 }, { 16448, 1316, -1 }, { 16437, 1316, -1 }, { 16447, 1316, -1 }, { 3999, 1316, -1 }, { 3988, 1316, -1 }, { 3994, 1316, -1 }, { 4005, 1316, -1 }, { 3988, 1318, -1 }, { 33557, -1, 2956 }, { 25913, -1, 2957 }, { 33557, -1, 2958 }, { 33557, -1, 2959 }, { 25834, -1, 1302 }, { 3812, 1319, -1 }, { 3806, 1319, -1 }, { 3805, 1319, -1 }, { 3825, 1319, -1 }, { 3798, 1319, -1 }, { 3815, 1319, -1 }, { 3845, 1319, -1 }, { 3981, 1319, -1 }, { 3980, 1319, -1 }, { 3844, 1319, -1 }, { 3846, 1319, -1 }, { 3791, 1319, -1 }, { 33557, -1, 2960 }, { 3999, 1318, -1 }, { 4025, 1318, -1 }, { 3994, 1318, -1 }, { 4028, 1318, -1 }, { 3983, 1318, -1 }, { 25662, 1302, -1 }, { 3791, 1335, -1 }, { 25674, 1299, -1 }, { 25692, 1299, -1 }, { 25691, 1299, -1 }, { 25690, 1299, -1 }, { 3812, 1328, -1 }, { 3805, 1328, -1 }, { 3994, 1295, -1 }, { 25679, 1302, -1 }, { 25671, 1302, -1 }, { 25674, 1302, -1 }, { 25692, 1302, -1 }, { 25691, 1302, -1 }, { 25690, 1302, -1 }, { 25668, 1302, -1 }, { 25662, 1299, -1 }, { 25679, 1299, -1 }, { 25671, 1299, -1 }, { 3799, 257, -1 }, { 3853, 257, -1 }, { 3869, 257, -1 }, { 3868, 257, -1 }, { 3867, 257, -1 }, { 3791, 1339, -1 }, { 3806, 1339, -1 }, { 3799, 1339, -1 }, { 3853, 1339, -1 }, { 3869, 1339, -1 }, { 3805, 1339, -1 }, { 3868, 1339, -1 }, { 3867, 1339, -1 }, { 4097, 1323, -1 }, { 25849, -1, 1346 }, { 4025, 1323, -1 }, { 25671, 11, -1 }, { 3983, 1323, -1 }, { 25662, 11, -1 }, { 3988, 1323, -1 }, { 3994, 1323, -1 }, { 4005, 1323, -1 }, { 25668, 11, -1 }, { 25669, 11, -1 }, { 3999, 1323, -1 }, { 25679, 11, -1 }, { 25662, 1323, -1 }, { 25664, 1323, -1 }, { 4099, 1323, -1 }, { 4098, 1323, -1 }, { 25674, 1323, -1 }, { 25692, 1323, -1 }, { 25669, 1323, -1 }, { 25691, 1323, -1 }, { 25690, 1323, -1 }, { 3985, 1323, -1 }, { 3983, 1348, -1 }, { 25913, -1, 1349 }, { 3999, 1348, -1 }, { 4005, 1348, -1 }, { 25834, -1, 1349 }, { 3994, 1348, -1 }, { 3988, 1348, -1 }, { 33557, -1, 2961 }, { 33557, -1, 2962 }, { 23364, -1, 1349 }, { 27234, 790, -1 }, { 3983, 1350, -1 }, { 3983, 1351, -1 }, { 4005, 920, -1 }, { 3994, 1351, -1 }, { 3988, 1351, -1 }, { 3994, 1350, -1 }, { 3988, 1350, -1 }, { 4005, 893, -1 }, { 3999, 893, -1 }, { 4025, 893, -1 }, { 33557, -1, 2963 }, { 33557, -1, 2964 }, { 33557, -1, 2965 }, { 3988, 893, -1 }, { 3994, 893, -1 }, { 4028, 893, -1 }, { 25938, -1, 2966 }, { 3988, 918, -1 }, { 3983, 893, -1 }, { 25834, -1, 2967 }, { 28978, 913, -1 }, { 28978, 917, -1 }, { 3994, 918, -1 }, { 3791, 1328, -1 }, { 3807, 1328, -1 }, { 3824, 1328, -1 }, { 3791, 1352, -1 }, { 3812, 1352, -1 }, { 3983, 1356, -1 }, { 3806, 1352, -1 }, { 3805, 1352, -1 }, { 3999, 1356, -1 }, { 3994, 1356, -1 }, { 3988, 1356, -1 }, { 3824, 1352, -1 }, { 3983, 1312, -1 }, { 3983, 1315, -1 }, { 3999, 1315, -1 }, { 3988, 1315, -1 }, { 4036, 1315, -1 }, { 3999, 1312, -1 }, { 4036, 1312, -1 }, { 33556, -1, 2968 }, { 3985, 1315, -1 }, { 4028, 1315, -1 }, { 33557, -1, 2969 }, { 33556, -1, 2970 }, { 25679, 1323, -1 }, { 25919, -1, 1357 }, { 3791, 1296, -1 }, { 3806, 1296, -1 }, { 3812, 1296, -1 }, { 3805, 1296, -1 }, { 3824, 1296, -1 }, { 3811, 1296, -1 }, { 3806, 1358, -1 }, { 25923, -1, 1302 }, { 3812, 1358, -1 }, { 3805, 1358, -1 }, { 3812, 1365, -1 }, { 3805, 1365, -1 }, { 3812, 1369, -1 }, { 3805, 1369, -1 }, { 3799, 1296, -1 }, { 3853, 1296, -1 }, { 3869, 1296, -1 }, { 3868, 1296, -1 }, { 3867, 1296, -1 }, { 3791, 1358, -1 }, { 3791, 1365, -1 }, { 3791, 1369, -1 }, { 4028, 1323, -1 }, { 25672, 1299, -1 }, { 25668, 1299, -1 }, { 3798, 1296, -1 }, { 25664, 1299, -1 }, { 3983, 1317, -1 }, { 3999, 1317, -1 }, { 4036, 1317, -1 }, { 3995, 1323, -1 }, { 25834, -1, 1828 }, { 25834, -1, 828 }, { 25834, -1, 2971 }, { 25913, -1, 2972 }, { 25669, 1299, -1 }, { 25849, -1, 1373 }, { 25919, -1, 1373 }, { 25834, -1, 2972 }, { 25913, -1, 1828 }, { 25913, -1, 828 }, { 3983, 1377, -1 }, { 25849, -1, 1402 }, { 25938, -1, 1402 }, { 25834, -1, 1374 }, { 3994, 1377, -1 }, { 3988, 1377, -1 }, { 33664, -1, 1388 }, { 4005, 1350, -1 }, { 4025, 1350, -1 }, { 33664, -1, 1387 }, { 3999, 1350, -1 }, { 3983, 1376, -1 }, { 3988, 1374, -1 }, { 3994, 1374, -1 }, { 4020, 1374, -1 }, { 4028, 1374, -1 }, { 4022, 1374, -1 }, { 25848, -1, 1376 }, { 3988, 1376, -1 }, { 3994, 1376, -1 }, { 4028, 1376, -1 }, { 33664, -1, 1378 }, { 33664, -1, 1383 }, { 4005, 1377, -1 }, { 3994, 1384, -1 }, { 3988, 1384, -1 }, { 4035, 1377, -1 }, { 3999, 1374, -1 }, { 4025, 1374, -1 }, { 3983, 1374, -1 }, { 1555, 1377, -1 }, { 3983, 1385, -1 }, { 3988, 1385, -1 }, { 3994, 1385, -1 }, { 27233, 1386, -1 }, { 27227, 1386, -1 }, { 33628, -1, 1405 }, { 33628, -1, 2973 }, { 33672, 1387, -1 }, { 33672, 1388, -1 }, { 33672, 1389, -1 }, { 33672, 1390, -1 }, { 33672, 1391, -1 }, { 33672, 1392, -1 }, { 33672, 1393, -1 }, { 33672, 1394, -1 }, { 33672, 1395, -1 }, { 33672, 1396, -1 }, { 33672, 1397, -1 }, { 33672, 1398, -1 }, { 33672, 1383, -1 }, { 33672, 1378, -1 }, { 33672, 1399, -1 }, { 33672, 1400, -1 }, { 33672, 1401, -1 }, { 27223, 1380, -1 }, { 35116, 1380, -1 }, { 3984, 893, -1 }, { 4005, 1379, -1 }, { 25913, -1, 2974 }, { 3999, 1377, -1 }, { 25834, -1, 770 }, { 1555, 832, -1 }, { 194, -1, 832 }, { 3791, 1403, -1 }, { 3825, 1403, -1 }, { 3807, 1403, -1 }, { 3824, 1403, -1 }, { 33664, -1, 1393 }, { 33664, -1, 1390 }, { 33664, -1, 1394 }, { 3802, 1403, -1 }, { 3873, 1403, -1 }, { 3889, 1403, -1 }, { 3888, 1403, -1 }, { 3887, 1403, -1 }, { 3811, 1403, -1 }, { 3815, 1403, -1 }, { 3845, 1403, -1 }, { 3981, 1403, -1 }, { 3980, 1403, -1 }, { 3844, 1403, -1 }, { 3846, 1403, -1 }, { 33669, -1, 1383 }, { 3983, 1408, -1 }, { 3994, 1408, -1 }, { 3988, 1408, -1 }, { 3999, 1408, -1 }, { 4006, 1384, -1 }, { 3999, 1384, -1 }, { 4025, 1384, -1 }, { 3983, 1384, -1 }, { 33664, -1, 1395 }, { 33665, -1, 1389 }, { 33669, -1, 1391 }, { 33669, -1, 1394 }, { 33664, -1, 1392 }, { 33664, -1, 1391 }, { 33665, -1, 1396 }, { 33665, -1, 1388 }, { 33664, -1, 1400 }, { 33664, -1, 1401 }, { 33664, -1, 1399 }, { 33669, -1, 1397 }, { 33665, -1, 1397 }, { 33664, -1, 1398 }, { 3982, 1403, -1 }, { 34709, -1, 1467 }, { 34709, -1, 19 }, { 25834, -1, 892 }, { 25834, -1, 1427 }, { 25834, -1, 1417 }, { 35094, 1409, -1 }, { 35103, 1409, -1 }, { 35108, 1409, -1 }, { 35107, 1409, -1 }, { 35111, 1409, -1 }, { 35100, 1409, -1 }, { 35101, 1409, -1 }, { 35096, 1409, -1 }, { 35097, 1409, -1 }, { 1555, 1409, -1 }, { 35094, 1442, -1 }, { 35108, 1442, -1 }, { 35103, 1442, -1 }, { 35096, 1442, -1 }, { 35097, 1442, -1 }, { 3988, 1454, -1 }, { 3994, 1454, -1 }, { 34709, -1, 1468 }, { 27233, 784, -1 }, { 27228, 784, -1 }, { 27227, 784, -1 }, { 27233, 19, -1 }, { 27228, 19, -1 }, { 27227, 19, -1 }, { 25938, -1, 892 }, { 25913, -1, 892 }, { 25938, -1, 2975 }, { 25938, -1, 2976 }, { 25938, -1, 1420 }, { 25938, -1, 2977 }, { 25938, -1, 2978 }, { 25938, -1, 2979 }, { 25938, -1, 1465 }, { 25938, -1, 2980 }, { 25913, -1, 2979 }, { 25938, -1, 2981 }, { 25938, -1, 1451 }, { 25938, -1, 2982 }, { 3999, 1414, -1 }, { 3983, 1415, -1 }, { 3988, 1414, -1 }, { 33930, 1416, -1 }, { 33932, 1416, -1 }, { 3994, 1414, -1 }, { 4001, 1414, -1 }, { 3994, 891, -1 }, { 3988, 891, -1 }, { 4005, 1414, -1 }, { 25836, -1, 1465 }, { 25938, -1, 1415 }, { 34048, -1, 1417 }, { 34048, -1, 2983 }, { 34048, -1, 1462 }, { 35113, 1417, -1 }, { 25924, -1, 1417 }, { 3988, 1417, -1 }, { 3994, 1417, -1 }, { 35114, 1417, -1 }, { 25915, -1, 1415 }, { 4005, 1415, -1 }, { 27223, 63, -1 }, { 27228, 63, -1 }, { 3988, 1415, -1 }, { 3994, 1415, -1 }, { 25938, -1, 1417 }, { 25913, -1, 1417 }, { 25938, -1, 2983 }, { 26661, -1, 1350 }, { 26661, -1, 1415 }, { 3999, 1415, -1 }, { 25913, -1, 1462 }, { 27223, 19, -1 }, { 33933, 1416, -1 }, { 25843, -1, 2982 }, { 3983, 1414, -1 }, { 3825, 1419, -1 }, { 3798, 1419, -1 }, { 1483, 835, -1 }, { 25662, 1420, -1 }, { 3807, 1419, -1 }, { 25669, 1420, -1 }, { 25679, 1420, -1 }, { 25674, 1420, -1 }, { 25692, 1420, -1 }, { 25691, 1420, -1 }, { 25690, 1420, -1 }, { 25671, 1420, -1 }, { 25672, 1420, -1 }, { 3824, 1419, -1 }, { 3791, 1419, -1 }, { 33930, 1432, -1 }, { 33932, 1432, -1 }, { 25834, -1, 2984 }, { 35113, 772, -1 }, { 3994, 772, -1 }, { 3988, 772, -1 }, { 35114, 772, -1 }, { 25848, -1, 772 }, { 33934, 1432, -1 }, { 27223, 784, -1 }, { 33933, 1432, -1 }, { 3983, 1427, -1 }, { 4005, 1427, -1 }, { 3988, 1427, -1 }, { 3994, 1427, -1 }, { 3999, 1427, -1 }, { 1555, 1427, -1 }, { 4035, 1427, -1 }, { 3791, 1433, -1 }, { 3791, 1434, -1 }, { 3791, 1410, -1 }, { 3791, 1440, -1 }, { 3825, 1433, -1 }, { 35096, 1427, -1 }, { 35094, 1427, -1 }, { 35095, 1427, -1 }, { 3807, 1433, -1 }, { 35097, 1427, -1 }, { 35103, 1427, -1 }, { 3824, 1433, -1 }, { 35034, -1, 2985 }, { 35034, -1, 2986 }, { 35034, -1, 783 }, { 35034, -1, 2987 }, { 35034, -1, 11 }, { 3988, 892, -1 }, { 3994, 892, -1 }, { 35034, -1, 19 }, { 35034, -1, 63 }, { 34710, -1, 891 }, { 34709, -1, 1444 }, { 34709, -1, 63 }, { 34709, -1, 1445 }, { 34709, -1, 11 }, { 34710, -1, 1420 }, { 34710, -1, 1427 }, { 34710, -1, 2988 }, { 34710, -1, 2989 }, { 34710, -1, 2990 }, { 34709, -1, 1446 }, { 34709, -1, 1447 }, { 34709, -1, 1448 }, { 34709, -1, 1449 }, { 34709, -1, 1450 }, { 34709, -1, 13 }, { 27233, 25, -1 }, { 25913, -1, 2984 }, { 25938, -1, 2991 }, { 27227, 25, -1 }, { 3983, 892, -1 }, { 35034, -1, 2992 }, { 35034, -1, 2993 }, { 4005, 892, -1 }, { 3999, 892, -1 }, { 27223, 1469, -1 }, { 35116, 1469, -1 }, { 1563, 772, -1 }, { 4027, 772, -1 }, { 35121, 1469, -1 }, { 35122, 1469, -1 }, { 27223, 772, -1 }, { 27224, 772, -1 }, { 1507, 1470, -1 }, { 1508, 1470, -1 }, { 25834, -1, 1451 }, { 27233, 63, -1 }, { 27227, 63, -1 }, { 25841, -1, 772 }, { 25845, -1, 1417 }, { 35113, 1451, -1 }, { 25848, -1, 1451 }, { 3994, 1451, -1 }, { 3988, 1451, -1 }, { 35114, 1451, -1 }, { 35113, 1454, -1 }, { 25845, -1, 1454 }, { 35114, 1454, -1 }, { 4005, 1454, -1 }, { 3999, 1454, -1 }, { 35113, 836, -1 }, { 3988, 836, -1 }, { 3986, 836, -1 }, { 3987, 836, -1 }, { 35114, 836, -1 }, { 25834, -1, 893 }, { 25662, 1424, -1 }, { 3983, 1454, -1 }, { 25668, 1424, -1 }, { 25674, 1424, -1 }, { 25692, 1424, -1 }, { 25691, 1424, -1 }, { 25690, 1424, -1 }, { 25669, 1424, -1 }, { 25679, 1424, -1 }, { 25671, 1424, -1 }, { 34710, -1, 892 }, { 34709, -1, 1458 }, { 27229, 19, -1 }, { 27233, 783, -1 }, { 27227, 783, -1 }, { 3983, 1462, -1 }, { 34709, -1, 1456 }, { 34709, -1, 1460 }, { 34709, -1, 1413 }, { 34709, -1, 1461 }, { 34710, -1, 2994 }, { 25834, -1, 2995 }, { 25848, -1, 1462 }, { 3994, 1462, -1 }, { 3988, 1462, -1 }, { 3999, 1459, -1 }, { 4025, 1459, -1 }, { 3994, 1459, -1 }, { 3988, 1459, -1 }, { 3983, 1459, -1 }, { 3994, 836, -1 }, { 3999, 836, -1 }, { 3995, 836, -1 }, { 34709, -1, 1463 }, { 25834, -1, 2975 }, { 3994, 1464, -1 }, { 3988, 1464, -1 }, { 3999, 1464, -1 }, { 4028, 1464, -1 }, { 4005, 1464, -1 }, { 3983, 1464, -1 }, { 26467, -1, 835 }, { 3983, 1465, -1 }, { 4006, 1465, -1 }, { 3994, 1465, -1 }, { 3988, 1465, -1 }, { 4025, 1465, -1 }, { 3999, 1465, -1 }, { 1563, 1465, -1 }, { 4013, 1465, -1 }, { 1507, 1466, -1 }, { 23390, -1, 1465 }, { 35113, 778, -1 }, { 35113, 785, -1 }, { 35113, 783, -1 }, { 35113, 779, -1 }, { 35113, 11, -1 }, { 4001, 778, -1 }, { 4001, 785, -1 }, { 4001, 783, -1 }, { 4001, 779, -1 }, { 4001, 11, -1 }, { 4005, 785, -1 }, { 4005, 783, -1 }, { 4005, 779, -1 }, { 4005, 11, -1 }, { 3988, 778, -1 }, { 3994, 778, -1 }, { 3994, 785, -1 }, { 3994, 783, -1 }, { 3994, 779, -1 }, { 3995, 778, -1 }, { 3995, 785, -1 }, { 3995, 783, -1 }, { 3995, 779, -1 }, { 35114, 778, -1 }, { 35114, 785, -1 }, { 35114, 783, -1 }, { 35114, 779, -1 }, { 35114, 11, -1 }, { 3999, 778, -1 }, { 3999, 785, -1 }, { 3999, 783, -1 }, { 3999, 779, -1 }, { 1483, 1478, -1 }, { 1483, 1479, -1 }, { 1483, 63, -1 }, { 25834, -1, 1626 }, { 25834, -1, 1590 }, { 25938, -1, 1590 }, { 25923, -1, 1357 }, { 3791, 1524, -1 }, { 3983, 1527, -1 }, { 3812, 1524, -1 }, { 3807, 1524, -1 }, { 4006, 1527, -1 }, { 3824, 1524, -1 }, { 3805, 1524, -1 }, { 3983, 1532, -1 }, { 3999, 1532, -1 }, { 4025, 1527, -1 }, { 3999, 1527, -1 }, { 3811, 1524, -1 }, { 4017, 1533, -1 }, { 4043, 1533, -1 }, { 4041, 1533, -1 }, { 4040, 1533, -1 }, { 3999, 1533, -1 }, { 4025, 1533, -1 }, { 38048, -1, 2996 }, { 3983, 1533, -1 }, { 3983, 1560, -1 }, { 1484, 778, -1 }, { 1483, 778, -1 }, { 4017, 25, -1 }, { 4043, 25, -1 }, { 4041, 25, -1 }, { 4040, 25, -1 }, { 23362, -1, 25 }, { 3791, 1557, -1 }, { 3802, 1557, -1 }, { 3806, 1557, -1 }, { 3824, 1557, -1 }, { 3813, 1557, -1 }, { 3985, 1548, -1 }, { 4017, 1548, -1 }, { 4043, 1548, -1 }, { 4041, 1548, -1 }, { 4040, 1548, -1 }, { 3812, 1557, -1 }, { 38048, -1, 2997 }, { 23362, -1, 1535 }, { 25836, -1, 1630 }, { 25834, -1, 1628 }, { 38048, -1, 2998 }, { 38049, -1, 2999 }, { 38049, -1, 3000 }, { 38048, -1, 2999 }, { 3983, 1501, -1 }, { 3999, 1501, -1 }, { 3988, 1501, -1 }, { 4006, 1501, -1 }, { 26667, -1, 1479 }, { 3806, 1489, -1 }, { 3812, 1503, -1 }, { 3805, 1503, -1 }, { 3812, 1507, -1 }, { 3806, 1503, -1 }, { 3805, 1507, -1 }, { 3805, 1511, -1 }, { 1491, 1488, -1 }, { 3811, 1503, -1 }, { 3799, 1507, -1 }, { 3853, 1507, -1 }, { 3869, 1507, -1 }, { 3868, 1507, -1 }, { 3867, 1507, -1 }, { 3811, 1507, -1 }, { 3811, 1511, -1 }, { 3806, 1507, -1 }, { 3806, 1511, -1 }, { 23386, -1, 1483 }, { 3824, 1507, -1 }, { 3812, 1511, -1 }, { 3824, 1511, -1 }, { 3799, 1503, -1 }, { 3824, 1503, -1 }, { 3791, 1503, -1 }, { 3791, 1507, -1 }, { 3791, 1511, -1 }, { 25938, -1, 1594 }, { 25915, -1, 3001 }, { 3802, 1613, -1 }, { 3985, 1594, -1 }, { 4017, 1594, -1 }, { 4043, 1594, -1 }, { 3824, 1613, -1 }, { 4041, 1594, -1 }, { 4040, 1594, -1 }, { 3791, 1613, -1 }, { 3812, 1613, -1 }, { 3807, 1613, -1 }, { 3825, 1613, -1 }, { 3791, 1561, -1 }, { 3802, 1561, -1 }, { 3873, 1561, -1 }, { 3889, 1561, -1 }, { 3888, 1561, -1 }, { 3887, 1561, -1 }, { 3824, 1561, -1 }, { 3812, 1561, -1 }, { 3807, 1561, -1 }, { 3805, 1561, -1 }, { 3983, 1564, -1 }, { 4017, 1564, -1 }, { 4043, 1564, -1 }, { 4041, 1564, -1 }, { 4040, 1564, -1 }, { 3999, 1564, -1 }, { 4025, 1564, -1 }, { 23360, -1, 1564 }, { 3985, 1564, -1 }, { 3988, 1564, -1 }, { 3994, 1564, -1 }, { 4005, 1564, -1 }, { 25913, -1, 1357 }, { 25913, -1, 833 }, { 1484, 1573, -1 }, { 3812, 1586, -1 }, { 3812, 1579, -1 }, { 3805, 1579, -1 }, { 3805, 1586, -1 }, { 3807, 1586, -1 }, { 3807, 1579, -1 }, { 3802, 1583, -1 }, { 3802, 1576, -1 }, { 35537, -1, 1573 }, { 3802, 1586, -1 }, { 3873, 1586, -1 }, { 3889, 1586, -1 }, { 3888, 1586, -1 }, { 3887, 1586, -1 }, { 3802, 1579, -1 }, { 3873, 1579, -1 }, { 3889, 1579, -1 }, { 3888, 1579, -1 }, { 3887, 1579, -1 }, { 23387, -1, 1574 }, { 23387, -1, 1575 }, { 3811, 1586, -1 }, { 3815, 1583, -1 }, { 3845, 1583, -1 }, { 3981, 1583, -1 }, { 3844, 1583, -1 }, { 3846, 1583, -1 }, { 3811, 1583, -1 }, { 3811, 1579, -1 }, { 3815, 1576, -1 }, { 3845, 1576, -1 }, { 3981, 1576, -1 }, { 3844, 1576, -1 }, { 3846, 1576, -1 }, { 3811, 1576, -1 }, { 25840, -1, 1590 }, { 26661, -1, 1892 }, { 25840, -1, 1588 }, { 25913, -1, 1588 }, { 25913, -1, 1581 }, { 3812, 1576, -1 }, { 3805, 1576, -1 }, { 3812, 1583, -1 }, { 3805, 1583, -1 }, { 35537, -1, 1575 }, { 35537, -1, 1574 }, { 4017, 1574, -1 }, { 4043, 1574, -1 }, { 3824, 1586, -1 }, { 4041, 1574, -1 }, { 4040, 1574, -1 }, { 4017, 1575, -1 }, { 4043, 1575, -1 }, { 3824, 1579, -1 }, { 4041, 1575, -1 }, { 4040, 1575, -1 }, { 3983, 1575, -1 }, { 3807, 1576, -1 }, { 3999, 1575, -1 }, { 3798, 1576, -1 }, { 3799, 1576, -1 }, { 3854, 1576, -1 }, { 3824, 1576, -1 }, { 3983, 1574, -1 }, { 3807, 1583, -1 }, { 3999, 1574, -1 }, { 3798, 1583, -1 }, { 3799, 1583, -1 }, { 3854, 1583, -1 }, { 3824, 1583, -1 }, { 3791, 1576, -1 }, { 3791, 1579, -1 }, { 3791, 1583, -1 }, { 3791, 1586, -1 }, { 25834, -1, 1535 }, { 36357, -1, 3002 }, { 3983, 1535, -1 }, { 4036, 1535, -1 }, { 4005, 1535, -1 }, { 3988, 1535, -1 }, { 3999, 1535, -1 }, { 25840, -1, 1553 }, { 4006, 1535, -1 }, { 4025, 1535, -1 }, { 4017, 1535, -1 }, { 4043, 1535, -1 }, { 4041, 1535, -1 }, { 4040, 1535, -1 }, { 3983, 1565, -1 }, { 4006, 1565, -1 }, { 3999, 1565, -1 }, { 4025, 1565, -1 }, { 38049, -1, 2997 }, { 3791, 1591, -1 }, { 3983, 1499, -1 }, { 4001, 1499, -1 }, { 3999, 1499, -1 }, { 3802, 1591, -1 }, { 3825, 1591, -1 }, { 3805, 1591, -1 }, { 3824, 1591, -1 }, { 4025, 11, -1 }, { 23387, -1, 1564 }, { 4006, 1564, -1 }, { 4006, 1499, -1 }, { 3812, 1591, -1 }, { 4006, 11, -1 }, { 3806, 1591, -1 }, { 3799, 1591, -1 }, { 23386, -1, 11 }, { 3811, 1591, -1 }, { 4005, 1499, -1 }, { 25913, -1, 1540 }, { 25938, -1, 3001 }, { 16193, 1483, -1 }, { 16230, 1483, -1 }, { 16231, 1483, -1 }, { 16207, 1483, -1 }, { 3791, 1595, -1 }, { 3807, 1595, -1 }, { 23386, -1, 1499 }, { 3825, 1595, -1 }, { 3791, 1598, -1 }, { 3807, 1598, -1 }, { 3983, 1594, -1 }, { 3873, 1591, -1 }, { 3889, 1591, -1 }, { 3999, 1594, -1 }, { 3888, 1591, -1 }, { 3887, 1591, -1 }, { 3825, 1598, -1 }, { 23387, -1, 1539 }, { 4017, 1539, -1 }, { 4043, 1539, -1 }, { 4041, 1539, -1 }, { 4040, 1539, -1 }, { 25938, -1, 3003 }, { 25938, -1, 3004 }, { 25938, -1, 1539 }, { 25938, -1, 3005 }, { 3791, 1493, -1 }, { 3791, 1496, -1 }, { 3807, 1493, -1 }, { 3807, 1496, -1 }, { 3805, 1493, -1 }, { 3806, 1493, -1 }, { 3824, 1496, -1 }, { 3812, 1496, -1 }, { 3806, 1496, -1 }, { 3805, 1496, -1 }, { 3791, 1618, -1 }, { 3983, 1534, -1 }, { 3999, 1534, -1 }, { 3806, 1618, -1 }, { 3802, 1618, -1 }, { 23386, -1, 1617 }, { 3824, 1618, -1 }, { 3873, 1618, -1 }, { 3889, 1618, -1 }, { 3888, 1618, -1 }, { 3887, 1618, -1 }, { 3811, 1618, -1 }, { 38048, -1, 3006 }, { 3999, 1621, -1 }, { 4025, 1621, -1 }, { 4017, 1621, -1 }, { 4043, 1621, -1 }, { 4041, 1621, -1 }, { 4040, 1621, -1 }, { 38049, -1, 3006 }, { 3983, 1621, -1 }, { 25938, -1, 770 }, { 25913, -1, 1626 }, { 25913, -1, 1590 }, { 3999, 1624, -1 }, { 4025, 1624, -1 }, { 4017, 1624, -1 }, { 4043, 1624, -1 }, { 4041, 1624, -1 }, { 4040, 1624, -1 }, { 3983, 1624, -1 }, { 3805, 1566, -1 }, { 3791, 1566, -1 }, { 3807, 1566, -1 }, { 3999, 1625, -1 }, { 4025, 1625, -1 }, { 4017, 1625, -1 }, { 4043, 1625, -1 }, { 4041, 1625, -1 }, { 4040, 1625, -1 }, { 3983, 1625, -1 }, { 25669, 1626, -1 }, { 25679, 1626, -1 }, { 25674, 1626, -1 }, { 25692, 1626, -1 }, { 25691, 1626, -1 }, { 25690, 1626, -1 }, { 25668, 1626, -1 }, { 25938, -1, 1626 }, { 25938, -1, 1630 }, { 25662, 1626, -1 }, { 3983, 1500, -1 }, { 3999, 1500, -1 }, { 1483, 1500, -1 }, { 4016, 1500, -1 }, { 25662, 1628, -1 }, { 25921, -1, 1628 }, { 25679, 1628, -1 }, { 25674, 1628, -1 }, { 25692, 1628, -1 }, { 25691, 1628, -1 }, { 25690, 1628, -1 }, { 25662, 1630, -1 }, { 25921, -1, 1630 }, { 25679, 1630, -1 }, { 25674, 1630, -1 }, { 25692, 1630, -1 }, { 25691, 1630, -1 }, { 25690, 1630, -1 }, { 3984, 1523, -1 }, { 3999, 1523, -1 }, { 3999, 1632, -1 }, { 4025, 1632, -1 }, { 4017, 1632, -1 }, { 4043, 1632, -1 }, { 4041, 1632, -1 }, { 4040, 1632, -1 }, { 25913, -1, 3001 }, { 3983, 1632, -1 }, { 3791, 1489, -1 }, { 3805, 1489, -1 }, { 25671, 25, -1 }, { 25679, 25, -1 }, { 25672, 25, -1 }, { 25662, 25, -1 }, { 3983, 1616, -1 }, { 3999, 1616, -1 }, { 4025, 1616, -1 }, { 38049, -1, 2996 }, { 35537, -1, 63 }, { 38050, -1, 2996 }, { 38050, -1, 3006 }, { 38050, -1, 2997 }, { 38050, -1, 2998 }, { 3988, 1, -1 }, { 4005, 1, -1 }, { 4017, 1616, -1 }, { 4043, 1616, -1 }, { 4041, 1616, -1 }, { 4040, 1616, -1 }, { 35537, -1, 1479 }, { 25938, -1, 1628 }, { 26464, -1, 3007 }, { 26661, -1, 3007 }, { 25752, -1, 3007 }, { 23366, -1, 1483 }, { 16190, 1483, -1 }, { 16192, 1483, -1 }, { 23357, -1, 1535 }, { 3798, 1524, -1 }, { 3802, 1524, -1 }, { 3873, 1524, -1 }, { 3889, 1524, -1 }, { 3888, 1524, -1 }, { 3887, 1524, -1 }, { 3985, 1483, -1 }, { 4017, 1483, -1 }, { 4043, 1483, -1 }, { 1563, 1521, -1 }, { 236, -1, 1521 }, { 1563, 1536, -1 }, { 236, -1, 1536 }, { 16206, 1483, -1 }, { 4041, 1483, -1 }, { 4040, 1483, -1 }, { 16201, 1483, -1 }, { 16199, 1483, -1 }, { 3994, 1539, -1 }, { 3988, 1539, -1 }, { 16204, 1483, -1 }, { 16222, 1483, -1 }, { 4020, 11, -1 }, { 16224, 1483, -1 }, { 16226, 1483, -1 }, { 3791, 1550, -1 }, { 3812, 1550, -1 }, { 3806, 1550, -1 }, { 3805, 1550, -1 }, { 4028, 11, -1 }, { 23387, -1, 1536 }, { 3999, 1536, -1 }, { 4036, 1536, -1 }, { 3983, 1549, -1 }, { 3999, 1549, -1 }, { 4036, 1549, -1 }, { 35537, -1, 1478 }, { 1484, 1478, -1 }, { 25913, -1, 1479 }, { 25938, -1, 1479 }, { 25938, -1, 3008 }, { 25938, -1, 3009 }, { 23357, -1, 1564 }, { 23357, -1, 1617 }, { 3791, 1538, -1 }, { 3983, 1546, -1 }, { 3983, 1539, -1 }, { 3812, 1538, -1 }, { 23366, -1, 1539 }, { 3805, 1538, -1 }, { 3999, 1539, -1 }, { 3802, 1538, -1 }, { 3873, 1538, -1 }, { 3889, 1538, -1 }, { 3888, 1538, -1 }, { 3887, 1538, -1 }, { 4006, 1539, -1 }, { 3806, 1538, -1 }, { 3799, 1538, -1 }, { 3853, 1538, -1 }, { 3869, 1538, -1 }, { 3868, 1538, -1 }, { 3867, 1538, -1 }, { 3811, 1538, -1 }, { 4005, 1546, -1 }, { 4005, 1539, -1 }, { 4028, 1539, -1 }, { 3824, 1538, -1 }, { 3999, 1546, -1 }, { 35537, -1, 1546 }, { 4017, 1546, -1 }, { 4043, 1546, -1 }, { 4041, 1546, -1 }, { 4040, 1546, -1 }, { 4025, 1546, -1 }, { 35537, -1, 1539 }, { 25913, -1, 1539 }, { 1512, 1604, -1 }, { 1511, 1604, -1 }, { 35411, -1, 770 }, { 3825, 1606, -1 }, { 3812, 1606, -1 }, { 25923, -1, 770 }, { 25834, -1, 1499 }, { 25838, -1, 1357 }, { 25838, -1, 833 }, { 25838, -1, 1644 }, { 3791, 1633, -1 }, { 3983, 1623, -1 }, { 3983, 1622, -1 }, { 3791, 1636, -1 }, { 3983, 1638, -1 }, { 3791, 1640, -1 }, { 3802, 1633, -1 }, { 3825, 1636, -1 }, { 3802, 1640, -1 }, { 3873, 1640, -1 }, { 3889, 1640, -1 }, { 4001, 1638, -1 }, { 3888, 1640, -1 }, { 3887, 1640, -1 }, { 3799, 1640, -1 }, { 23386, -1, 25 }, { 3805, 1640, -1 }, { 4006, 1638, -1 }, { 4025, 1638, -1 }, { 3988, 1638, -1 }, { 3824, 1640, -1 }, { 3999, 1638, -1 }, { 23387, -1, 1638 }, { 3812, 1640, -1 }, { 4017, 1638, -1 }, { 4043, 1638, -1 }, { 4041, 1638, -1 }, { 4040, 1638, -1 }, { 3806, 1640, -1 }, { 3807, 1640, -1 }, { 4005, 1638, -1 }, { 3994, 1638, -1 }, { 4028, 1638, -1 }, { 3799, 1636, -1 }, { 3805, 1636, -1 }, { 3824, 1636, -1 }, { 3802, 1636, -1 }, { 3873, 1636, -1 }, { 3889, 1636, -1 }, { 3888, 1636, -1 }, { 3887, 1636, -1 }, { 4005, 1623, -1 }, { 4005, 1622, -1 }, { 3811, 1633, -1 }, { 3811, 1636, -1 }, { 3811, 1640, -1 }, { 3812, 1633, -1 }, { 3807, 1633, -1 }, { 3999, 1623, -1 }, { 3799, 1633, -1 }, { 23387, -1, 11 }, { 4017, 11, -1 }, { 4043, 11, -1 }, { 3805, 1633, -1 }, { 3999, 1622, -1 }, { 3824, 1633, -1 }, { 4041, 11, -1 }, { 4040, 11, -1 }, { 3985, 1622, -1 }, { 4017, 1622, -1 }, { 4043, 1622, -1 }, { 4025, 1622, -1 }, { 4041, 1622, -1 }, { 4040, 1622, -1 }, { 4017, 1623, -1 }, { 4043, 1623, -1 }, { 4041, 1623, -1 }, { 4040, 1623, -1 }, { 3812, 1636, -1 }, { 3815, 1636, -1 }, { 3845, 1636, -1 }, { 3980, 1636, -1 }, { 3981, 1636, -1 }, { 3844, 1636, -1 }, { 3846, 1636, -1 }, { 23367, -1, 1638 }, { 3798, 1636, -1 }, { 3807, 1636, -1 }, { 25913, -1, 1638 }, { 25938, -1, 1638 }, { 3806, 1480, -1 }, { 3812, 1480, -1 }, { 3805, 1480, -1 }, { 3824, 1480, -1 }, { 25834, -1, 1486 }, { 3813, 1480, -1 }, { 3983, 1483, -1 }, { 3815, 1480, -1 }, { 3845, 1480, -1 }, { 3981, 1480, -1 }, { 3980, 1480, -1 }, { 3999, 1483, -1 }, { 3844, 1480, -1 }, { 3846, 1480, -1 }, { 1492, 1488, -1 }, { 3791, 1480, -1 }, { 3988, 1646, -1 }, { 3994, 1646, -1 }, { 4017, 1646, -1 }, { 4043, 1646, -1 }, { 4041, 1646, -1 }, { 4040, 1646, -1 }, { 25913, -1, 3010 }, { 25938, -1, 3010 }, { 1483, 1574, -1 }, { 1483, 1575, -1 }, { 2445, 435, -1 }, { 25838, -1, 1417 }, { 32681, -1, 784 }, { 25913, -1, 3011 }, { 25913, -1, 3012 }, { 1484, 1685, -1 }, { 1484, 1686, -1 }, { 1492, 1687, -1 }, { 1492, 1689, -1 }, { 1492, 1692, -1 }, { 1492, 1691, -1 }, { 1492, 1690, -1 }, { 1492, 1693, -1 }, { 1492, 1688, -1 }, { 1484, 1695, -1 }, { 1484, 1696, -1 }, { 1484, 1697, -1 }, { 1492, 1698, -1 }, { 1496, 1699, -1 }, { 1492, 1701, -1 }, { 3983, 1703, -1 }, { 1483, 1703, -1 }, { 1483, 1704, -1 }, { 1491, 1705, -1 }, { 41622, -1, 1707 }, { 41622, -1, 1705 }, { 41621, -1, 1703 }, { 3999, 1703, -1 }, { 3994, 1703, -1 }, { 4025, 1703, -1 }, { 3988, 1703, -1 }, { 4005, 1703, -1 }, { 4032, 25, -1 }, { 1484, 1703, -1 }, { 1484, 1704, -1 }, { 1492, 1705, -1 }, { 3983, 1706, -1 }, { 3994, 1706, -1 }, { 3988, 1706, -1 }, { 3999, 1706, -1 }, { 41621, -1, 1706 }, { 4006, 1706, -1 }, { 4028, 1706, -1 }, { 4005, 1706, -1 }, { 41621, -1, 25 }, { 41934, 1708, -1 }, { 41935, 1708, -1 }, { 1483, 1685, -1 }, { 1483, 1686, -1 }, { 41936, 1708, -1 }, { 41930, 1708, -1 }, { 16235, 1716, -1 }, { 16244, 1716, -1 }, { 1491, 1698, -1 }, { 1491, 1701, -1 }, { 1483, 1697, -1 }, { 1495, 1699, -1 }, { 4005, 7, -1 }, { 1484, 63, -1 }, { 3825, 1718, -1 }, { 3988, 7, -1 }, { 4036, 7, -1 }, { 1492, 1715, -1 }, { 4001, 7, -1 }, { 3984, 7, -1 }, { 41588, 1709, -1 }, { 3988, 1737, -1 }, { 3792, 1718, -1 }, { 3994, 1737, -1 }, { 3807, 1718, -1 }, { 41583, 1709, -1 }, { 480, 778, -1 }, { 481, 778, -1 }, { 41449, 1709, -1 }, { 41450, 1709, -1 }, { 25921, -1, 1738 }, { 41629, -1, 3013 }, { 41629, -1, 3014 }, { 41599, 1709, -1 }, { 4036, 1713, -1 }, { 3791, 1723, -1 }, { 3983, 1713, -1 }, { 8762, -1, 3015 }, { 3807, 1723, -1 }, { 4006, 1713, -1 }, { 3999, 1713, -1 }, { 4025, 1713, -1 }, { 3824, 1723, -1 }, { 3994, 1713, -1 }, { 3806, 1723, -1 }, { 3988, 1713, -1 }, { 3798, 1723, -1 }, { 1484, 1710, -1 }, { 3812, 1723, -1 }, { 3805, 1723, -1 }, { 41621, -1, 1710 }, { 1483, 1695, -1 }, { 1491, 1688, -1 }, { 1491, 1689, -1 }, { 1491, 1690, -1 }, { 1491, 1691, -1 }, { 1491, 1692, -1 }, { 1491, 1693, -1 }, { 3825, 1728, -1 }, { 3825, 1731, -1 }, { 3811, 1731, -1 }, { 3811, 1728, -1 }, { 3807, 1731, -1 }, { 3807, 1728, -1 }, { 3791, 1728, -1 }, { 3791, 1731, -1 }, { 1483, 1710, -1 }, { 1484, 1706, -1 }, { 41932, 1708, -1 }, { 41935, 1722, -1 }, { 41936, 1722, -1 }, { 41930, 1717, -1 }, { 1483, 1696, -1 }, { 1491, 1687, -1 }, { 25834, -1, 1781 }, { 25938, -1, 1781 }, { 25843, -1, 1684 }, { 41934, 1684, -1 }, { 25836, -1, 2975 }, { 27223, 25, -1 }, { 27228, 25, -1 }, { 1484, 25, -1 }, { 41935, 1684, -1 }, { 1483, 25, -1 }, { 41936, 1684, -1 }, { 41930, 1684, -1 }, { 25834, -1, 2976 }, { 25915, -1, 1420 }, { 25843, -1, 2976 }, { 4025, 892, -1 }, { 1483, 1780, -1 }, { 1483, 1781, -1 }, { 1484, 1780, -1 }, { 1484, 1781, -1 }, { 25834, -1, 3016 }, { 25938, -1, 3016 }, { 16235, 19, -1 }, { 16241, 19, -1 }, { 16251, 19, -1 }, { 16250, 19, -1 }, { 16249, 19, -1 }, { 16240, 19, -1 }, { 16244, 19, -1 }, { 16233, 19, -1 }, { 7999, -1, 3017 }, { 4201, 1812, -1 }, { 4206, 1812, -1 }, { 31285, -1, 63 }, { 8085, 63, -1 }, { 8001, -1, 3018 }, { 25913, -1, 1781 }, { 25913, -1, 3019 }, { 25913, -1, 3020 }, { 4017, 1774, -1 }, { 4043, 1774, -1 }, { 4041, 1774, -1 }, { 4040, 1774, -1 }, { 3983, 1774, -1 }, { 4006, 1774, -1 }, { 3999, 1774, -1 }, { 25918, -1, 1774 }, { 42080, 1783, -1 }, { 3805, 1775, -1 }, { 25913, -1, 3021 }, { 3799, 1775, -1 }, { 3855, 1775, -1 }, { 3807, 1775, -1 }, { 3791, 1775, -1 }, { 25938, -1, 3019 }, { 3999, 1781, -1 }, { 3983, 1781, -1 }, { 25849, -1, 1781 }, { 4017, 1781, -1 }, { 4043, 1781, -1 }, { 4041, 1781, -1 }, { 4040, 1781, -1 }, { 41934, 2003, -1 }, { 3984, 778, -1 }, { 41936, 2003, -1 }, { 41930, 1830, -1 }, { 3988, 1868, -1 }, { 1484, 1350, -1 }, { 1484, 1869, -1 }, { 3825, 1870, -1 }, { 3791, 1870, -1 }, { 3807, 1870, -1 }, { 3812, 1870, -1 }, { 3806, 1870, -1 }, { 25834, -1, 3022 }, { 1483, 1350, -1 }, { 1483, 1869, -1 }, { 43518, 1874, -1 }, { 43518, 1875, -1 }, { 43518, 1876, -1 }, { 25834, -1, 3023 }, { 25834, -1, 3024 }, { 43518, 1877, -1 }, { 25834, -1, 2974 }, { 41931, 1818, -1 }, { 41930, 1818, -1 }, { 3983, 1865, -1 }, { 3994, 1865, -1 }, { 3999, 1865, -1 }, { 3988, 1865, -1 }, { 4025, 1865, -1 }, { 4005, 1865, -1 }, { 1555, 1865, -1 }, { 4035, 1865, -1 }, { 4030, 1865, -1 }, { 1484, 1864, -1 }, { 25836, -1, 833 }, { 3988, 1866, -1 }, { 3994, 1866, -1 }, { 4028, 1866, -1 }, { 3983, 1866, -1 }, { 3999, 1866, -1 }, { 4017, 1865, -1 }, { 4043, 1865, -1 }, { 4041, 1865, -1 }, { 4040, 1865, -1 }, { 25913, -1, 1864 }, { 1483, 1864, -1 }, { 25923, -1, 893 }, { 25834, -1, 3025 }, { 3994, 1820, -1 }, { 3988, 1820, -1 }, { 16244, 25, -1 }, { 16240, 25, -1 }, { 16235, 25, -1 }, { 16238, 25, -1 }, { 3999, 1820, -1 }, { 4006, 1820, -1 }, { 4025, 1820, -1 }, { 16233, 25, -1 }, { 3983, 1820, -1 }, { 41929, 1819, -1 }, { 3791, 1821, -1 }, { 1483, 937, -1 }, { 1483, 938, -1 }, { 1483, 941, -1 }, { 41927, 1819, -1 }, { 3812, 1821, -1 }, { 3807, 1821, -1 }, { 3824, 1821, -1 }, { 3825, 1821, -1 }, { 3802, 1821, -1 }, { 3873, 1821, -1 }, { 3889, 1821, -1 }, { 3888, 1821, -1 }, { 3887, 1821, -1 }, { 25919, -1, 833 }, { 25919, -1, 1828 }, { 41934, 1829, -1 }, { 25836, -1, 1626 }, { 41935, 1829, -1 }, { 41936, 1829, -1 }, { 41936, 1769, -1 }, { 25834, -1, 1420 }, { 3791, 1740, -1 }, { 3806, 1740, -1 }, { 3825, 1740, -1 }, { 3824, 1740, -1 }, { 16441, 11, -1 }, { 16448, 11, -1 }, { 16437, 11, -1 }, { 16447, 11, -1 }, { 16435, 11, -1 }, { 3988, 1747, -1 }, { 3999, 1747, -1 }, { 4025, 1747, -1 }, { 3994, 1747, -1 }, { 3984, 1747, -1 }, { 41936, 1954, -1 }, { 41933, 1955, -1 }, { 41930, 1955, -1 }, { 1483, 1956, -1 }, { 41932, 1955, -1 }, { 41932, 1818, -1 }, { 41932, 1830, -1 }, { 25913, -1, 3026 }, { 25913, -1, 3027 }, { 479, 1756, -1 }, { 3984, 1350, -1 }, { 480, 1756, -1 }, { 481, 1756, -1 }, { 25834, -1, 3028 }, { 26667, -1, 3029 }, { 41934, 1934, -1 }, { 41930, 1934, -1 }, { 41935, 1934, -1 }, { 41936, 1934, -1 }, { 41934, 1818, -1 }, { 3988, 1927, -1 }, { 41932, 1834, -1 }, { 41930, 1834, -1 }, { 25836, -1, 770 }, { 3999, 1927, -1 }, { 4028, 1927, -1 }, { 3994, 1927, -1 }, { 479, 1930, -1 }, { 480, 832, -1 }, { 481, 832, -1 }, { 25679, 1350, -1 }, { 25671, 1350, -1 }, { 25674, 1350, -1 }, { 25692, 1350, -1 }, { 25691, 1350, -1 }, { 25690, 1350, -1 }, { 25668, 1350, -1 }, { 4005, 1927, -1 }, { 479, 832, -1 }, { 26463, -1, 1417 }, { 3984, 1927, -1 }, { 25662, 1350, -1 }, { 3983, 1927, -1 }, { 41936, 1818, -1 }, { 26667, -1, 3030 }, { 41934, 1834, -1 }, { 41936, 1834, -1 }, { 480, 1930, -1 }, { 481, 1930, -1 }, { 41934, 1964, -1 }, { 1483, 940, -1 }, { 481, 21, -1 }, { 41935, 1964, -1 }, { 41936, 1964, -1 }, { 16448, 1350, -1 }, { 16437, 1350, -1 }, { 16447, 1350, -1 }, { 16440, 1350, -1 }, { 41934, 1830, -1 }, { 33665, -1, 1965 }, { 33665, -1, 1387 }, { 33665, -1, 1966 }, { 45120, -1, 1933 }, { 45120, -1, 1883 }, { 33665, -1, 1390 }, { 33665, -1, 1391 }, { 45120, -1, 1884 }, { 45120, -1, 1967 }, { 45120, -1, 1968 }, { 45120, -1, 1969 }, { 45120, -1, 1970 }, { 45120, -1, 1971 }, { 45120, -1, 1972 }, { 45120, -1, 1973 }, { 45120, -1, 1974 }, { 45120, -1, 1975 }, { 45120, -1, 1976 }, { 45120, -1, 1977 }, { 45120, -1, 1978 }, { 3994, 1868, -1 }, { 3999, 1868, -1 }, { 4028, 1868, -1 }, { 16435, 1350, -1 }, { 41936, 1830, -1 }, { 3984, 1868, -1 }, { 33672, 1965, -1 }, { 33672, 1966, -1 }, { 33672, 1933, -1 }, { 33672, 1883, -1 }, { 33672, 1884, -1 }, { 33672, 1967, -1 }, { 33672, 1968, -1 }, { 33672, 1969, -1 }, { 33672, 1970, -1 }, { 33672, 1971, -1 }, { 33672, 1972, -1 }, { 33672, 1973, -1 }, { 33672, 1974, -1 }, { 33672, 1975, -1 }, { 33672, 1976, -1 }, { 33672, 1977, -1 }, { 33672, 1978, -1 }, { 33628, -1, 3031 }, { 33628, -1, 3032 }, { 33628, -1, 3033 }, { 33628, -1, 3034 }, { 33628, -1, 3035 }, { 33628, -1, 3036 }, { 33628, -1, 3037 }, { 33628, -1, 3038 }, { 33628, -1, 3039 }, { 33628, -1, 3040 }, { 33628, -1, 3041 }, { 33628, -1, 3042 }, { 33628, -1, 3043 }, { 33628, -1, 3044 }, { 33628, -1, 3045 }, { 1483, 925, -1 }, { 1483, 924, -1 }, { 1483, 923, -1 }, { 1483, 922, -1 }, { 1483, 928, -1 }, { 1483, 929, -1 }, { 1483, 927, -1 }, { 1483, 926, -1 }, { 1483, 932, -1 }, { 1483, 933, -1 }, { 1483, 931, -1 }, { 1483, 930, -1 }, { 1483, 939, -1 }, { 3824, 1935, -1 }, { 41931, 1830, -1 }, { 3825, 1935, -1 }, { 44873, -1, 778 }, { 44873, -1, 1751 }, { 44873, -1, 1756 }, { 44873, -1, 1939 }, { 44873, -1, 1940 }, { 44873, -1, 1941 }, { 44873, -1, 63 }, { 44872, -1, 778 }, { 44872, -1, 1751 }, { 44872, -1, 1756 }, { 44872, -1, 1939 }, { 44872, -1, 1940 }, { 44872, -1, 1941 }, { 44872, -1, 63 }, { 3807, 1935, -1 }, { 3792, 1935, -1 }, { 4001, 1984, -1 }, { 4005, 1984, -1 }, { 3799, 1980, -1 }, { 3853, 1980, -1 }, { 3869, 1980, -1 }, { 3999, 1984, -1 }, { 3868, 1980, -1 }, { 3867, 1980, -1 }, { 3994, 1984, -1 }, { 3988, 1984, -1 }, { 3812, 1980, -1 }, { 3805, 1980, -1 }, { 4025, 1981, -1 }, { 3988, 1981, -1 }, { 3824, 1980, -1 }, { 3825, 1980, -1 }, { 4036, 1981, -1 }, { 3983, 1981, -1 }, { 3807, 1980, -1 }, { 3994, 1981, -1 }, { 3999, 1981, -1 }, { 3791, 1980, -1 }, { 3983, 1984, -1 }, { 41936, 1979, -1 }, { 41930, 1979, -1 }, { 41936, 1989, -1 }, { 41931, 1829, -1 }, { 41930, 1829, -1 }, { 25915, -1, 2995 }, { 41936, 1990, -1 }, { 25923, -1, 1626 }, { 41934, 1955, -1 }, { 41935, 1955, -1 }, { 3802, 1991, -1 }, { 3873, 1991, -1 }, { 3889, 1991, -1 }, { 3888, 1991, -1 }, { 3887, 1991, -1 }, { 3812, 1991, -1 }, { 3825, 1991, -1 }, { 1484, 1956, -1 }, { 3824, 1991, -1 }, { 4025, 25, -1 }, { 3807, 1991, -1 }, { 3792, 1991, -1 }, { 41936, 1955, -1 }, { 25834, -1, 3046 }, { 25834, -1, 3047 }, { 25840, -1, 1994 }, { 3825, 1942, -1 }, { 25668, 21, -1 }, { 25674, 21, -1 }, { 25692, 21, -1 }, { 25691, 21, -1 }, { 25690, 21, -1 }, { 3799, 1942, -1 }, { 3853, 1942, -1 }, { 3869, 1942, -1 }, { 25669, 21, -1 }, { 3999, 21, -1 }, { 3868, 1942, -1 }, { 3867, 1942, -1 }, { 3994, 21, -1 }, { 3824, 1942, -1 }, { 3988, 21, -1 }, { 4005, 21, -1 }, { 3792, 1942, -1 }, { 3983, 21, -1 }, { 25662, 21, -1 }, { 41931, 1834, -1 }, { 26666, -1, 1931 }, { 25913, -1, 3048 }, { 3812, 1958, -1 }, { 3807, 1958, -1 }, { 3825, 1958, -1 }, { 3791, 1958, -1 }, { 25836, -1, 2974 }, { 3999, 1948, -1 }, { 4025, 1948, -1 }, { 3994, 1948, -1 }, { 3988, 1948, -1 }, { 479, 781, -1 }, { 480, 781, -1 }, { 481, 781, -1 }, { 3984, 1948, -1 }, { 26661, -1, 3049 }, { 3799, 1998, -1 }, { 3853, 1998, -1 }, { 3869, 1998, -1 }, { 3805, 1998, -1 }, { 3806, 1995, -1 }, { 3868, 1998, -1 }, { 3867, 1998, -1 }, { 3812, 1995, -1 }, { 3824, 1995, -1 }, { 3812, 1998, -1 }, { 3824, 1998, -1 }, { 3806, 1998, -1 }, { 3798, 1995, -1 }, { 3802, 1995, -1 }, { 23367, -1, 778 }, { 1511, 2002, -1 }, { 23356, -1, 3050 }, { 3791, 1995, -1 }, { 3791, 1998, -1 }, { 3873, 1995, -1 }, { 3888, 1995, -1 }, { 3889, 1995, -1 }, { 3875, 1995, -1 }, { 3874, 1995, -1 }, { 3798, 1949, -1 }, { 3815, 1949, -1 }, { 3845, 1949, -1 }, { 3980, 1949, -1 }, { 3844, 1949, -1 }, { 3846, 1949, -1 }, { 3811, 1949, -1 }, { 3807, 1949, -1 }, { 3792, 1949, -1 }, { 41811, 784, -1 }, { 41811, 19, -1 }, { 41811, 1751, -1 }, { 41811, 783, -1 }, { 41811, 778, -1 }, { 3994, 1756, -1 }, { 3988, 1756, -1 }, { 1507, 1757, -1 }, { 23390, -1, 1756 }, { 23364, -1, 1756 }, { 8015, 1770, -1 }, { 8016, 1770, 3051 }, { 8020, 1770, -1 }, { 8016, 63, 3052 }, { 8019, 1770, 3053 }, { 8023, 1770, -1 }, { 8021, 1770, -1 }, { 8017, 1770, -1 }, { 5002, 1770, -1 }, { 8085, 1770, -1 }, { 8019, 63, 3054 }, { 8088, 1770, -1 }, { 23387, -1, 7 }, { 26667, -1, 3055 }, { 26667, -1, 3056 }, { 26667, -1, 3057 }, { 26667, -1, 3058 }, { 26667, -1, 3059 }, { 4017, 1350, -1 }, { 4043, 1350, -1 }, { 4041, 1350, -1 }, { 4040, 1350, -1 }, { 26667, -1, 3060 }, { 1503, 63, -1 }, { 26667, -1, 3061 }, { 3999, 1751, -1 }, { 4005, 1751, -1 }, { 3994, 1751, -1 }, { 3983, 778, -1 }, { 3983, 1751, -1 }, { 32681, -1, 25 }, { 16274, 1856, -1 }, { 16295, 1856, -1 }, { 3981, 1856, -1 }, { 3980, 1856, -1 }, { 16293, 1856, -1 }, { 16294, 1856, -1 }, { 16266, 1856, -1 }, { 3985, 1855, -1 }, { 41934, 1853, -1 }, { 1507, 1861, -1 }, { 1483, 275, -1 }, { 7934, -1, 3062 }, { 1507, 1862, -1 }, { 7934, -1, 3063 }, { 1507, 1863, -1 }, { 7934, -1, 3064 }, { 16276, 1856, -1 }, { 43267, -1, 1855 }, { 2445, 1854, -1 }, { 16261, 1856, -1 }, { 16269, 1856, -1 }, { 16254, 1856, -1 }, { 41936, 1853, -1 }, { 3984, 1831, -1 }, { 3999, 1831, -1 }, { 4017, 833, -1 }, { 4043, 833, -1 }, { 1563, 1831, -1 }, { 4014, 1831, -1 }, { 3995, 1831, -1 }, { 4028, 1831, -1 }, { 4041, 833, -1 }, { 4040, 833, -1 }, { 1555, 1831, -1 }, { 4035, 1831, -1 }, { 3994, 1765, -1 }, { 1512, 1766, -1 }, { 3988, 1765, -1 }, { 3983, 1765, -1 }, { 1511, 1766, -1 }, { 3999, 1765, -1 }, { 4006, 1350, -1 }, { 4036, 1350, -1 }, { 41932, 1832, -1 }, { 41934, 1832, -1 }, { 26661, -1, 3065 }, { 25834, -1, 833 }, { 26663, -1, 3065 }, { 41936, 1832, -1 }, { 25836, -1, 3025 }, { 25834, -1, 3066 }, { 25913, -1, 3067 }, { 25834, -1, 3068 }, { 41629, -1, 1954 }, { 25840, -1, 1357 }, { 25849, -1, 1835 }, { 4001, 1835, -1 }, { 3994, 1835, -1 }, { 3988, 1835, -1 }, { 3983, 1835, -1 }, { 25938, -1, 3068 }, { 25834, -1, 1954 }, { 3983, 1892, -1 }, { 4001, 1892, -1 }, { 1503, 173, -1 }, { 4782, 173, -1 }, { 4994, 173, -1 }, { 8007, -1, 3069 }, { 31284, -1, 1229 }, { 8085, 1229, -1 }, { 8010, -1, 3070 }, { 8088, 1229, -1 }, { 31284, -1, 1228 }, { 8085, 1228, -1 }, { 8010, -1, 3071 }, { 8088, 1228, -1 }, { 31284, -1, 1227 }, { 8085, 1227, -1 }, { 8010, -1, 3072 }, { 8088, 1227, -1 }, { 8007, -1, 3073 }, { 8010, -1, 3074 }, { 8010, -1, 3075 }, { 31284, -1, 1231 }, { 8085, 1231, -1 }, { 8010, -1, 3076 }, { 8088, 1231, -1 }, { 3988, 1590, -1 }, { 41930, 1767, -1 }, { 25923, -1, 1590 }, { 4099, 1794, -1 }, { 4098, 1794, -1 }, { 3988, 1914, -1 }, { 3999, 476, -1 }, { 3994, 476, -1 }, { 3988, 476, -1 }, { 4005, 476, -1 }, { 3994, 1914, -1 }, { 3983, 476, -1 }, { 3791, 1650, -1 }, { 3807, 1650, -1 }, { 3799, 1650, -1 }, { 3825, 1650, -1 }, { 3994, 1590, -1 }, { 3999, 1892, -1 }, { 41930, 1910, -1 }, { 41936, 1909, -1 }, { 16235, 597, -1 }, { 16244, 597, -1 }, { 16240, 597, -1 }, { 31666, 21, -1 }, { 16233, 597, -1 }, { 41936, 1910, -1 }, { 16233, 1916, -1 }, { 16240, 1916, -1 }, { 41936, 1915, -1 }, { 16244, 1916, -1 }, { 4017, 1590, -1 }, { 4043, 1590, -1 }, { 25672, 11, -1 }, { 25913, -1, 3077 }, { 4041, 1590, -1 }, { 16235, 1916, -1 }, { 4040, 1590, -1 }, { 235, -1, 645 }, { 23881, -1, 1807 }, { 43879, -1, 1805 }, { 2445, 1808, -1 }, { 41934, 1767, -1 }, { 25913, -1, 3078 }, { 4017, 1626, -1 }, { 4043, 1626, -1 }, { 4041, 1626, -1 }, { 4040, 1626, -1 }, { 3994, 1626, -1 }, { 3988, 1626, -1 }, { 41936, 1767, -1 }, { 480, 1794, -1 }, { 16235, 1911, -1 }, { 16244, 1911, -1 }, { 481, 1794, -1 }, { 479, 1794, -1 }, { 16238, 1911, -1 }, { 16240, 1911, -1 }, { 16233, 1911, -1 }, { 3983, 1794, -1 }, { 4097, 1794, -1 }, { 3999, 1794, -1 }, { 43870, -1, 1794 }, { 2445, 1809, -1 }, { 3994, 1794, -1 }, { 3995, 1794, -1 }, { 43870, -1, 1810 }, { 2445, 1811, -1 }, { 3988, 1794, -1 }, { 4028, 1794, -1 }, { 4005, 1794, -1 }, { 3983, 1590, -1 }, { 3999, 1590, -1 }, { 3983, 1626, -1 }, { 3999, 1626, -1 }, { 25913, -1, 3079 }, { 41936, 1917, -1 }, { 3983, 1914, -1 }, { 3999, 1914, -1 }, { 1503, 1918, -1 }, { 4941, -1, 1918 }, { 4994, 1918, -1 }, { 25938, -1, 3079 }, { 41930, 1917, -1 }, { 41629, -1, 3067 }, { 25834, -1, 3078 }, { 41934, 1793, -1 }, { 25834, -1, 3080 }, { 25834, -1, 3081 }, { 41935, 1793, -1 }, { 41936, 1793, -1 }, { 3798, 1795, -1 }, { 41930, 1793, -1 }, { 3825, 1795, -1 }, { 3807, 1795, -1 }, { 3791, 1795, -1 }, { 3802, 1795, -1 }, { 3873, 1795, -1 }, { 3889, 1795, -1 }, { 3888, 1795, -1 }, { 3887, 1795, -1 }, { 3988, 1803, -1 }, { 3994, 1803, -1 }, { 3988, 1804, -1 }, { 4036, 1804, -1 }, { 2444, 1808, -1 }, { 43880, 1805, -1 }, { 43882, 1805, -1 }, { 2444, 1809, -1 }, { 2444, 1811, -1 }, { 2444, 435, -1 }, { 4005, 1803, -1 }, { 4102, 1794, -1 }, { 3999, 1803, -1 }, { 43871, 1794, -1 }, { 43871, 1810, -1 }, { 3995, 1803, -1 }, { 4028, 1803, -1 }, { 3983, 1803, -1 }, { 41936, 1836, -1 }, { 25938, -1, 3082 }, { 26662, -1, 3083 }, { 1503, 1837, -1 }, { 8007, -1, 3084 }, { 1507, 1841, -1 }, { 23390, -1, 1239 }, { 23368, -1, 1239 }, { 1504, 1837, -1 }, { 31284, -1, 1241 }, { 8085, 1241, -1 }, { 8010, -1, 3085 }, { 8088, 1241, -1 }, { 31284, -1, 21 }, { 8085, 21, -1 }, { 8010, -1, 3086 }, { 8088, 21, -1 }, { 41930, 1847, -1 }, { 41932, 1847, -1 }, { 41934, 1847, -1 }, { 42655, 1848, -1 }, { 3984, 1850, -1 }, { 3984, 1852, -1 }, { 3999, 1850, -1 }, { 42661, 1848, -1 }, { 3999, 1852, -1 }, { 3994, 1852, -1 }, { 3988, 1852, -1 }, { 4028, 1852, -1 }, { 3994, 1850, -1 }, { 3988, 1850, -1 }, { 4005, 1850, -1 }, { 42663, 1848, -1 }, { 3981, 1848, -1 }, { 42664, 1848, -1 }, { 42662, 1848, -1 }, { 3980, 1848, -1 }, { 1563, 1850, -1 }, { 42667, 1848, -1 }, { 4028, 1850, -1 }, { 41936, 1847, -1 }, { 25840, -1, 833 }, { 16233, 893, -1 }, { 16240, 893, -1 }, { 16244, 893, -1 }, { 16235, 893, -1 }, { 26667, -1, 3087 }, { 42123, 1785, -1 }, { 3825, 1790, -1 }, { 42151, 1785, -1 }, { 42135, 1785, -1 }, { 3988, 1786, -1 }, { 3994, 1786, -1 }, { 42148, 1785, -1 }, { 4017, 1786, -1 }, { 4043, 1786, -1 }, { 4041, 1786, -1 }, { 4040, 1786, -1 }, { 25913, -1, 3088 }, { 3994, 1781, -1 }, { 3988, 1781, -1 }, { 25938, -1, 3088 }, { 42147, 1785, -1 }, { 1508, 1789, -1 }, { 3994, 1787, -1 }, { 3988, 1787, -1 }, { 3792, 1790, -1 }, { 3807, 1790, -1 }, { 42153, 1785, -1 }, { 25913, -1, 3089 }, { 26664, -1, 1350 }, { 25938, -1, 3090 }, { 3983, 1881, -1 }, { 3999, 1881, -1 }, { 4036, 1881, -1 }, { 25834, -1, 3091 }, { 25834, -1, 3092 }, { 4017, 778, -1 }, { 4043, 778, -1 }, { 4041, 778, -1 }, { 4040, 778, -1 }, { 25923, -1, 833 }, { 25923, -1, 892 }, { 26661, -1, 3093 }, { 25938, -1, 1882 }, { 4006, 1885, -1 }, { 3999, 1885, -1 }, { 4032, 1885, -1 }, { 3994, 1885, -1 }, { 3988, 1885, -1 }, { 3983, 1885, -1 }, { 3815, 1887, -1 }, { 3845, 1887, -1 }, { 3980, 1887, -1 }, { 3981, 1887, -1 }, { 3844, 1887, -1 }, { 3846, 1887, -1 }, { 3811, 1887, -1 }, { 3825, 1887, -1 }, { 3807, 1887, -1 }, { 3791, 1887, -1 }, { 41629, -1, 3094 }, { 25834, -1, 3095 }, { 41630, -1, 1590 }, { 4005, 784, -1 }, { 4005, 19, -1 }, { 3999, 784, -1 }, { 3999, 19, -1 }, { 3988, 784, -1 }, { 3994, 19, -1 }, { 3994, 784, -1 }, { 3983, 784, -1 }, { 3983, 19, -1 }, { 41629, -1, 3096 }, { 212, -1, 1891 }, { 23364, -1, 783 }, { 1507, 1743, -1 }, { 23377, -1, 1743 }, { 23365, -1, 783 }, { 23364, -1, 778 }, { 1507, 1745, -1 }, { 23377, -1, 1745 }, { 23365, -1, 778 }, { 41934, 1717, -1 }, { 3824, 1718, -1 }, { 16240, 1716, -1 }, { 26666, -1, 1486 }, { 3812, 1718, -1 }, { 41629, -1, 1486 }, { 16233, 1716, -1 }, { 41936, 1717, -1 }, { 25913, -1, 3097 }, { 1484, 1681, -1 }, { 25834, -1, 3098 }, { 3983, 1682, -1 }, { 3999, 1682, -1 }, { 3988, 1682, -1 }, { 3994, 1683, -1 }, { 3994, 1682, -1 }, { 3988, 1683, -1 }, { 3983, 1683, -1 }, { 25834, -1, 1683 }, { 3999, 1683, -1 }, { 41930, 1680, -1 }, { 25913, -1, 3099 }, { 41936, 1680, -1 }, { 26661, -1, 777 }, { 25834, -1, 3100 }, { 25913, -1, 3101 }, { 25834, -1, 3102 }, { 25913, -1, 3046 }, { 25913, -1, 3025 }, { 41629, -1, 3103 }, { 25913, -1, 3103 }, { 25834, -1, 3104 }, { 25844, -1, 1417 }, { 25836, -1, 2977 }, { 26667, -1, 3105 }, { 26667, -1, 3106 }, { 26667, -1, 3107 }, { 26667, -1, 3108 }, { 39022, -1, 1465 }, { 25836, -1, 3106 }, { 23365, -1, 1564 }, { 4017, 1656, -1 }, { 4043, 1656, -1 }, { 4041, 1656, -1 }, { 4040, 1656, -1 }, { 3811, 1654, -1 }, { 3802, 1654, -1 }, { 23387, -1, 1656 }, { 3792, 1673, -1 }, { 3984, 1666, -1 }, { 3999, 1666, -1 }, { 3811, 1673, -1 }, { 3791, 1251, -1 }, { 3791, 1658, -1 }, { 3807, 1658, -1 }, { 3994, 1666, -1 }, { 3988, 1287, -1 }, { 3995, 1666, -1 }, { 3994, 1287, -1 }, { 3988, 1271, -1 }, { 3798, 1251, -1 }, { 3798, 1288, -1 }, { 3792, 1251, -1 }, { 3815, 1288, -1 }, { 3845, 1288, -1 }, { 3981, 1288, -1 }, { 3805, 1673, -1 }, { 3980, 1288, -1 }, { 3806, 1251, -1 }, { 3844, 1288, -1 }, { 3846, 1288, -1 }, { 4017, 1273, -1 }, { 4043, 1273, -1 }, { 4041, 1273, -1 }, { 4040, 1273, -1 }, { 3805, 1288, -1 }, { 3812, 1288, -1 }, { 25938, -1, 3077 }, { 3805, 1658, -1 }, { 3812, 1282, -1 }, { 3805, 1282, -1 }, { 26661, -1, 1679 }, { 3825, 1282, -1 }, { 3988, 1269, -1 }, { 3988, 1261, -1 }, { 3988, 1270, -1 }, { 3988, 1267, -1 }, { 3806, 1673, -1 }, { 243, -1, 3109 }, { 243, -1, 3110 }, { 243, -1, 3111 }, { 243, -1, 3112 }, { 243, -1, 3113 }, { 243, -1, 3114 }, { 243, -1, 3115 }, { 243, -1, 3116 }, { 243, -1, 3117 }, { 243, -1, 3118 }, { 243, -1, 3119 }, { 243, -1, 3120 }, { 243, -1, 3121 }, { 243, -1, 3122 }, { 243, -1, 3123 }, { 243, -1, 3124 }, { 243, -1, 3125 }, { 243, -1, 3126 }, { 243, -1, 3127 }, { 243, -1, 3128 }, { 243, -1, 3129 }, { 243, -1, 3130 }, { 243, -1, 3131 }, { 243, -1, 3132 }, { 243, -1, 3133 }, { 243, -1, 3134 }, { 243, -1, 3135 }, { 243, -1, 3136 }, { 243, -1, 3137 }, { 243, -1, 3138 }, { 243, -1, 3139 }, { 243, -1, 3140 }, { 243, -1, 3141 }, { 243, -1, 3142 }, { 243, -1, 3143 }, { 243, -1, 3144 }, { 243, -1, 3145 }, { 243, -1, 3146 }, { 243, -1, 3147 }, { 243, -1, 3148 }, { 243, -1, 3149 }, { 243, -1, 3150 }, { 243, -1, 3151 }, { 243, -1, 3152 }, { 243, -1, 3153 }, { 24657, -1, 748 }, { 24658, -1, 752 }, { 80, -1, 1258 }, { 80, -1, 1257 }, { 80, -1, 1256 }, { 80, -1, 1259 }, { 80, -1, 1737 }, { 80, -1, 1778 }, { 80, -1, 1777 }, { 80, -1, 2004 }, { 80, -1, 1867 }, { 80, -1, 1923 }, { 80, -1, 1922 }, { 80, -1, 1868 }, { 80, -1, 1984 }, { 80, -1, 1947 }, { 80, -1, 1924 }, { 80, -1, 1925 }, { 80, -1, 1957 }, { 80, -1, 1926 }, { 80, -1, 1951 }, { 80, -1, 1831 }, { 80, -1, 1768 }, { 80, -1, 1913 }, { 80, -1, 1912 }, { 80, -1, 1914 }, { 80, -1, 1794 }, { 80, -1, 1802 }, { 80, -1, 1803 }, { 80, -1, 1804 }, { 80, -1, 1850 }, { 80, -1, 1852 }, { 80, -1, 1881 }, { 80, -1, 1891 }, { 80, -1, 1716 }, { 80, -1, 1682 }, { 80, -1, 419 }, { 80, -1, 632 }, { 80, -1, 634 }, { 80, -1, 417 }, { 80, -1, 506 }, { 80, -1, 577 }, { 80, -1, 505 }, { 80, -1, 950 }, { 80, -1, 971 }, { 80, -1, 1119 }, { 80, -1, 1083 }, { 80, -1, 1063 }, { 80, -1, 1038 }, { 80, -1, 986 }, { 80, -1, 979 }, { 80, -1, 141 }, { 80, -1, 471 }, { 80, -1, 63 }, { 80, -1, 7 }, { 80, -1, 13 }, { 80, -1, 23 }, { 80, -1, 1779 }, { 80, -1, 1985 }, { 80, -1, 578 }, { 80, -1, 1064 }, { 80, -1, 1042 }, { 80, -1, 987 }, { 80, -1, 100 }, { 80, -1, 1331 }, { 80, -1, 192 }, { 80, -1, 1355 }, { 80, -1, 1597 }, { 80, -1, 1601 }, { 80, -1, 1725 }, { 80, -1, 809 }, { 80, -1, 690 }, { 80, -1, 694 }, { 80, -1, 1084 }, { 80, -1, 980 }, { 80, -1, 142 }, { 80, -1, 607 }, { 80, -1, 861 }, { 80, -1, 260 }, { 80, -1, 899 }, { 80, -1, 701 }, { 80, -1, 33 }, { 80, -1, 301 }, { 80, -1, 281 }, { 80, -1, 1570 }, { 80, -1, 1343 }, { 80, -1, 886 }, { 80, -1, 1610 }, { 80, -1, 292 }, { 80, -1, 1952 }, { 80, -1, 1824 }, { 80, -1, 1997 }, { 80, -1, 1498 }, { 80, -1, 1495 }, { 80, -1, 1492 }, { 80, -1, 1362 }, { 80, -1, 1300 }, { 80, -1, 1309 }, { 80, -1, 908 }, { 80, -1, 1798 }, { 80, -1, 1662 }, { 80, -1, 1528 }, { 80, -1, 1484 }, { 80, -1, 1506 }, { 80, -1, 1510 }, { 80, -1, 1514 }, { 80, -1, 743 }, { 80, -1, 1347 }, { 80, -1, 662 }, { 80, -1, 1946 }, { 80, -1, 1325 }, { 80, -1, 1776 }, { 80, -1, 1983 }, { 80, -1, 576 }, { 80, -1, 1062 }, { 80, -1, 1041 }, { 80, -1, 985 }, { 80, -1, 98 }, { 80, -1, 1330 }, { 80, -1, 1849 }, { 80, -1, 191 }, { 80, -1, 1353 }, { 80, -1, 1596 }, { 80, -1, 1599 }, { 80, -1, 1724 }, { 80, -1, 808 }, { 80, -1, 688 }, { 80, -1, 693 }, { 80, -1, 1082 }, { 80, -1, 978 }, { 80, -1, 140 }, { 80, -1, 605 }, { 80, -1, 855 }, { 80, -1, 258 }, { 80, -1, 897 }, { 80, -1, 699 }, { 80, -1, 10 }, { 80, -1, 299 }, { 80, -1, 279 }, { 80, -1, 1568 }, { 80, -1, 1341 }, { 80, -1, 884 }, { 80, -1, 1608 }, { 80, -1, 289 }, { 80, -1, 1950 }, { 80, -1, 1823 }, { 80, -1, 1996 }, { 80, -1, 1497 }, { 80, -1, 1494 }, { 80, -1, 1490 }, { 80, -1, 1360 }, { 80, -1, 1298 }, { 80, -1, 1307 }, { 80, -1, 906 }, { 80, -1, 1797 }, { 80, -1, 1660 }, { 80, -1, 1526 }, { 80, -1, 1482 }, { 80, -1, 1504 }, { 80, -1, 1508 }, { 80, -1, 1512 }, { 80, -1, 652 }, { 80, -1, 152 }, { 80, -1, 494 }, { 80, -1, 14 }, { 80, -1, 134 }, { 80, -1, 147 }, { 80, -1, 15 }, { 80, -1, 16 }, { 80, -1, 410 }, { 80, -1, 399 }, { 80, -1, 400 }, { 80, -1, 416 }, { 80, -1, 44 }, { 80, -1, 17 }, { 80, -1, 11 }, { 80, -1, 12 }, { 80, -1, 136 }, { 80, -1, 689 }, { 80, -1, 700 }, { 80, -1, 1023 }, { 80, -1, 653 }, { 80, -1, 458 }, { 80, -1, 459 }, { 80, -1, 493 }, { 80, -1, 475 }, { 80, -1, 455 }, { 80, -1, 56 }, { 80, -1, 307 }, { 80, -1, 306 }, { 80, -1, 338 }, { 80, -1, 342 }, { 80, -1, 344 }, { 80, -1, 345 }, { 80, -1, 343 }, { 80, -1, 346 }, { 80, -1, 315 }, { 80, -1, 316 }, { 80, -1, 317 }, { 80, -1, 43 }, { 80, -1, 300 }, { 80, -1, 35 }, { 80, -1, 476 }, { 80, -1, 275 }, { 80, -1, 280 }, { 80, -1, 291 }, { 80, -1, 290 }, { 80, -1, 262 }, { 80, -1, 264 }, { 80, -1, 18 }, { 80, -1, 426 }, { 80, -1, 19 }, { 80, -1, 57 }, { 80, -1, 447 }, { 80, -1, 453 }, { 80, -1, 161 }, { 80, -1, 68 }, { 80, -1, 62 }, { 80, -1, 263 }, { 80, -1, 20 }, { 80, -1, 21 }, { 80, -1, 22 }, { 80, -1, 820 }, { 80, -1, 601 }, { 80, -1, 589 }, { 80, -1, 588 }, { 80, -1, 620 }, { 80, -1, 629 }, { 80, -1, 626 }, { 80, -1, 534 }, { 80, -1, 515 }, { 80, -1, 574 }, { 80, -1, 560 }, { 80, -1, 520 }, { 80, -1, 533 }, { 80, -1, 532 }, { 80, -1, 531 }, { 80, -1, 537 }, { 80, -1, 536 }, { 80, -1, 535 }, { 80, -1, 538 }, { 80, -1, 504 }, { 80, -1, 1916 }, { 80, -1, 1491 }, { 80, -1, 784 }, { 80, -1, 785 }, { 80, -1, 834 }, { 80, -1, 831 }, { 80, -1, 1377 }, { 80, -1, 776 }, { 80, -1, 775 }, { 80, -1, 1501 }, { 80, -1, 782 }, { 80, -1, 1739 }, { 80, -1, 786 }, { 80, -1, 1294 }, { 80, -1, 1314 }, { 80, -1, 1316 }, { 80, -1, 1342 }, { 80, -1, 1361 }, { 80, -1, 1299 }, { 80, -1, 1348 }, { 80, -1, 1354 }, { 80, -1, 1356 }, { 80, -1, 1308 }, { 80, -1, 1317 }, { 80, -1, 1315 }, { 80, -1, 1351 }, { 80, -1, 907 }, { 80, -1, 890 }, { 80, -1, 780 }, { 80, -1, 802 }, { 80, -1, 1751 }, { 80, -1, 1756 }, { 80, -1, 832 }, { 80, -1, 829 }, { 80, -1, 943 }, { 80, -1, 798 }, { 80, -1, 787 }, { 80, -1, 885 }, { 80, -1, 781 }, { 80, -1, 1449 }, { 80, -1, 1467 }, { 80, -1, 1413 }, { 80, -1, 1468 }, { 80, -1, 1445 }, { 80, -1, 1444 }, { 80, -1, 1450 }, { 80, -1, 1446 }, { 80, -1, 1448 }, { 80, -1, 1447 }, { 80, -1, 1456 }, { 80, -1, 1458 }, { 80, -1, 1460 }, { 80, -1, 1463 }, { 80, -1, 1461 }, { 80, -1, 837 }, { 80, -1, 838 }, { 80, -1, 836 }, { 80, -1, 801 }, { 80, -1, 783 }, { 80, -1, 778 }, { 80, -1, 779 }, { 80, -1, 818 }, { 80, -1, 793 }, { 80, -1, 942 }, { 80, -1, 1911 }, { 80, -1, 1661 }, { 80, -1, 1532 }, { 80, -1, 1502 }, { 80, -1, 1522 }, { 80, -1, 1505 }, { 80, -1, 1509 }, { 80, -1, 1527 }, { 80, -1, 1572 }, { 80, -1, 1534 }, { 80, -1, 1513 }, { 80, -1, 1556 }, { 80, -1, 1554 }, { 80, -1, 1555 }, { 80, -1, 1521 }, { 80, -1, 1600 }, { 80, -1, 1549 }, { 80, -1, 1536 }, { 80, -1, 1602 }, { 80, -1, 1603 }, { 80, -1, 1483 }, { 80, -1, 1609 }, { 80, -1, 1146 }, { 80, -1, 1147 }, { 80, -1, 1148 }, { 79, -1, 1258 }, { 79, -1, 1257 }, { 79, -1, 1256 }, { 79, -1, 1259 }, { 79, -1, 1737 }, { 79, -1, 1778 }, { 79, -1, 1777 }, { 79, -1, 2004 }, { 79, -1, 1867 }, { 79, -1, 1923 }, { 79, -1, 1922 }, { 79, -1, 1868 }, { 79, -1, 1984 }, { 79, -1, 1947 }, { 79, -1, 1924 }, { 79, -1, 1925 }, { 79, -1, 1957 }, { 79, -1, 1926 }, { 79, -1, 1951 }, { 79, -1, 1831 }, { 79, -1, 1768 }, { 79, -1, 1913 }, { 79, -1, 1912 }, { 79, -1, 1914 }, { 79, -1, 1794 }, { 79, -1, 1802 }, { 79, -1, 1803 }, { 79, -1, 1804 }, { 79, -1, 1850 }, { 79, -1, 1852 }, { 79, -1, 1881 }, { 79, -1, 1891 }, { 79, -1, 1716 }, { 79, -1, 1682 }, { 79, -1, 419 }, { 79, -1, 632 }, { 79, -1, 634 }, { 79, -1, 417 }, { 79, -1, 506 }, { 79, -1, 577 }, { 79, -1, 505 }, { 79, -1, 950 }, { 79, -1, 971 }, { 79, -1, 1119 }, { 79, -1, 1083 }, { 79, -1, 1063 }, { 79, -1, 1038 }, { 79, -1, 986 }, { 79, -1, 979 }, { 79, -1, 141 }, { 79, -1, 471 }, { 79, -1, 63 }, { 79, -1, 7 }, { 79, -1, 13 }, { 79, -1, 23 }, { 79, -1, 1779 }, { 79, -1, 1985 }, { 79, -1, 578 }, { 79, -1, 1064 }, { 79, -1, 1042 }, { 79, -1, 987 }, { 79, -1, 100 }, { 79, -1, 1331 }, { 79, -1, 192 }, { 79, -1, 1355 }, { 79, -1, 1597 }, { 79, -1, 1601 }, { 79, -1, 1725 }, { 79, -1, 809 }, { 79, -1, 690 }, { 79, -1, 694 }, { 79, -1, 1084 }, { 79, -1, 980 }, { 79, -1, 142 }, { 79, -1, 607 }, { 79, -1, 861 }, { 79, -1, 260 }, { 79, -1, 899 }, { 79, -1, 701 }, { 79, -1, 33 }, { 79, -1, 301 }, { 79, -1, 281 }, { 79, -1, 1570 }, { 79, -1, 1343 }, { 79, -1, 886 }, { 79, -1, 1610 }, { 79, -1, 292 }, { 79, -1, 1952 }, { 79, -1, 1824 }, { 79, -1, 1997 }, { 79, -1, 1498 }, { 79, -1, 1495 }, { 79, -1, 1492 }, { 79, -1, 1362 }, { 79, -1, 1300 }, { 79, -1, 1309 }, { 79, -1, 908 }, { 79, -1, 1798 }, { 79, -1, 1662 }, { 79, -1, 1528 }, { 79, -1, 1484 }, { 79, -1, 1506 }, { 79, -1, 1510 }, { 79, -1, 1514 }, { 79, -1, 743 }, { 79, -1, 1347 }, { 79, -1, 662 }, { 79, -1, 1946 }, { 79, -1, 1325 }, { 79, -1, 1776 }, { 79, -1, 1983 }, { 79, -1, 576 }, { 79, -1, 1062 }, { 79, -1, 1041 }, { 79, -1, 985 }, { 79, -1, 98 }, { 79, -1, 1330 }, { 79, -1, 1849 }, { 79, -1, 191 }, { 79, -1, 1353 }, { 79, -1, 1596 }, { 79, -1, 1599 }, { 79, -1, 1724 }, { 79, -1, 808 }, { 79, -1, 688 }, { 79, -1, 693 }, { 79, -1, 1082 }, { 79, -1, 978 }, { 79, -1, 140 }, { 79, -1, 605 }, { 79, -1, 855 }, { 79, -1, 258 }, { 79, -1, 897 }, { 79, -1, 699 }, { 79, -1, 10 }, { 79, -1, 299 }, { 79, -1, 279 }, { 79, -1, 1568 }, { 79, -1, 1341 }, { 79, -1, 884 }, { 79, -1, 1608 }, { 79, -1, 289 }, { 79, -1, 1950 }, { 79, -1, 1823 }, { 79, -1, 1996 }, { 79, -1, 1497 }, { 79, -1, 1494 }, { 79, -1, 1490 }, { 79, -1, 1360 }, { 79, -1, 1298 }, { 79, -1, 1307 }, { 79, -1, 906 }, { 79, -1, 1797 }, { 79, -1, 1660 }, { 79, -1, 1526 }, { 79, -1, 1482 }, { 79, -1, 1504 }, { 79, -1, 1508 }, { 79, -1, 1512 }, { 79, -1, 652 }, { 79, -1, 152 }, { 79, -1, 494 }, { 79, -1, 14 }, { 79, -1, 134 }, { 79, -1, 147 }, { 79, -1, 15 }, { 79, -1, 16 }, { 79, -1, 410 }, { 79, -1, 399 }, { 79, -1, 400 }, { 79, -1, 416 }, { 79, -1, 44 }, { 79, -1, 17 }, { 79, -1, 11 }, { 79, -1, 12 }, { 79, -1, 136 }, { 79, -1, 689 }, { 79, -1, 700 }, { 79, -1, 1023 }, { 79, -1, 653 }, { 79, -1, 458 }, { 79, -1, 459 }, { 79, -1, 493 }, { 79, -1, 475 }, { 79, -1, 455 }, { 79, -1, 56 }, { 79, -1, 307 }, { 79, -1, 306 }, { 79, -1, 338 }, { 79, -1, 342 }, { 79, -1, 344 }, { 79, -1, 345 }, { 79, -1, 343 }, { 79, -1, 346 }, { 79, -1, 315 }, { 79, -1, 316 }, { 79, -1, 317 }, { 79, -1, 43 }, { 79, -1, 300 }, { 79, -1, 35 }, { 79, -1, 476 }, { 79, -1, 275 }, { 79, -1, 280 }, { 79, -1, 291 }, { 79, -1, 290 }, { 79, -1, 262 }, { 79, -1, 264 }, { 79, -1, 18 }, { 79, -1, 426 }, { 79, -1, 19 }, { 79, -1, 57 }, { 79, -1, 447 }, { 79, -1, 453 }, { 79, -1, 161 }, { 79, -1, 68 }, { 79, -1, 62 }, { 79, -1, 263 }, { 79, -1, 20 }, { 79, -1, 21 }, { 79, -1, 22 }, { 79, -1, 820 }, { 79, -1, 601 }, { 79, -1, 589 }, { 79, -1, 588 }, { 79, -1, 620 }, { 79, -1, 629 }, { 79, -1, 626 }, { 79, -1, 534 }, { 79, -1, 515 }, { 79, -1, 574 }, { 79, -1, 560 }, { 79, -1, 520 }, { 79, -1, 533 }, { 79, -1, 532 }, { 79, -1, 531 }, { 79, -1, 537 }, { 79, -1, 536 }, { 79, -1, 535 }, { 79, -1, 538 }, { 79, -1, 504 }, { 79, -1, 1916 }, { 79, -1, 1491 }, { 79, -1, 784 }, { 79, -1, 785 }, { 79, -1, 834 }, { 79, -1, 831 }, { 79, -1, 1377 }, { 79, -1, 776 }, { 79, -1, 775 }, { 79, -1, 1501 }, { 79, -1, 782 }, { 79, -1, 1739 }, { 79, -1, 786 }, { 79, -1, 1294 }, { 79, -1, 1314 }, { 79, -1, 1316 }, { 79, -1, 1342 }, { 79, -1, 1361 }, { 79, -1, 1299 }, { 79, -1, 1348 }, { 79, -1, 1354 }, { 79, -1, 1356 }, { 79, -1, 1308 }, { 79, -1, 1317 }, { 79, -1, 1315 }, { 79, -1, 1351 }, { 79, -1, 907 }, { 79, -1, 890 }, { 79, -1, 780 }, { 79, -1, 802 }, { 79, -1, 1751 }, { 79, -1, 1756 }, { 79, -1, 832 }, { 79, -1, 829 }, { 79, -1, 943 }, { 79, -1, 798 }, { 79, -1, 787 }, { 79, -1, 885 }, { 79, -1, 781 }, { 79, -1, 1449 }, { 79, -1, 1467 }, { 79, -1, 1413 }, { 79, -1, 1468 }, { 79, -1, 1445 }, { 79, -1, 1444 }, { 79, -1, 1450 }, { 79, -1, 1446 }, { 79, -1, 1448 }, { 79, -1, 1447 }, { 79, -1, 1456 }, { 79, -1, 1458 }, { 79, -1, 1460 }, { 79, -1, 1463 }, { 79, -1, 1461 }, { 79, -1, 837 }, { 79, -1, 838 }, { 79, -1, 836 }, { 79, -1, 801 }, { 79, -1, 783 }, { 79, -1, 778 }, { 79, -1, 779 }, { 79, -1, 818 }, { 79, -1, 793 }, { 79, -1, 942 }, { 79, -1, 1911 }, { 79, -1, 1661 }, { 79, -1, 1532 }, { 79, -1, 1502 }, { 79, -1, 1522 }, { 79, -1, 1505 }, { 79, -1, 1509 }, { 79, -1, 1527 }, { 79, -1, 1572 }, { 79, -1, 1534 }, { 79, -1, 1513 }, { 79, -1, 1556 }, { 79, -1, 1554 }, { 79, -1, 1555 }, { 79, -1, 1521 }, { 79, -1, 1600 }, { 79, -1, 1549 }, { 79, -1, 1536 }, { 79, -1, 1602 }, { 79, -1, 1603 }, { 79, -1, 1483 }, { 79, -1, 1609 }, { 79, -1, 1146 }, { 79, -1, 1147 }, { 79, -1, 1148 }, { 202, -1, 1737 }, { 205, -1, 1737 }, { 202, -1, 1868 }, { 205, -1, 1868 }, { 202, -1, 1984 }, { 205, -1, 1984 }, { 202, -1, 1831 }, { 205, -1, 1831 }, { 202, -1, 1914 }, { 205, -1, 1914 }, { 202, -1, 1794 }, { 205, -1, 1794 }, { 202, -1, 1803 }, { 205, -1, 1803 }, { 202, -1, 1804 }, { 205, -1, 1804 }, { 202, -1, 1850 }, { 205, -1, 1850 }, { 202, -1, 1852 }, { 205, -1, 1852 }, { 202, -1, 1881 }, { 205, -1, 1881 }, { 202, -1, 1682 }, { 205, -1, 1682 }, { 202, -1, 950 }, { 205, -1, 950 }, { 202, -1, 63 }, { 205, -1, 63 }, { 197, -1, 2882 }, { 202, -1, 7 }, { 198, -1, 7 }, { 205, -1, 7 }, { 197, -1, 2883 }, { 202, -1, 13 }, { 198, -1, 13 }, { 205, -1, 13 }, { 202, -1, 23 }, { 205, -1, 23 }, { 202, -1, 98 }, { 202, -1, 1330 }, { 202, -1, 1849 }, { 205, -1, 1849 }, { 202, -1, 191 }, { 202, -1, 1724 }, { 202, -1, 605 }, { 202, -1, 855 }, { 202, -1, 258 }, { 202, -1, 897 }, { 202, -1, 10 }, { 205, -1, 10 }, { 202, -1, 1568 }, { 202, -1, 1823 }, { 197, -1, 2884 }, { 202, -1, 14 }, { 198, -1, 14 }, { 205, -1, 14 }, { 202, -1, 134 }, { 205, -1, 134 }, { 197, -1, 2885 }, { 202, -1, 15 }, { 198, -1, 15 }, { 205, -1, 15 }, { 197, -1, 2886 }, { 202, -1, 16 }, { 198, -1, 16 }, { 205, -1, 16 }, { 197, -1, 1329 }, { 202, -1, 17 }, { 198, -1, 17 }, { 205, -1, 17 }, { 197, -1, 190 }, { 202, -1, 11 }, { 198, -1, 11 }, { 205, -1, 11 }, { 197, -1, 1694 }, { 202, -1, 12 }, { 198, -1, 12 }, { 205, -1, 12 }, { 202, -1, 493 }, { 205, -1, 493 }, { 202, -1, 476 }, { 205, -1, 476 }, { 202, -1, 275 }, { 205, -1, 275 }, { 197, -1, 2887 }, { 202, -1, 18 }, { 198, -1, 18 }, { 205, -1, 18 }, { 197, -1, 2888 }, { 202, -1, 19 }, { 198, -1, 19 }, { 205, -1, 19 }, { 202, -1, 453 }, { 205, -1, 453 }, { 202, -1, 68 }, { 205, -1, 68 }, { 197, -1, 2889 }, { 202, -1, 20 }, { 198, -1, 20 }, { 205, -1, 20 }, { 197, -1, 1822 }, { 202, -1, 21 }, { 198, -1, 21 }, { 205, -1, 21 }, { 201, -1, 2890 }, { 197, -1, 2890 }, { 202, -1, 22 }, { 198, -1, 22 }, { 205, -1, 22 }, { 202, -1, 589 }, { 205, -1, 589 }, { 202, -1, 620 }, { 205, -1, 620 }, { 202, -1, 784 }, { 205, -1, 784 }, { 202, -1, 785 }, { 205, -1, 785 }, { 202, -1, 1377 }, { 205, -1, 1377 }, { 202, -1, 1501 }, { 205, -1, 1501 }, { 202, -1, 1294 }, { 205, -1, 1294 }, { 202, -1, 1314 }, { 205, -1, 1314 }, { 202, -1, 1316 }, { 205, -1, 1316 }, { 202, -1, 1348 }, { 205, -1, 1348 }, { 202, -1, 1356 }, { 205, -1, 1356 }, { 202, -1, 1317 }, { 205, -1, 1317 }, { 202, -1, 1315 }, { 205, -1, 1315 }, { 202, -1, 1351 }, { 205, -1, 1351 }, { 202, -1, 1751 }, { 205, -1, 1751 }, { 202, -1, 1756 }, { 205, -1, 1756 }, { 205, -1, 832 }, { 202, -1, 837 }, { 205, -1, 837 }, { 202, -1, 838 }, { 205, -1, 838 }, { 202, -1, 836 }, { 205, -1, 836 }, { 202, -1, 783 }, { 205, -1, 783 }, { 202, -1, 778 }, { 205, -1, 778 }, { 202, -1, 779 }, { 205, -1, 779 }, { 202, -1, 1532 }, { 205, -1, 1532 }, { 202, -1, 1527 }, { 205, -1, 1527 }, { 202, -1, 1534 }, { 205, -1, 1534 }, { 202, -1, 1549 }, { 205, -1, 1549 }, { 202, -1, 1536 }, { 205, -1, 1536 }, { 202, -1, 1483 }, { 205, -1, 1483 }, { 23358, -1, 1849 }, { 23358, -1, 10 }, { 23362, -1, 10 }, { 23363, -1, 10 }, { 23657, -1, 13 }, { 35121, 1380, -1 }, { 3988, 1379, -1 }, { 35122, 1380, -1 }, { 3994, 1379, -1 }, { 23397, 23, 10 }, { 23486, 23, 10 }, { 23360, -1, 23 }, { 23361, -1, 23 }, { 23378, -1, 992 }, { 23389, -1, 13 }, { 76, -1, 1258 }, { 76, -1, 1257 }, { 76, -1, 1256 }, { 76, -1, 1259 }, { 76, -1, 1737 }, { 76, -1, 1778 }, { 76, -1, 1777 }, { 76, -1, 2004 }, { 76, -1, 1867 }, { 76, -1, 1923 }, { 76, -1, 1922 }, { 76, -1, 1868 }, { 76, -1, 1984 }, { 76, -1, 1947 }, { 76, -1, 1924 }, { 76, -1, 1925 }, { 76, -1, 1957 }, { 76, -1, 1926 }, { 76, -1, 1951 }, { 76, -1, 1831 }, { 76, -1, 1768 }, { 76, -1, 1913 }, { 76, -1, 1912 }, { 76, -1, 1914 }, { 76, -1, 1794 }, { 76, -1, 1802 }, { 76, -1, 1803 }, { 76, -1, 1804 }, { 76, -1, 1850 }, { 76, -1, 1852 }, { 76, -1, 1881 }, { 76, -1, 1891 }, { 76, -1, 1716 }, { 76, -1, 1682 }, { 76, -1, 419 }, { 76, -1, 632 }, { 76, -1, 634 }, { 76, -1, 417 }, { 76, -1, 506 }, { 76, -1, 577 }, { 76, -1, 505 }, { 76, -1, 950 }, { 76, -1, 971 }, { 76, -1, 1119 }, { 76, -1, 1083 }, { 76, -1, 1063 }, { 76, -1, 1038 }, { 76, -1, 986 }, { 76, -1, 979 }, { 76, -1, 141 }, { 76, -1, 471 }, { 76, -1, 63 }, { 76, -1, 7 }, { 76, -1, 13 }, { 76, -1, 23 }, { 76, -1, 1779 }, { 76, -1, 1985 }, { 76, -1, 578 }, { 76, -1, 1064 }, { 76, -1, 1042 }, { 76, -1, 987 }, { 76, -1, 100 }, { 76, -1, 1331 }, { 76, -1, 192 }, { 76, -1, 1355 }, { 76, -1, 1597 }, { 76, -1, 1601 }, { 76, -1, 1725 }, { 76, -1, 809 }, { 76, -1, 690 }, { 76, -1, 694 }, { 76, -1, 1084 }, { 76, -1, 980 }, { 76, -1, 142 }, { 76, -1, 607 }, { 76, -1, 861 }, { 76, -1, 260 }, { 76, -1, 899 }, { 76, -1, 701 }, { 76, -1, 33 }, { 76, -1, 301 }, { 76, -1, 281 }, { 76, -1, 1570 }, { 76, -1, 1343 }, { 76, -1, 886 }, { 76, -1, 1610 }, { 76, -1, 292 }, { 76, -1, 1952 }, { 76, -1, 1824 }, { 76, -1, 1997 }, { 76, -1, 1498 }, { 76, -1, 1495 }, { 76, -1, 1492 }, { 76, -1, 1362 }, { 76, -1, 1300 }, { 76, -1, 1309 }, { 76, -1, 908 }, { 76, -1, 1798 }, { 76, -1, 1662 }, { 76, -1, 1528 }, { 76, -1, 1484 }, { 76, -1, 1506 }, { 76, -1, 1510 }, { 76, -1, 1514 }, { 76, -1, 743 }, { 76, -1, 1347 }, { 76, -1, 662 }, { 76, -1, 1946 }, { 76, -1, 1325 }, { 76, -1, 1776 }, { 76, -1, 1983 }, { 76, -1, 576 }, { 76, -1, 1062 }, { 76, -1, 1041 }, { 76, -1, 985 }, { 76, -1, 98 }, { 76, -1, 1330 }, { 76, -1, 1849 }, { 76, -1, 191 }, { 76, -1, 1353 }, { 76, -1, 1596 }, { 76, -1, 1599 }, { 76, -1, 1724 }, { 76, -1, 808 }, { 76, -1, 688 }, { 76, -1, 693 }, { 76, -1, 1082 }, { 76, -1, 978 }, { 76, -1, 140 }, { 76, -1, 605 }, { 76, -1, 855 }, { 76, -1, 258 }, { 76, -1, 897 }, { 76, -1, 699 }, { 76, -1, 10 }, { 76, -1, 299 }, { 76, -1, 279 }, { 76, -1, 1568 }, { 76, -1, 1341 }, { 76, -1, 884 }, { 76, -1, 1608 }, { 76, -1, 289 }, { 76, -1, 1950 }, { 76, -1, 1823 }, { 76, -1, 1996 }, { 76, -1, 1497 }, { 76, -1, 1494 }, { 76, -1, 1490 }, { 76, -1, 1360 }, { 76, -1, 1298 }, { 76, -1, 1307 }, { 76, -1, 906 }, { 76, -1, 1797 }, { 76, -1, 1660 }, { 76, -1, 1526 }, { 76, -1, 1482 }, { 76, -1, 1504 }, { 76, -1, 1508 }, { 76, -1, 1512 }, { 76, -1, 652 }, { 76, -1, 152 }, { 76, -1, 494 }, { 76, -1, 14 }, { 76, -1, 134 }, { 76, -1, 147 }, { 76, -1, 15 }, { 76, -1, 16 }, { 76, -1, 410 }, { 76, -1, 399 }, { 76, -1, 400 }, { 76, -1, 416 }, { 76, -1, 44 }, { 76, -1, 17 }, { 76, -1, 11 }, { 76, -1, 12 }, { 76, -1, 136 }, { 76, -1, 689 }, { 76, -1, 700 }, { 76, -1, 1023 }, { 76, -1, 653 }, { 76, -1, 458 }, { 76, -1, 459 }, { 76, -1, 493 }, { 76, -1, 475 }, { 76, -1, 455 }, { 76, -1, 56 }, { 76, -1, 307 }, { 76, -1, 306 }, { 76, -1, 338 }, { 76, -1, 342 }, { 76, -1, 344 }, { 76, -1, 345 }, { 76, -1, 343 }, { 76, -1, 346 }, { 76, -1, 315 }, { 76, -1, 316 }, { 76, -1, 317 }, { 76, -1, 43 }, { 76, -1, 300 }, { 76, -1, 35 }, { 76, -1, 476 }, { 76, -1, 275 }, { 76, -1, 280 }, { 76, -1, 291 }, { 76, -1, 290 }, { 76, -1, 262 }, { 76, -1, 264 }, { 76, -1, 18 }, { 76, -1, 426 }, { 76, -1, 19 }, { 76, -1, 57 }, { 76, -1, 447 }, { 76, -1, 453 }, { 76, -1, 161 }, { 76, -1, 68 }, { 76, -1, 62 }, { 76, -1, 263 }, { 76, -1, 20 }, { 76, -1, 21 }, { 76, -1, 22 }, { 76, -1, 820 }, { 76, -1, 601 }, { 76, -1, 589 }, { 76, -1, 588 }, { 76, -1, 620 }, { 76, -1, 629 }, { 76, -1, 626 }, { 76, -1, 534 }, { 76, -1, 515 }, { 76, -1, 574 }, { 76, -1, 560 }, { 76, -1, 520 }, { 76, -1, 533 }, { 76, -1, 532 }, { 76, -1, 531 }, { 76, -1, 537 }, { 76, -1, 536 }, { 76, -1, 535 }, { 76, -1, 538 }, { 76, -1, 504 }, { 76, -1, 1916 }, { 76, -1, 1491 }, { 76, -1, 784 }, { 76, -1, 785 }, { 76, -1, 834 }, { 76, -1, 831 }, { 76, -1, 1377 }, { 76, -1, 776 }, { 76, -1, 775 }, { 76, -1, 1501 }, { 76, -1, 782 }, { 76, -1, 1739 }, { 76, -1, 786 }, { 76, -1, 1294 }, { 76, -1, 1314 }, { 76, -1, 1316 }, { 76, -1, 1342 }, { 76, -1, 1361 }, { 76, -1, 1299 }, { 76, -1, 1348 }, { 76, -1, 1354 }, { 76, -1, 1356 }, { 76, -1, 1308 }, { 76, -1, 1317 }, { 76, -1, 1315 }, { 76, -1, 1351 }, { 76, -1, 907 }, { 76, -1, 890 }, { 76, -1, 780 }, { 76, -1, 802 }, { 76, -1, 1751 }, { 76, -1, 1756 }, { 76, -1, 832 }, { 76, -1, 829 }, { 76, -1, 943 }, { 76, -1, 798 }, { 76, -1, 787 }, { 76, -1, 885 }, { 76, -1, 781 }, { 76, -1, 1449 }, { 76, -1, 1467 }, { 76, -1, 1413 }, { 76, -1, 1468 }, { 76, -1, 1445 }, { 76, -1, 1444 }, { 76, -1, 1450 }, { 76, -1, 1446 }, { 76, -1, 1448 }, { 76, -1, 1447 }, { 76, -1, 1456 }, { 76, -1, 1458 }, { 76, -1, 1460 }, { 76, -1, 1463 }, { 76, -1, 1461 }, { 76, -1, 837 }, { 76, -1, 838 }, { 76, -1, 836 }, { 76, -1, 801 }, { 76, -1, 783 }, { 76, -1, 778 }, { 76, -1, 779 }, { 76, -1, 818 }, { 76, -1, 793 }, { 76, -1, 942 }, { 76, -1, 1911 }, { 76, -1, 1661 }, { 76, -1, 1532 }, { 76, -1, 1502 }, { 76, -1, 1522 }, { 76, -1, 1505 }, { 76, -1, 1509 }, { 76, -1, 1527 }, { 76, -1, 1572 }, { 76, -1, 1534 }, { 76, -1, 1513 }, { 76, -1, 1556 }, { 76, -1, 1554 }, { 76, -1, 1555 }, { 76, -1, 1521 }, { 76, -1, 1600 }, { 76, -1, 1549 }, { 76, -1, 1536 }, { 76, -1, 1602 }, { 76, -1, 1603 }, { 76, -1, 1483 }, { 76, -1, 1609 }, { 76, -1, 1146 }, { 76, -1, 1147 }, { 76, -1, 1148 }, { 23658, -1, 13 }, { 23658, -1, 23 }, { 23658, -1, 10 }, { 23658, -1, 1756 }, { 227, -1, 1737 }, { 227, -1, 1868 }, { 227, -1, 1984 }, { 227, -1, 1831 }, { 227, -1, 1914 }, { 227, -1, 1794 }, { 227, -1, 1803 }, { 227, -1, 1804 }, { 227, -1, 1850 }, { 227, -1, 1852 }, { 227, -1, 1881 }, { 227, -1, 1682 }, { 227, -1, 950 }, { 227, -1, 63 }, { 227, -1, 7 }, { 227, -1, 13 }, { 227, -1, 23 }, { 227, -1, 98 }, { 227, -1, 1330 }, { 227, -1, 1849 }, { 227, -1, 191 }, { 227, -1, 1724 }, { 227, -1, 605 }, { 227, -1, 855 }, { 227, -1, 258 }, { 227, -1, 897 }, { 227, -1, 10 }, { 227, -1, 1568 }, { 227, -1, 1823 }, { 227, -1, 14 }, { 227, -1, 134 }, { 227, -1, 15 }, { 227, -1, 16 }, { 227, -1, 17 }, { 227, -1, 11 }, { 227, -1, 12 }, { 227, -1, 493 }, { 227, -1, 476 }, { 227, -1, 275 }, { 227, -1, 18 }, { 227, -1, 19 }, { 227, -1, 453 }, { 227, -1, 68 }, { 227, -1, 20 }, { 227, -1, 21 }, { 227, -1, 22 }, { 227, -1, 589 }, { 227, -1, 620 }, { 227, -1, 784 }, { 227, -1, 785 }, { 227, -1, 1377 }, { 227, -1, 1501 }, { 227, -1, 1294 }, { 227, -1, 1314 }, { 227, -1, 1316 }, { 227, -1, 1348 }, { 227, -1, 1356 }, { 227, -1, 1317 }, { 227, -1, 1315 }, { 227, -1, 1351 }, { 227, -1, 1751 }, { 227, -1, 1756 }, { 227, -1, 837 }, { 227, -1, 838 }, { 227, -1, 836 }, { 227, -1, 783 }, { 227, -1, 778 }, { 227, -1, 779 }, { 227, -1, 1532 }, { 227, -1, 1527 }, { 227, -1, 1534 }, { 227, -1, 1549 }, { 227, -1, 1536 }, { 227, -1, 1483 }, { 230, -1, 1737 }, { 230, -1, 1868 }, { 230, -1, 1984 }, { 230, -1, 1831 }, { 230, -1, 1914 }, { 230, -1, 1794 }, { 230, -1, 1803 }, { 230, -1, 1804 }, { 230, -1, 1850 }, { 230, -1, 1852 }, { 230, -1, 1881 }, { 230, -1, 1682 }, { 230, -1, 950 }, { 230, -1, 1119 }, { 230, -1, 63 }, { 230, -1, 7 }, { 230, -1, 23 }, { 230, -1, 1849 }, { 230, -1, 10 }, { 230, -1, 14 }, { 230, -1, 134 }, { 230, -1, 15 }, { 230, -1, 16 }, { 230, -1, 17 }, { 230, -1, 11 }, { 230, -1, 12 }, { 230, -1, 493 }, { 230, -1, 476 }, { 230, -1, 275 }, { 230, -1, 18 }, { 230, -1, 19 }, { 230, -1, 453 }, { 230, -1, 68 }, { 230, -1, 20 }, { 230, -1, 21 }, { 230, -1, 22 }, { 230, -1, 589 }, { 230, -1, 620 }, { 230, -1, 784 }, { 230, -1, 785 }, { 230, -1, 1377 }, { 230, -1, 1501 }, { 230, -1, 1294 }, { 230, -1, 1314 }, { 230, -1, 1316 }, { 230, -1, 1348 }, { 230, -1, 1356 }, { 230, -1, 1317 }, { 230, -1, 1315 }, { 230, -1, 1351 }, { 230, -1, 1751 }, { 230, -1, 1756 }, { 230, -1, 837 }, { 230, -1, 838 }, { 230, -1, 836 }, { 230, -1, 783 }, { 230, -1, 778 }, { 230, -1, 779 }, { 230, -1, 1532 }, { 230, -1, 1527 }, { 230, -1, 1534 }, { 230, -1, 1549 }, { 230, -1, 1536 }, { 230, -1, 1483 }, { 86, -1, 1258 }, { 86, -1, 1257 }, { 86, -1, 1256 }, { 86, -1, 1259 }, { 86, -1, 1737 }, { 86, -1, 1778 }, { 86, -1, 1777 }, { 86, -1, 2004 }, { 86, -1, 1867 }, { 86, -1, 1923 }, { 86, -1, 1922 }, { 86, -1, 1868 }, { 86, -1, 1984 }, { 86, -1, 1947 }, { 86, -1, 1924 }, { 86, -1, 1925 }, { 86, -1, 1957 }, { 86, -1, 1926 }, { 86, -1, 1951 }, { 86, -1, 1831 }, { 86, -1, 1768 }, { 86, -1, 1913 }, { 86, -1, 1912 }, { 86, -1, 1914 }, { 86, -1, 1794 }, { 86, -1, 1802 }, { 86, -1, 1803 }, { 86, -1, 1804 }, { 86, -1, 1850 }, { 86, -1, 1852 }, { 86, -1, 1881 }, { 86, -1, 1891 }, { 86, -1, 1716 }, { 86, -1, 1682 }, { 86, -1, 419 }, { 86, -1, 632 }, { 86, -1, 634 }, { 86, -1, 417 }, { 86, -1, 506 }, { 86, -1, 577 }, { 86, -1, 505 }, { 86, -1, 950 }, { 86, -1, 971 }, { 86, -1, 1119 }, { 86, -1, 1083 }, { 86, -1, 1063 }, { 86, -1, 1038 }, { 86, -1, 986 }, { 86, -1, 979 }, { 86, -1, 141 }, { 86, -1, 471 }, { 86, -1, 63 }, { 86, -1, 7 }, { 86, -1, 13 }, { 86, -1, 23 }, { 86, -1, 1779 }, { 86, -1, 1985 }, { 86, -1, 578 }, { 86, -1, 1064 }, { 86, -1, 1042 }, { 86, -1, 987 }, { 86, -1, 100 }, { 86, -1, 1331 }, { 86, -1, 192 }, { 86, -1, 1355 }, { 86, -1, 1597 }, { 86, -1, 1601 }, { 86, -1, 1725 }, { 86, -1, 809 }, { 86, -1, 690 }, { 86, -1, 694 }, { 86, -1, 1084 }, { 86, -1, 980 }, { 86, -1, 142 }, { 86, -1, 607 }, { 86, -1, 861 }, { 86, -1, 260 }, { 86, -1, 899 }, { 86, -1, 701 }, { 86, -1, 33 }, { 86, -1, 301 }, { 86, -1, 281 }, { 86, -1, 1570 }, { 86, -1, 1343 }, { 86, -1, 886 }, { 86, -1, 1610 }, { 86, -1, 292 }, { 86, -1, 1952 }, { 86, -1, 1824 }, { 86, -1, 1997 }, { 86, -1, 1498 }, { 86, -1, 1495 }, { 86, -1, 1492 }, { 86, -1, 1362 }, { 86, -1, 1300 }, { 86, -1, 1309 }, { 86, -1, 908 }, { 86, -1, 1798 }, { 86, -1, 1662 }, { 86, -1, 1528 }, { 86, -1, 1484 }, { 86, -1, 1506 }, { 86, -1, 1510 }, { 86, -1, 1514 }, { 86, -1, 743 }, { 86, -1, 1347 }, { 86, -1, 662 }, { 86, -1, 1946 }, { 86, -1, 1325 }, { 86, -1, 1776 }, { 86, -1, 1983 }, { 86, -1, 576 }, { 86, -1, 1062 }, { 86, -1, 1041 }, { 86, -1, 985 }, { 86, -1, 98 }, { 86, -1, 1330 }, { 86, -1, 1849 }, { 86, -1, 191 }, { 86, -1, 1353 }, { 86, -1, 1596 }, { 86, -1, 1599 }, { 86, -1, 1724 }, { 86, -1, 808 }, { 86, -1, 688 }, { 86, -1, 693 }, { 86, -1, 1082 }, { 86, -1, 978 }, { 86, -1, 140 }, { 86, -1, 605 }, { 86, -1, 855 }, { 86, -1, 258 }, { 86, -1, 897 }, { 86, -1, 699 }, { 86, -1, 10 }, { 86, -1, 299 }, { 86, -1, 279 }, { 86, -1, 1568 }, { 86, -1, 1341 }, { 86, -1, 884 }, { 86, -1, 1608 }, { 86, -1, 289 }, { 86, -1, 1950 }, { 86, -1, 1823 }, { 86, -1, 1996 }, { 86, -1, 1497 }, { 86, -1, 1494 }, { 86, -1, 1490 }, { 86, -1, 1360 }, { 86, -1, 1298 }, { 86, -1, 1307 }, { 86, -1, 906 }, { 86, -1, 1797 }, { 86, -1, 1660 }, { 86, -1, 1526 }, { 86, -1, 1482 }, { 86, -1, 1504 }, { 86, -1, 1508 }, { 86, -1, 1512 }, { 86, -1, 652 }, { 86, -1, 152 }, { 86, -1, 494 }, { 86, -1, 14 }, { 86, -1, 134 }, { 86, -1, 147 }, { 86, -1, 15 }, { 86, -1, 16 }, { 86, -1, 410 }, { 86, -1, 399 }, { 86, -1, 400 }, { 86, -1, 416 }, { 86, -1, 44 }, { 86, -1, 17 }, { 86, -1, 11 }, { 86, -1, 12 }, { 86, -1, 136 }, { 86, -1, 689 }, { 86, -1, 700 }, { 86, -1, 1023 }, { 86, -1, 653 }, { 86, -1, 458 }, { 86, -1, 459 }, { 86, -1, 493 }, { 86, -1, 475 }, { 86, -1, 455 }, { 86, -1, 56 }, { 86, -1, 307 }, { 86, -1, 306 }, { 86, -1, 338 }, { 86, -1, 342 }, { 86, -1, 344 }, { 86, -1, 345 }, { 86, -1, 343 }, { 86, -1, 346 }, { 86, -1, 315 }, { 86, -1, 316 }, { 86, -1, 317 }, { 86, -1, 43 }, { 86, -1, 300 }, { 86, -1, 35 }, { 86, -1, 476 }, { 86, -1, 275 }, { 86, -1, 280 }, { 86, -1, 291 }, { 86, -1, 290 }, { 86, -1, 262 }, { 86, -1, 264 }, { 86, -1, 18 }, { 86, -1, 426 }, { 86, -1, 19 }, { 86, -1, 57 }, { 86, -1, 447 }, { 86, -1, 453 }, { 86, -1, 161 }, { 86, -1, 68 }, { 86, -1, 62 }, { 86, -1, 263 }, { 86, -1, 20 }, { 86, -1, 21 }, { 86, -1, 22 }, { 86, -1, 820 }, { 86, -1, 601 }, { 86, -1, 589 }, { 86, -1, 588 }, { 86, -1, 620 }, { 86, -1, 629 }, { 86, -1, 626 }, { 86, -1, 534 }, { 86, -1, 515 }, { 86, -1, 574 }, { 86, -1, 560 }, { 86, -1, 520 }, { 86, -1, 533 }, { 86, -1, 532 }, { 86, -1, 531 }, { 86, -1, 537 }, { 86, -1, 536 }, { 86, -1, 535 }, { 86, -1, 538 }, { 86, -1, 504 }, { 86, -1, 1916 }, { 86, -1, 1491 }, { 86, -1, 784 }, { 86, -1, 785 }, { 86, -1, 834 }, { 86, -1, 831 }, { 86, -1, 1377 }, { 86, -1, 776 }, { 86, -1, 775 }, { 86, -1, 1501 }, { 86, -1, 782 }, { 86, -1, 1739 }, { 86, -1, 786 }, { 86, -1, 1294 }, { 86, -1, 1314 }, { 86, -1, 1316 }, { 86, -1, 1342 }, { 86, -1, 1361 }, { 86, -1, 1299 }, { 86, -1, 1348 }, { 86, -1, 1354 }, { 86, -1, 1356 }, { 86, -1, 1308 }, { 86, -1, 1317 }, { 86, -1, 1315 }, { 86, -1, 1351 }, { 86, -1, 907 }, { 86, -1, 890 }, { 86, -1, 780 }, { 86, -1, 802 }, { 86, -1, 1751 }, { 86, -1, 1756 }, { 86, -1, 832 }, { 86, -1, 829 }, { 86, -1, 943 }, { 86, -1, 798 }, { 86, -1, 787 }, { 86, -1, 885 }, { 86, -1, 781 }, { 86, -1, 1449 }, { 86, -1, 1467 }, { 86, -1, 1413 }, { 86, -1, 1468 }, { 86, -1, 1445 }, { 86, -1, 1444 }, { 86, -1, 1450 }, { 86, -1, 1446 }, { 86, -1, 1448 }, { 86, -1, 1447 }, { 86, -1, 1456 }, { 86, -1, 1458 }, { 86, -1, 1460 }, { 86, -1, 1463 }, { 86, -1, 1461 }, { 86, -1, 837 }, { 86, -1, 838 }, { 86, -1, 836 }, { 86, -1, 801 }, { 86, -1, 783 }, { 86, -1, 778 }, { 86, -1, 779 }, { 86, -1, 818 }, { 86, -1, 793 }, { 86, -1, 942 }, { 86, -1, 1911 }, { 86, -1, 1661 }, { 86, -1, 1532 }, { 86, -1, 1502 }, { 86, -1, 1522 }, { 86, -1, 1505 }, { 86, -1, 1509 }, { 86, -1, 1527 }, { 86, -1, 1572 }, { 86, -1, 1534 }, { 86, -1, 1513 }, { 86, -1, 1556 }, { 86, -1, 1554 }, { 86, -1, 1555 }, { 86, -1, 1521 }, { 86, -1, 1600 }, { 86, -1, 1549 }, { 86, -1, 1536 }, { 86, -1, 1602 }, { 86, -1, 1603 }, { 86, -1, 1483 }, { 86, -1, 1609 }, { 86, -1, 1146 }, { 86, -1, 1147 }, { 86, -1, 1148 }, { 7994, -1, 1777 }, { 7994, -1, 1682 }, { 7994, -1, 632 }, { 7994, -1, 634 }, { 7994, -1, 505 }, { 7994, -1, 971 }, { 7994, -1, 1119 }, { 7994, -1, 1083 }, { 7994, -1, 979 }, { 7994, -1, 141 }, { 7994, -1, 147 }, { 7994, -1, 410 }, { 7994, -1, 700 }, { 7994, -1, 455 }, { 7994, -1, 262 }, { 7994, -1, 264 }, { 7994, -1, 57 }, { 7994, -1, 453 }, { 7994, -1, 263 }, { 7994, -1, 629 }, { 7994, -1, 626 }, { 7994, -1, 534 }, { 7994, -1, 532 }, { 7994, -1, 538 }, { 7994, -1, 504 }, { 7994, -1, 1491 }, { 7994, -1, 1501 }, { 7994, -1, 1351 }, { 7994, -1, 885 }, { 7994, -1, 1449 }, { 7994, -1, 1467 }, { 7994, -1, 1468 }, { 7994, -1, 1445 }, { 7994, -1, 1444 }, { 7994, -1, 1450 }, { 7994, -1, 1446 }, { 7994, -1, 1448 }, { 7994, -1, 1447 }, { 7994, -1, 1458 }, { 7994, -1, 1460 }, { 7994, -1, 1463 }, { 7994, -1, 1661 }, { 7994, -1, 1527 }, { 7994, -1, 1513 }, { 26392, -1, 785 }, { 26392, -1, 783 }, { 26392, -1, 778 }, { 26392, -1, 779 }, { 7995, -1, 907 }, { 3806, 681, -1 }, { 16448, 685, -1 }, { 16447, 685, -1 }, { 23377, -1, 182 }, { 8027, -1, 1770 }, { 8027, -1, 198 }, { 8027, -1, 21 }, { 4938, -1, 63 }, { 4938, -1, 21 }, { 4937, -1, 21 }, { 4934, -1, 63 }, { 4934, -1, 21 }, { 4932, -1, 21 }, { 4773, -1, 752 }, { 4787, 11, 3154 }, { 4787, 198, 3154 }, { 31287, -1, 1178 }, { 31288, -1, 1178 }, { 31288, -1, 1179 }, { 31285, -1, 21 }, { 31286, -1, 21 }, { 3261, -1, 1159 }, { 3262, -1, 1183 }, { 3262, -1, 1157 }, { 3263, -1, 739 }, { 3263, -1, 751 }, { 41622, -1, 1702 }, { 16446, 1350, -1 }, { 207, -1, 1737 }, { 207, -1, 1868 }, { 207, -1, 1984 }, { 207, -1, 1831 }, { 207, -1, 1914 }, { 207, -1, 1794 }, { 207, -1, 1803 }, { 207, -1, 1804 }, { 207, -1, 1850 }, { 207, -1, 1852 }, { 207, -1, 1881 }, { 207, -1, 1682 }, { 207, -1, 950 }, { 207, -1, 63 }, { 207, -1, 7 }, { 207, -1, 13 }, { 207, -1, 23 }, { 207, -1, 98 }, { 207, -1, 1330 }, { 207, -1, 1849 }, { 207, -1, 191 }, { 207, -1, 1724 }, { 207, -1, 605 }, { 207, -1, 855 }, { 207, -1, 258 }, { 207, -1, 897 }, { 207, -1, 10 }, { 207, -1, 1568 }, { 207, -1, 1823 }, { 207, -1, 14 }, { 207, -1, 134 }, { 207, -1, 15 }, { 207, -1, 16 }, { 207, -1, 17 }, { 207, -1, 11 }, { 207, -1, 12 }, { 207, -1, 493 }, { 207, -1, 476 }, { 207, -1, 275 }, { 207, -1, 18 }, { 207, -1, 19 }, { 207, -1, 453 }, { 207, -1, 68 }, { 207, -1, 20 }, { 207, -1, 21 }, { 207, -1, 22 }, { 207, -1, 589 }, { 207, -1, 620 }, { 207, -1, 784 }, { 207, -1, 785 }, { 207, -1, 1377 }, { 207, -1, 1501 }, { 207, -1, 1294 }, { 207, -1, 1314 }, { 207, -1, 1316 }, { 207, -1, 1348 }, { 207, -1, 1356 }, { 207, -1, 1317 }, { 207, -1, 1315 }, { 207, -1, 1351 }, { 207, -1, 1751 }, { 207, -1, 1756 }, { 207, -1, 837 }, { 207, -1, 838 }, { 207, -1, 836 }, { 207, -1, 783 }, { 207, -1, 778 }, { 207, -1, 779 }, { 207, -1, 1532 }, { 207, -1, 1527 }, { 207, -1, 1534 }, { 207, -1, 1549 }, { 207, -1, 1536 }, { 207, -1, 1483 }, { 78, -1, 1258 }, { 78, -1, 1257 }, { 78, -1, 1256 }, { 78, -1, 1259 }, { 78, -1, 1737 }, { 78, -1, 1778 }, { 78, -1, 1777 }, { 78, -1, 2004 }, { 78, -1, 1867 }, { 78, -1, 1923 }, { 78, -1, 1922 }, { 78, -1, 1868 }, { 78, -1, 1984 }, { 78, -1, 1947 }, { 78, -1, 1924 }, { 78, -1, 1925 }, { 78, -1, 1957 }, { 78, -1, 1926 }, { 78, -1, 1951 }, { 78, -1, 1831 }, { 78, -1, 1768 }, { 78, -1, 1913 }, { 78, -1, 1912 }, { 78, -1, 1914 }, { 78, -1, 1794 }, { 78, -1, 1802 }, { 78, -1, 1803 }, { 78, -1, 1804 }, { 78, -1, 1850 }, { 78, -1, 1852 }, { 78, -1, 1881 }, { 78, -1, 1891 }, { 78, -1, 1716 }, { 78, -1, 1682 }, { 78, -1, 419 }, { 78, -1, 632 }, { 78, -1, 634 }, { 78, -1, 417 }, { 78, -1, 506 }, { 78, -1, 577 }, { 78, -1, 505 }, { 78, -1, 950 }, { 78, -1, 971 }, { 78, -1, 1119 }, { 78, -1, 1083 }, { 78, -1, 1063 }, { 78, -1, 1038 }, { 78, -1, 986 }, { 78, -1, 979 }, { 78, -1, 141 }, { 78, -1, 471 }, { 78, -1, 63 }, { 78, -1, 7 }, { 78, -1, 13 }, { 78, -1, 23 }, { 78, -1, 1779 }, { 78, -1, 1985 }, { 78, -1, 578 }, { 78, -1, 1064 }, { 78, -1, 1042 }, { 78, -1, 987 }, { 78, -1, 100 }, { 78, -1, 1331 }, { 78, -1, 192 }, { 78, -1, 1355 }, { 78, -1, 1597 }, { 78, -1, 1601 }, { 78, -1, 1725 }, { 78, -1, 809 }, { 78, -1, 690 }, { 78, -1, 694 }, { 78, -1, 1084 }, { 78, -1, 980 }, { 78, -1, 142 }, { 78, -1, 607 }, { 78, -1, 861 }, { 78, -1, 260 }, { 78, -1, 899 }, { 78, -1, 701 }, { 78, -1, 33 }, { 78, -1, 301 }, { 78, -1, 281 }, { 78, -1, 1570 }, { 78, -1, 1343 }, { 78, -1, 886 }, { 78, -1, 1610 }, { 78, -1, 292 }, { 78, -1, 1952 }, { 78, -1, 1824 }, { 78, -1, 1997 }, { 78, -1, 1498 }, { 78, -1, 1495 }, { 78, -1, 1492 }, { 78, -1, 1362 }, { 78, -1, 1300 }, { 78, -1, 1309 }, { 78, -1, 908 }, { 78, -1, 1798 }, { 78, -1, 1662 }, { 78, -1, 1528 }, { 78, -1, 1484 }, { 78, -1, 1506 }, { 78, -1, 1510 }, { 78, -1, 1514 }, { 78, -1, 743 }, { 78, -1, 1347 }, { 78, -1, 662 }, { 78, -1, 1946 }, { 78, -1, 1325 }, { 78, -1, 1776 }, { 78, -1, 1983 }, { 78, -1, 576 }, { 78, -1, 1062 }, { 78, -1, 1041 }, { 78, -1, 985 }, { 78, -1, 98 }, { 78, -1, 1330 }, { 78, -1, 1849 }, { 78, -1, 191 }, { 78, -1, 1353 }, { 78, -1, 1596 }, { 78, -1, 1599 }, { 78, -1, 1724 }, { 78, -1, 808 }, { 78, -1, 688 }, { 78, -1, 693 }, { 78, -1, 1082 }, { 78, -1, 978 }, { 78, -1, 140 }, { 78, -1, 605 }, { 78, -1, 855 }, { 78, -1, 258 }, { 78, -1, 897 }, { 78, -1, 699 }, { 78, -1, 10 }, { 78, -1, 299 }, { 78, -1, 279 }, { 78, -1, 1568 }, { 78, -1, 1341 }, { 78, -1, 884 }, { 78, -1, 1608 }, { 78, -1, 289 }, { 78, -1, 1950 }, { 78, -1, 1823 }, { 78, -1, 1996 }, { 78, -1, 1497 }, { 78, -1, 1494 }, { 78, -1, 1490 }, { 78, -1, 1360 }, { 78, -1, 1298 }, { 78, -1, 1307 }, { 78, -1, 906 }, { 78, -1, 1797 }, { 78, -1, 1660 }, { 78, -1, 1526 }, { 78, -1, 1482 }, { 78, -1, 1504 }, { 78, -1, 1508 }, { 78, -1, 1512 }, { 78, -1, 652 }, { 78, -1, 152 }, { 78, -1, 494 }, { 78, -1, 14 }, { 78, -1, 134 }, { 78, -1, 147 }, { 78, -1, 15 }, { 78, -1, 16 }, { 78, -1, 410 }, { 78, -1, 399 }, { 78, -1, 400 }, { 78, -1, 416 }, { 78, -1, 44 }, { 78, -1, 17 }, { 78, -1, 11 }, { 78, -1, 12 }, { 78, -1, 136 }, { 78, -1, 689 }, { 78, -1, 700 }, { 78, -1, 1023 }, { 78, -1, 653 }, { 78, -1, 458 }, { 78, -1, 459 }, { 78, -1, 493 }, { 78, -1, 475 }, { 78, -1, 455 }, { 78, -1, 56 }, { 78, -1, 307 }, { 78, -1, 306 }, { 78, -1, 338 }, { 78, -1, 342 }, { 78, -1, 344 }, { 78, -1, 345 }, { 78, -1, 343 }, { 78, -1, 346 }, { 78, -1, 315 }, { 78, -1, 316 }, { 78, -1, 317 }, { 78, -1, 43 }, { 78, -1, 300 }, { 78, -1, 35 }, { 78, -1, 476 }, { 78, -1, 275 }, { 78, -1, 280 }, { 78, -1, 291 }, { 78, -1, 290 }, { 78, -1, 262 }, { 78, -1, 264 }, { 78, -1, 18 }, { 78, -1, 426 }, { 78, -1, 19 }, { 78, -1, 57 }, { 78, -1, 447 }, { 78, -1, 453 }, { 78, -1, 161 }, { 78, -1, 68 }, { 78, -1, 62 }, { 78, -1, 263 }, { 78, -1, 20 }, { 78, -1, 21 }, { 78, -1, 22 }, { 78, -1, 820 }, { 78, -1, 601 }, { 78, -1, 589 }, { 78, -1, 588 }, { 78, -1, 620 }, { 78, -1, 629 }, { 78, -1, 626 }, { 78, -1, 534 }, { 78, -1, 515 }, { 78, -1, 574 }, { 78, -1, 560 }, { 78, -1, 520 }, { 78, -1, 533 }, { 78, -1, 532 }, { 78, -1, 531 }, { 78, -1, 537 }, { 78, -1, 536 }, { 78, -1, 535 }, { 78, -1, 538 }, { 78, -1, 504 }, { 78, -1, 1916 }, { 78, -1, 1491 }, { 78, -1, 784 }, { 78, -1, 785 }, { 78, -1, 834 }, { 78, -1, 831 }, { 78, -1, 1377 }, { 78, -1, 776 }, { 78, -1, 775 }, { 78, -1, 1501 }, { 78, -1, 782 }, { 78, -1, 1739 }, { 78, -1, 786 }, { 78, -1, 1294 }, { 78, -1, 1314 }, { 78, -1, 1316 }, { 78, -1, 1342 }, { 78, -1, 1361 }, { 78, -1, 1299 }, { 78, -1, 1348 }, { 78, -1, 1354 }, { 78, -1, 1356 }, { 78, -1, 1308 }, { 78, -1, 1317 }, { 78, -1, 1315 }, { 78, -1, 1351 }, { 78, -1, 907 }, { 78, -1, 890 }, { 78, -1, 780 }, { 78, -1, 802 }, { 78, -1, 1751 }, { 78, -1, 1756 }, { 78, -1, 832 }, { 78, -1, 829 }, { 78, -1, 943 }, { 78, -1, 798 }, { 78, -1, 787 }, { 78, -1, 885 }, { 78, -1, 781 }, { 78, -1, 1449 }, { 78, -1, 1467 }, { 78, -1, 1413 }, { 78, -1, 1468 }, { 78, -1, 1445 }, { 78, -1, 1444 }, { 78, -1, 1450 }, { 78, -1, 1446 }, { 78, -1, 1448 }, { 78, -1, 1447 }, { 78, -1, 1456 }, { 78, -1, 1458 }, { 78, -1, 1460 }, { 78, -1, 1463 }, { 78, -1, 1461 }, { 78, -1, 837 }, { 78, -1, 838 }, { 78, -1, 836 }, { 78, -1, 801 }, { 78, -1, 783 }, { 78, -1, 778 }, { 78, -1, 779 }, { 78, -1, 818 }, { 78, -1, 793 }, { 78, -1, 942 }, { 78, -1, 1911 }, { 78, -1, 1661 }, { 78, -1, 1532 }, { 78, -1, 1502 }, { 78, -1, 1522 }, { 78, -1, 1505 }, { 78, -1, 1509 }, { 78, -1, 1527 }, { 78, -1, 1572 }, { 78, -1, 1534 }, { 78, -1, 1513 }, { 78, -1, 1556 }, { 78, -1, 1554 }, { 78, -1, 1555 }, { 78, -1, 1521 }, { 78, -1, 1600 }, { 78, -1, 1549 }, { 78, -1, 1536 }, { 78, -1, 1602 }, { 78, -1, 1603 }, { 78, -1, 1483 }, { 78, -1, 1609 }, { 78, -1, 1146 }, { 78, -1, 1147 }, { 78, -1, 1148 }, { 81, -1, 1258 }, { 81, -1, 1257 }, { 81, -1, 1256 }, { 81, -1, 1259 }, { 81, -1, 1737 }, { 81, -1, 1778 }, { 81, -1, 1777 }, { 81, -1, 2004 }, { 81, -1, 1867 }, { 81, -1, 1923 }, { 81, -1, 1922 }, { 81, -1, 1868 }, { 81, -1, 1984 }, { 81, -1, 1947 }, { 81, -1, 1924 }, { 81, -1, 1925 }, { 81, -1, 1957 }, { 81, -1, 1926 }, { 81, -1, 1951 }, { 81, -1, 1831 }, { 81, -1, 1768 }, { 81, -1, 1913 }, { 81, -1, 1912 }, { 81, -1, 1914 }, { 81, -1, 1794 }, { 81, -1, 1802 }, { 81, -1, 1803 }, { 81, -1, 1804 }, { 81, -1, 1850 }, { 81, -1, 1852 }, { 81, -1, 1881 }, { 81, -1, 1891 }, { 81, -1, 1716 }, { 81, -1, 1682 }, { 81, -1, 419 }, { 81, -1, 632 }, { 81, -1, 634 }, { 81, -1, 417 }, { 81, -1, 506 }, { 81, -1, 577 }, { 81, -1, 505 }, { 81, -1, 950 }, { 81, -1, 971 }, { 81, -1, 1119 }, { 81, -1, 1083 }, { 81, -1, 1063 }, { 81, -1, 1038 }, { 81, -1, 986 }, { 81, -1, 979 }, { 81, -1, 141 }, { 81, -1, 471 }, { 81, -1, 63 }, { 81, -1, 7 }, { 81, -1, 13 }, { 81, -1, 23 }, { 81, -1, 1779 }, { 81, -1, 1985 }, { 81, -1, 578 }, { 81, -1, 1064 }, { 81, -1, 1042 }, { 81, -1, 987 }, { 81, -1, 100 }, { 81, -1, 1331 }, { 81, -1, 192 }, { 81, -1, 1355 }, { 81, -1, 1597 }, { 81, -1, 1601 }, { 81, -1, 1725 }, { 81, -1, 809 }, { 81, -1, 690 }, { 81, -1, 694 }, { 81, -1, 1084 }, { 81, -1, 980 }, { 81, -1, 142 }, { 81, -1, 607 }, { 81, -1, 861 }, { 81, -1, 260 }, { 81, -1, 899 }, { 81, -1, 701 }, { 81, -1, 33 }, { 81, -1, 301 }, { 81, -1, 281 }, { 81, -1, 1570 }, { 81, -1, 1343 }, { 81, -1, 886 }, { 81, -1, 1610 }, { 81, -1, 292 }, { 81, -1, 1952 }, { 81, -1, 1824 }, { 81, -1, 1997 }, { 81, -1, 1498 }, { 81, -1, 1495 }, { 81, -1, 1492 }, { 81, -1, 1362 }, { 81, -1, 1300 }, { 81, -1, 1309 }, { 81, -1, 908 }, { 81, -1, 1798 }, { 81, -1, 1662 }, { 81, -1, 1528 }, { 81, -1, 1484 }, { 81, -1, 1506 }, { 81, -1, 1510 }, { 81, -1, 1514 }, { 81, -1, 743 }, { 81, -1, 1347 }, { 81, -1, 662 }, { 81, -1, 1946 }, { 81, -1, 1325 }, { 81, -1, 1776 }, { 81, -1, 1983 }, { 81, -1, 576 }, { 81, -1, 1062 }, { 81, -1, 1041 }, { 81, -1, 985 }, { 81, -1, 98 }, { 81, -1, 1330 }, { 81, -1, 1849 }, { 81, -1, 191 }, { 81, -1, 1353 }, { 81, -1, 1596 }, { 81, -1, 1599 }, { 81, -1, 1724 }, { 81, -1, 808 }, { 81, -1, 688 }, { 81, -1, 693 }, { 81, -1, 1082 }, { 81, -1, 978 }, { 81, -1, 140 }, { 81, -1, 605 }, { 81, -1, 855 }, { 81, -1, 258 }, { 81, -1, 897 }, { 81, -1, 699 }, { 81, -1, 10 }, { 81, -1, 299 }, { 81, -1, 279 }, { 81, -1, 1568 }, { 81, -1, 1341 }, { 81, -1, 884 }, { 81, -1, 1608 }, { 81, -1, 289 }, { 81, -1, 1950 }, { 81, -1, 1823 }, { 81, -1, 1996 }, { 81, -1, 1497 }, { 81, -1, 1494 }, { 81, -1, 1490 }, { 81, -1, 1360 }, { 81, -1, 1298 }, { 81, -1, 1307 }, { 81, -1, 906 }, { 81, -1, 1797 }, { 81, -1, 1660 }, { 81, -1, 1526 }, { 81, -1, 1482 }, { 81, -1, 1504 }, { 81, -1, 1508 }, { 81, -1, 1512 }, { 81, -1, 652 }, { 81, -1, 152 }, { 81, -1, 494 }, { 81, -1, 14 }, { 81, -1, 134 }, { 81, -1, 147 }, { 81, -1, 15 }, { 81, -1, 16 }, { 81, -1, 410 }, { 81, -1, 399 }, { 81, -1, 400 }, { 81, -1, 416 }, { 81, -1, 44 }, { 81, -1, 17 }, { 81, -1, 11 }, { 81, -1, 12 }, { 81, -1, 136 }, { 81, -1, 689 }, { 81, -1, 700 }, { 81, -1, 1023 }, { 81, -1, 653 }, { 81, -1, 458 }, { 81, -1, 459 }, { 81, -1, 493 }, { 81, -1, 475 }, { 81, -1, 455 }, { 81, -1, 56 }, { 81, -1, 307 }, { 81, -1, 306 }, { 81, -1, 338 }, { 81, -1, 342 }, { 81, -1, 344 }, { 81, -1, 345 }, { 81, -1, 343 }, { 81, -1, 346 }, { 81, -1, 315 }, { 81, -1, 316 }, { 81, -1, 317 }, { 81, -1, 43 }, { 81, -1, 300 }, { 81, -1, 35 }, { 81, -1, 476 }, { 81, -1, 275 }, { 81, -1, 280 }, { 81, -1, 291 }, { 81, -1, 290 }, { 81, -1, 262 }, { 81, -1, 264 }, { 81, -1, 18 }, { 81, -1, 426 }, { 81, -1, 19 }, { 81, -1, 57 }, { 81, -1, 447 }, { 81, -1, 453 }, { 81, -1, 161 }, { 81, -1, 68 }, { 81, -1, 62 }, { 81, -1, 263 }, { 81, -1, 20 }, { 81, -1, 21 }, { 81, -1, 22 }, { 81, -1, 820 }, { 81, -1, 601 }, { 81, -1, 589 }, { 81, -1, 588 }, { 81, -1, 620 }, { 81, -1, 629 }, { 81, -1, 626 }, { 81, -1, 534 }, { 81, -1, 515 }, { 81, -1, 574 }, { 81, -1, 560 }, { 81, -1, 520 }, { 81, -1, 533 }, { 81, -1, 532 }, { 81, -1, 531 }, { 81, -1, 537 }, { 81, -1, 536 }, { 81, -1, 535 }, { 81, -1, 538 }, { 81, -1, 504 }, { 81, -1, 1916 }, { 81, -1, 1491 }, { 81, -1, 784 }, { 81, -1, 785 }, { 81, -1, 834 }, { 81, -1, 831 }, { 81, -1, 1377 }, { 81, -1, 776 }, { 81, -1, 775 }, { 81, -1, 1501 }, { 81, -1, 782 }, { 81, -1, 1739 }, { 81, -1, 786 }, { 81, -1, 1294 }, { 81, -1, 1314 }, { 81, -1, 1316 }, { 81, -1, 1342 }, { 81, -1, 1361 }, { 81, -1, 1299 }, { 81, -1, 1348 }, { 81, -1, 1354 }, { 81, -1, 1356 }, { 81, -1, 1308 }, { 81, -1, 1317 }, { 81, -1, 1315 }, { 81, -1, 1351 }, { 81, -1, 907 }, { 81, -1, 890 }, { 81, -1, 780 }, { 81, -1, 802 }, { 81, -1, 1751 }, { 81, -1, 1756 }, { 81, -1, 832 }, { 81, -1, 829 }, { 81, -1, 943 }, { 81, -1, 798 }, { 81, -1, 787 }, { 81, -1, 885 }, { 81, -1, 781 }, { 81, -1, 1449 }, { 81, -1, 1467 }, { 81, -1, 1413 }, { 81, -1, 1468 }, { 81, -1, 1445 }, { 81, -1, 1444 }, { 81, -1, 1450 }, { 81, -1, 1446 }, { 81, -1, 1448 }, { 81, -1, 1447 }, { 81, -1, 1456 }, { 81, -1, 1458 }, { 81, -1, 1460 }, { 81, -1, 1463 }, { 81, -1, 1461 }, { 81, -1, 837 }, { 81, -1, 838 }, { 81, -1, 836 }, { 81, -1, 801 }, { 81, -1, 783 }, { 81, -1, 778 }, { 81, -1, 779 }, { 81, -1, 818 }, { 81, -1, 793 }, { 81, -1, 942 }, { 81, -1, 1911 }, { 81, -1, 1661 }, { 81, -1, 1532 }, { 81, -1, 1502 }, { 81, -1, 1522 }, { 81, -1, 1505 }, { 81, -1, 1509 }, { 81, -1, 1527 }, { 81, -1, 1572 }, { 81, -1, 1534 }, { 81, -1, 1513 }, { 81, -1, 1556 }, { 81, -1, 1554 }, { 81, -1, 1555 }, { 81, -1, 1521 }, { 81, -1, 1600 }, { 81, -1, 1549 }, { 81, -1, 1536 }, { 81, -1, 1602 }, { 81, -1, 1603 }, { 81, -1, 1483 }, { 81, -1, 1609 }, { 81, -1, 1146 }, { 81, -1, 1147 }, { 81, -1, 1148 }, { 84, -1, 1258 }, { 84, -1, 1257 }, { 84, -1, 1256 }, { 84, -1, 1259 }, { 84, -1, 1737 }, { 84, -1, 1778 }, { 84, -1, 1777 }, { 84, -1, 2004 }, { 84, -1, 1867 }, { 84, -1, 1923 }, { 84, -1, 1922 }, { 84, -1, 1868 }, { 84, -1, 1984 }, { 84, -1, 1947 }, { 84, -1, 1924 }, { 84, -1, 1925 }, { 84, -1, 1957 }, { 84, -1, 1926 }, { 84, -1, 1951 }, { 84, -1, 1831 }, { 84, -1, 1768 }, { 84, -1, 1913 }, { 84, -1, 1912 }, { 84, -1, 1914 }, { 84, -1, 1794 }, { 84, -1, 1802 }, { 84, -1, 1803 }, { 84, -1, 1804 }, { 84, -1, 1850 }, { 84, -1, 1852 }, { 84, -1, 1881 }, { 84, -1, 1891 }, { 84, -1, 1716 }, { 84, -1, 1682 }, { 84, -1, 419 }, { 84, -1, 632 }, { 84, -1, 634 }, { 84, -1, 417 }, { 84, -1, 506 }, { 84, -1, 577 }, { 84, -1, 505 }, { 84, -1, 950 }, { 84, -1, 971 }, { 84, -1, 1119 }, { 84, -1, 1083 }, { 84, -1, 1063 }, { 84, -1, 1038 }, { 84, -1, 986 }, { 84, -1, 979 }, { 84, -1, 141 }, { 84, -1, 471 }, { 84, -1, 63 }, { 84, -1, 7 }, { 84, -1, 13 }, { 84, -1, 23 }, { 84, -1, 1779 }, { 84, -1, 1985 }, { 84, -1, 578 }, { 84, -1, 1064 }, { 84, -1, 1042 }, { 84, -1, 987 }, { 84, -1, 100 }, { 84, -1, 1331 }, { 84, -1, 192 }, { 84, -1, 1355 }, { 84, -1, 1597 }, { 84, -1, 1601 }, { 84, -1, 1725 }, { 84, -1, 809 }, { 84, -1, 690 }, { 84, -1, 694 }, { 84, -1, 1084 }, { 84, -1, 980 }, { 84, -1, 142 }, { 84, -1, 607 }, { 84, -1, 861 }, { 84, -1, 260 }, { 84, -1, 899 }, { 84, -1, 701 }, { 84, -1, 33 }, { 84, -1, 301 }, { 84, -1, 281 }, { 84, -1, 1570 }, { 84, -1, 1343 }, { 84, -1, 886 }, { 84, -1, 1610 }, { 84, -1, 292 }, { 84, -1, 1952 }, { 84, -1, 1824 }, { 84, -1, 1997 }, { 84, -1, 1498 }, { 84, -1, 1495 }, { 84, -1, 1492 }, { 84, -1, 1362 }, { 84, -1, 1300 }, { 84, -1, 1309 }, { 84, -1, 908 }, { 84, -1, 1798 }, { 84, -1, 1662 }, { 84, -1, 1528 }, { 84, -1, 1484 }, { 84, -1, 1506 }, { 84, -1, 1510 }, { 84, -1, 1514 }, { 84, -1, 743 }, { 84, -1, 1347 }, { 84, -1, 662 }, { 84, -1, 1946 }, { 84, -1, 1325 }, { 84, -1, 1776 }, { 84, -1, 1983 }, { 84, -1, 576 }, { 84, -1, 1062 }, { 84, -1, 1041 }, { 84, -1, 985 }, { 84, -1, 98 }, { 84, -1, 1330 }, { 84, -1, 1849 }, { 84, -1, 191 }, { 84, -1, 1353 }, { 84, -1, 1596 }, { 84, -1, 1599 }, { 84, -1, 1724 }, { 84, -1, 808 }, { 84, -1, 688 }, { 84, -1, 693 }, { 84, -1, 1082 }, { 84, -1, 978 }, { 84, -1, 140 }, { 84, -1, 605 }, { 84, -1, 855 }, { 84, -1, 258 }, { 84, -1, 897 }, { 84, -1, 699 }, { 84, -1, 10 }, { 84, -1, 299 }, { 84, -1, 279 }, { 84, -1, 1568 }, { 84, -1, 1341 }, { 84, -1, 884 }, { 84, -1, 1608 }, { 84, -1, 289 }, { 84, -1, 1950 }, { 84, -1, 1823 }, { 84, -1, 1996 }, { 84, -1, 1497 }, { 84, -1, 1494 }, { 84, -1, 1490 }, { 84, -1, 1360 }, { 84, -1, 1298 }, { 84, -1, 1307 }, { 84, -1, 906 }, { 84, -1, 1797 }, { 84, -1, 1660 }, { 84, -1, 1526 }, { 84, -1, 1482 }, { 84, -1, 1504 }, { 84, -1, 1508 }, { 84, -1, 1512 }, { 84, -1, 652 }, { 84, -1, 152 }, { 84, -1, 494 }, { 84, -1, 14 }, { 84, -1, 134 }, { 84, -1, 147 }, { 84, -1, 15 }, { 84, -1, 16 }, { 84, -1, 410 }, { 84, -1, 399 }, { 84, -1, 400 }, { 84, -1, 416 }, { 84, -1, 44 }, { 84, -1, 17 }, { 84, -1, 11 }, { 84, -1, 12 }, { 84, -1, 136 }, { 84, -1, 689 }, { 84, -1, 700 }, { 84, -1, 1023 }, { 84, -1, 653 }, { 84, -1, 458 }, { 84, -1, 459 }, { 84, -1, 493 }, { 84, -1, 475 }, { 84, -1, 455 }, { 84, -1, 56 }, { 84, -1, 307 }, { 84, -1, 306 }, { 84, -1, 338 }, { 84, -1, 342 }, { 84, -1, 344 }, { 84, -1, 345 }, { 84, -1, 343 }, { 84, -1, 346 }, { 84, -1, 315 }, { 84, -1, 316 }, { 84, -1, 317 }, { 84, -1, 43 }, { 84, -1, 300 }, { 84, -1, 35 }, { 84, -1, 476 }, { 84, -1, 275 }, { 84, -1, 280 }, { 84, -1, 291 }, { 84, -1, 290 }, { 84, -1, 262 }, { 84, -1, 264 }, { 84, -1, 18 }, { 84, -1, 426 }, { 84, -1, 19 }, { 84, -1, 57 }, { 84, -1, 447 }, { 84, -1, 453 }, { 84, -1, 161 }, { 84, -1, 68 }, { 84, -1, 62 }, { 84, -1, 263 }, { 84, -1, 20 }, { 84, -1, 21 }, { 84, -1, 22 }, { 84, -1, 820 }, { 84, -1, 601 }, { 84, -1, 589 }, { 84, -1, 588 }, { 84, -1, 620 }, { 84, -1, 629 }, { 84, -1, 626 }, { 84, -1, 534 }, { 84, -1, 515 }, { 84, -1, 574 }, { 84, -1, 560 }, { 84, -1, 520 }, { 84, -1, 533 }, { 84, -1, 532 }, { 84, -1, 531 }, { 84, -1, 537 }, { 84, -1, 536 }, { 84, -1, 535 }, { 84, -1, 538 }, { 84, -1, 504 }, { 84, -1, 1916 }, { 84, -1, 1491 }, { 84, -1, 784 }, { 84, -1, 785 }, { 84, -1, 834 }, { 84, -1, 831 }, { 84, -1, 1377 }, { 84, -1, 776 }, { 84, -1, 775 }, { 84, -1, 1501 }, { 84, -1, 782 }, { 84, -1, 1739 }, { 84, -1, 786 }, { 84, -1, 1294 }, { 84, -1, 1314 }, { 84, -1, 1316 }, { 84, -1, 1342 }, { 84, -1, 1361 }, { 84, -1, 1299 }, { 84, -1, 1348 }, { 84, -1, 1354 }, { 84, -1, 1356 }, { 84, -1, 1308 }, { 84, -1, 1317 }, { 84, -1, 1315 }, { 84, -1, 1351 }, { 84, -1, 907 }, { 84, -1, 890 }, { 84, -1, 780 }, { 84, -1, 802 }, { 84, -1, 1751 }, { 84, -1, 1756 }, { 84, -1, 832 }, { 84, -1, 829 }, { 84, -1, 943 }, { 84, -1, 798 }, { 84, -1, 787 }, { 84, -1, 885 }, { 84, -1, 781 }, { 84, -1, 1449 }, { 84, -1, 1467 }, { 84, -1, 1413 }, { 84, -1, 1468 }, { 84, -1, 1445 }, { 84, -1, 1444 }, { 84, -1, 1450 }, { 84, -1, 1446 }, { 84, -1, 1448 }, { 84, -1, 1447 }, { 84, -1, 1456 }, { 84, -1, 1458 }, { 84, -1, 1460 }, { 84, -1, 1463 }, { 84, -1, 1461 }, { 84, -1, 837 }, { 84, -1, 838 }, { 84, -1, 836 }, { 84, -1, 801 }, { 84, -1, 783 }, { 84, -1, 778 }, { 84, -1, 779 }, { 84, -1, 818 }, { 84, -1, 793 }, { 84, -1, 942 }, { 84, -1, 1911 }, { 84, -1, 1661 }, { 84, -1, 1532 }, { 84, -1, 1502 }, { 84, -1, 1522 }, { 84, -1, 1505 }, { 84, -1, 1509 }, { 84, -1, 1527 }, { 84, -1, 1572 }, { 84, -1, 1534 }, { 84, -1, 1513 }, { 84, -1, 1556 }, { 84, -1, 1554 }, { 84, -1, 1555 }, { 84, -1, 1521 }, { 84, -1, 1600 }, { 84, -1, 1549 }, { 84, -1, 1536 }, { 84, -1, 1602 }, { 84, -1, 1603 }, { 84, -1, 1483 }, { 84, -1, 1609 }, { 84, -1, 1146 }, { 84, -1, 1147 }, { 84, -1, 1148 }, { 88, -1, 1258 }, { 88, -1, 1257 }, { 88, -1, 1256 }, { 88, -1, 1259 }, { 88, -1, 1737 }, { 88, -1, 1778 }, { 88, -1, 1777 }, { 88, -1, 2004 }, { 88, -1, 1867 }, { 88, -1, 1923 }, { 88, -1, 1922 }, { 88, -1, 1868 }, { 88, -1, 1984 }, { 88, -1, 1947 }, { 88, -1, 1924 }, { 88, -1, 1925 }, { 88, -1, 1957 }, { 88, -1, 1926 }, { 88, -1, 1951 }, { 88, -1, 1831 }, { 88, -1, 1768 }, { 88, -1, 1913 }, { 88, -1, 1912 }, { 88, -1, 1914 }, { 88, -1, 1794 }, { 88, -1, 1802 }, { 88, -1, 1803 }, { 88, -1, 1804 }, { 88, -1, 1850 }, { 88, -1, 1852 }, { 88, -1, 1881 }, { 88, -1, 1891 }, { 88, -1, 1716 }, { 88, -1, 1682 }, { 88, -1, 419 }, { 88, -1, 632 }, { 88, -1, 634 }, { 88, -1, 417 }, { 88, -1, 506 }, { 88, -1, 577 }, { 88, -1, 505 }, { 88, -1, 950 }, { 88, -1, 971 }, { 88, -1, 1119 }, { 88, -1, 1083 }, { 88, -1, 1063 }, { 88, -1, 1038 }, { 88, -1, 986 }, { 88, -1, 979 }, { 88, -1, 141 }, { 88, -1, 471 }, { 88, -1, 63 }, { 88, -1, 7 }, { 88, -1, 13 }, { 88, -1, 23 }, { 88, -1, 1779 }, { 88, -1, 1985 }, { 88, -1, 578 }, { 88, -1, 1064 }, { 88, -1, 1042 }, { 88, -1, 987 }, { 88, -1, 100 }, { 88, -1, 1331 }, { 88, -1, 192 }, { 88, -1, 1355 }, { 88, -1, 1597 }, { 88, -1, 1601 }, { 88, -1, 1725 }, { 88, -1, 809 }, { 88, -1, 690 }, { 88, -1, 694 }, { 88, -1, 1084 }, { 88, -1, 980 }, { 88, -1, 142 }, { 88, -1, 607 }, { 88, -1, 861 }, { 88, -1, 260 }, { 88, -1, 899 }, { 88, -1, 701 }, { 88, -1, 33 }, { 88, -1, 301 }, { 88, -1, 281 }, { 88, -1, 1570 }, { 88, -1, 1343 }, { 88, -1, 886 }, { 88, -1, 1610 }, { 88, -1, 292 }, { 88, -1, 1952 }, { 88, -1, 1824 }, { 88, -1, 1997 }, { 88, -1, 1498 }, { 88, -1, 1495 }, { 88, -1, 1492 }, { 88, -1, 1362 }, { 88, -1, 1300 }, { 88, -1, 1309 }, { 88, -1, 908 }, { 88, -1, 1798 }, { 88, -1, 1662 }, { 88, -1, 1528 }, { 88, -1, 1484 }, { 88, -1, 1506 }, { 88, -1, 1510 }, { 88, -1, 1514 }, { 88, -1, 743 }, { 88, -1, 1347 }, { 88, -1, 662 }, { 88, -1, 1946 }, { 88, -1, 1325 }, { 88, -1, 1776 }, { 88, -1, 1983 }, { 88, -1, 576 }, { 88, -1, 1062 }, { 88, -1, 1041 }, { 88, -1, 985 }, { 88, -1, 98 }, { 88, -1, 1330 }, { 88, -1, 1849 }, { 88, -1, 191 }, { 88, -1, 1353 }, { 88, -1, 1596 }, { 88, -1, 1599 }, { 88, -1, 1724 }, { 88, -1, 808 }, { 88, -1, 688 }, { 88, -1, 693 }, { 88, -1, 1082 }, { 88, -1, 978 }, { 88, -1, 140 }, { 88, -1, 605 }, { 88, -1, 855 }, { 88, -1, 258 }, { 88, -1, 897 }, { 88, -1, 699 }, { 88, -1, 10 }, { 88, -1, 299 }, { 88, -1, 279 }, { 88, -1, 1568 }, { 88, -1, 1341 }, { 88, -1, 884 }, { 88, -1, 1608 }, { 88, -1, 289 }, { 88, -1, 1950 }, { 88, -1, 1823 }, { 88, -1, 1996 }, { 88, -1, 1497 }, { 88, -1, 1494 }, { 88, -1, 1490 }, { 88, -1, 1360 }, { 88, -1, 1298 }, { 88, -1, 1307 }, { 88, -1, 906 }, { 88, -1, 1797 }, { 88, -1, 1660 }, { 88, -1, 1526 }, { 88, -1, 1482 }, { 88, -1, 1504 }, { 88, -1, 1508 }, { 88, -1, 1512 }, { 88, -1, 652 }, { 88, -1, 152 }, { 88, -1, 494 }, { 88, -1, 14 }, { 88, -1, 134 }, { 88, -1, 147 }, { 88, -1, 15 }, { 88, -1, 16 }, { 88, -1, 410 }, { 88, -1, 399 }, { 88, -1, 400 }, { 88, -1, 416 }, { 88, -1, 44 }, { 88, -1, 17 }, { 88, -1, 11 }, { 88, -1, 12 }, { 88, -1, 136 }, { 88, -1, 689 }, { 88, -1, 700 }, { 88, -1, 1023 }, { 88, -1, 653 }, { 88, -1, 458 }, { 88, -1, 459 }, { 88, -1, 493 }, { 88, -1, 475 }, { 88, -1, 455 }, { 88, -1, 56 }, { 88, -1, 307 }, { 88, -1, 306 }, { 88, -1, 338 }, { 88, -1, 342 }, { 88, -1, 344 }, { 88, -1, 345 }, { 88, -1, 343 }, { 88, -1, 346 }, { 88, -1, 315 }, { 88, -1, 316 }, { 88, -1, 317 }, { 88, -1, 43 }, { 88, -1, 300 }, { 88, -1, 35 }, { 88, -1, 476 }, { 88, -1, 275 }, { 88, -1, 280 }, { 88, -1, 291 }, { 88, -1, 290 }, { 88, -1, 262 }, { 88, -1, 264 }, { 88, -1, 18 }, { 88, -1, 426 }, { 88, -1, 19 }, { 88, -1, 57 }, { 88, -1, 447 }, { 88, -1, 453 }, { 88, -1, 161 }, { 88, -1, 68 }, { 88, -1, 62 }, { 88, -1, 263 }, { 88, -1, 20 }, { 88, -1, 21 }, { 88, -1, 22 }, { 88, -1, 820 }, { 88, -1, 601 }, { 88, -1, 589 }, { 88, -1, 588 }, { 88, -1, 620 }, { 88, -1, 629 }, { 88, -1, 626 }, { 88, -1, 534 }, { 88, -1, 515 }, { 88, -1, 574 }, { 88, -1, 560 }, { 88, -1, 520 }, { 88, -1, 533 }, { 88, -1, 532 }, { 88, -1, 531 }, { 88, -1, 537 }, { 88, -1, 536 }, { 88, -1, 535 }, { 88, -1, 538 }, { 88, -1, 504 }, { 88, -1, 1916 }, { 88, -1, 1491 }, { 88, -1, 784 }, { 88, -1, 785 }, { 88, -1, 834 }, { 88, -1, 831 }, { 88, -1, 1377 }, { 88, -1, 776 }, { 88, -1, 775 }, { 88, -1, 1501 }, { 88, -1, 782 }, { 88, -1, 1739 }, { 88, -1, 786 }, { 88, -1, 1294 }, { 88, -1, 1314 }, { 88, -1, 1316 }, { 88, -1, 1342 }, { 88, -1, 1361 }, { 88, -1, 1299 }, { 88, -1, 1348 }, { 88, -1, 1354 }, { 88, -1, 1356 }, { 88, -1, 1308 }, { 88, -1, 1317 }, { 88, -1, 1315 }, { 88, -1, 1351 }, { 88, -1, 907 }, { 88, -1, 890 }, { 88, -1, 780 }, { 88, -1, 802 }, { 88, -1, 1751 }, { 88, -1, 1756 }, { 88, -1, 832 }, { 88, -1, 829 }, { 88, -1, 943 }, { 88, -1, 798 }, { 88, -1, 787 }, { 88, -1, 885 }, { 88, -1, 781 }, { 88, -1, 1449 }, { 88, -1, 1467 }, { 88, -1, 1413 }, { 88, -1, 1468 }, { 88, -1, 1445 }, { 88, -1, 1444 }, { 88, -1, 1450 }, { 88, -1, 1446 }, { 88, -1, 1448 }, { 88, -1, 1447 }, { 88, -1, 1456 }, { 88, -1, 1458 }, { 88, -1, 1460 }, { 88, -1, 1463 }, { 88, -1, 1461 }, { 88, -1, 837 }, { 88, -1, 838 }, { 88, -1, 836 }, { 88, -1, 801 }, { 88, -1, 783 }, { 88, -1, 778 }, { 88, -1, 779 }, { 88, -1, 818 }, { 88, -1, 793 }, { 88, -1, 942 }, { 88, -1, 1911 }, { 88, -1, 1661 }, { 88, -1, 1532 }, { 88, -1, 1502 }, { 88, -1, 1522 }, { 88, -1, 1505 }, { 88, -1, 1509 }, { 88, -1, 1527 }, { 88, -1, 1572 }, { 88, -1, 1534 }, { 88, -1, 1513 }, { 88, -1, 1556 }, { 88, -1, 1554 }, { 88, -1, 1555 }, { 88, -1, 1521 }, { 88, -1, 1600 }, { 88, -1, 1549 }, { 88, -1, 1536 }, { 88, -1, 1602 }, { 88, -1, 1603 }, { 88, -1, 1483 }, { 88, -1, 1609 }, { 88, -1, 1146 }, { 88, -1, 1147 }, { 88, -1, 1148 }, { 204, -1, 1737 }, { 206, -1, 1737 }, { 204, -1, 1868 }, { 206, -1, 1868 }, { 204, -1, 1984 }, { 206, -1, 1984 }, { 204, -1, 1831 }, { 206, -1, 1831 }, { 204, -1, 1914 }, { 206, -1, 1914 }, { 204, -1, 1794 }, { 206, -1, 1794 }, { 204, -1, 1803 }, { 206, -1, 1803 }, { 204, -1, 1804 }, { 206, -1, 1804 }, { 204, -1, 1850 }, { 206, -1, 1850 }, { 204, -1, 1852 }, { 206, -1, 1852 }, { 204, -1, 1881 }, { 206, -1, 1881 }, { 204, -1, 1682 }, { 206, -1, 1682 }, { 204, -1, 950 }, { 206, -1, 950 }, { 204, -1, 63 }, { 206, -1, 63 }, { 204, -1, 7 }, { 200, -1, 7 }, { 206, -1, 7 }, { 204, -1, 13 }, { 200, -1, 13 }, { 206, -1, 13 }, { 204, -1, 23 }, { 206, -1, 23 }, { 204, -1, 98 }, { 204, -1, 1330 }, { 204, -1, 1849 }, { 206, -1, 1849 }, { 204, -1, 191 }, { 204, -1, 1724 }, { 204, -1, 605 }, { 204, -1, 855 }, { 204, -1, 258 }, { 204, -1, 897 }, { 204, -1, 10 }, { 206, -1, 10 }, { 204, -1, 1568 }, { 204, -1, 1823 }, { 204, -1, 14 }, { 200, -1, 14 }, { 206, -1, 14 }, { 204, -1, 134 }, { 206, -1, 134 }, { 204, -1, 15 }, { 200, -1, 15 }, { 206, -1, 15 }, { 204, -1, 16 }, { 200, -1, 16 }, { 206, -1, 16 }, { 204, -1, 17 }, { 200, -1, 17 }, { 206, -1, 17 }, { 204, -1, 11 }, { 200, -1, 11 }, { 206, -1, 11 }, { 204, -1, 12 }, { 200, -1, 12 }, { 206, -1, 12 }, { 204, -1, 493 }, { 206, -1, 493 }, { 204, -1, 476 }, { 206, -1, 476 }, { 204, -1, 275 }, { 206, -1, 275 }, { 204, -1, 18 }, { 200, -1, 18 }, { 206, -1, 18 }, { 204, -1, 19 }, { 200, -1, 19 }, { 206, -1, 19 }, { 204, -1, 453 }, { 206, -1, 453 }, { 204, -1, 68 }, { 206, -1, 68 }, { 204, -1, 20 }, { 200, -1, 20 }, { 206, -1, 20 }, { 204, -1, 21 }, { 200, -1, 21 }, { 206, -1, 21 }, { 203, -1, 2890 }, { 204, -1, 22 }, { 200, -1, 22 }, { 206, -1, 22 }, { 204, -1, 589 }, { 206, -1, 589 }, { 204, -1, 620 }, { 206, -1, 620 }, { 204, -1, 784 }, { 206, -1, 784 }, { 204, -1, 785 }, { 206, -1, 785 }, { 204, -1, 1377 }, { 206, -1, 1377 }, { 204, -1, 1501 }, { 206, -1, 1501 }, { 204, -1, 1294 }, { 206, -1, 1294 }, { 204, -1, 1314 }, { 206, -1, 1314 }, { 204, -1, 1316 }, { 206, -1, 1316 }, { 204, -1, 1348 }, { 206, -1, 1348 }, { 204, -1, 1356 }, { 206, -1, 1356 }, { 204, -1, 1317 }, { 206, -1, 1317 }, { 204, -1, 1315 }, { 206, -1, 1315 }, { 204, -1, 1351 }, { 206, -1, 1351 }, { 204, -1, 1751 }, { 206, -1, 1751 }, { 204, -1, 1756 }, { 206, -1, 1756 }, { 206, -1, 832 }, { 204, -1, 837 }, { 206, -1, 837 }, { 204, -1, 838 }, { 206, -1, 838 }, { 204, -1, 836 }, { 206, -1, 836 }, { 204, -1, 783 }, { 206, -1, 783 }, { 204, -1, 778 }, { 206, -1, 778 }, { 204, -1, 779 }, { 206, -1, 779 }, { 204, -1, 1532 }, { 206, -1, 1532 }, { 204, -1, 1527 }, { 206, -1, 1527 }, { 204, -1, 1534 }, { 206, -1, 1534 }, { 204, -1, 1549 }, { 206, -1, 1549 }, { 204, -1, 1536 }, { 206, -1, 1536 }, { 204, -1, 1483 }, { 206, -1, 1483 }, { 212, -1, 783 }, { 212, -1, 778 }, { 195, -1, 1737 }, { 190, -1, 1737 }, { 195, -1, 1868 }, { 190, -1, 1868 }, { 195, -1, 1984 }, { 190, -1, 1984 }, { 195, -1, 1831 }, { 190, -1, 1831 }, { 195, -1, 1914 }, { 190, -1, 1914 }, { 195, -1, 1794 }, { 190, -1, 1794 }, { 195, -1, 1803 }, { 190, -1, 1803 }, { 195, -1, 1804 }, { 190, -1, 1804 }, { 195, -1, 1850 }, { 190, -1, 1850 }, { 195, -1, 1852 }, { 190, -1, 1852 }, { 195, -1, 1881 }, { 190, -1, 1881 }, { 195, -1, 1682 }, { 190, -1, 1682 }, { 195, -1, 950 }, { 190, -1, 950 }, { 195, -1, 63 }, { 190, -1, 63 }, { 195, -1, 7 }, { 190, -1, 7 }, { 195, -1, 13 }, { 190, -1, 13 }, { 195, -1, 23 }, { 190, -1, 23 }, { 186, -1, 98 }, { 186, -1, 1330 }, { 195, -1, 1849 }, { 190, -1, 1849 }, { 186, -1, 191 }, { 186, -1, 1724 }, { 186, -1, 605 }, { 186, -1, 855 }, { 186, -1, 258 }, { 186, -1, 897 }, { 186, -1, 10 }, { 195, -1, 10 }, { 190, -1, 10 }, { 186, -1, 1568 }, { 186, -1, 1823 }, { 195, -1, 14 }, { 190, -1, 14 }, { 195, -1, 134 }, { 190, -1, 134 }, { 195, -1, 15 }, { 190, -1, 15 }, { 195, -1, 16 }, { 190, -1, 16 }, { 195, -1, 17 }, { 190, -1, 17 }, { 195, -1, 11 }, { 190, -1, 11 }, { 195, -1, 12 }, { 190, -1, 12 }, { 195, -1, 493 }, { 190, -1, 493 }, { 195, -1, 476 }, { 190, -1, 476 }, { 195, -1, 275 }, { 190, -1, 275 }, { 195, -1, 18 }, { 190, -1, 18 }, { 195, -1, 19 }, { 190, -1, 19 }, { 195, -1, 453 }, { 190, -1, 453 }, { 195, -1, 68 }, { 190, -1, 68 }, { 195, -1, 20 }, { 190, -1, 20 }, { 195, -1, 21 }, { 190, -1, 21 }, { 187, -1, 2890 }, { 186, -1, 22 }, { 195, -1, 22 }, { 190, -1, 22 }, { 195, -1, 589 }, { 190, -1, 589 }, { 195, -1, 620 }, { 190, -1, 620 }, { 195, -1, 784 }, { 190, -1, 784 }, { 195, -1, 785 }, { 190, -1, 785 }, { 195, -1, 1377 }, { 190, -1, 1377 }, { 195, -1, 1501 }, { 190, -1, 1501 }, { 195, -1, 1294 }, { 190, -1, 1294 }, { 195, -1, 1314 }, { 190, -1, 1314 }, { 195, -1, 1316 }, { 190, -1, 1316 }, { 195, -1, 1348 }, { 190, -1, 1348 }, { 195, -1, 1356 }, { 190, -1, 1356 }, { 195, -1, 1317 }, { 190, -1, 1317 }, { 195, -1, 1315 }, { 190, -1, 1315 }, { 195, -1, 1351 }, { 190, -1, 1351 }, { 195, -1, 1751 }, { 190, -1, 1751 }, { 195, -1, 1756 }, { 190, -1, 1756 }, { 195, -1, 837 }, { 190, -1, 837 }, { 195, -1, 838 }, { 190, -1, 838 }, { 195, -1, 836 }, { 190, -1, 836 }, { 195, -1, 783 }, { 190, -1, 783 }, { 195, -1, 778 }, { 190, -1, 778 }, { 195, -1, 779 }, { 190, -1, 779 }, { 195, -1, 1532 }, { 190, -1, 1532 }, { 195, -1, 1527 }, { 190, -1, 1527 }, { 195, -1, 1534 }, { 190, -1, 1534 }, { 195, -1, 1549 }, { 190, -1, 1549 }, { 195, -1, 1536 }, { 190, -1, 1536 }, { 195, -1, 1483 }, { 190, -1, 1483 }, { 196, -1, 1737 }, { 193, -1, 1737 }, { 196, -1, 1868 }, { 193, -1, 1868 }, { 196, -1, 1984 }, { 193, -1, 1984 }, { 196, -1, 1831 }, { 193, -1, 1831 }, { 196, -1, 1914 }, { 193, -1, 1914 }, { 196, -1, 1794 }, { 193, -1, 1794 }, { 196, -1, 1803 }, { 193, -1, 1803 }, { 196, -1, 1804 }, { 193, -1, 1804 }, { 196, -1, 1850 }, { 193, -1, 1850 }, { 196, -1, 1852 }, { 193, -1, 1852 }, { 196, -1, 1881 }, { 193, -1, 1881 }, { 196, -1, 1682 }, { 193, -1, 1682 }, { 196, -1, 950 }, { 193, -1, 950 }, { 196, -1, 63 }, { 193, -1, 63 }, { 196, -1, 7 }, { 193, -1, 7 }, { 196, -1, 13 }, { 193, -1, 13 }, { 196, -1, 23 }, { 193, -1, 23 }, { 193, -1, 98 }, { 193, -1, 1330 }, { 196, -1, 1849 }, { 193, -1, 1849 }, { 193, -1, 191 }, { 193, -1, 1724 }, { 193, -1, 605 }, { 193, -1, 855 }, { 193, -1, 258 }, { 193, -1, 897 }, { 196, -1, 10 }, { 193, -1, 10 }, { 193, -1, 1568 }, { 193, -1, 1823 }, { 196, -1, 14 }, { 193, -1, 14 }, { 196, -1, 134 }, { 193, -1, 134 }, { 196, -1, 15 }, { 193, -1, 15 }, { 196, -1, 16 }, { 193, -1, 16 }, { 196, -1, 17 }, { 193, -1, 17 }, { 196, -1, 11 }, { 193, -1, 11 }, { 196, -1, 12 }, { 193, -1, 12 }, { 196, -1, 493 }, { 193, -1, 493 }, { 196, -1, 476 }, { 193, -1, 476 }, { 196, -1, 275 }, { 193, -1, 275 }, { 196, -1, 18 }, { 193, -1, 18 }, { 196, -1, 19 }, { 193, -1, 19 }, { 196, -1, 453 }, { 193, -1, 453 }, { 196, -1, 68 }, { 193, -1, 68 }, { 196, -1, 20 }, { 193, -1, 20 }, { 196, -1, 21 }, { 193, -1, 21 }, { 192, -1, 2890 }, { 196, -1, 22 }, { 193, -1, 22 }, { 196, -1, 589 }, { 193, -1, 589 }, { 196, -1, 620 }, { 193, -1, 620 }, { 196, -1, 784 }, { 193, -1, 784 }, { 196, -1, 785 }, { 193, -1, 785 }, { 196, -1, 1377 }, { 193, -1, 1377 }, { 196, -1, 1501 }, { 193, -1, 1501 }, { 196, -1, 1294 }, { 193, -1, 1294 }, { 196, -1, 1314 }, { 193, -1, 1314 }, { 196, -1, 1316 }, { 193, -1, 1316 }, { 196, -1, 1348 }, { 193, -1, 1348 }, { 196, -1, 1356 }, { 193, -1, 1356 }, { 196, -1, 1317 }, { 193, -1, 1317 }, { 196, -1, 1315 }, { 193, -1, 1315 }, { 196, -1, 1351 }, { 193, -1, 1351 }, { 196, -1, 1751 }, { 193, -1, 1751 }, { 196, -1, 1756 }, { 193, -1, 1756 }, { 196, -1, 832 }, { 196, -1, 837 }, { 193, -1, 837 }, { 196, -1, 838 }, { 193, -1, 838 }, { 196, -1, 836 }, { 193, -1, 836 }, { 196, -1, 783 }, { 193, -1, 783 }, { 196, -1, 778 }, { 193, -1, 778 }, { 196, -1, 779 }, { 193, -1, 779 }, { 196, -1, 1532 }, { 193, -1, 1532 }, { 196, -1, 1527 }, { 193, -1, 1527 }, { 196, -1, 1534 }, { 193, -1, 1534 }, { 196, -1, 1549 }, { 193, -1, 1549 }, { 196, -1, 1536 }, { 193, -1, 1536 }, { 196, -1, 1483 }, { 193, -1, 1483 }, { 209, -1, 1737 }, { 209, -1, 1868 }, { 209, -1, 1984 }, { 209, -1, 1831 }, { 209, -1, 1914 }, { 209, -1, 1794 }, { 209, -1, 1803 }, { 209, -1, 1804 }, { 209, -1, 1850 }, { 209, -1, 1852 }, { 209, -1, 1881 }, { 209, -1, 1682 }, { 209, -1, 950 }, { 209, -1, 63 }, { 208, -1, 2882 }, { 209, -1, 7 }, { 208, -1, 2883 }, { 209, -1, 13 }, { 209, -1, 23 }, { 209, -1, 98 }, { 209, -1, 1330 }, { 209, -1, 1849 }, { 209, -1, 191 }, { 209, -1, 1724 }, { 209, -1, 605 }, { 209, -1, 855 }, { 209, -1, 258 }, { 209, -1, 897 }, { 209, -1, 10 }, { 209, -1, 1568 }, { 209, -1, 1823 }, { 208, -1, 2884 }, { 209, -1, 14 }, { 209, -1, 134 }, { 208, -1, 2885 }, { 209, -1, 15 }, { 208, -1, 2886 }, { 209, -1, 16 }, { 208, -1, 1329 }, { 209, -1, 17 }, { 208, -1, 190 }, { 209, -1, 11 }, { 208, -1, 1694 }, { 209, -1, 12 }, { 209, -1, 493 }, { 209, -1, 476 }, { 209, -1, 275 }, { 208, -1, 2887 }, { 209, -1, 18 }, { 208, -1, 2888 }, { 209, -1, 19 }, { 209, -1, 453 }, { 209, -1, 68 }, { 208, -1, 2889 }, { 209, -1, 20 }, { 208, -1, 1822 }, { 209, -1, 21 }, { 208, -1, 2890 }, { 209, -1, 22 }, { 209, -1, 589 }, { 209, -1, 620 }, { 209, -1, 784 }, { 209, -1, 785 }, { 209, -1, 1377 }, { 209, -1, 1501 }, { 209, -1, 1294 }, { 209, -1, 1314 }, { 209, -1, 1316 }, { 209, -1, 1348 }, { 209, -1, 1356 }, { 209, -1, 1317 }, { 209, -1, 1315 }, { 209, -1, 1351 }, { 209, -1, 1751 }, { 209, -1, 1756 }, { 209, -1, 832 }, { 209, -1, 837 }, { 209, -1, 838 }, { 209, -1, 836 }, { 209, -1, 783 }, { 209, -1, 778 }, { 209, -1, 779 }, { 209, -1, 1532 }, { 209, -1, 1527 }, { 209, -1, 1534 }, { 209, -1, 1549 }, { 209, -1, 1536 }, { 209, -1, 1483 }, { 242, -1, 1891 }, { 242, -1, 13 }, { 242, -1, 783 }, { 242, -1, 778 }, { 4198, -1, 63 }, { 4198, -1, 10 }, { 4198, -1, 44 }, { 4198, -1, 17 }, { 4198, -1, 11 }, { 4198, -1, 12 }, { 4198, -1, 20 }, { 4198, -1, 21 }, { 25480, -1, 10 }, { 25010, -1, 12 }, { 24655, -1, 737 }, { 8010, -1, 3155 }, { 8010, -1, 3156 }, { 8010, -1, 3157 }, { 8010, -1, 3158 }, { 8019, 63, 3159 }, { 8019, 11, 3160 }, { 8019, 11, 3161 }, { 8019, 0, 2935 }, { 8019, 0, 3162 }, { 8019, 0, 3163 }, { 8016, 0, 2934 }, { 8016, 0, 2920 }, { 8018, 198, 9 }, { 8018, 198, 2913 }, { 8019, 198, 3155 }, { 8019, 198, 9 }, { 8019, 198, 2896 }, { 8019, 198, 2897 }, { 8019, 198, 2901 }, { 8019, 198, 2905 }, { 8019, 198, 2914 }, { 8019, 198, 2906 }, { 8019, 198, 3156 }, { 8019, 198, 3157 }, { 8019, 198, 3158 }, { 8019, 198, 3086 }, { 3825, 278, -1 }, { 3806, 278, -1 }, { 7981, 277, -1 }, { 7977, 277, -1 }, { 1484, 275, -1 }, { 31304, 0, 21 }, { 31304, 21, 21 }, { 2955, -1, 1737 }, { 2955, -1, 1778 }, { 2955, -1, 1868 }, { 2955, -1, 1984 }, { 2955, -1, 1951 }, { 2955, -1, 1831 }, { 2955, -1, 1914 }, { 2955, -1, 1794 }, { 2955, -1, 1803 }, { 2955, -1, 1804 }, { 2955, -1, 1850 }, { 2955, -1, 1852 }, { 2955, -1, 1881 }, { 2955, -1, 1682 }, { 2955, -1, 577 }, { 2955, -1, 950 }, { 2955, -1, 1083 }, { 2955, -1, 979 }, { 2955, -1, 141 }, { 2955, -1, 63 }, { 2955, -1, 7 }, { 2955, -1, 13 }, { 2955, -1, 23 }, { 2955, -1, 1849 }, { 2955, -1, 10 }, { 2955, -1, 14 }, { 2955, -1, 134 }, { 2955, -1, 15 }, { 2955, -1, 16 }, { 2955, -1, 17 }, { 2955, -1, 11 }, { 2955, -1, 12 }, { 2955, -1, 700 }, { 2955, -1, 493 }, { 2955, -1, 300 }, { 2955, -1, 476 }, { 2955, -1, 275 }, { 2955, -1, 280 }, { 2955, -1, 291 }, { 2955, -1, 18 }, { 2955, -1, 19 }, { 2955, -1, 453 }, { 2955, -1, 68 }, { 2955, -1, 20 }, { 2955, -1, 21 }, { 2955, -1, 22 }, { 2955, -1, 589 }, { 2955, -1, 620 }, { 2955, -1, 784 }, { 2955, -1, 785 }, { 2955, -1, 1377 }, { 2955, -1, 1501 }, { 2955, -1, 786 }, { 2955, -1, 1294 }, { 2955, -1, 1314 }, { 2955, -1, 1316 }, { 2955, -1, 1342 }, { 2955, -1, 1348 }, { 2955, -1, 1354 }, { 2955, -1, 1356 }, { 2955, -1, 1317 }, { 2955, -1, 1315 }, { 2955, -1, 1351 }, { 2955, -1, 1751 }, { 2955, -1, 1756 }, { 2955, -1, 885 }, { 2955, -1, 837 }, { 2955, -1, 838 }, { 2955, -1, 836 }, { 2955, -1, 783 }, { 2955, -1, 778 }, { 2955, -1, 779 }, { 2955, -1, 1532 }, { 2955, -1, 1505 }, { 2955, -1, 1509 }, { 2955, -1, 1527 }, { 2955, -1, 1534 }, { 2955, -1, 1513 }, { 2955, -1, 1600 }, { 2955, -1, 1549 }, { 2955, -1, 1536 }, { 2955, -1, 1483 }, { 2955, -1, 1609 }, { 31280, -1, 1178 }, { 31280, -1, 1179 }, { 27152, -1, 63 }, { 27152, -1, 11 }, { 27152, -1, 19 }, { 27152, -1, 784 }, { 27152, -1, 783 }, { 25920, -1, 772 }, { 26395, -1, 783 }, { 25836, -1, 1420 }, { 87, -1, 1258 }, { 87, -1, 1257 }, { 87, -1, 1256 }, { 87, -1, 1259 }, { 87, -1, 1737 }, { 87, -1, 1778 }, { 87, -1, 1777 }, { 87, -1, 2004 }, { 87, -1, 1867 }, { 87, -1, 1923 }, { 87, -1, 1922 }, { 87, -1, 1868 }, { 87, -1, 1984 }, { 87, -1, 1947 }, { 87, -1, 1924 }, { 87, -1, 1925 }, { 87, -1, 1957 }, { 87, -1, 1926 }, { 87, -1, 1951 }, { 87, -1, 1831 }, { 87, -1, 1768 }, { 87, -1, 1913 }, { 87, -1, 1912 }, { 87, -1, 1914 }, { 87, -1, 1794 }, { 87, -1, 1802 }, { 87, -1, 1803 }, { 87, -1, 1804 }, { 87, -1, 1850 }, { 87, -1, 1852 }, { 87, -1, 1881 }, { 87, -1, 1891 }, { 87, -1, 1716 }, { 87, -1, 1682 }, { 87, -1, 419 }, { 87, -1, 632 }, { 87, -1, 634 }, { 87, -1, 417 }, { 87, -1, 506 }, { 87, -1, 577 }, { 87, -1, 505 }, { 87, -1, 950 }, { 87, -1, 971 }, { 87, -1, 1119 }, { 87, -1, 1083 }, { 87, -1, 1063 }, { 87, -1, 1038 }, { 87, -1, 986 }, { 87, -1, 979 }, { 87, -1, 141 }, { 87, -1, 471 }, { 87, -1, 63 }, { 87, -1, 7 }, { 87, -1, 13 }, { 87, -1, 23 }, { 87, -1, 1779 }, { 87, -1, 1985 }, { 87, -1, 578 }, { 87, -1, 1064 }, { 87, -1, 1042 }, { 87, -1, 987 }, { 87, -1, 100 }, { 87, -1, 1331 }, { 87, -1, 192 }, { 87, -1, 1355 }, { 87, -1, 1597 }, { 87, -1, 1601 }, { 87, -1, 1725 }, { 87, -1, 809 }, { 87, -1, 690 }, { 87, -1, 694 }, { 87, -1, 1084 }, { 87, -1, 980 }, { 87, -1, 142 }, { 87, -1, 607 }, { 87, -1, 861 }, { 87, -1, 260 }, { 87, -1, 899 }, { 87, -1, 701 }, { 87, -1, 33 }, { 87, -1, 301 }, { 87, -1, 281 }, { 87, -1, 1570 }, { 87, -1, 1343 }, { 87, -1, 886 }, { 87, -1, 1610 }, { 87, -1, 292 }, { 87, -1, 1952 }, { 87, -1, 1824 }, { 87, -1, 1997 }, { 87, -1, 1498 }, { 87, -1, 1495 }, { 87, -1, 1492 }, { 87, -1, 1362 }, { 87, -1, 1300 }, { 87, -1, 1309 }, { 87, -1, 908 }, { 87, -1, 1798 }, { 87, -1, 1662 }, { 87, -1, 1528 }, { 87, -1, 1484 }, { 87, -1, 1506 }, { 87, -1, 1510 }, { 87, -1, 1514 }, { 87, -1, 743 }, { 87, -1, 1347 }, { 87, -1, 662 }, { 87, -1, 1946 }, { 87, -1, 1325 }, { 87, -1, 1776 }, { 87, -1, 1983 }, { 87, -1, 576 }, { 87, -1, 1062 }, { 87, -1, 1041 }, { 87, -1, 985 }, { 87, -1, 98 }, { 87, -1, 1330 }, { 87, -1, 1849 }, { 87, -1, 191 }, { 87, -1, 1353 }, { 87, -1, 1596 }, { 87, -1, 1599 }, { 87, -1, 1724 }, { 87, -1, 808 }, { 87, -1, 688 }, { 87, -1, 693 }, { 87, -1, 1082 }, { 87, -1, 978 }, { 87, -1, 140 }, { 87, -1, 605 }, { 87, -1, 855 }, { 87, -1, 258 }, { 87, -1, 897 }, { 87, -1, 699 }, { 87, -1, 10 }, { 87, -1, 299 }, { 87, -1, 279 }, { 87, -1, 1568 }, { 87, -1, 1341 }, { 87, -1, 884 }, { 87, -1, 1608 }, { 87, -1, 289 }, { 87, -1, 1950 }, { 87, -1, 1823 }, { 87, -1, 1996 }, { 87, -1, 1497 }, { 87, -1, 1494 }, { 87, -1, 1490 }, { 87, -1, 1360 }, { 87, -1, 1298 }, { 87, -1, 1307 }, { 87, -1, 906 }, { 87, -1, 1797 }, { 87, -1, 1660 }, { 87, -1, 1526 }, { 87, -1, 1482 }, { 87, -1, 1504 }, { 87, -1, 1508 }, { 87, -1, 1512 }, { 87, -1, 652 }, { 87, -1, 152 }, { 87, -1, 494 }, { 87, -1, 14 }, { 87, -1, 134 }, { 87, -1, 147 }, { 87, -1, 15 }, { 87, -1, 16 }, { 87, -1, 410 }, { 87, -1, 399 }, { 87, -1, 400 }, { 87, -1, 416 }, { 87, -1, 44 }, { 87, -1, 17 }, { 87, -1, 11 }, { 87, -1, 12 }, { 87, -1, 136 }, { 87, -1, 689 }, { 87, -1, 700 }, { 87, -1, 1023 }, { 87, -1, 653 }, { 87, -1, 458 }, { 87, -1, 459 }, { 87, -1, 493 }, { 87, -1, 475 }, { 87, -1, 455 }, { 87, -1, 56 }, { 87, -1, 307 }, { 87, -1, 306 }, { 87, -1, 338 }, { 87, -1, 342 }, { 87, -1, 344 }, { 87, -1, 345 }, { 87, -1, 343 }, { 87, -1, 346 }, { 87, -1, 315 }, { 87, -1, 316 }, { 87, -1, 317 }, { 87, -1, 43 }, { 87, -1, 300 }, { 87, -1, 35 }, { 87, -1, 476 }, { 87, -1, 275 }, { 87, -1, 280 }, { 87, -1, 291 }, { 87, -1, 290 }, { 87, -1, 262 }, { 87, -1, 264 }, { 87, -1, 18 }, { 87, -1, 426 }, { 87, -1, 19 }, { 87, -1, 57 }, { 87, -1, 447 }, { 87, -1, 453 }, { 87, -1, 161 }, { 87, -1, 68 }, { 87, -1, 62 }, { 87, -1, 263 }, { 87, -1, 20 }, { 87, -1, 21 }, { 87, -1, 22 }, { 87, -1, 820 }, { 87, -1, 601 }, { 87, -1, 589 }, { 87, -1, 588 }, { 87, -1, 620 }, { 87, -1, 629 }, { 87, -1, 626 }, { 87, -1, 534 }, { 87, -1, 515 }, { 87, -1, 574 }, { 87, -1, 560 }, { 87, -1, 520 }, { 87, -1, 533 }, { 87, -1, 532 }, { 87, -1, 531 }, { 87, -1, 537 }, { 87, -1, 536 }, { 87, -1, 535 }, { 87, -1, 538 }, { 87, -1, 504 }, { 87, -1, 1916 }, { 87, -1, 1491 }, { 87, -1, 784 }, { 87, -1, 785 }, { 87, -1, 834 }, { 87, -1, 831 }, { 87, -1, 1377 }, { 87, -1, 776 }, { 87, -1, 775 }, { 87, -1, 1501 }, { 87, -1, 782 }, { 87, -1, 1739 }, { 87, -1, 786 }, { 87, -1, 1294 }, { 87, -1, 1314 }, { 87, -1, 1316 }, { 87, -1, 1342 }, { 87, -1, 1361 }, { 87, -1, 1299 }, { 87, -1, 1348 }, { 87, -1, 1354 }, { 87, -1, 1356 }, { 87, -1, 1308 }, { 87, -1, 1317 }, { 87, -1, 1315 }, { 87, -1, 1351 }, { 87, -1, 907 }, { 87, -1, 890 }, { 87, -1, 780 }, { 87, -1, 802 }, { 87, -1, 1751 }, { 87, -1, 1756 }, { 87, -1, 832 }, { 87, -1, 829 }, { 87, -1, 943 }, { 87, -1, 798 }, { 87, -1, 787 }, { 87, -1, 885 }, { 87, -1, 781 }, { 87, -1, 1449 }, { 87, -1, 1467 }, { 87, -1, 1413 }, { 87, -1, 1468 }, { 87, -1, 1445 }, { 87, -1, 1444 }, { 87, -1, 1450 }, { 87, -1, 1446 }, { 87, -1, 1448 }, { 87, -1, 1447 }, { 87, -1, 1456 }, { 87, -1, 1458 }, { 87, -1, 1460 }, { 87, -1, 1463 }, { 87, -1, 1461 }, { 87, -1, 837 }, { 87, -1, 838 }, { 87, -1, 836 }, { 87, -1, 801 }, { 87, -1, 783 }, { 87, -1, 778 }, { 87, -1, 779 }, { 87, -1, 818 }, { 87, -1, 793 }, { 87, -1, 942 }, { 87, -1, 1911 }, { 87, -1, 1661 }, { 87, -1, 1532 }, { 87, -1, 1502 }, { 87, -1, 1522 }, { 87, -1, 1505 }, { 87, -1, 1509 }, { 87, -1, 1527 }, { 87, -1, 1572 }, { 87, -1, 1534 }, { 87, -1, 1513 }, { 87, -1, 1556 }, { 87, -1, 1554 }, { 87, -1, 1555 }, { 87, -1, 1521 }, { 87, -1, 1600 }, { 87, -1, 1549 }, { 87, -1, 1536 }, { 87, -1, 1602 }, { 87, -1, 1603 }, { 87, -1, 1483 }, { 87, -1, 1609 }, { 87, -1, 1146 }, { 87, -1, 1147 }, { 87, -1, 1148 }, { 82, -1, 1258 }, { 82, -1, 1257 }, { 82, -1, 1256 }, { 82, -1, 1259 }, { 82, -1, 1737 }, { 82, -1, 1778 }, { 82, -1, 1777 }, { 82, -1, 2004 }, { 82, -1, 1867 }, { 82, -1, 1923 }, { 82, -1, 1922 }, { 82, -1, 1868 }, { 82, -1, 1984 }, { 82, -1, 1947 }, { 82, -1, 1924 }, { 82, -1, 1925 }, { 82, -1, 1957 }, { 82, -1, 1926 }, { 82, -1, 1951 }, { 82, -1, 1831 }, { 82, -1, 1768 }, { 82, -1, 1913 }, { 82, -1, 1912 }, { 82, -1, 1914 }, { 82, -1, 1794 }, { 82, -1, 1802 }, { 82, -1, 1803 }, { 82, -1, 1804 }, { 82, -1, 1850 }, { 82, -1, 1852 }, { 82, -1, 1881 }, { 82, -1, 1891 }, { 82, -1, 1716 }, { 82, -1, 1682 }, { 82, -1, 419 }, { 82, -1, 632 }, { 82, -1, 634 }, { 82, -1, 417 }, { 82, -1, 506 }, { 82, -1, 577 }, { 82, -1, 505 }, { 82, -1, 950 }, { 82, -1, 971 }, { 82, -1, 1119 }, { 82, -1, 1083 }, { 82, -1, 1063 }, { 82, -1, 1038 }, { 82, -1, 986 }, { 82, -1, 979 }, { 82, -1, 141 }, { 82, -1, 471 }, { 82, -1, 63 }, { 82, -1, 7 }, { 82, -1, 13 }, { 82, -1, 23 }, { 82, -1, 1779 }, { 82, -1, 1985 }, { 82, -1, 578 }, { 82, -1, 1064 }, { 82, -1, 1042 }, { 82, -1, 987 }, { 82, -1, 100 }, { 82, -1, 1331 }, { 82, -1, 192 }, { 82, -1, 1355 }, { 82, -1, 1597 }, { 82, -1, 1601 }, { 82, -1, 1725 }, { 82, -1, 809 }, { 82, -1, 690 }, { 82, -1, 694 }, { 82, -1, 1084 }, { 82, -1, 980 }, { 82, -1, 142 }, { 82, -1, 607 }, { 82, -1, 861 }, { 82, -1, 260 }, { 82, -1, 899 }, { 82, -1, 701 }, { 82, -1, 33 }, { 82, -1, 301 }, { 82, -1, 281 }, { 82, -1, 1570 }, { 82, -1, 1343 }, { 82, -1, 886 }, { 82, -1, 1610 }, { 82, -1, 292 }, { 82, -1, 1952 }, { 82, -1, 1824 }, { 82, -1, 1997 }, { 82, -1, 1498 }, { 82, -1, 1495 }, { 82, -1, 1492 }, { 82, -1, 1362 }, { 82, -1, 1300 }, { 82, -1, 1309 }, { 82, -1, 908 }, { 82, -1, 1798 }, { 82, -1, 1662 }, { 82, -1, 1528 }, { 82, -1, 1484 }, { 82, -1, 1506 }, { 82, -1, 1510 }, { 82, -1, 1514 }, { 82, -1, 743 }, { 82, -1, 1347 }, { 82, -1, 662 }, { 82, -1, 1946 }, { 82, -1, 1325 }, { 82, -1, 1776 }, { 82, -1, 1983 }, { 82, -1, 576 }, { 82, -1, 1062 }, { 82, -1, 1041 }, { 82, -1, 985 }, { 82, -1, 98 }, { 82, -1, 1330 }, { 82, -1, 1849 }, { 82, -1, 191 }, { 82, -1, 1353 }, { 82, -1, 1596 }, { 82, -1, 1599 }, { 82, -1, 1724 }, { 82, -1, 808 }, { 82, -1, 688 }, { 82, -1, 693 }, { 82, -1, 1082 }, { 82, -1, 978 }, { 82, -1, 140 }, { 82, -1, 605 }, { 82, -1, 855 }, { 82, -1, 258 }, { 82, -1, 897 }, { 82, -1, 699 }, { 82, -1, 10 }, { 82, -1, 299 }, { 82, -1, 279 }, { 82, -1, 1568 }, { 82, -1, 1341 }, { 82, -1, 884 }, { 82, -1, 1608 }, { 82, -1, 289 }, { 82, -1, 1950 }, { 82, -1, 1823 }, { 82, -1, 1996 }, { 82, -1, 1497 }, { 82, -1, 1494 }, { 82, -1, 1490 }, { 82, -1, 1360 }, { 82, -1, 1298 }, { 82, -1, 1307 }, { 82, -1, 906 }, { 82, -1, 1797 }, { 82, -1, 1660 }, { 82, -1, 1526 }, { 82, -1, 1482 }, { 82, -1, 1504 }, { 82, -1, 1508 }, { 82, -1, 1512 }, { 82, -1, 652 }, { 82, -1, 152 }, { 82, -1, 494 }, { 82, -1, 14 }, { 82, -1, 134 }, { 82, -1, 147 }, { 82, -1, 15 }, { 82, -1, 16 }, { 82, -1, 410 }, { 82, -1, 399 }, { 82, -1, 400 }, { 82, -1, 416 }, { 82, -1, 44 }, { 82, -1, 17 }, { 82, -1, 11 }, { 82, -1, 12 }, { 82, -1, 136 }, { 82, -1, 689 }, { 82, -1, 700 }, { 82, -1, 1023 }, { 82, -1, 653 }, { 82, -1, 458 }, { 82, -1, 459 }, { 82, -1, 493 }, { 82, -1, 475 }, { 82, -1, 455 }, { 82, -1, 56 }, { 82, -1, 307 }, { 82, -1, 306 }, { 82, -1, 338 }, { 82, -1, 342 }, { 82, -1, 344 }, { 82, -1, 345 }, { 82, -1, 343 }, { 82, -1, 346 }, { 82, -1, 315 }, { 82, -1, 316 }, { 82, -1, 317 }, { 82, -1, 43 }, { 82, -1, 300 }, { 82, -1, 35 }, { 82, -1, 476 }, { 82, -1, 275 }, { 82, -1, 280 }, { 82, -1, 291 }, { 82, -1, 290 }, { 82, -1, 262 }, { 82, -1, 264 }, { 82, -1, 18 }, { 82, -1, 426 }, { 82, -1, 19 }, { 82, -1, 57 }, { 82, -1, 447 }, { 82, -1, 453 }, { 82, -1, 161 }, { 82, -1, 68 }, { 82, -1, 62 }, { 82, -1, 263 }, { 82, -1, 20 }, { 82, -1, 21 }, { 82, -1, 22 }, { 82, -1, 820 }, { 82, -1, 601 }, { 82, -1, 589 }, { 82, -1, 588 }, { 82, -1, 620 }, { 82, -1, 629 }, { 82, -1, 626 }, { 82, -1, 534 }, { 82, -1, 515 }, { 82, -1, 574 }, { 82, -1, 560 }, { 82, -1, 520 }, { 82, -1, 533 }, { 82, -1, 532 }, { 82, -1, 531 }, { 82, -1, 537 }, { 82, -1, 536 }, { 82, -1, 535 }, { 82, -1, 538 }, { 82, -1, 504 }, { 82, -1, 1916 }, { 82, -1, 1491 }, { 82, -1, 784 }, { 82, -1, 785 }, { 82, -1, 834 }, { 82, -1, 831 }, { 82, -1, 1377 }, { 82, -1, 776 }, { 82, -1, 775 }, { 82, -1, 1501 }, { 82, -1, 782 }, { 82, -1, 1739 }, { 82, -1, 786 }, { 82, -1, 1294 }, { 82, -1, 1314 }, { 82, -1, 1316 }, { 82, -1, 1342 }, { 82, -1, 1361 }, { 82, -1, 1299 }, { 82, -1, 1348 }, { 82, -1, 1354 }, { 82, -1, 1356 }, { 82, -1, 1308 }, { 82, -1, 1317 }, { 82, -1, 1315 }, { 82, -1, 1351 }, { 82, -1, 907 }, { 82, -1, 890 }, { 82, -1, 780 }, { 82, -1, 802 }, { 82, -1, 1751 }, { 82, -1, 1756 }, { 82, -1, 832 }, { 82, -1, 829 }, { 82, -1, 943 }, { 82, -1, 798 }, { 82, -1, 787 }, { 82, -1, 885 }, { 82, -1, 781 }, { 82, -1, 1449 }, { 82, -1, 1467 }, { 82, -1, 1413 }, { 82, -1, 1468 }, { 82, -1, 1445 }, { 82, -1, 1444 }, { 82, -1, 1450 }, { 82, -1, 1446 }, { 82, -1, 1448 }, { 82, -1, 1447 }, { 82, -1, 1456 }, { 82, -1, 1458 }, { 82, -1, 1460 }, { 82, -1, 1463 }, { 82, -1, 1461 }, { 82, -1, 837 }, { 82, -1, 838 }, { 82, -1, 836 }, { 82, -1, 801 }, { 82, -1, 783 }, { 82, -1, 778 }, { 82, -1, 779 }, { 82, -1, 818 }, { 82, -1, 793 }, { 82, -1, 942 }, { 82, -1, 1911 }, { 82, -1, 1661 }, { 82, -1, 1532 }, { 82, -1, 1502 }, { 82, -1, 1522 }, { 82, -1, 1505 }, { 82, -1, 1509 }, { 82, -1, 1527 }, { 82, -1, 1572 }, { 82, -1, 1534 }, { 82, -1, 1513 }, { 82, -1, 1556 }, { 82, -1, 1554 }, { 82, -1, 1555 }, { 82, -1, 1521 }, { 82, -1, 1600 }, { 82, -1, 1549 }, { 82, -1, 1536 }, { 82, -1, 1602 }, { 82, -1, 1603 }, { 82, -1, 1483 }, { 82, -1, 1609 }, { 82, -1, 1146 }, { 82, -1, 1147 }, { 82, -1, 1148 }, { 241, -1, 1737 }, { 241, -1, 1868 }, { 241, -1, 1984 }, { 241, -1, 1831 }, { 241, -1, 1914 }, { 241, -1, 1794 }, { 241, -1, 1803 }, { 241, -1, 1804 }, { 241, -1, 1850 }, { 241, -1, 1852 }, { 241, -1, 1881 }, { 241, -1, 1891 }, { 241, -1, 1682 }, { 241, -1, 950 }, { 241, -1, 63 }, { 241, -1, 7 }, { 241, -1, 13 }, { 241, -1, 23 }, { 241, -1, 1849 }, { 241, -1, 10 }, { 241, -1, 14 }, { 241, -1, 134 }, { 241, -1, 15 }, { 241, -1, 16 }, { 241, -1, 17 }, { 241, -1, 11 }, { 241, -1, 12 }, { 241, -1, 493 }, { 241, -1, 476 }, { 241, -1, 275 }, { 241, -1, 18 }, { 241, -1, 19 }, { 241, -1, 453 }, { 241, -1, 68 }, { 241, -1, 20 }, { 241, -1, 21 }, { 241, -1, 22 }, { 241, -1, 589 }, { 241, -1, 620 }, { 241, -1, 784 }, { 241, -1, 785 }, { 241, -1, 1377 }, { 241, -1, 1501 }, { 241, -1, 1294 }, { 241, -1, 1314 }, { 241, -1, 1316 }, { 241, -1, 1348 }, { 241, -1, 1356 }, { 241, -1, 1317 }, { 241, -1, 1315 }, { 241, -1, 1351 }, { 241, -1, 1751 }, { 241, -1, 1756 }, { 241, -1, 837 }, { 241, -1, 838 }, { 241, -1, 836 }, { 241, -1, 783 }, { 241, -1, 778 }, { 241, -1, 779 }, { 241, -1, 1532 }, { 241, -1, 1527 }, { 241, -1, 1534 }, { 241, -1, 1549 }, { 241, -1, 1536 }, { 241, -1, 1483 }, { 235, -1, 23 }, { 235, -1, 10 }, { 235, -1, 652 }, { 235, -1, 11 }, { 235, -1, 12 }, { 235, -1, 1756 }, { 235, -1, 783 }, { 235, -1, 778 }, { 235, -1, 1483 }, { 25631, -1, 11 }, { 25632, -1, 783 }, { 25632, -1, 778 }, { 25631, -1, 1483 }, { 26389, -1, 783 }, { 26389, -1, 778 }, { 26389, -1, 779 }, { 23370, -1, 778 }, { 31381, -1, 1178 }, { 31382, -1, 1178 }, { 31380, -1, 1178 }, { 1507, 1817, -1 }, { 31674, 1243, -1 }, { 7934, -1, 3164 }, { 4218, 1812, -1 }, { 41793, 19, -1 }, { 41794, 19, -1 }, { 41795, 19, -1 }, { 41796, 19, -1 }, { 41797, 19, -1 }, { 41798, 19, -1 }, { 41799, 19, -1 }, { 41800, 19, -1 }, { 41801, 19, -1 }, { 41802, 19, -1 }, { 41803, 19, -1 }, { 41804, 19, -1 }, { 41805, 19, -1 }, { 41806, 19, -1 }, { 41807, 19, -1 }, { 41808, 19, -1 }, { 41809, 19, -1 }, { 41810, 19, -1 }, { 41812, 19, -1 }, { 41813, 19, -1 }, { 41814, 19, -1 }, { 41815, 19, -1 }, { 41816, 19, -1 }, { 41817, 19, -1 }, { 41818, 19, -1 }, { 41819, 19, -1 }, { 41793, 784, -1 }, { 41794, 784, -1 }, { 41795, 784, -1 }, { 41796, 784, -1 }, { 41797, 784, -1 }, { 41798, 784, -1 }, { 41799, 784, -1 }, { 41800, 784, -1 }, { 41801, 784, -1 }, { 41802, 784, -1 }, { 41803, 784, -1 }, { 41804, 784, -1 }, { 41805, 784, -1 }, { 41806, 784, -1 }, { 41807, 784, -1 }, { 41808, 784, -1 }, { 41809, 784, -1 }, { 41810, 784, -1 }, { 41812, 784, -1 }, { 41813, 784, -1 }, { 41814, 784, -1 }, { 41815, 784, -1 }, { 41816, 784, -1 }, { 41817, 784, -1 }, { 41818, 784, -1 }, { 41819, 784, -1 }, { 41793, 1751, -1 }, { 41794, 1751, -1 }, { 41795, 1751, -1 }, { 41796, 1751, -1 }, { 41797, 1751, -1 }, { 41798, 1751, -1 }, { 41799, 1751, -1 }, { 41800, 1751, -1 }, { 41801, 1751, -1 }, { 41802, 1751, -1 }, { 41803, 1751, -1 }, { 41804, 1751, -1 }, { 41805, 1751, -1 }, { 41806, 1751, -1 }, { 41807, 1751, -1 }, { 41808, 1751, -1 }, { 41809, 1751, -1 }, { 41810, 1751, -1 }, { 41812, 1751, -1 }, { 41813, 1751, -1 }, { 41814, 1751, -1 }, { 41815, 1751, -1 }, { 41816, 1751, -1 }, { 41817, 1751, -1 }, { 41818, 1751, -1 }, { 41819, 1751, -1 }, { 41793, 783, -1 }, { 41794, 783, -1 }, { 41795, 783, -1 }, { 41796, 783, -1 }, { 41797, 783, -1 }, { 41798, 783, -1 }, { 41799, 783, -1 }, { 41800, 783, -1 }, { 41801, 783, -1 }, { 41802, 783, -1 }, { 41803, 783, -1 }, { 41804, 783, -1 }, { 41805, 783, -1 }, { 41806, 783, -1 }, { 41807, 783, -1 }, { 41808, 783, -1 }, { 41809, 783, -1 }, { 41810, 783, -1 }, { 41812, 783, -1 }, { 41813, 783, -1 }, { 41814, 783, -1 }, { 41815, 783, -1 }, { 41816, 783, -1 }, { 41817, 783, -1 }, { 41818, 783, -1 }, { 41819, 783, -1 }, { 41793, 778, -1 }, { 41794, 778, -1 }, { 41795, 778, -1 }, { 41796, 778, -1 }, { 41797, 778, -1 }, { 41798, 778, -1 }, { 41799, 778, -1 }, { 41800, 778, -1 }, { 41801, 778, -1 }, { 41802, 778, -1 }, { 41803, 778, -1 }, { 41804, 778, -1 }, { 41805, 778, -1 }, { 41806, 778, -1 }, { 41807, 778, -1 }, { 41808, 778, -1 }, { 41809, 778, -1 }, { 41810, 778, -1 }, { 41812, 778, -1 }, { 41813, 778, -1 }, { 41814, 778, -1 }, { 41815, 778, -1 }, { 41816, 778, -1 }, { 41817, 778, -1 }, { 41818, 778, -1 }, { 41819, 778, -1 }, { 42680, 1848, -1 }, { 42681, 1848, -1 }, { 42682, 1848, -1 }, { 42683, 1848, -1 }, { 42673, 1848, -1 }, { 42674, 1848, -1 }, { 42675, 1848, -1 }, { 42676, 1848, -1 }, { 42677, 1848, -1 }, { 42678, 1848, -1 }, { 42679, 1848, -1 }, { 42670, 1848, -1 }, { 42671, 1848, -1 }, { 42672, 1848, -1 }, { 42656, 1848, -1 }, { 42657, 1848, -1 }, { 42658, 1848, -1 }, { 42659, 1848, -1 }, { 42660, 1848, -1 }, { 42665, 1848, -1 }, { 42666, 1848, -1 }, { 42668, 1848, -1 }, { 42669, 1848, -1 }, { 43872, 1794, -1 }, { 43873, 1794, -1 }, { 43872, 1810, -1 }, { 43873, 1810, -1 }, { 4006, 1786, -1 }, { 3999, 1786, -1 }, { 3983, 1786, -1 }, { 4025, 1786, -1 }, { 30295, 1061, -1 }, { 30296, 1061, -1 }, { 30297, 1061, -1 }, { 30295, 984, -1 }, { 30296, 984, -1 }, { 30297, 984, -1 }, { 1485, 1696, -1 }, { 1486, 1696, -1 }, { 1483, 1737, -1 }, { 1484, 1737, -1 }, { 1485, 1737, -1 }, { 1486, 1737, -1 }, { 1485, 1869, -1 }, { 1486, 1869, -1 }, { 1483, 1868, -1 }, { 1484, 1868, -1 }, { 1485, 1868, -1 }, { 1486, 1868, -1 }, { 1483, 1984, -1 }, { 1484, 1984, -1 }, { 1485, 1984, -1 }, { 1486, 1984, -1 }, { 1483, 1831, -1 }, { 1484, 1831, -1 }, { 1485, 1831, -1 }, { 1486, 1831, -1 }, { 1483, 1914, -1 }, { 1484, 1914, -1 }, { 1485, 1914, -1 }, { 1486, 1914, -1 }, { 1483, 1794, -1 }, { 1484, 1794, -1 }, { 1485, 1794, -1 }, { 1486, 1794, -1 }, { 1483, 1803, -1 }, { 1484, 1803, -1 }, { 1485, 1803, -1 }, { 1486, 1803, -1 }, { 1483, 1804, -1 }, { 1484, 1804, -1 }, { 1485, 1804, -1 }, { 1486, 1804, -1 }, { 1483, 1850, -1 }, { 1484, 1850, -1 }, { 1485, 1850, -1 }, { 1486, 1850, -1 }, { 1483, 1852, -1 }, { 1484, 1852, -1 }, { 1485, 1852, -1 }, { 1486, 1852, -1 }, { 1483, 1881, -1 }, { 1484, 1881, -1 }, { 1485, 1881, -1 }, { 1486, 1881, -1 }, { 1483, 1682, -1 }, { 1484, 1682, -1 }, { 1485, 1682, -1 }, { 1486, 1682, -1 }, { 1483, 950, -1 }, { 1484, 950, -1 }, { 1485, 950, -1 }, { 1486, 950, -1 }, { 1485, 63, -1 }, { 1486, 63, -1 }, { 1483, 7, -1 }, { 1484, 7, -1 }, { 1485, 7, -1 }, { 1486, 7, -1 }, { 1483, 13, -1 }, { 1484, 13, -1 }, { 1485, 13, -1 }, { 1486, 13, -1 }, { 1483, 23, -1 }, { 1484, 23, -1 }, { 1485, 23, -1 }, { 1486, 23, -1 }, { 1483, 1849, -1 }, { 1484, 1849, -1 }, { 1485, 1849, -1 }, { 1486, 1849, -1 }, { 1483, 10, -1 }, { 1484, 10, -1 }, { 1485, 10, -1 }, { 1486, 10, -1 }, { 1483, 14, -1 }, { 1484, 14, -1 }, { 1485, 14, -1 }, { 1486, 14, -1 }, { 1483, 134, -1 }, { 1484, 134, -1 }, { 1485, 134, -1 }, { 1486, 134, -1 }, { 1483, 15, -1 }, { 1484, 15, -1 }, { 1485, 15, -1 }, { 1486, 15, -1 }, { 1483, 16, -1 }, { 1484, 16, -1 }, { 1485, 16, -1 }, { 1486, 16, -1 }, { 1483, 17, -1 }, { 1484, 17, -1 }, { 1485, 17, -1 }, { 1486, 17, -1 }, { 1483, 11, -1 }, { 1484, 11, -1 }, { 1485, 11, -1 }, { 1486, 11, -1 }, { 1483, 12, -1 }, { 1484, 12, -1 }, { 1485, 12, -1 }, { 1486, 12, -1 }, { 1483, 493, -1 }, { 1484, 493, -1 }, { 1485, 493, -1 }, { 1486, 493, -1 }, { 1483, 476, -1 }, { 1484, 476, -1 }, { 1485, 476, -1 }, { 1486, 476, -1 }, { 1485, 275, -1 }, { 1486, 275, -1 }, { 1483, 18, -1 }, { 1484, 18, -1 }, { 1485, 18, -1 }, { 1486, 18, -1 }, { 1483, 19, -1 }, { 1484, 19, -1 }, { 1485, 19, -1 }, { 1486, 19, -1 }, { 1483, 453, -1 }, { 1484, 453, -1 }, { 1485, 453, -1 }, { 1486, 453, -1 }, { 1483, 158, -1 }, { 1484, 158, -1 }, { 1485, 158, -1 }, { 1486, 158, -1 }, { 1483, 68, -1 }, { 1484, 68, -1 }, { 1485, 68, -1 }, { 1486, 68, -1 }, { 1483, 20, -1 }, { 1484, 20, -1 }, { 1485, 20, -1 }, { 1486, 20, -1 }, { 1483, 21, -1 }, { 1484, 21, -1 }, { 1485, 21, -1 }, { 1486, 21, -1 }, { 1483, 22, -1 }, { 1484, 22, -1 }, { 1485, 22, -1 }, { 1486, 22, -1 }, { 1483, 589, -1 }, { 1484, 589, -1 }, { 1485, 589, -1 }, { 1486, 589, -1 }, { 1483, 620, -1 }, { 1484, 620, -1 }, { 1485, 620, -1 }, { 1486, 620, -1 }, { 1483, 784, -1 }, { 1484, 784, -1 }, { 1485, 784, -1 }, { 1486, 784, -1 }, { 1483, 785, -1 }, { 1484, 785, -1 }, { 1485, 785, -1 }, { 1486, 785, -1 }, { 1483, 1377, -1 }, { 1484, 1377, -1 }, { 1485, 1377, -1 }, { 1486, 1377, -1 }, { 1483, 1501, -1 }, { 1484, 1501, -1 }, { 1485, 1501, -1 }, { 1486, 1501, -1 }, { 1483, 1294, -1 }, { 1484, 1294, -1 }, { 1485, 1294, -1 }, { 1486, 1294, -1 }, { 1483, 1314, -1 }, { 1484, 1314, -1 }, { 1485, 1314, -1 }, { 1486, 1314, -1 }, { 1483, 1316, -1 }, { 1484, 1316, -1 }, { 1485, 1316, -1 }, { 1486, 1316, -1 }, { 1483, 1348, -1 }, { 1484, 1348, -1 }, { 1485, 1348, -1 }, { 1486, 1348, -1 }, { 1483, 1356, -1 }, { 1484, 1356, -1 }, { 1485, 1356, -1 }, { 1486, 1356, -1 }, { 1483, 1317, -1 }, { 1484, 1317, -1 }, { 1485, 1317, -1 }, { 1486, 1317, -1 }, { 1483, 1315, -1 }, { 1484, 1315, -1 }, { 1485, 1315, -1 }, { 1486, 1315, -1 }, { 1483, 1351, -1 }, { 1484, 1351, -1 }, { 1485, 1351, -1 }, { 1486, 1351, -1 }, { 1483, 1751, -1 }, { 1484, 1751, -1 }, { 1485, 1751, -1 }, { 1486, 1751, -1 }, { 1483, 1756, -1 }, { 1484, 1756, -1 }, { 1485, 1756, -1 }, { 1486, 1756, -1 }, { 1483, 837, -1 }, { 1484, 837, -1 }, { 1485, 837, -1 }, { 1486, 837, -1 }, { 1483, 838, -1 }, { 1484, 838, -1 }, { 1485, 838, -1 }, { 1486, 838, -1 }, { 1483, 836, -1 }, { 1484, 836, -1 }, { 1485, 836, -1 }, { 1486, 836, -1 }, { 1483, 783, -1 }, { 1484, 783, -1 }, { 1485, 783, -1 }, { 1486, 783, -1 }, { 1485, 778, -1 }, { 1486, 778, -1 }, { 1483, 779, -1 }, { 1484, 779, -1 }, { 1485, 779, -1 }, { 1486, 779, -1 }, { 1483, 936, -1 }, { 1485, 936, -1 }, { 1486, 936, -1 }, { 1485, 922, -1 }, { 1486, 922, -1 }, { 1485, 923, -1 }, { 1486, 923, -1 }, { 1485, 924, -1 }, { 1486, 924, -1 }, { 1485, 937, -1 }, { 1486, 937, -1 }, { 1485, 938, -1 }, { 1486, 938, -1 }, { 1485, 939, -1 }, { 1486, 939, -1 }, { 1485, 940, -1 }, { 1486, 940, -1 }, { 1485, 941, -1 }, { 1486, 941, -1 }, { 1485, 926, -1 }, { 1486, 926, -1 }, { 1485, 927, -1 }, { 1486, 927, -1 }, { 1485, 928, -1 }, { 1486, 928, -1 }, { 1485, 929, -1 }, { 1486, 929, -1 }, { 1485, 930, -1 }, { 1486, 930, -1 }, { 1485, 931, -1 }, { 1486, 931, -1 }, { 1485, 932, -1 }, { 1486, 932, -1 }, { 1485, 933, -1 }, { 1486, 933, -1 }, { 1483, 934, -1 }, { 1485, 934, -1 }, { 1486, 934, -1 }, { 1483, 935, -1 }, { 1485, 935, -1 }, { 1486, 935, -1 }, { 1485, 925, -1 }, { 1486, 925, -1 }, { 1483, 921, -1 }, { 1485, 921, -1 }, { 1486, 921, -1 }, { 1483, 1532, -1 }, { 1484, 1532, -1 }, { 1485, 1532, -1 }, { 1486, 1532, -1 }, { 1483, 1527, -1 }, { 1484, 1527, -1 }, { 1485, 1527, -1 }, { 1486, 1527, -1 }, { 1483, 1573, -1 }, { 1485, 1573, -1 }, { 1486, 1573, -1 }, { 1483, 1534, -1 }, { 1484, 1534, -1 }, { 1485, 1534, -1 }, { 1486, 1534, -1 }, { 1483, 1549, -1 }, { 1484, 1549, -1 }, { 1485, 1549, -1 }, { 1486, 1549, -1 }, { 1483, 1536, -1 }, { 1484, 1536, -1 }, { 1485, 1536, -1 }, { 1486, 1536, -1 }, { 1483, 1483, -1 }, { 1484, 1483, -1 }, { 1485, 1483, -1 }, { 1486, 1483, -1 }, { 1485, 1478, -1 }, { 1486, 1478, -1 }, { 1491, 1702, -1 }, { 1492, 1702, -1 }, { 1493, 1702, -1 }, { 1494, 1702, -1 }, { 1493, 1688, -1 }, { 1494, 1688, -1 }, { 1493, 1692, -1 }, { 1494, 1692, -1 }, { 1493, 1689, -1 }, { 1494, 1689, -1 }, { 1493, 1690, -1 }, { 1494, 1690, -1 }, { 1491, 1694, -1 }, { 1492, 1694, -1 }, { 1493, 1694, -1 }, { 1494, 1694, -1 }, { 1493, 1691, -1 }, { 1494, 1691, -1 }, { 1491, 182, -1 }, { 1492, 182, -1 }, { 1493, 182, -1 }, { 1494, 182, -1 }, { 1493, 1488, -1 }, { 1494, 1488, -1 }, { 1495, 1700, -1 }, { 1496, 1700, -1 }, { 1497, 1700, -1 }, { 1498, 1700, -1 }, { 1495, 737, -1 }, { 1496, 737, -1 }, { 1497, 737, -1 }, { 1498, 737, -1 }, { 244, 1258, -1 }, { 245, 1258, -1 }, { 246, 1258, -1 }, { 247, 1258, -1 }, { 248, 1258, -1 }, { 249, 1258, -1 }, { 244, 1257, -1 }, { 245, 1257, -1 }, { 246, 1257, -1 }, { 247, 1257, -1 }, { 248, 1257, -1 }, { 249, 1257, -1 }, { 244, 1256, -1 }, { 245, 1256, -1 }, { 246, 1256, -1 }, { 247, 1256, -1 }, { 248, 1256, -1 }, { 249, 1256, -1 }, { 244, 1259, -1 }, { 245, 1259, -1 }, { 246, 1259, -1 }, { 247, 1259, -1 }, { 248, 1259, -1 }, { 249, 1259, -1 }, { 244, 1737, -1 }, { 245, 1737, -1 }, { 246, 1737, -1 }, { 247, 1737, -1 }, { 248, 1737, -1 }, { 249, 1737, -1 }, { 244, 1778, -1 }, { 245, 1778, -1 }, { 246, 1778, -1 }, { 247, 1778, -1 }, { 248, 1778, -1 }, { 249, 1778, -1 }, { 244, 1777, -1 }, { 245, 1777, -1 }, { 246, 1777, -1 }, { 247, 1777, -1 }, { 248, 1777, -1 }, { 249, 1777, -1 }, { 244, 2004, -1 }, { 245, 2004, -1 }, { 246, 2004, -1 }, { 247, 2004, -1 }, { 248, 2004, -1 }, { 249, 2004, -1 }, { 244, 1867, -1 }, { 245, 1867, -1 }, { 246, 1867, -1 }, { 247, 1867, -1 }, { 248, 1867, -1 }, { 249, 1867, -1 }, { 244, 1923, -1 }, { 245, 1923, -1 }, { 246, 1923, -1 }, { 247, 1923, -1 }, { 248, 1923, -1 }, { 249, 1923, -1 }, { 244, 1922, -1 }, { 245, 1922, -1 }, { 246, 1922, -1 }, { 247, 1922, -1 }, { 248, 1922, -1 }, { 249, 1922, -1 }, { 244, 1868, -1 }, { 245, 1868, -1 }, { 246, 1868, -1 }, { 247, 1868, -1 }, { 248, 1868, -1 }, { 249, 1868, -1 }, { 244, 1984, -1 }, { 245, 1984, -1 }, { 246, 1984, -1 }, { 247, 1984, -1 }, { 248, 1984, -1 }, { 249, 1984, -1 }, { 244, 1947, -1 }, { 245, 1947, -1 }, { 246, 1947, -1 }, { 247, 1947, -1 }, { 248, 1947, -1 }, { 249, 1947, -1 }, { 244, 1924, -1 }, { 245, 1924, -1 }, { 246, 1924, -1 }, { 247, 1924, -1 }, { 248, 1924, -1 }, { 249, 1924, -1 }, { 244, 1925, -1 }, { 245, 1925, -1 }, { 246, 1925, -1 }, { 247, 1925, -1 }, { 248, 1925, -1 }, { 249, 1925, -1 }, { 244, 1957, -1 }, { 245, 1957, -1 }, { 246, 1957, -1 }, { 247, 1957, -1 }, { 248, 1957, -1 }, { 249, 1957, -1 }, { 244, 1926, -1 }, { 245, 1926, -1 }, { 246, 1926, -1 }, { 247, 1926, -1 }, { 248, 1926, -1 }, { 249, 1926, -1 }, { 244, 1951, -1 }, { 245, 1951, -1 }, { 246, 1951, -1 }, { 247, 1951, -1 }, { 248, 1951, -1 }, { 249, 1951, -1 }, { 244, 1831, -1 }, { 245, 1831, -1 }, { 246, 1831, -1 }, { 247, 1831, -1 }, { 248, 1831, -1 }, { 249, 1831, -1 }, { 244, 1768, -1 }, { 245, 1768, -1 }, { 246, 1768, -1 }, { 247, 1768, -1 }, { 248, 1768, -1 }, { 249, 1768, -1 }, { 244, 1913, -1 }, { 245, 1913, -1 }, { 246, 1913, -1 }, { 247, 1913, -1 }, { 248, 1913, -1 }, { 249, 1913, -1 }, { 244, 1912, -1 }, { 245, 1912, -1 }, { 246, 1912, -1 }, { 247, 1912, -1 }, { 248, 1912, -1 }, { 249, 1912, -1 }, { 244, 1914, -1 }, { 245, 1914, -1 }, { 246, 1914, -1 }, { 247, 1914, -1 }, { 248, 1914, -1 }, { 249, 1914, -1 }, { 244, 1794, -1 }, { 245, 1794, -1 }, { 246, 1794, -1 }, { 247, 1794, -1 }, { 248, 1794, -1 }, { 249, 1794, -1 }, { 244, 1802, -1 }, { 245, 1802, -1 }, { 246, 1802, -1 }, { 247, 1802, -1 }, { 248, 1802, -1 }, { 249, 1802, -1 }, { 244, 1803, -1 }, { 245, 1803, -1 }, { 246, 1803, -1 }, { 247, 1803, -1 }, { 248, 1803, -1 }, { 249, 1803, -1 }, { 244, 1804, -1 }, { 245, 1804, -1 }, { 246, 1804, -1 }, { 247, 1804, -1 }, { 248, 1804, -1 }, { 249, 1804, -1 }, { 244, 1850, -1 }, { 245, 1850, -1 }, { 246, 1850, -1 }, { 247, 1850, -1 }, { 248, 1850, -1 }, { 249, 1850, -1 }, { 244, 1852, -1 }, { 245, 1852, -1 }, { 246, 1852, -1 }, { 247, 1852, -1 }, { 248, 1852, -1 }, { 249, 1852, -1 }, { 244, 1881, -1 }, { 245, 1881, -1 }, { 246, 1881, -1 }, { 247, 1881, -1 }, { 248, 1881, -1 }, { 249, 1881, -1 }, { 244, 1891, -1 }, { 245, 1891, -1 }, { 246, 1891, -1 }, { 247, 1891, -1 }, { 248, 1891, -1 }, { 249, 1891, -1 }, { 244, 1716, -1 }, { 245, 1716, -1 }, { 246, 1716, -1 }, { 247, 1716, -1 }, { 248, 1716, -1 }, { 249, 1716, -1 }, { 244, 1682, -1 }, { 245, 1682, -1 }, { 246, 1682, -1 }, { 247, 1682, -1 }, { 248, 1682, -1 }, { 249, 1682, -1 }, { 244, 419, -1 }, { 245, 419, -1 }, { 246, 419, -1 }, { 247, 419, -1 }, { 248, 419, -1 }, { 249, 419, -1 }, { 244, 632, -1 }, { 245, 632, -1 }, { 246, 632, -1 }, { 247, 632, -1 }, { 248, 632, -1 }, { 249, 632, -1 }, { 244, 634, -1 }, { 245, 634, -1 }, { 246, 634, -1 }, { 247, 634, -1 }, { 248, 634, -1 }, { 249, 634, -1 }, { 244, 417, -1 }, { 245, 417, -1 }, { 246, 417, -1 }, { 247, 417, -1 }, { 248, 417, -1 }, { 249, 417, -1 }, { 244, 506, -1 }, { 245, 506, -1 }, { 246, 506, -1 }, { 247, 506, -1 }, { 248, 506, -1 }, { 249, 506, -1 }, { 244, 577, -1 }, { 245, 577, -1 }, { 246, 577, -1 }, { 247, 577, -1 }, { 248, 577, -1 }, { 249, 577, -1 }, { 244, 505, -1 }, { 245, 505, -1 }, { 246, 505, -1 }, { 247, 505, -1 }, { 248, 505, -1 }, { 249, 505, -1 }, { 244, 950, -1 }, { 245, 950, -1 }, { 246, 950, -1 }, { 247, 950, -1 }, { 248, 950, -1 }, { 249, 950, -1 }, { 244, 971, -1 }, { 245, 971, -1 }, { 246, 971, -1 }, { 247, 971, -1 }, { 248, 971, -1 }, { 249, 971, -1 }, { 244, 1119, -1 }, { 245, 1119, -1 }, { 246, 1119, -1 }, { 247, 1119, -1 }, { 248, 1119, -1 }, { 249, 1119, -1 }, { 244, 1083, -1 }, { 245, 1083, -1 }, { 246, 1083, -1 }, { 247, 1083, -1 }, { 248, 1083, -1 }, { 249, 1083, -1 }, { 244, 1063, -1 }, { 245, 1063, -1 }, { 246, 1063, -1 }, { 247, 1063, -1 }, { 248, 1063, -1 }, { 249, 1063, -1 }, { 244, 1038, -1 }, { 245, 1038, -1 }, { 246, 1038, -1 }, { 247, 1038, -1 }, { 248, 1038, -1 }, { 249, 1038, -1 }, { 244, 986, -1 }, { 245, 986, -1 }, { 246, 986, -1 }, { 247, 986, -1 }, { 248, 986, -1 }, { 249, 986, -1 }, { 244, 979, -1 }, { 245, 979, -1 }, { 246, 979, -1 }, { 247, 979, -1 }, { 248, 979, -1 }, { 249, 979, -1 }, { 244, 141, -1 }, { 245, 141, -1 }, { 246, 141, -1 }, { 247, 141, -1 }, { 248, 141, -1 }, { 249, 141, -1 }, { 244, 471, -1 }, { 245, 471, -1 }, { 246, 471, -1 }, { 247, 471, -1 }, { 248, 471, -1 }, { 249, 471, -1 }, { 244, 63, -1 }, { 245, 63, -1 }, { 246, 63, -1 }, { 247, 63, -1 }, { 248, 63, -1 }, { 249, 63, -1 }, { 244, 7, -1 }, { 245, 7, -1 }, { 246, 7, -1 }, { 247, 7, -1 }, { 248, 7, -1 }, { 249, 7, -1 }, { 244, 13, -1 }, { 245, 13, -1 }, { 246, 13, -1 }, { 247, 13, -1 }, { 248, 13, -1 }, { 249, 13, -1 }, { 244, 23, -1 }, { 245, 23, -1 }, { 246, 23, -1 }, { 247, 23, -1 }, { 248, 23, -1 }, { 249, 23, -1 }, { 244, 1779, -1 }, { 245, 1779, -1 }, { 246, 1779, -1 }, { 247, 1779, -1 }, { 248, 1779, -1 }, { 249, 1779, -1 }, { 244, 1985, -1 }, { 245, 1985, -1 }, { 246, 1985, -1 }, { 247, 1985, -1 }, { 248, 1985, -1 }, { 249, 1985, -1 }, { 244, 578, -1 }, { 245, 578, -1 }, { 246, 578, -1 }, { 247, 578, -1 }, { 248, 578, -1 }, { 249, 578, -1 }, { 244, 1064, -1 }, { 245, 1064, -1 }, { 246, 1064, -1 }, { 247, 1064, -1 }, { 248, 1064, -1 }, { 249, 1064, -1 }, { 244, 1042, -1 }, { 245, 1042, -1 }, { 246, 1042, -1 }, { 247, 1042, -1 }, { 248, 1042, -1 }, { 249, 1042, -1 }, { 244, 987, -1 }, { 245, 987, -1 }, { 246, 987, -1 }, { 247, 987, -1 }, { 248, 987, -1 }, { 249, 987, -1 }, { 244, 100, -1 }, { 245, 100, -1 }, { 246, 100, -1 }, { 247, 100, -1 }, { 248, 100, -1 }, { 249, 100, -1 }, { 244, 1331, -1 }, { 245, 1331, -1 }, { 246, 1331, -1 }, { 247, 1331, -1 }, { 248, 1331, -1 }, { 249, 1331, -1 }, { 244, 192, -1 }, { 245, 192, -1 }, { 246, 192, -1 }, { 247, 192, -1 }, { 248, 192, -1 }, { 249, 192, -1 }, { 244, 1355, -1 }, { 245, 1355, -1 }, { 246, 1355, -1 }, { 247, 1355, -1 }, { 248, 1355, -1 }, { 249, 1355, -1 }, { 244, 1597, -1 }, { 245, 1597, -1 }, { 246, 1597, -1 }, { 247, 1597, -1 }, { 248, 1597, -1 }, { 249, 1597, -1 }, { 244, 1601, -1 }, { 245, 1601, -1 }, { 246, 1601, -1 }, { 247, 1601, -1 }, { 248, 1601, -1 }, { 249, 1601, -1 }, { 244, 1725, -1 }, { 245, 1725, -1 }, { 246, 1725, -1 }, { 247, 1725, -1 }, { 248, 1725, -1 }, { 249, 1725, -1 }, { 244, 809, -1 }, { 245, 809, -1 }, { 246, 809, -1 }, { 247, 809, -1 }, { 248, 809, -1 }, { 249, 809, -1 }, { 244, 690, -1 }, { 245, 690, -1 }, { 246, 690, -1 }, { 247, 690, -1 }, { 248, 690, -1 }, { 249, 690, -1 }, { 244, 694, -1 }, { 245, 694, -1 }, { 246, 694, -1 }, { 247, 694, -1 }, { 248, 694, -1 }, { 249, 694, -1 }, { 244, 1084, -1 }, { 245, 1084, -1 }, { 246, 1084, -1 }, { 247, 1084, -1 }, { 248, 1084, -1 }, { 249, 1084, -1 }, { 244, 980, -1 }, { 245, 980, -1 }, { 246, 980, -1 }, { 247, 980, -1 }, { 248, 980, -1 }, { 249, 980, -1 }, { 244, 142, -1 }, { 245, 142, -1 }, { 246, 142, -1 }, { 247, 142, -1 }, { 248, 142, -1 }, { 249, 142, -1 }, { 244, 607, -1 }, { 245, 607, -1 }, { 246, 607, -1 }, { 247, 607, -1 }, { 248, 607, -1 }, { 249, 607, -1 }, { 244, 861, -1 }, { 245, 861, -1 }, { 246, 861, -1 }, { 247, 861, -1 }, { 248, 861, -1 }, { 249, 861, -1 }, { 244, 260, -1 }, { 245, 260, -1 }, { 246, 260, -1 }, { 247, 260, -1 }, { 248, 260, -1 }, { 249, 260, -1 }, { 244, 899, -1 }, { 245, 899, -1 }, { 246, 899, -1 }, { 247, 899, -1 }, { 248, 899, -1 }, { 249, 899, -1 }, { 244, 701, -1 }, { 245, 701, -1 }, { 246, 701, -1 }, { 247, 701, -1 }, { 248, 701, -1 }, { 249, 701, -1 }, { 244, 33, -1 }, { 245, 33, -1 }, { 246, 33, -1 }, { 247, 33, -1 }, { 248, 33, -1 }, { 249, 33, -1 }, { 244, 301, -1 }, { 245, 301, -1 }, { 246, 301, -1 }, { 247, 301, -1 }, { 248, 301, -1 }, { 249, 301, -1 }, { 244, 281, -1 }, { 245, 281, -1 }, { 246, 281, -1 }, { 247, 281, -1 }, { 248, 281, -1 }, { 249, 281, -1 }, { 244, 1570, -1 }, { 245, 1570, -1 }, { 246, 1570, -1 }, { 247, 1570, -1 }, { 248, 1570, -1 }, { 249, 1570, -1 }, { 244, 1343, -1 }, { 245, 1343, -1 }, { 246, 1343, -1 }, { 247, 1343, -1 }, { 248, 1343, -1 }, { 249, 1343, -1 }, { 244, 886, -1 }, { 245, 886, -1 }, { 246, 886, -1 }, { 247, 886, -1 }, { 248, 886, -1 }, { 249, 886, -1 }, { 244, 1610, -1 }, { 245, 1610, -1 }, { 246, 1610, -1 }, { 247, 1610, -1 }, { 248, 1610, -1 }, { 249, 1610, -1 }, { 244, 292, -1 }, { 245, 292, -1 }, { 246, 292, -1 }, { 247, 292, -1 }, { 248, 292, -1 }, { 249, 292, -1 }, { 244, 1952, -1 }, { 245, 1952, -1 }, { 246, 1952, -1 }, { 247, 1952, -1 }, { 248, 1952, -1 }, { 249, 1952, -1 }, { 244, 1824, -1 }, { 245, 1824, -1 }, { 246, 1824, -1 }, { 247, 1824, -1 }, { 248, 1824, -1 }, { 249, 1824, -1 }, { 244, 1997, -1 }, { 245, 1997, -1 }, { 246, 1997, -1 }, { 247, 1997, -1 }, { 248, 1997, -1 }, { 249, 1997, -1 }, { 244, 1498, -1 }, { 245, 1498, -1 }, { 246, 1498, -1 }, { 247, 1498, -1 }, { 248, 1498, -1 }, { 249, 1498, -1 }, { 244, 1495, -1 }, { 245, 1495, -1 }, { 246, 1495, -1 }, { 247, 1495, -1 }, { 248, 1495, -1 }, { 249, 1495, -1 }, { 244, 1492, -1 }, { 245, 1492, -1 }, { 246, 1492, -1 }, { 247, 1492, -1 }, { 248, 1492, -1 }, { 249, 1492, -1 }, { 244, 1362, -1 }, { 245, 1362, -1 }, { 246, 1362, -1 }, { 247, 1362, -1 }, { 248, 1362, -1 }, { 249, 1362, -1 }, { 244, 1300, -1 }, { 245, 1300, -1 }, { 246, 1300, -1 }, { 247, 1300, -1 }, { 248, 1300, -1 }, { 249, 1300, -1 }, { 244, 1309, -1 }, { 245, 1309, -1 }, { 246, 1309, -1 }, { 247, 1309, -1 }, { 248, 1309, -1 }, { 249, 1309, -1 }, { 244, 908, -1 }, { 245, 908, -1 }, { 246, 908, -1 }, { 247, 908, -1 }, { 248, 908, -1 }, { 249, 908, -1 }, { 244, 1798, -1 }, { 245, 1798, -1 }, { 246, 1798, -1 }, { 247, 1798, -1 }, { 248, 1798, -1 }, { 249, 1798, -1 }, { 244, 1662, -1 }, { 245, 1662, -1 }, { 246, 1662, -1 }, { 247, 1662, -1 }, { 248, 1662, -1 }, { 249, 1662, -1 }, { 244, 1528, -1 }, { 245, 1528, -1 }, { 246, 1528, -1 }, { 247, 1528, -1 }, { 248, 1528, -1 }, { 249, 1528, -1 }, { 244, 1484, -1 }, { 245, 1484, -1 }, { 246, 1484, -1 }, { 247, 1484, -1 }, { 248, 1484, -1 }, { 249, 1484, -1 }, { 244, 1506, -1 }, { 245, 1506, -1 }, { 246, 1506, -1 }, { 247, 1506, -1 }, { 248, 1506, -1 }, { 249, 1506, -1 }, { 244, 1510, -1 }, { 245, 1510, -1 }, { 246, 1510, -1 }, { 247, 1510, -1 }, { 248, 1510, -1 }, { 249, 1510, -1 }, { 244, 1514, -1 }, { 245, 1514, -1 }, { 246, 1514, -1 }, { 247, 1514, -1 }, { 248, 1514, -1 }, { 249, 1514, -1 }, { 244, 743, -1 }, { 245, 743, -1 }, { 246, 743, -1 }, { 247, 743, -1 }, { 248, 743, -1 }, { 249, 743, -1 }, { 244, 1347, -1 }, { 245, 1347, -1 }, { 246, 1347, -1 }, { 247, 1347, -1 }, { 248, 1347, -1 }, { 249, 1347, -1 }, { 244, 662, -1 }, { 245, 662, -1 }, { 246, 662, -1 }, { 247, 662, -1 }, { 248, 662, -1 }, { 249, 662, -1 }, { 244, 1946, -1 }, { 245, 1946, -1 }, { 246, 1946, -1 }, { 247, 1946, -1 }, { 248, 1946, -1 }, { 249, 1946, -1 }, { 244, 1325, -1 }, { 245, 1325, -1 }, { 246, 1325, -1 }, { 247, 1325, -1 }, { 248, 1325, -1 }, { 249, 1325, -1 }, { 244, 1776, -1 }, { 245, 1776, -1 }, { 246, 1776, -1 }, { 247, 1776, -1 }, { 248, 1776, -1 }, { 249, 1776, -1 }, { 244, 1983, -1 }, { 245, 1983, -1 }, { 246, 1983, -1 }, { 247, 1983, -1 }, { 248, 1983, -1 }, { 249, 1983, -1 }, { 244, 576, -1 }, { 245, 576, -1 }, { 246, 576, -1 }, { 247, 576, -1 }, { 248, 576, -1 }, { 249, 576, -1 }, { 244, 1062, -1 }, { 245, 1062, -1 }, { 246, 1062, -1 }, { 247, 1062, -1 }, { 248, 1062, -1 }, { 249, 1062, -1 }, { 244, 1041, -1 }, { 245, 1041, -1 }, { 246, 1041, -1 }, { 247, 1041, -1 }, { 248, 1041, -1 }, { 249, 1041, -1 }, { 244, 985, -1 }, { 245, 985, -1 }, { 246, 985, -1 }, { 247, 985, -1 }, { 248, 985, -1 }, { 249, 985, -1 }, { 244, 98, -1 }, { 245, 98, -1 }, { 246, 98, -1 }, { 247, 98, -1 }, { 248, 98, -1 }, { 249, 98, -1 }, { 244, 1330, -1 }, { 245, 1330, -1 }, { 246, 1330, -1 }, { 247, 1330, -1 }, { 248, 1330, -1 }, { 249, 1330, -1 }, { 244, 1849, -1 }, { 245, 1849, -1 }, { 246, 1849, -1 }, { 247, 1849, -1 }, { 248, 1849, -1 }, { 249, 1849, -1 }, { 244, 191, -1 }, { 245, 191, -1 }, { 246, 191, -1 }, { 247, 191, -1 }, { 248, 191, -1 }, { 249, 191, -1 }, { 244, 1353, -1 }, { 245, 1353, -1 }, { 246, 1353, -1 }, { 247, 1353, -1 }, { 248, 1353, -1 }, { 249, 1353, -1 }, { 244, 1596, -1 }, { 245, 1596, -1 }, { 246, 1596, -1 }, { 247, 1596, -1 }, { 248, 1596, -1 }, { 249, 1596, -1 }, { 244, 1599, -1 }, { 245, 1599, -1 }, { 246, 1599, -1 }, { 247, 1599, -1 }, { 248, 1599, -1 }, { 249, 1599, -1 }, { 244, 1724, -1 }, { 245, 1724, -1 }, { 246, 1724, -1 }, { 247, 1724, -1 }, { 248, 1724, -1 }, { 249, 1724, -1 }, { 244, 808, -1 }, { 245, 808, -1 }, { 246, 808, -1 }, { 247, 808, -1 }, { 248, 808, -1 }, { 249, 808, -1 }, { 244, 688, -1 }, { 245, 688, -1 }, { 246, 688, -1 }, { 247, 688, -1 }, { 248, 688, -1 }, { 249, 688, -1 }, { 244, 693, -1 }, { 245, 693, -1 }, { 246, 693, -1 }, { 247, 693, -1 }, { 248, 693, -1 }, { 249, 693, -1 }, { 244, 1082, -1 }, { 245, 1082, -1 }, { 246, 1082, -1 }, { 247, 1082, -1 }, { 248, 1082, -1 }, { 249, 1082, -1 }, { 244, 978, -1 }, { 245, 978, -1 }, { 246, 978, -1 }, { 247, 978, -1 }, { 248, 978, -1 }, { 249, 978, -1 }, { 244, 140, -1 }, { 245, 140, -1 }, { 246, 140, -1 }, { 247, 140, -1 }, { 248, 140, -1 }, { 249, 140, -1 }, { 244, 605, -1 }, { 245, 605, -1 }, { 246, 605, -1 }, { 247, 605, -1 }, { 248, 605, -1 }, { 249, 605, -1 }, { 244, 855, -1 }, { 245, 855, -1 }, { 246, 855, -1 }, { 247, 855, -1 }, { 248, 855, -1 }, { 249, 855, -1 }, { 244, 258, -1 }, { 245, 258, -1 }, { 246, 258, -1 }, { 247, 258, -1 }, { 248, 258, -1 }, { 249, 258, -1 }, { 244, 897, -1 }, { 245, 897, -1 }, { 246, 897, -1 }, { 247, 897, -1 }, { 248, 897, -1 }, { 249, 897, -1 }, { 244, 699, -1 }, { 245, 699, -1 }, { 246, 699, -1 }, { 247, 699, -1 }, { 248, 699, -1 }, { 249, 699, -1 }, { 244, 10, -1 }, { 245, 10, -1 }, { 246, 10, -1 }, { 247, 10, -1 }, { 248, 10, -1 }, { 249, 10, -1 }, { 244, 299, -1 }, { 245, 299, -1 }, { 246, 299, -1 }, { 247, 299, -1 }, { 248, 299, -1 }, { 249, 299, -1 }, { 244, 279, -1 }, { 245, 279, -1 }, { 246, 279, -1 }, { 247, 279, -1 }, { 248, 279, -1 }, { 249, 279, -1 }, { 244, 1568, -1 }, { 245, 1568, -1 }, { 246, 1568, -1 }, { 247, 1568, -1 }, { 248, 1568, -1 }, { 249, 1568, -1 }, { 244, 1341, -1 }, { 245, 1341, -1 }, { 246, 1341, -1 }, { 247, 1341, -1 }, { 248, 1341, -1 }, { 249, 1341, -1 }, { 244, 884, -1 }, { 245, 884, -1 }, { 246, 884, -1 }, { 247, 884, -1 }, { 248, 884, -1 }, { 249, 884, -1 }, { 244, 1608, -1 }, { 245, 1608, -1 }, { 246, 1608, -1 }, { 247, 1608, -1 }, { 248, 1608, -1 }, { 249, 1608, -1 }, { 244, 289, -1 }, { 245, 289, -1 }, { 246, 289, -1 }, { 247, 289, -1 }, { 248, 289, -1 }, { 249, 289, -1 }, { 244, 1950, -1 }, { 245, 1950, -1 }, { 246, 1950, -1 }, { 247, 1950, -1 }, { 248, 1950, -1 }, { 249, 1950, -1 }, { 244, 1823, -1 }, { 245, 1823, -1 }, { 246, 1823, -1 }, { 247, 1823, -1 }, { 248, 1823, -1 }, { 249, 1823, -1 }, { 244, 1996, -1 }, { 245, 1996, -1 }, { 246, 1996, -1 }, { 247, 1996, -1 }, { 248, 1996, -1 }, { 249, 1996, -1 }, { 244, 1497, -1 }, { 245, 1497, -1 }, { 246, 1497, -1 }, { 247, 1497, -1 }, { 248, 1497, -1 }, { 249, 1497, -1 }, { 244, 1494, -1 }, { 245, 1494, -1 }, { 246, 1494, -1 }, { 247, 1494, -1 }, { 248, 1494, -1 }, { 249, 1494, -1 }, { 244, 1490, -1 }, { 245, 1490, -1 }, { 246, 1490, -1 }, { 247, 1490, -1 }, { 248, 1490, -1 }, { 249, 1490, -1 }, { 244, 1360, -1 }, { 245, 1360, -1 }, { 246, 1360, -1 }, { 247, 1360, -1 }, { 248, 1360, -1 }, { 249, 1360, -1 }, { 244, 1298, -1 }, { 245, 1298, -1 }, { 246, 1298, -1 }, { 247, 1298, -1 }, { 248, 1298, -1 }, { 249, 1298, -1 }, { 244, 1307, -1 }, { 245, 1307, -1 }, { 246, 1307, -1 }, { 247, 1307, -1 }, { 248, 1307, -1 }, { 249, 1307, -1 }, { 244, 906, -1 }, { 245, 906, -1 }, { 246, 906, -1 }, { 247, 906, -1 }, { 248, 906, -1 }, { 249, 906, -1 }, { 244, 1797, -1 }, { 245, 1797, -1 }, { 246, 1797, -1 }, { 247, 1797, -1 }, { 248, 1797, -1 }, { 249, 1797, -1 }, { 244, 1660, -1 }, { 245, 1660, -1 }, { 246, 1660, -1 }, { 247, 1660, -1 }, { 248, 1660, -1 }, { 249, 1660, -1 }, { 244, 1526, -1 }, { 245, 1526, -1 }, { 246, 1526, -1 }, { 247, 1526, -1 }, { 248, 1526, -1 }, { 249, 1526, -1 }, { 244, 1482, -1 }, { 245, 1482, -1 }, { 246, 1482, -1 }, { 247, 1482, -1 }, { 248, 1482, -1 }, { 249, 1482, -1 }, { 244, 1504, -1 }, { 245, 1504, -1 }, { 246, 1504, -1 }, { 247, 1504, -1 }, { 248, 1504, -1 }, { 249, 1504, -1 }, { 244, 1508, -1 }, { 245, 1508, -1 }, { 246, 1508, -1 }, { 247, 1508, -1 }, { 248, 1508, -1 }, { 249, 1508, -1 }, { 244, 1512, -1 }, { 245, 1512, -1 }, { 246, 1512, -1 }, { 247, 1512, -1 }, { 248, 1512, -1 }, { 249, 1512, -1 }, { 244, 652, -1 }, { 245, 652, -1 }, { 246, 652, -1 }, { 247, 652, -1 }, { 248, 652, -1 }, { 249, 652, -1 }, { 244, 152, -1 }, { 245, 152, -1 }, { 246, 152, -1 }, { 247, 152, -1 }, { 248, 152, -1 }, { 249, 152, -1 }, { 244, 494, -1 }, { 245, 494, -1 }, { 246, 494, -1 }, { 247, 494, -1 }, { 248, 494, -1 }, { 249, 494, -1 }, { 244, 14, -1 }, { 245, 14, -1 }, { 246, 14, -1 }, { 247, 14, -1 }, { 248, 14, -1 }, { 249, 14, -1 }, { 244, 134, -1 }, { 245, 134, -1 }, { 246, 134, -1 }, { 247, 134, -1 }, { 248, 134, -1 }, { 249, 134, -1 }, { 244, 147, -1 }, { 245, 147, -1 }, { 246, 147, -1 }, { 247, 147, -1 }, { 248, 147, -1 }, { 249, 147, -1 }, { 244, 15, -1 }, { 245, 15, -1 }, { 246, 15, -1 }, { 247, 15, -1 }, { 248, 15, -1 }, { 249, 15, -1 }, { 244, 16, -1 }, { 245, 16, -1 }, { 246, 16, -1 }, { 247, 16, -1 }, { 248, 16, -1 }, { 249, 16, -1 }, { 244, 410, -1 }, { 245, 410, -1 }, { 246, 410, -1 }, { 247, 410, -1 }, { 248, 410, -1 }, { 249, 410, -1 }, { 244, 399, -1 }, { 245, 399, -1 }, { 246, 399, -1 }, { 247, 399, -1 }, { 248, 399, -1 }, { 249, 399, -1 }, { 244, 400, -1 }, { 245, 400, -1 }, { 246, 400, -1 }, { 247, 400, -1 }, { 248, 400, -1 }, { 249, 400, -1 }, { 244, 416, -1 }, { 245, 416, -1 }, { 246, 416, -1 }, { 247, 416, -1 }, { 248, 416, -1 }, { 249, 416, -1 }, { 244, 44, -1 }, { 245, 44, -1 }, { 246, 44, -1 }, { 247, 44, -1 }, { 248, 44, -1 }, { 249, 44, -1 }, { 244, 17, -1 }, { 245, 17, -1 }, { 246, 17, -1 }, { 247, 17, -1 }, { 248, 17, -1 }, { 249, 17, -1 }, { 244, 11, -1 }, { 245, 11, -1 }, { 246, 11, -1 }, { 247, 11, -1 }, { 248, 11, -1 }, { 249, 11, -1 }, { 244, 12, -1 }, { 245, 12, -1 }, { 246, 12, -1 }, { 247, 12, -1 }, { 248, 12, -1 }, { 249, 12, -1 }, { 244, 136, -1 }, { 245, 136, -1 }, { 246, 136, -1 }, { 247, 136, -1 }, { 248, 136, -1 }, { 249, 136, -1 }, { 244, 689, -1 }, { 245, 689, -1 }, { 246, 689, -1 }, { 247, 689, -1 }, { 248, 689, -1 }, { 249, 689, -1 }, { 244, 700, -1 }, { 245, 700, -1 }, { 246, 700, -1 }, { 247, 700, -1 }, { 248, 700, -1 }, { 249, 700, -1 }, { 244, 1023, -1 }, { 245, 1023, -1 }, { 246, 1023, -1 }, { 247, 1023, -1 }, { 248, 1023, -1 }, { 249, 1023, -1 }, { 244, 653, -1 }, { 245, 653, -1 }, { 246, 653, -1 }, { 247, 653, -1 }, { 248, 653, -1 }, { 249, 653, -1 }, { 244, 458, -1 }, { 245, 458, -1 }, { 246, 458, -1 }, { 247, 458, -1 }, { 248, 458, -1 }, { 249, 458, -1 }, { 244, 459, -1 }, { 245, 459, -1 }, { 246, 459, -1 }, { 247, 459, -1 }, { 248, 459, -1 }, { 249, 459, -1 }, { 244, 493, -1 }, { 245, 493, -1 }, { 246, 493, -1 }, { 247, 493, -1 }, { 248, 493, -1 }, { 249, 493, -1 }, { 244, 475, -1 }, { 245, 475, -1 }, { 246, 475, -1 }, { 247, 475, -1 }, { 248, 475, -1 }, { 249, 475, -1 }, { 244, 455, -1 }, { 245, 455, -1 }, { 246, 455, -1 }, { 247, 455, -1 }, { 248, 455, -1 }, { 249, 455, -1 }, { 244, 56, -1 }, { 245, 56, -1 }, { 246, 56, -1 }, { 247, 56, -1 }, { 248, 56, -1 }, { 249, 56, -1 }, { 244, 307, -1 }, { 245, 307, -1 }, { 246, 307, -1 }, { 247, 307, -1 }, { 248, 307, -1 }, { 249, 307, -1 }, { 244, 306, -1 }, { 245, 306, -1 }, { 246, 306, -1 }, { 247, 306, -1 }, { 248, 306, -1 }, { 249, 306, -1 }, { 244, 338, -1 }, { 245, 338, -1 }, { 246, 338, -1 }, { 247, 338, -1 }, { 248, 338, -1 }, { 249, 338, -1 }, { 244, 342, -1 }, { 245, 342, -1 }, { 246, 342, -1 }, { 247, 342, -1 }, { 248, 342, -1 }, { 249, 342, -1 }, { 244, 344, -1 }, { 245, 344, -1 }, { 246, 344, -1 }, { 247, 344, -1 }, { 248, 344, -1 }, { 249, 344, -1 }, { 244, 345, -1 }, { 245, 345, -1 }, { 246, 345, -1 }, { 247, 345, -1 }, { 248, 345, -1 }, { 249, 345, -1 }, { 244, 343, -1 }, { 245, 343, -1 }, { 246, 343, -1 }, { 247, 343, -1 }, { 248, 343, -1 }, { 249, 343, -1 }, { 244, 346, -1 }, { 245, 346, -1 }, { 246, 346, -1 }, { 247, 346, -1 }, { 248, 346, -1 }, { 249, 346, -1 }, { 244, 315, -1 }, { 245, 315, -1 }, { 246, 315, -1 }, { 247, 315, -1 }, { 248, 315, -1 }, { 249, 315, -1 }, { 244, 316, -1 }, { 245, 316, -1 }, { 246, 316, -1 }, { 247, 316, -1 }, { 248, 316, -1 }, { 249, 316, -1 }, { 244, 317, -1 }, { 245, 317, -1 }, { 246, 317, -1 }, { 247, 317, -1 }, { 248, 317, -1 }, { 249, 317, -1 }, { 244, 43, -1 }, { 245, 43, -1 }, { 246, 43, -1 }, { 247, 43, -1 }, { 248, 43, -1 }, { 249, 43, -1 }, { 244, 300, -1 }, { 245, 300, -1 }, { 246, 300, -1 }, { 247, 300, -1 }, { 248, 300, -1 }, { 249, 300, -1 }, { 244, 35, -1 }, { 245, 35, -1 }, { 246, 35, -1 }, { 247, 35, -1 }, { 248, 35, -1 }, { 249, 35, -1 }, { 244, 476, -1 }, { 245, 476, -1 }, { 246, 476, -1 }, { 247, 476, -1 }, { 248, 476, -1 }, { 249, 476, -1 }, { 244, 275, -1 }, { 245, 275, -1 }, { 246, 275, -1 }, { 247, 275, -1 }, { 248, 275, -1 }, { 249, 275, -1 }, { 244, 280, -1 }, { 245, 280, -1 }, { 246, 280, -1 }, { 247, 280, -1 }, { 248, 280, -1 }, { 249, 280, -1 }, { 244, 291, -1 }, { 245, 291, -1 }, { 246, 291, -1 }, { 247, 291, -1 }, { 248, 291, -1 }, { 249, 291, -1 }, { 244, 290, -1 }, { 245, 290, -1 }, { 246, 290, -1 }, { 247, 290, -1 }, { 248, 290, -1 }, { 249, 290, -1 }, { 244, 262, -1 }, { 245, 262, -1 }, { 246, 262, -1 }, { 247, 262, -1 }, { 248, 262, -1 }, { 249, 262, -1 }, { 244, 264, -1 }, { 245, 264, -1 }, { 246, 264, -1 }, { 247, 264, -1 }, { 248, 264, -1 }, { 249, 264, -1 }, { 244, 18, -1 }, { 245, 18, -1 }, { 246, 18, -1 }, { 247, 18, -1 }, { 248, 18, -1 }, { 249, 18, -1 }, { 244, 426, -1 }, { 245, 426, -1 }, { 246, 426, -1 }, { 247, 426, -1 }, { 248, 426, -1 }, { 249, 426, -1 }, { 244, 19, -1 }, { 245, 19, -1 }, { 246, 19, -1 }, { 247, 19, -1 }, { 248, 19, -1 }, { 249, 19, -1 }, { 244, 57, -1 }, { 245, 57, -1 }, { 246, 57, -1 }, { 247, 57, -1 }, { 248, 57, -1 }, { 249, 57, -1 }, { 244, 447, -1 }, { 245, 447, -1 }, { 246, 447, -1 }, { 247, 447, -1 }, { 248, 447, -1 }, { 249, 447, -1 }, { 244, 453, -1 }, { 245, 453, -1 }, { 246, 453, -1 }, { 247, 453, -1 }, { 248, 453, -1 }, { 249, 453, -1 }, { 244, 161, -1 }, { 245, 161, -1 }, { 246, 161, -1 }, { 247, 161, -1 }, { 248, 161, -1 }, { 249, 161, -1 }, { 244, 68, -1 }, { 245, 68, -1 }, { 246, 68, -1 }, { 247, 68, -1 }, { 248, 68, -1 }, { 249, 68, -1 }, { 244, 62, -1 }, { 245, 62, -1 }, { 246, 62, -1 }, { 247, 62, -1 }, { 248, 62, -1 }, { 249, 62, -1 }, { 244, 263, -1 }, { 245, 263, -1 }, { 246, 263, -1 }, { 247, 263, -1 }, { 248, 263, -1 }, { 249, 263, -1 }, { 244, 20, -1 }, { 245, 20, -1 }, { 246, 20, -1 }, { 247, 20, -1 }, { 248, 20, -1 }, { 249, 20, -1 }, { 244, 21, -1 }, { 245, 21, -1 }, { 246, 21, -1 }, { 247, 21, -1 }, { 248, 21, -1 }, { 249, 21, -1 }, { 244, 22, -1 }, { 245, 22, -1 }, { 246, 22, -1 }, { 247, 22, -1 }, { 248, 22, -1 }, { 249, 22, -1 }, { 244, 820, -1 }, { 245, 820, -1 }, { 246, 820, -1 }, { 247, 820, -1 }, { 248, 820, -1 }, { 249, 820, -1 }, { 244, 601, -1 }, { 245, 601, -1 }, { 246, 601, -1 }, { 247, 601, -1 }, { 248, 601, -1 }, { 249, 601, -1 }, { 244, 589, -1 }, { 245, 589, -1 }, { 246, 589, -1 }, { 247, 589, -1 }, { 248, 589, -1 }, { 249, 589, -1 }, { 244, 588, -1 }, { 245, 588, -1 }, { 246, 588, -1 }, { 247, 588, -1 }, { 248, 588, -1 }, { 249, 588, -1 }, { 244, 620, -1 }, { 245, 620, -1 }, { 246, 620, -1 }, { 247, 620, -1 }, { 248, 620, -1 }, { 249, 620, -1 }, { 244, 629, -1 }, { 245, 629, -1 }, { 246, 629, -1 }, { 247, 629, -1 }, { 248, 629, -1 }, { 249, 629, -1 }, { 244, 626, -1 }, { 245, 626, -1 }, { 246, 626, -1 }, { 247, 626, -1 }, { 248, 626, -1 }, { 249, 626, -1 }, { 244, 534, -1 }, { 245, 534, -1 }, { 246, 534, -1 }, { 247, 534, -1 }, { 248, 534, -1 }, { 249, 534, -1 }, { 244, 515, -1 }, { 245, 515, -1 }, { 246, 515, -1 }, { 247, 515, -1 }, { 248, 515, -1 }, { 249, 515, -1 }, { 244, 574, -1 }, { 245, 574, -1 }, { 246, 574, -1 }, { 247, 574, -1 }, { 248, 574, -1 }, { 249, 574, -1 }, { 244, 560, -1 }, { 245, 560, -1 }, { 246, 560, -1 }, { 247, 560, -1 }, { 248, 560, -1 }, { 249, 560, -1 }, { 244, 520, -1 }, { 245, 520, -1 }, { 246, 520, -1 }, { 247, 520, -1 }, { 248, 520, -1 }, { 249, 520, -1 }, { 244, 533, -1 }, { 245, 533, -1 }, { 246, 533, -1 }, { 247, 533, -1 }, { 248, 533, -1 }, { 249, 533, -1 }, { 244, 532, -1 }, { 245, 532, -1 }, { 246, 532, -1 }, { 247, 532, -1 }, { 248, 532, -1 }, { 249, 532, -1 }, { 244, 531, -1 }, { 245, 531, -1 }, { 246, 531, -1 }, { 247, 531, -1 }, { 248, 531, -1 }, { 249, 531, -1 }, { 244, 537, -1 }, { 245, 537, -1 }, { 246, 537, -1 }, { 247, 537, -1 }, { 248, 537, -1 }, { 249, 537, -1 }, { 244, 536, -1 }, { 245, 536, -1 }, { 246, 536, -1 }, { 247, 536, -1 }, { 248, 536, -1 }, { 249, 536, -1 }, { 244, 535, -1 }, { 245, 535, -1 }, { 246, 535, -1 }, { 247, 535, -1 }, { 248, 535, -1 }, { 249, 535, -1 }, { 244, 538, -1 }, { 245, 538, -1 }, { 246, 538, -1 }, { 247, 538, -1 }, { 248, 538, -1 }, { 249, 538, -1 }, { 244, 504, -1 }, { 245, 504, -1 }, { 246, 504, -1 }, { 247, 504, -1 }, { 248, 504, -1 }, { 249, 504, -1 }, { 244, 1916, -1 }, { 245, 1916, -1 }, { 246, 1916, -1 }, { 247, 1916, -1 }, { 248, 1916, -1 }, { 249, 1916, -1 }, { 244, 1491, -1 }, { 245, 1491, -1 }, { 246, 1491, -1 }, { 247, 1491, -1 }, { 248, 1491, -1 }, { 249, 1491, -1 }, { 244, 784, -1 }, { 245, 784, -1 }, { 246, 784, -1 }, { 247, 784, -1 }, { 248, 784, -1 }, { 249, 784, -1 }, { 244, 785, -1 }, { 245, 785, -1 }, { 246, 785, -1 }, { 247, 785, -1 }, { 248, 785, -1 }, { 249, 785, -1 }, { 244, 834, -1 }, { 245, 834, -1 }, { 246, 834, -1 }, { 247, 834, -1 }, { 248, 834, -1 }, { 249, 834, -1 }, { 244, 831, -1 }, { 245, 831, -1 }, { 246, 831, -1 }, { 247, 831, -1 }, { 248, 831, -1 }, { 249, 831, -1 }, { 244, 1377, -1 }, { 245, 1377, -1 }, { 246, 1377, -1 }, { 247, 1377, -1 }, { 248, 1377, -1 }, { 249, 1377, -1 }, { 244, 776, -1 }, { 245, 776, -1 }, { 246, 776, -1 }, { 247, 776, -1 }, { 248, 776, -1 }, { 249, 776, -1 }, { 244, 775, -1 }, { 245, 775, -1 }, { 246, 775, -1 }, { 247, 775, -1 }, { 248, 775, -1 }, { 249, 775, -1 }, { 244, 1501, -1 }, { 245, 1501, -1 }, { 246, 1501, -1 }, { 247, 1501, -1 }, { 248, 1501, -1 }, { 249, 1501, -1 }, { 244, 782, -1 }, { 245, 782, -1 }, { 246, 782, -1 }, { 247, 782, -1 }, { 248, 782, -1 }, { 249, 782, -1 }, { 244, 1739, -1 }, { 245, 1739, -1 }, { 246, 1739, -1 }, { 247, 1739, -1 }, { 248, 1739, -1 }, { 249, 1739, -1 }, { 244, 786, -1 }, { 245, 786, -1 }, { 246, 786, -1 }, { 247, 786, -1 }, { 248, 786, -1 }, { 249, 786, -1 }, { 244, 1294, -1 }, { 245, 1294, -1 }, { 246, 1294, -1 }, { 247, 1294, -1 }, { 248, 1294, -1 }, { 249, 1294, -1 }, { 244, 1314, -1 }, { 245, 1314, -1 }, { 246, 1314, -1 }, { 247, 1314, -1 }, { 248, 1314, -1 }, { 249, 1314, -1 }, { 244, 1316, -1 }, { 245, 1316, -1 }, { 246, 1316, -1 }, { 247, 1316, -1 }, { 248, 1316, -1 }, { 249, 1316, -1 }, { 244, 1342, -1 }, { 245, 1342, -1 }, { 246, 1342, -1 }, { 247, 1342, -1 }, { 248, 1342, -1 }, { 249, 1342, -1 }, { 244, 1361, -1 }, { 245, 1361, -1 }, { 246, 1361, -1 }, { 247, 1361, -1 }, { 248, 1361, -1 }, { 249, 1361, -1 }, { 244, 1299, -1 }, { 245, 1299, -1 }, { 246, 1299, -1 }, { 247, 1299, -1 }, { 248, 1299, -1 }, { 249, 1299, -1 }, { 244, 1348, -1 }, { 245, 1348, -1 }, { 246, 1348, -1 }, { 247, 1348, -1 }, { 248, 1348, -1 }, { 249, 1348, -1 }, { 244, 1354, -1 }, { 245, 1354, -1 }, { 246, 1354, -1 }, { 247, 1354, -1 }, { 248, 1354, -1 }, { 249, 1354, -1 }, { 244, 1356, -1 }, { 245, 1356, -1 }, { 246, 1356, -1 }, { 247, 1356, -1 }, { 248, 1356, -1 }, { 249, 1356, -1 }, { 244, 1308, -1 }, { 245, 1308, -1 }, { 246, 1308, -1 }, { 247, 1308, -1 }, { 248, 1308, -1 }, { 249, 1308, -1 }, { 244, 1317, -1 }, { 245, 1317, -1 }, { 246, 1317, -1 }, { 247, 1317, -1 }, { 248, 1317, -1 }, { 249, 1317, -1 }, { 244, 1315, -1 }, { 245, 1315, -1 }, { 246, 1315, -1 }, { 247, 1315, -1 }, { 248, 1315, -1 }, { 249, 1315, -1 }, { 244, 1351, -1 }, { 245, 1351, -1 }, { 246, 1351, -1 }, { 247, 1351, -1 }, { 248, 1351, -1 }, { 249, 1351, -1 }, { 244, 907, -1 }, { 245, 907, -1 }, { 246, 907, -1 }, { 247, 907, -1 }, { 248, 907, -1 }, { 249, 907, -1 }, { 244, 890, -1 }, { 245, 890, -1 }, { 246, 890, -1 }, { 247, 890, -1 }, { 248, 890, -1 }, { 249, 890, -1 }, { 244, 780, -1 }, { 245, 780, -1 }, { 246, 780, -1 }, { 247, 780, -1 }, { 248, 780, -1 }, { 249, 780, -1 }, { 244, 802, -1 }, { 245, 802, -1 }, { 246, 802, -1 }, { 247, 802, -1 }, { 248, 802, -1 }, { 249, 802, -1 }, { 244, 1751, -1 }, { 245, 1751, -1 }, { 246, 1751, -1 }, { 247, 1751, -1 }, { 248, 1751, -1 }, { 249, 1751, -1 }, { 244, 1756, -1 }, { 245, 1756, -1 }, { 246, 1756, -1 }, { 247, 1756, -1 }, { 248, 1756, -1 }, { 249, 1756, -1 }, { 244, 832, -1 }, { 245, 832, -1 }, { 246, 832, -1 }, { 247, 832, -1 }, { 248, 832, -1 }, { 249, 832, -1 }, { 244, 829, -1 }, { 245, 829, -1 }, { 246, 829, -1 }, { 247, 829, -1 }, { 248, 829, -1 }, { 249, 829, -1 }, { 244, 943, -1 }, { 245, 943, -1 }, { 246, 943, -1 }, { 247, 943, -1 }, { 248, 943, -1 }, { 249, 943, -1 }, { 244, 798, -1 }, { 245, 798, -1 }, { 246, 798, -1 }, { 247, 798, -1 }, { 248, 798, -1 }, { 249, 798, -1 }, { 244, 787, -1 }, { 245, 787, -1 }, { 246, 787, -1 }, { 247, 787, -1 }, { 248, 787, -1 }, { 249, 787, -1 }, { 244, 885, -1 }, { 245, 885, -1 }, { 246, 885, -1 }, { 247, 885, -1 }, { 248, 885, -1 }, { 249, 885, -1 }, { 244, 781, -1 }, { 245, 781, -1 }, { 246, 781, -1 }, { 247, 781, -1 }, { 248, 781, -1 }, { 249, 781, -1 }, { 244, 1449, -1 }, { 245, 1449, -1 }, { 246, 1449, -1 }, { 247, 1449, -1 }, { 248, 1449, -1 }, { 249, 1449, -1 }, { 244, 1467, -1 }, { 245, 1467, -1 }, { 246, 1467, -1 }, { 247, 1467, -1 }, { 248, 1467, -1 }, { 249, 1467, -1 }, { 244, 1413, -1 }, { 245, 1413, -1 }, { 246, 1413, -1 }, { 247, 1413, -1 }, { 248, 1413, -1 }, { 249, 1413, -1 }, { 244, 1468, -1 }, { 245, 1468, -1 }, { 246, 1468, -1 }, { 247, 1468, -1 }, { 248, 1468, -1 }, { 249, 1468, -1 }, { 244, 1445, -1 }, { 245, 1445, -1 }, { 246, 1445, -1 }, { 247, 1445, -1 }, { 248, 1445, -1 }, { 249, 1445, -1 }, { 244, 1444, -1 }, { 245, 1444, -1 }, { 246, 1444, -1 }, { 247, 1444, -1 }, { 248, 1444, -1 }, { 249, 1444, -1 }, { 244, 1450, -1 }, { 245, 1450, -1 }, { 246, 1450, -1 }, { 247, 1450, -1 }, { 248, 1450, -1 }, { 249, 1450, -1 }, { 244, 1446, -1 }, { 245, 1446, -1 }, { 246, 1446, -1 }, { 247, 1446, -1 }, { 248, 1446, -1 }, { 249, 1446, -1 }, { 244, 1448, -1 }, { 245, 1448, -1 }, { 246, 1448, -1 }, { 247, 1448, -1 }, { 248, 1448, -1 }, { 249, 1448, -1 }, { 244, 1447, -1 }, { 245, 1447, -1 }, { 246, 1447, -1 }, { 247, 1447, -1 }, { 248, 1447, -1 }, { 249, 1447, -1 }, { 244, 1456, -1 }, { 245, 1456, -1 }, { 246, 1456, -1 }, { 247, 1456, -1 }, { 248, 1456, -1 }, { 249, 1456, -1 }, { 244, 1458, -1 }, { 245, 1458, -1 }, { 246, 1458, -1 }, { 247, 1458, -1 }, { 248, 1458, -1 }, { 249, 1458, -1 }, { 244, 1460, -1 }, { 245, 1460, -1 }, { 246, 1460, -1 }, { 247, 1460, -1 }, { 248, 1460, -1 }, { 249, 1460, -1 }, { 244, 1463, -1 }, { 245, 1463, -1 }, { 246, 1463, -1 }, { 247, 1463, -1 }, { 248, 1463, -1 }, { 249, 1463, -1 }, { 244, 1461, -1 }, { 245, 1461, -1 }, { 246, 1461, -1 }, { 247, 1461, -1 }, { 248, 1461, -1 }, { 249, 1461, -1 }, { 244, 837, -1 }, { 245, 837, -1 }, { 246, 837, -1 }, { 247, 837, -1 }, { 248, 837, -1 }, { 249, 837, -1 }, { 244, 838, -1 }, { 245, 838, -1 }, { 246, 838, -1 }, { 247, 838, -1 }, { 248, 838, -1 }, { 249, 838, -1 }, { 244, 836, -1 }, { 245, 836, -1 }, { 246, 836, -1 }, { 247, 836, -1 }, { 248, 836, -1 }, { 249, 836, -1 }, { 244, 801, -1 }, { 245, 801, -1 }, { 246, 801, -1 }, { 247, 801, -1 }, { 248, 801, -1 }, { 249, 801, -1 }, { 244, 783, -1 }, { 245, 783, -1 }, { 246, 783, -1 }, { 247, 783, -1 }, { 248, 783, -1 }, { 249, 783, -1 }, { 244, 778, -1 }, { 245, 778, -1 }, { 246, 778, -1 }, { 247, 778, -1 }, { 248, 778, -1 }, { 249, 778, -1 }, { 244, 779, -1 }, { 245, 779, -1 }, { 246, 779, -1 }, { 247, 779, -1 }, { 248, 779, -1 }, { 249, 779, -1 }, { 244, 818, -1 }, { 245, 818, -1 }, { 246, 818, -1 }, { 247, 818, -1 }, { 248, 818, -1 }, { 249, 818, -1 }, { 244, 793, -1 }, { 245, 793, -1 }, { 246, 793, -1 }, { 247, 793, -1 }, { 248, 793, -1 }, { 249, 793, -1 }, { 244, 942, -1 }, { 245, 942, -1 }, { 246, 942, -1 }, { 247, 942, -1 }, { 248, 942, -1 }, { 249, 942, -1 }, { 244, 1911, -1 }, { 245, 1911, -1 }, { 246, 1911, -1 }, { 247, 1911, -1 }, { 248, 1911, -1 }, { 249, 1911, -1 }, { 244, 1661, -1 }, { 245, 1661, -1 }, { 246, 1661, -1 }, { 247, 1661, -1 }, { 248, 1661, -1 }, { 249, 1661, -1 }, { 244, 1532, -1 }, { 245, 1532, -1 }, { 246, 1532, -1 }, { 247, 1532, -1 }, { 248, 1532, -1 }, { 249, 1532, -1 }, { 244, 1502, -1 }, { 245, 1502, -1 }, { 246, 1502, -1 }, { 247, 1502, -1 }, { 248, 1502, -1 }, { 249, 1502, -1 }, { 244, 1522, -1 }, { 245, 1522, -1 }, { 246, 1522, -1 }, { 247, 1522, -1 }, { 248, 1522, -1 }, { 249, 1522, -1 }, { 244, 1505, -1 }, { 245, 1505, -1 }, { 246, 1505, -1 }, { 247, 1505, -1 }, { 248, 1505, -1 }, { 249, 1505, -1 }, { 244, 1509, -1 }, { 245, 1509, -1 }, { 246, 1509, -1 }, { 247, 1509, -1 }, { 248, 1509, -1 }, { 249, 1509, -1 }, { 244, 1527, -1 }, { 245, 1527, -1 }, { 246, 1527, -1 }, { 247, 1527, -1 }, { 248, 1527, -1 }, { 249, 1527, -1 }, { 244, 1572, -1 }, { 245, 1572, -1 }, { 246, 1572, -1 }, { 247, 1572, -1 }, { 248, 1572, -1 }, { 249, 1572, -1 }, { 244, 1534, -1 }, { 245, 1534, -1 }, { 246, 1534, -1 }, { 247, 1534, -1 }, { 248, 1534, -1 }, { 249, 1534, -1 }, { 244, 1513, -1 }, { 245, 1513, -1 }, { 246, 1513, -1 }, { 247, 1513, -1 }, { 248, 1513, -1 }, { 249, 1513, -1 }, { 244, 1556, -1 }, { 245, 1556, -1 }, { 246, 1556, -1 }, { 247, 1556, -1 }, { 248, 1556, -1 }, { 249, 1556, -1 }, { 244, 1554, -1 }, { 245, 1554, -1 }, { 246, 1554, -1 }, { 247, 1554, -1 }, { 248, 1554, -1 }, { 249, 1554, -1 }, { 244, 1555, -1 }, { 245, 1555, -1 }, { 246, 1555, -1 }, { 247, 1555, -1 }, { 248, 1555, -1 }, { 249, 1555, -1 }, { 244, 1521, -1 }, { 245, 1521, -1 }, { 246, 1521, -1 }, { 247, 1521, -1 }, { 248, 1521, -1 }, { 249, 1521, -1 }, { 244, 1600, -1 }, { 245, 1600, -1 }, { 246, 1600, -1 }, { 247, 1600, -1 }, { 248, 1600, -1 }, { 249, 1600, -1 }, { 244, 1549, -1 }, { 245, 1549, -1 }, { 246, 1549, -1 }, { 247, 1549, -1 }, { 248, 1549, -1 }, { 249, 1549, -1 }, { 244, 1536, -1 }, { 245, 1536, -1 }, { 246, 1536, -1 }, { 247, 1536, -1 }, { 248, 1536, -1 }, { 249, 1536, -1 }, { 244, 1602, -1 }, { 245, 1602, -1 }, { 246, 1602, -1 }, { 247, 1602, -1 }, { 248, 1602, -1 }, { 249, 1602, -1 }, { 244, 1603, -1 }, { 245, 1603, -1 }, { 246, 1603, -1 }, { 247, 1603, -1 }, { 248, 1603, -1 }, { 249, 1603, -1 }, { 244, 1483, -1 }, { 245, 1483, -1 }, { 246, 1483, -1 }, { 247, 1483, -1 }, { 248, 1483, -1 }, { 249, 1483, -1 }, { 244, 1609, -1 }, { 245, 1609, -1 }, { 246, 1609, -1 }, { 247, 1609, -1 }, { 248, 1609, -1 }, { 249, 1609, -1 }, { 244, 1146, -1 }, { 245, 1146, -1 }, { 246, 1146, -1 }, { 247, 1146, -1 }, { 248, 1146, -1 }, { 249, 1146, -1 }, { 244, 1147, -1 }, { 245, 1147, -1 }, { 246, 1147, -1 }, { 247, 1147, -1 }, { 248, 1147, -1 }, { 249, 1147, -1 }, { 244, 1148, -1 }, { 245, 1148, -1 }, { 246, 1148, -1 }, { 247, 1148, -1 }, { 248, 1148, -1 }, { 249, 1148, -1 }, { 1638, 7, -1 }, { 1639, 7, -1 }, { 1640, 7, -1 }, { 1641, 7, -1 }, { 1642, 7, -1 }, { 1643, 7, -1 }, { 1621, 7, -1 }, { 1622, 7, -1 }, { 1623, 7, -1 }, { 1624, 7, -1 }, { 1625, 7, -1 }, { 1626, 7, -1 }, { 1627, 7, -1 }, { 1628, 7, -1 }, { 1629, 7, -1 }, { 1630, 7, -1 }, { 1631, 7, -1 }, { 1632, 7, -1 }, { 1633, 7, -1 }, { 1634, 7, -1 }, { 1635, 7, -1 }, { 1636, 7, -1 }, { 1637, 7, -1 }, { 4264, 190, -1 }, { 4265, 190, -1 }, { 4266, 190, -1 }, { 4267, 190, -1 }, { 4268, 190, -1 }, { 4269, 190, -1 }, { 4257, 190, -1 }, { 4258, 190, -1 }, { 4259, 190, -1 }, { 4260, 190, -1 }, { 4261, 190, -1 }, { 4262, 190, -1 }, { 4263, 190, -1 }, { 4256, 190, -1 }, { 4255, 190, -1 }, { 4200, 190, -1 }, { 4201, 190, -1 }, { 4202, 190, -1 }, { 4203, 190, -1 }, { 4204, 190, -1 }, { 4205, 190, -1 }, { 4206, 190, -1 }, { 4207, 190, -1 }, { 4208, 190, -1 }, { 4209, 190, -1 }, { 4210, 190, -1 }, { 4211, 190, -1 }, { 4212, 190, -1 }, { 4213, 190, -1 }, { 4214, 190, -1 }, { 4215, 190, -1 }, { 4216, 190, -1 }, { 4217, 190, -1 }, { 4218, 190, -1 }, { 4219, 190, -1 }, { 4220, 190, -1 }, { 4221, 190, -1 }, { 4222, 190, -1 }, { 4223, 190, -1 }, { 4224, 190, -1 }, { 4225, 190, -1 }, { 4226, 190, -1 }, { 4227, 190, -1 }, { 4228, 190, -1 }, { 4229, 190, -1 }, { 4230, 190, -1 }, { 4231, 190, -1 }, { 4232, 190, -1 }, { 4233, 190, -1 }, { 4234, 190, -1 }, { 4235, 190, -1 }, { 4236, 190, -1 }, { 4237, 190, -1 }, { 4238, 190, -1 }, { 4239, 190, -1 }, { 4240, 190, -1 }, { 4241, 190, -1 }, { 4242, 190, -1 }, { 4243, 190, -1 }, { 4244, 190, -1 }, { 4245, 190, -1 }, { 4246, 190, -1 }, { 4247, 190, -1 }, { 4248, 190, -1 }, { 4249, 190, -1 }, { 4250, 190, -1 }, { 4251, 190, -1 }, { 4252, 190, -1 }, { 4253, 190, -1 }, { 4254, 190, -1 }, { 25620, 652, -1 }, { 25621, 652, -1 }, { 25622, 652, -1 }, { 25623, 652, -1 }, { 25624, 652, -1 }, { 25625, 652, -1 }, { 25626, 652, -1 }, { 25627, 652, -1 }, { 25621, 12, -1 }, { 25622, 12, -1 }, { 25623, 12, -1 }, { 25624, 12, -1 }, { 25627, 12, -1 }, { 3774, 1737, -1 }, { 3775, 1737, -1 }, { 3777, 1737, -1 }, { 3778, 1737, -1 }, { 3774, 1868, -1 }, { 3775, 1868, -1 }, { 3777, 1868, -1 }, { 3778, 1868, -1 }, { 3774, 1984, -1 }, { 3775, 1984, -1 }, { 3777, 1984, -1 }, { 3778, 1984, -1 }, { 3774, 1831, -1 }, { 3775, 1831, -1 }, { 3777, 1831, -1 }, { 3778, 1831, -1 }, { 3774, 1914, -1 }, { 3775, 1914, -1 }, { 3777, 1914, -1 }, { 3778, 1914, -1 }, { 3774, 1794, -1 }, { 3775, 1794, -1 }, { 3777, 1794, -1 }, { 3778, 1794, -1 }, { 3774, 1803, -1 }, { 3775, 1803, -1 }, { 3777, 1803, -1 }, { 3778, 1803, -1 }, { 3774, 1804, -1 }, { 3775, 1804, -1 }, { 3777, 1804, -1 }, { 3778, 1804, -1 }, { 3774, 1850, -1 }, { 3775, 1850, -1 }, { 3777, 1850, -1 }, { 3778, 1850, -1 }, { 3774, 1852, -1 }, { 3775, 1852, -1 }, { 3777, 1852, -1 }, { 3778, 1852, -1 }, { 3774, 1881, -1 }, { 3775, 1881, -1 }, { 3777, 1881, -1 }, { 3778, 1881, -1 }, { 3774, 1682, -1 }, { 3775, 1682, -1 }, { 3777, 1682, -1 }, { 3778, 1682, -1 }, { 3774, 950, -1 }, { 3775, 950, -1 }, { 3777, 950, -1 }, { 3778, 950, -1 }, { 3774, 63, -1 }, { 3775, 63, -1 }, { 3777, 63, -1 }, { 3778, 63, -1 }, { 3774, 7, -1 }, { 3775, 7, -1 }, { 3777, 7, -1 }, { 3778, 7, -1 }, { 3774, 13, -1 }, { 3775, 13, -1 }, { 3777, 13, -1 }, { 3778, 13, -1 }, { 3774, 23, -1 }, { 3775, 23, -1 }, { 3777, 23, -1 }, { 3778, 23, -1 }, { 3774, 98, -1 }, { 3775, 98, -1 }, { 3777, 98, -1 }, { 3778, 98, -1 }, { 3774, 1330, -1 }, { 3775, 1330, -1 }, { 3777, 1330, -1 }, { 3778, 1330, -1 }, { 3774, 1849, -1 }, { 3775, 1849, -1 }, { 3777, 1849, -1 }, { 3778, 1849, -1 }, { 3774, 191, -1 }, { 3775, 191, -1 }, { 3777, 191, -1 }, { 3778, 191, -1 }, { 3774, 1724, -1 }, { 3775, 1724, -1 }, { 3777, 1724, -1 }, { 3778, 1724, -1 }, { 3774, 605, -1 }, { 3775, 605, -1 }, { 3777, 605, -1 }, { 3778, 605, -1 }, { 3774, 855, -1 }, { 3775, 855, -1 }, { 3777, 855, -1 }, { 3778, 855, -1 }, { 3774, 258, -1 }, { 3775, 258, -1 }, { 3777, 258, -1 }, { 3778, 258, -1 }, { 3774, 897, -1 }, { 3775, 897, -1 }, { 3777, 897, -1 }, { 3778, 897, -1 }, { 3774, 10, -1 }, { 3775, 10, -1 }, { 3777, 10, -1 }, { 3778, 10, -1 }, { 3774, 1568, -1 }, { 3775, 1568, -1 }, { 3777, 1568, -1 }, { 3778, 1568, -1 }, { 3774, 1823, -1 }, { 3775, 1823, -1 }, { 3777, 1823, -1 }, { 3778, 1823, -1 }, { 3774, 14, -1 }, { 3775, 14, -1 }, { 3777, 14, -1 }, { 3778, 14, -1 }, { 3774, 134, -1 }, { 3775, 134, -1 }, { 3777, 134, -1 }, { 3778, 134, -1 }, { 3774, 15, -1 }, { 3775, 15, -1 }, { 3777, 15, -1 }, { 3778, 15, -1 }, { 3774, 16, -1 }, { 3775, 16, -1 }, { 3777, 16, -1 }, { 3778, 16, -1 }, { 3774, 44, -1 }, { 3775, 44, -1 }, { 3777, 44, -1 }, { 3778, 44, -1 }, { 3774, 17, -1 }, { 3775, 17, -1 }, { 3777, 17, -1 }, { 3778, 17, -1 }, { 3775, 11, -1 }, { 3777, 11, -1 }, { 3778, 11, -1 }, { 3774, 12, -1 }, { 3775, 12, -1 }, { 3777, 12, -1 }, { 3778, 12, -1 }, { 3774, 493, -1 }, { 3775, 493, -1 }, { 3777, 493, -1 }, { 3778, 493, -1 }, { 3774, 476, -1 }, { 3775, 476, -1 }, { 3777, 476, -1 }, { 3778, 476, -1 }, { 3774, 275, -1 }, { 3775, 275, -1 }, { 3777, 275, -1 }, { 3778, 275, -1 }, { 3774, 18, -1 }, { 3775, 18, -1 }, { 3777, 18, -1 }, { 3778, 18, -1 }, { 3774, 19, -1 }, { 3775, 19, -1 }, { 3777, 19, -1 }, { 3778, 19, -1 }, { 3774, 453, -1 }, { 3775, 453, -1 }, { 3777, 453, -1 }, { 3778, 453, -1 }, { 3774, 68, -1 }, { 3775, 68, -1 }, { 3777, 68, -1 }, { 3778, 68, -1 }, { 3774, 20, -1 }, { 3775, 20, -1 }, { 3777, 20, -1 }, { 3778, 20, -1 }, { 3774, 21, -1 }, { 3775, 21, -1 }, { 3777, 21, -1 }, { 3778, 21, -1 }, { 3775, 22, -1 }, { 3777, 22, -1 }, { 3778, 22, -1 }, { 3774, 589, -1 }, { 3775, 589, -1 }, { 3777, 589, -1 }, { 3778, 589, -1 }, { 3774, 620, -1 }, { 3775, 620, -1 }, { 3777, 620, -1 }, { 3778, 620, -1 }, { 3774, 784, -1 }, { 3775, 784, -1 }, { 3777, 784, -1 }, { 3778, 784, -1 }, { 3774, 785, -1 }, { 3775, 785, -1 }, { 3777, 785, -1 }, { 3778, 785, -1 }, { 3774, 1377, -1 }, { 3775, 1377, -1 }, { 3777, 1377, -1 }, { 3778, 1377, -1 }, { 3774, 1501, -1 }, { 3775, 1501, -1 }, { 3777, 1501, -1 }, { 3778, 1501, -1 }, { 3774, 1294, -1 }, { 3775, 1294, -1 }, { 3777, 1294, -1 }, { 3778, 1294, -1 }, { 3774, 1314, -1 }, { 3775, 1314, -1 }, { 3777, 1314, -1 }, { 3778, 1314, -1 }, { 3774, 1316, -1 }, { 3775, 1316, -1 }, { 3777, 1316, -1 }, { 3778, 1316, -1 }, { 3774, 1348, -1 }, { 3775, 1348, -1 }, { 3777, 1348, -1 }, { 3778, 1348, -1 }, { 3774, 1356, -1 }, { 3775, 1356, -1 }, { 3777, 1356, -1 }, { 3778, 1356, -1 }, { 3774, 1317, -1 }, { 3775, 1317, -1 }, { 3777, 1317, -1 }, { 3778, 1317, -1 }, { 3774, 1315, -1 }, { 3775, 1315, -1 }, { 3777, 1315, -1 }, { 3778, 1315, -1 }, { 3774, 1351, -1 }, { 3775, 1351, -1 }, { 3777, 1351, -1 }, { 3778, 1351, -1 }, { 3774, 1751, -1 }, { 3775, 1751, -1 }, { 3777, 1751, -1 }, { 3778, 1751, -1 }, { 3774, 1756, -1 }, { 3775, 1756, -1 }, { 3777, 1756, -1 }, { 3778, 1756, -1 }, { 3774, 837, -1 }, { 3775, 837, -1 }, { 3777, 837, -1 }, { 3778, 837, -1 }, { 3774, 838, -1 }, { 3775, 838, -1 }, { 3777, 838, -1 }, { 3778, 838, -1 }, { 3774, 836, -1 }, { 3775, 836, -1 }, { 3777, 836, -1 }, { 3778, 836, -1 }, { 3774, 783, -1 }, { 3775, 783, -1 }, { 3777, 783, -1 }, { 3778, 783, -1 }, { 3774, 778, -1 }, { 3775, 778, -1 }, { 3777, 778, -1 }, { 3778, 778, -1 }, { 3774, 779, -1 }, { 3775, 779, -1 }, { 3777, 779, -1 }, { 3778, 779, -1 }, { 3774, 1532, -1 }, { 3775, 1532, -1 }, { 3777, 1532, -1 }, { 3778, 1532, -1 }, { 3774, 1527, -1 }, { 3775, 1527, -1 }, { 3777, 1527, -1 }, { 3778, 1527, -1 }, { 3774, 1534, -1 }, { 3775, 1534, -1 }, { 3777, 1534, -1 }, { 3778, 1534, -1 }, { 3774, 1549, -1 }, { 3775, 1549, -1 }, { 3777, 1549, -1 }, { 3778, 1549, -1 }, { 3774, 1536, -1 }, { 3775, 1536, -1 }, { 3777, 1536, -1 }, { 3778, 1536, -1 }, { 3774, 1483, -1 }, { 3775, 1483, -1 }, { 3777, 1483, -1 }, { 3778, 1483, -1 }, { 3843, 1775, -1 }, { 3844, 1775, -1 }, { 3845, 1775, -1 }, { 3846, 1775, -1 }, { 3847, 1775, -1 }, { 3848, 1775, -1 }, { 3849, 1775, -1 }, { 3850, 1775, -1 }, { 3851, 1775, -1 }, { 3843, 1982, -1 }, { 3844, 1982, -1 }, { 3845, 1982, -1 }, { 3846, 1982, -1 }, { 3847, 1982, -1 }, { 3848, 1982, -1 }, { 3849, 1982, -1 }, { 3850, 1982, -1 }, { 3851, 1982, -1 }, { 3843, 575, -1 }, { 3844, 575, -1 }, { 3845, 575, -1 }, { 3846, 575, -1 }, { 3847, 575, -1 }, { 3848, 575, -1 }, { 3849, 575, -1 }, { 3850, 575, -1 }, { 3851, 575, -1 }, { 3843, 1061, -1 }, { 3844, 1061, -1 }, { 3845, 1061, -1 }, { 3846, 1061, -1 }, { 3847, 1061, -1 }, { 3848, 1061, -1 }, { 3849, 1061, -1 }, { 3850, 1061, -1 }, { 3851, 1061, -1 }, { 3843, 1040, -1 }, { 3844, 1040, -1 }, { 3845, 1040, -1 }, { 3846, 1040, -1 }, { 3847, 1040, -1 }, { 3848, 1040, -1 }, { 3849, 1040, -1 }, { 3850, 1040, -1 }, { 3851, 1040, -1 }, { 3843, 984, -1 }, { 3844, 984, -1 }, { 3845, 984, -1 }, { 3846, 984, -1 }, { 3847, 984, -1 }, { 3848, 984, -1 }, { 3849, 984, -1 }, { 3850, 984, -1 }, { 3851, 984, -1 }, { 3843, 97, -1 }, { 3844, 97, -1 }, { 3845, 97, -1 }, { 3846, 97, -1 }, { 3847, 97, -1 }, { 3848, 97, -1 }, { 3849, 97, -1 }, { 3850, 97, -1 }, { 3851, 97, -1 }, { 3843, 1329, -1 }, { 3844, 1329, -1 }, { 3845, 1329, -1 }, { 3846, 1329, -1 }, { 3847, 1329, -1 }, { 3848, 1329, -1 }, { 3849, 1329, -1 }, { 3850, 1329, -1 }, { 3851, 1329, -1 }, { 3843, 190, -1 }, { 3844, 190, -1 }, { 3845, 190, -1 }, { 3846, 190, -1 }, { 3847, 190, -1 }, { 3848, 190, -1 }, { 3849, 190, -1 }, { 3850, 190, -1 }, { 3851, 190, -1 }, { 3843, 1352, -1 }, { 3844, 1352, -1 }, { 3845, 1352, -1 }, { 3846, 1352, -1 }, { 3847, 1352, -1 }, { 3848, 1352, -1 }, { 3849, 1352, -1 }, { 3850, 1352, -1 }, { 3851, 1352, -1 }, { 3843, 1595, -1 }, { 3844, 1595, -1 }, { 3845, 1595, -1 }, { 3846, 1595, -1 }, { 3847, 1595, -1 }, { 3848, 1595, -1 }, { 3849, 1595, -1 }, { 3850, 1595, -1 }, { 3851, 1595, -1 }, { 3843, 1598, -1 }, { 3844, 1598, -1 }, { 3845, 1598, -1 }, { 3846, 1598, -1 }, { 3847, 1598, -1 }, { 3848, 1598, -1 }, { 3849, 1598, -1 }, { 3850, 1598, -1 }, { 3851, 1598, -1 }, { 3843, 1694, -1 }, { 3844, 1694, -1 }, { 3845, 1694, -1 }, { 3846, 1694, -1 }, { 3847, 1694, -1 }, { 3848, 1694, -1 }, { 3849, 1694, -1 }, { 3850, 1694, -1 }, { 3851, 1694, -1 }, { 3843, 807, -1 }, { 3844, 807, -1 }, { 3845, 807, -1 }, { 3846, 807, -1 }, { 3847, 807, -1 }, { 3848, 807, -1 }, { 3849, 807, -1 }, { 3850, 807, -1 }, { 3851, 807, -1 }, { 3843, 687, -1 }, { 3847, 687, -1 }, { 3848, 687, -1 }, { 3849, 687, -1 }, { 3850, 687, -1 }, { 3851, 687, -1 }, { 3843, 692, -1 }, { 3844, 692, -1 }, { 3845, 692, -1 }, { 3846, 692, -1 }, { 3847, 692, -1 }, { 3848, 692, -1 }, { 3849, 692, -1 }, { 3850, 692, -1 }, { 3851, 692, -1 }, { 3843, 1081, -1 }, { 3844, 1081, -1 }, { 3845, 1081, -1 }, { 3846, 1081, -1 }, { 3847, 1081, -1 }, { 3848, 1081, -1 }, { 3849, 1081, -1 }, { 3850, 1081, -1 }, { 3851, 1081, -1 }, { 3843, 977, -1 }, { 3844, 977, -1 }, { 3845, 977, -1 }, { 3846, 977, -1 }, { 3847, 977, -1 }, { 3848, 977, -1 }, { 3849, 977, -1 }, { 3850, 977, -1 }, { 3851, 977, -1 }, { 3843, 139, -1 }, { 3844, 139, -1 }, { 3845, 139, -1 }, { 3846, 139, -1 }, { 3847, 139, -1 }, { 3848, 139, -1 }, { 3849, 139, -1 }, { 3850, 139, -1 }, { 3851, 139, -1 }, { 3843, 169, -1 }, { 3844, 169, -1 }, { 3845, 169, -1 }, { 3846, 169, -1 }, { 3847, 169, -1 }, { 3848, 169, -1 }, { 3849, 169, -1 }, { 3850, 169, -1 }, { 3851, 169, -1 }, { 3843, 854, -1 }, { 3844, 854, -1 }, { 3845, 854, -1 }, { 3846, 854, -1 }, { 3847, 854, -1 }, { 3848, 854, -1 }, { 3849, 854, -1 }, { 3850, 854, -1 }, { 3851, 854, -1 }, { 3843, 182, -1 }, { 3844, 182, -1 }, { 3845, 182, -1 }, { 3846, 182, -1 }, { 3847, 182, -1 }, { 3848, 182, -1 }, { 3849, 182, -1 }, { 3850, 182, -1 }, { 3851, 182, -1 }, { 3843, 896, -1 }, { 3844, 896, -1 }, { 3845, 896, -1 }, { 3846, 896, -1 }, { 3847, 896, -1 }, { 3848, 896, -1 }, { 3849, 896, -1 }, { 3850, 896, -1 }, { 3851, 896, -1 }, { 3843, 698, -1 }, { 3844, 698, -1 }, { 3845, 698, -1 }, { 3846, 698, -1 }, { 3847, 698, -1 }, { 3848, 698, -1 }, { 3849, 698, -1 }, { 3850, 698, -1 }, { 3851, 698, -1 }, { 3843, 298, -1 }, { 3844, 298, -1 }, { 3845, 298, -1 }, { 3846, 298, -1 }, { 3847, 298, -1 }, { 3848, 298, -1 }, { 3849, 298, -1 }, { 3850, 298, -1 }, { 3851, 298, -1 }, { 3843, 278, -1 }, { 3844, 278, -1 }, { 3845, 278, -1 }, { 3846, 278, -1 }, { 3847, 278, -1 }, { 3848, 278, -1 }, { 3849, 278, -1 }, { 3850, 278, -1 }, { 3851, 278, -1 }, { 3843, 1567, -1 }, { 3844, 1567, -1 }, { 3845, 1567, -1 }, { 3846, 1567, -1 }, { 3847, 1567, -1 }, { 3848, 1567, -1 }, { 3849, 1567, -1 }, { 3850, 1567, -1 }, { 3851, 1567, -1 }, { 3843, 1340, -1 }, { 3844, 1340, -1 }, { 3845, 1340, -1 }, { 3846, 1340, -1 }, { 3847, 1340, -1 }, { 3848, 1340, -1 }, { 3849, 1340, -1 }, { 3850, 1340, -1 }, { 3851, 1340, -1 }, { 3843, 883, -1 }, { 3844, 883, -1 }, { 3845, 883, -1 }, { 3846, 883, -1 }, { 3847, 883, -1 }, { 3848, 883, -1 }, { 3849, 883, -1 }, { 3850, 883, -1 }, { 3851, 883, -1 }, { 3843, 1607, -1 }, { 3844, 1607, -1 }, { 3845, 1607, -1 }, { 3846, 1607, -1 }, { 3847, 1607, -1 }, { 3848, 1607, -1 }, { 3849, 1607, -1 }, { 3850, 1607, -1 }, { 3851, 1607, -1 }, { 3843, 288, -1 }, { 3844, 288, -1 }, { 3845, 288, -1 }, { 3846, 288, -1 }, { 3847, 288, -1 }, { 3848, 288, -1 }, { 3849, 288, -1 }, { 3850, 288, -1 }, { 3851, 288, -1 }, { 3843, 1949, -1 }, { 3847, 1949, -1 }, { 3848, 1949, -1 }, { 3849, 1949, -1 }, { 3850, 1949, -1 }, { 3851, 1949, -1 }, { 3843, 1822, -1 }, { 3844, 1822, -1 }, { 3845, 1822, -1 }, { 3846, 1822, -1 }, { 3847, 1822, -1 }, { 3848, 1822, -1 }, { 3849, 1822, -1 }, { 3850, 1822, -1 }, { 3851, 1822, -1 }, { 3843, 1995, -1 }, { 3844, 1995, -1 }, { 3845, 1995, -1 }, { 3846, 1995, -1 }, { 3847, 1995, -1 }, { 3848, 1995, -1 }, { 3849, 1995, -1 }, { 3850, 1995, -1 }, { 3851, 1995, -1 }, { 3843, 1496, -1 }, { 3844, 1496, -1 }, { 3845, 1496, -1 }, { 3846, 1496, -1 }, { 3847, 1496, -1 }, { 3848, 1496, -1 }, { 3849, 1496, -1 }, { 3850, 1496, -1 }, { 3851, 1496, -1 }, { 3843, 1493, -1 }, { 3844, 1493, -1 }, { 3845, 1493, -1 }, { 3846, 1493, -1 }, { 3847, 1493, -1 }, { 3848, 1493, -1 }, { 3849, 1493, -1 }, { 3850, 1493, -1 }, { 3851, 1493, -1 }, { 3843, 1489, -1 }, { 3844, 1489, -1 }, { 3845, 1489, -1 }, { 3846, 1489, -1 }, { 3847, 1489, -1 }, { 3848, 1489, -1 }, { 3849, 1489, -1 }, { 3850, 1489, -1 }, { 3851, 1489, -1 }, { 3843, 1359, -1 }, { 3844, 1359, -1 }, { 3845, 1359, -1 }, { 3846, 1359, -1 }, { 3847, 1359, -1 }, { 3848, 1359, -1 }, { 3849, 1359, -1 }, { 3850, 1359, -1 }, { 3851, 1359, -1 }, { 3843, 1297, -1 }, { 3844, 1297, -1 }, { 3845, 1297, -1 }, { 3846, 1297, -1 }, { 3847, 1297, -1 }, { 3848, 1297, -1 }, { 3849, 1297, -1 }, { 3850, 1297, -1 }, { 3851, 1297, -1 }, { 3843, 1306, -1 }, { 3844, 1306, -1 }, { 3845, 1306, -1 }, { 3846, 1306, -1 }, { 3847, 1306, -1 }, { 3848, 1306, -1 }, { 3849, 1306, -1 }, { 3850, 1306, -1 }, { 3851, 1306, -1 }, { 3843, 905, -1 }, { 3844, 905, -1 }, { 3845, 905, -1 }, { 3846, 905, -1 }, { 3847, 905, -1 }, { 3848, 905, -1 }, { 3849, 905, -1 }, { 3850, 905, -1 }, { 3851, 905, -1 }, { 3843, 1796, -1 }, { 3844, 1796, -1 }, { 3845, 1796, -1 }, { 3846, 1796, -1 }, { 3847, 1796, -1 }, { 3848, 1796, -1 }, { 3849, 1796, -1 }, { 3850, 1796, -1 }, { 3851, 1796, -1 }, { 3843, 1659, -1 }, { 3844, 1659, -1 }, { 3845, 1659, -1 }, { 3846, 1659, -1 }, { 3847, 1659, -1 }, { 3848, 1659, -1 }, { 3849, 1659, -1 }, { 3850, 1659, -1 }, { 3851, 1659, -1 }, { 3843, 1525, -1 }, { 3844, 1525, -1 }, { 3845, 1525, -1 }, { 3846, 1525, -1 }, { 3847, 1525, -1 }, { 3848, 1525, -1 }, { 3849, 1525, -1 }, { 3850, 1525, -1 }, { 3851, 1525, -1 }, { 3843, 1481, -1 }, { 3844, 1481, -1 }, { 3845, 1481, -1 }, { 3846, 1481, -1 }, { 3847, 1481, -1 }, { 3848, 1481, -1 }, { 3849, 1481, -1 }, { 3850, 1481, -1 }, { 3851, 1481, -1 }, { 3843, 1503, -1 }, { 3844, 1503, -1 }, { 3845, 1503, -1 }, { 3846, 1503, -1 }, { 3847, 1503, -1 }, { 3848, 1503, -1 }, { 3849, 1503, -1 }, { 3850, 1503, -1 }, { 3851, 1503, -1 }, { 3843, 1507, -1 }, { 3844, 1507, -1 }, { 3845, 1507, -1 }, { 3846, 1507, -1 }, { 3847, 1507, -1 }, { 3848, 1507, -1 }, { 3849, 1507, -1 }, { 3850, 1507, -1 }, { 3851, 1507, -1 }, { 3843, 1511, -1 }, { 3844, 1511, -1 }, { 3845, 1511, -1 }, { 3846, 1511, -1 }, { 3847, 1511, -1 }, { 3848, 1511, -1 }, { 3849, 1511, -1 }, { 3850, 1511, -1 }, { 3851, 1511, -1 }, { 3866, 1775, -1 }, { 3867, 1775, -1 }, { 3868, 1775, -1 }, { 3869, 1775, -1 }, { 3870, 1775, -1 }, { 3871, 1775, -1 }, { 3866, 1982, -1 }, { 3867, 1982, -1 }, { 3868, 1982, -1 }, { 3869, 1982, -1 }, { 3870, 1982, -1 }, { 3871, 1982, -1 }, { 3866, 575, -1 }, { 3867, 575, -1 }, { 3868, 575, -1 }, { 3869, 575, -1 }, { 3870, 575, -1 }, { 3871, 575, -1 }, { 3866, 1061, -1 }, { 3867, 1061, -1 }, { 3868, 1061, -1 }, { 3869, 1061, -1 }, { 3870, 1061, -1 }, { 3871, 1061, -1 }, { 3866, 1040, -1 }, { 3867, 1040, -1 }, { 3868, 1040, -1 }, { 3869, 1040, -1 }, { 3870, 1040, -1 }, { 3871, 1040, -1 }, { 3866, 984, -1 }, { 3867, 984, -1 }, { 3868, 984, -1 }, { 3869, 984, -1 }, { 3870, 984, -1 }, { 3871, 984, -1 }, { 3866, 97, -1 }, { 3867, 97, -1 }, { 3868, 97, -1 }, { 3869, 97, -1 }, { 3870, 97, -1 }, { 3871, 97, -1 }, { 3866, 1329, -1 }, { 3867, 1329, -1 }, { 3868, 1329, -1 }, { 3869, 1329, -1 }, { 3870, 1329, -1 }, { 3871, 1329, -1 }, { 3866, 190, -1 }, { 3867, 190, -1 }, { 3868, 190, -1 }, { 3869, 190, -1 }, { 3870, 190, -1 }, { 3871, 190, -1 }, { 3866, 1352, -1 }, { 3867, 1352, -1 }, { 3868, 1352, -1 }, { 3869, 1352, -1 }, { 3870, 1352, -1 }, { 3871, 1352, -1 }, { 3866, 1595, -1 }, { 3867, 1595, -1 }, { 3868, 1595, -1 }, { 3869, 1595, -1 }, { 3870, 1595, -1 }, { 3871, 1595, -1 }, { 3866, 1598, -1 }, { 3867, 1598, -1 }, { 3868, 1598, -1 }, { 3869, 1598, -1 }, { 3870, 1598, -1 }, { 3871, 1598, -1 }, { 3866, 1694, -1 }, { 3867, 1694, -1 }, { 3868, 1694, -1 }, { 3869, 1694, -1 }, { 3870, 1694, -1 }, { 3871, 1694, -1 }, { 3866, 807, -1 }, { 3867, 807, -1 }, { 3868, 807, -1 }, { 3869, 807, -1 }, { 3870, 807, -1 }, { 3871, 807, -1 }, { 3866, 687, -1 }, { 3867, 687, -1 }, { 3868, 687, -1 }, { 3869, 687, -1 }, { 3870, 687, -1 }, { 3871, 687, -1 }, { 3866, 692, -1 }, { 3867, 692, -1 }, { 3868, 692, -1 }, { 3869, 692, -1 }, { 3870, 692, -1 }, { 3871, 692, -1 }, { 3866, 1081, -1 }, { 3867, 1081, -1 }, { 3868, 1081, -1 }, { 3869, 1081, -1 }, { 3870, 1081, -1 }, { 3871, 1081, -1 }, { 3866, 977, -1 }, { 3867, 977, -1 }, { 3868, 977, -1 }, { 3869, 977, -1 }, { 3870, 977, -1 }, { 3871, 977, -1 }, { 3866, 139, -1 }, { 3867, 139, -1 }, { 3868, 139, -1 }, { 3869, 139, -1 }, { 3870, 139, -1 }, { 3871, 139, -1 }, { 3866, 169, -1 }, { 3867, 169, -1 }, { 3868, 169, -1 }, { 3869, 169, -1 }, { 3870, 169, -1 }, { 3871, 169, -1 }, { 3866, 854, -1 }, { 3867, 854, -1 }, { 3868, 854, -1 }, { 3869, 854, -1 }, { 3870, 854, -1 }, { 3871, 854, -1 }, { 3866, 182, -1 }, { 3867, 182, -1 }, { 3868, 182, -1 }, { 3869, 182, -1 }, { 3870, 182, -1 }, { 3871, 182, -1 }, { 3866, 896, -1 }, { 3867, 896, -1 }, { 3868, 896, -1 }, { 3869, 896, -1 }, { 3870, 896, -1 }, { 3871, 896, -1 }, { 3866, 698, -1 }, { 3867, 698, -1 }, { 3868, 698, -1 }, { 3869, 698, -1 }, { 3870, 698, -1 }, { 3871, 698, -1 }, { 3866, 298, -1 }, { 3867, 298, -1 }, { 3868, 298, -1 }, { 3869, 298, -1 }, { 3870, 298, -1 }, { 3871, 298, -1 }, { 3866, 278, -1 }, { 3867, 278, -1 }, { 3868, 278, -1 }, { 3869, 278, -1 }, { 3870, 278, -1 }, { 3871, 278, -1 }, { 3866, 1567, -1 }, { 3867, 1567, -1 }, { 3868, 1567, -1 }, { 3869, 1567, -1 }, { 3870, 1567, -1 }, { 3871, 1567, -1 }, { 3866, 1340, -1 }, { 3867, 1340, -1 }, { 3868, 1340, -1 }, { 3869, 1340, -1 }, { 3870, 1340, -1 }, { 3871, 1340, -1 }, { 3866, 883, -1 }, { 3867, 883, -1 }, { 3868, 883, -1 }, { 3869, 883, -1 }, { 3870, 883, -1 }, { 3871, 883, -1 }, { 3866, 1607, -1 }, { 3867, 1607, -1 }, { 3868, 1607, -1 }, { 3869, 1607, -1 }, { 3870, 1607, -1 }, { 3871, 1607, -1 }, { 3866, 288, -1 }, { 3867, 288, -1 }, { 3868, 288, -1 }, { 3869, 288, -1 }, { 3870, 288, -1 }, { 3871, 288, -1 }, { 3866, 1949, -1 }, { 3867, 1949, -1 }, { 3868, 1949, -1 }, { 3869, 1949, -1 }, { 3870, 1949, -1 }, { 3871, 1949, -1 }, { 3866, 1822, -1 }, { 3867, 1822, -1 }, { 3868, 1822, -1 }, { 3869, 1822, -1 }, { 3870, 1822, -1 }, { 3871, 1822, -1 }, { 3866, 1995, -1 }, { 3867, 1995, -1 }, { 3868, 1995, -1 }, { 3869, 1995, -1 }, { 3870, 1995, -1 }, { 3871, 1995, -1 }, { 3866, 1496, -1 }, { 3867, 1496, -1 }, { 3868, 1496, -1 }, { 3869, 1496, -1 }, { 3870, 1496, -1 }, { 3871, 1496, -1 }, { 3866, 1493, -1 }, { 3867, 1493, -1 }, { 3868, 1493, -1 }, { 3869, 1493, -1 }, { 3870, 1493, -1 }, { 3871, 1493, -1 }, { 3866, 1489, -1 }, { 3867, 1489, -1 }, { 3868, 1489, -1 }, { 3869, 1489, -1 }, { 3870, 1489, -1 }, { 3871, 1489, -1 }, { 3866, 1359, -1 }, { 3867, 1359, -1 }, { 3868, 1359, -1 }, { 3869, 1359, -1 }, { 3870, 1359, -1 }, { 3871, 1359, -1 }, { 3866, 1297, -1 }, { 3867, 1297, -1 }, { 3868, 1297, -1 }, { 3869, 1297, -1 }, { 3870, 1297, -1 }, { 3871, 1297, -1 }, { 3866, 1306, -1 }, { 3867, 1306, -1 }, { 3868, 1306, -1 }, { 3869, 1306, -1 }, { 3870, 1306, -1 }, { 3871, 1306, -1 }, { 3866, 905, -1 }, { 3867, 905, -1 }, { 3868, 905, -1 }, { 3869, 905, -1 }, { 3870, 905, -1 }, { 3871, 905, -1 }, { 3866, 1796, -1 }, { 3867, 1796, -1 }, { 3868, 1796, -1 }, { 3869, 1796, -1 }, { 3870, 1796, -1 }, { 3871, 1796, -1 }, { 3866, 1659, -1 }, { 3867, 1659, -1 }, { 3868, 1659, -1 }, { 3869, 1659, -1 }, { 3870, 1659, -1 }, { 3871, 1659, -1 }, { 3866, 1525, -1 }, { 3867, 1525, -1 }, { 3868, 1525, -1 }, { 3869, 1525, -1 }, { 3870, 1525, -1 }, { 3871, 1525, -1 }, { 3866, 1481, -1 }, { 3867, 1481, -1 }, { 3868, 1481, -1 }, { 3869, 1481, -1 }, { 3870, 1481, -1 }, { 3871, 1481, -1 }, { 3866, 1503, -1 }, { 3867, 1503, -1 }, { 3868, 1503, -1 }, { 3869, 1503, -1 }, { 3870, 1503, -1 }, { 3871, 1503, -1 }, { 3866, 1507, -1 }, { 3870, 1507, -1 }, { 3871, 1507, -1 }, { 3866, 1511, -1 }, { 3867, 1511, -1 }, { 3868, 1511, -1 }, { 3869, 1511, -1 }, { 3870, 1511, -1 }, { 3871, 1511, -1 }, { 3852, 1775, -1 }, { 3853, 1775, -1 }, { 3854, 1775, -1 }, { 3856, 1775, -1 }, { 3857, 1775, -1 }, { 3858, 1775, -1 }, { 3859, 1775, -1 }, { 3860, 1775, -1 }, { 3861, 1775, -1 }, { 3862, 1775, -1 }, { 3863, 1775, -1 }, { 3864, 1775, -1 }, { 3865, 1775, -1 }, { 3852, 1982, -1 }, { 3853, 1982, -1 }, { 3854, 1982, -1 }, { 3855, 1982, -1 }, { 3856, 1982, -1 }, { 3857, 1982, -1 }, { 3858, 1982, -1 }, { 3859, 1982, -1 }, { 3860, 1982, -1 }, { 3861, 1982, -1 }, { 3862, 1982, -1 }, { 3863, 1982, -1 }, { 3864, 1982, -1 }, { 3865, 1982, -1 }, { 3852, 575, -1 }, { 3853, 575, -1 }, { 3854, 575, -1 }, { 3855, 575, -1 }, { 3856, 575, -1 }, { 3857, 575, -1 }, { 3858, 575, -1 }, { 3859, 575, -1 }, { 3860, 575, -1 }, { 3861, 575, -1 }, { 3862, 575, -1 }, { 3863, 575, -1 }, { 3864, 575, -1 }, { 3865, 575, -1 }, { 3852, 1061, -1 }, { 3853, 1061, -1 }, { 3854, 1061, -1 }, { 3855, 1061, -1 }, { 3856, 1061, -1 }, { 3857, 1061, -1 }, { 3858, 1061, -1 }, { 3859, 1061, -1 }, { 3860, 1061, -1 }, { 3861, 1061, -1 }, { 3862, 1061, -1 }, { 3863, 1061, -1 }, { 3864, 1061, -1 }, { 3865, 1061, -1 }, { 3852, 1040, -1 }, { 3853, 1040, -1 }, { 3854, 1040, -1 }, { 3855, 1040, -1 }, { 3856, 1040, -1 }, { 3857, 1040, -1 }, { 3858, 1040, -1 }, { 3859, 1040, -1 }, { 3860, 1040, -1 }, { 3861, 1040, -1 }, { 3862, 1040, -1 }, { 3863, 1040, -1 }, { 3864, 1040, -1 }, { 3865, 1040, -1 }, { 3852, 984, -1 }, { 3853, 984, -1 }, { 3854, 984, -1 }, { 3855, 984, -1 }, { 3856, 984, -1 }, { 3857, 984, -1 }, { 3858, 984, -1 }, { 3859, 984, -1 }, { 3860, 984, -1 }, { 3861, 984, -1 }, { 3862, 984, -1 }, { 3863, 984, -1 }, { 3864, 984, -1 }, { 3865, 984, -1 }, { 3852, 97, -1 }, { 3853, 97, -1 }, { 3854, 97, -1 }, { 3855, 97, -1 }, { 3856, 97, -1 }, { 3857, 97, -1 }, { 3858, 97, -1 }, { 3859, 97, -1 }, { 3860, 97, -1 }, { 3861, 97, -1 }, { 3862, 97, -1 }, { 3863, 97, -1 }, { 3864, 97, -1 }, { 3865, 97, -1 }, { 3852, 1329, -1 }, { 3853, 1329, -1 }, { 3854, 1329, -1 }, { 3855, 1329, -1 }, { 3856, 1329, -1 }, { 3857, 1329, -1 }, { 3858, 1329, -1 }, { 3859, 1329, -1 }, { 3860, 1329, -1 }, { 3861, 1329, -1 }, { 3862, 1329, -1 }, { 3863, 1329, -1 }, { 3864, 1329, -1 }, { 3865, 1329, -1 }, { 3852, 190, -1 }, { 3853, 190, -1 }, { 3854, 190, -1 }, { 3855, 190, -1 }, { 3856, 190, -1 }, { 3857, 190, -1 }, { 3858, 190, -1 }, { 3859, 190, -1 }, { 3860, 190, -1 }, { 3861, 190, -1 }, { 3862, 190, -1 }, { 3863, 190, -1 }, { 3864, 190, -1 }, { 3865, 190, -1 }, { 3852, 1352, -1 }, { 3853, 1352, -1 }, { 3854, 1352, -1 }, { 3855, 1352, -1 }, { 3856, 1352, -1 }, { 3857, 1352, -1 }, { 3858, 1352, -1 }, { 3859, 1352, -1 }, { 3860, 1352, -1 }, { 3861, 1352, -1 }, { 3862, 1352, -1 }, { 3863, 1352, -1 }, { 3864, 1352, -1 }, { 3865, 1352, -1 }, { 3852, 1595, -1 }, { 3853, 1595, -1 }, { 3854, 1595, -1 }, { 3855, 1595, -1 }, { 3856, 1595, -1 }, { 3857, 1595, -1 }, { 3858, 1595, -1 }, { 3859, 1595, -1 }, { 3860, 1595, -1 }, { 3861, 1595, -1 }, { 3862, 1595, -1 }, { 3863, 1595, -1 }, { 3864, 1595, -1 }, { 3865, 1595, -1 }, { 3852, 1598, -1 }, { 3853, 1598, -1 }, { 3854, 1598, -1 }, { 3855, 1598, -1 }, { 3856, 1598, -1 }, { 3857, 1598, -1 }, { 3858, 1598, -1 }, { 3859, 1598, -1 }, { 3860, 1598, -1 }, { 3861, 1598, -1 }, { 3862, 1598, -1 }, { 3863, 1598, -1 }, { 3864, 1598, -1 }, { 3865, 1598, -1 }, { 3852, 1694, -1 }, { 3853, 1694, -1 }, { 3854, 1694, -1 }, { 3855, 1694, -1 }, { 3856, 1694, -1 }, { 3857, 1694, -1 }, { 3858, 1694, -1 }, { 3859, 1694, -1 }, { 3860, 1694, -1 }, { 3861, 1694, -1 }, { 3862, 1694, -1 }, { 3863, 1694, -1 }, { 3864, 1694, -1 }, { 3865, 1694, -1 }, { 3852, 807, -1 }, { 3853, 807, -1 }, { 3854, 807, -1 }, { 3855, 807, -1 }, { 3856, 807, -1 }, { 3857, 807, -1 }, { 3858, 807, -1 }, { 3859, 807, -1 }, { 3860, 807, -1 }, { 3861, 807, -1 }, { 3862, 807, -1 }, { 3863, 807, -1 }, { 3864, 807, -1 }, { 3865, 807, -1 }, { 3852, 687, -1 }, { 3853, 687, -1 }, { 3854, 687, -1 }, { 3855, 687, -1 }, { 3856, 687, -1 }, { 3857, 687, -1 }, { 3858, 687, -1 }, { 3859, 687, -1 }, { 3860, 687, -1 }, { 3861, 687, -1 }, { 3862, 687, -1 }, { 3863, 687, -1 }, { 3864, 687, -1 }, { 3865, 687, -1 }, { 3852, 692, -1 }, { 3853, 692, -1 }, { 3854, 692, -1 }, { 3855, 692, -1 }, { 3856, 692, -1 }, { 3857, 692, -1 }, { 3858, 692, -1 }, { 3859, 692, -1 }, { 3860, 692, -1 }, { 3861, 692, -1 }, { 3862, 692, -1 }, { 3863, 692, -1 }, { 3864, 692, -1 }, { 3865, 692, -1 }, { 3852, 1081, -1 }, { 3853, 1081, -1 }, { 3854, 1081, -1 }, { 3855, 1081, -1 }, { 3856, 1081, -1 }, { 3857, 1081, -1 }, { 3858, 1081, -1 }, { 3859, 1081, -1 }, { 3860, 1081, -1 }, { 3861, 1081, -1 }, { 3862, 1081, -1 }, { 3863, 1081, -1 }, { 3864, 1081, -1 }, { 3865, 1081, -1 }, { 3852, 977, -1 }, { 3853, 977, -1 }, { 3854, 977, -1 }, { 3855, 977, -1 }, { 3856, 977, -1 }, { 3857, 977, -1 }, { 3858, 977, -1 }, { 3859, 977, -1 }, { 3860, 977, -1 }, { 3861, 977, -1 }, { 3862, 977, -1 }, { 3863, 977, -1 }, { 3864, 977, -1 }, { 3865, 977, -1 }, { 3852, 139, -1 }, { 3853, 139, -1 }, { 3854, 139, -1 }, { 3855, 139, -1 }, { 3856, 139, -1 }, { 3857, 139, -1 }, { 3858, 139, -1 }, { 3859, 139, -1 }, { 3860, 139, -1 }, { 3861, 139, -1 }, { 3862, 139, -1 }, { 3863, 139, -1 }, { 3864, 139, -1 }, { 3865, 139, -1 }, { 3852, 169, -1 }, { 3853, 169, -1 }, { 3854, 169, -1 }, { 3855, 169, -1 }, { 3856, 169, -1 }, { 3857, 169, -1 }, { 3858, 169, -1 }, { 3859, 169, -1 }, { 3860, 169, -1 }, { 3861, 169, -1 }, { 3862, 169, -1 }, { 3863, 169, -1 }, { 3864, 169, -1 }, { 3865, 169, -1 }, { 3852, 854, -1 }, { 3853, 854, -1 }, { 3854, 854, -1 }, { 3855, 854, -1 }, { 3856, 854, -1 }, { 3857, 854, -1 }, { 3858, 854, -1 }, { 3859, 854, -1 }, { 3860, 854, -1 }, { 3861, 854, -1 }, { 3862, 854, -1 }, { 3863, 854, -1 }, { 3864, 854, -1 }, { 3865, 854, -1 }, { 3852, 182, -1 }, { 3853, 182, -1 }, { 3854, 182, -1 }, { 3855, 182, -1 }, { 3856, 182, -1 }, { 3857, 182, -1 }, { 3858, 182, -1 }, { 3859, 182, -1 }, { 3860, 182, -1 }, { 3861, 182, -1 }, { 3862, 182, -1 }, { 3863, 182, -1 }, { 3864, 182, -1 }, { 3865, 182, -1 }, { 3852, 896, -1 }, { 3853, 896, -1 }, { 3854, 896, -1 }, { 3855, 896, -1 }, { 3856, 896, -1 }, { 3857, 896, -1 }, { 3858, 896, -1 }, { 3859, 896, -1 }, { 3860, 896, -1 }, { 3861, 896, -1 }, { 3862, 896, -1 }, { 3863, 896, -1 }, { 3864, 896, -1 }, { 3865, 896, -1 }, { 3852, 698, -1 }, { 3853, 698, -1 }, { 3854, 698, -1 }, { 3855, 698, -1 }, { 3856, 698, -1 }, { 3857, 698, -1 }, { 3858, 698, -1 }, { 3859, 698, -1 }, { 3860, 698, -1 }, { 3861, 698, -1 }, { 3862, 698, -1 }, { 3863, 698, -1 }, { 3864, 698, -1 }, { 3865, 698, -1 }, { 3852, 298, -1 }, { 3853, 298, -1 }, { 3854, 298, -1 }, { 3855, 298, -1 }, { 3856, 298, -1 }, { 3857, 298, -1 }, { 3858, 298, -1 }, { 3859, 298, -1 }, { 3860, 298, -1 }, { 3861, 298, -1 }, { 3862, 298, -1 }, { 3863, 298, -1 }, { 3864, 298, -1 }, { 3865, 298, -1 }, { 3852, 278, -1 }, { 3853, 278, -1 }, { 3854, 278, -1 }, { 3855, 278, -1 }, { 3856, 278, -1 }, { 3857, 278, -1 }, { 3858, 278, -1 }, { 3859, 278, -1 }, { 3860, 278, -1 }, { 3861, 278, -1 }, { 3862, 278, -1 }, { 3863, 278, -1 }, { 3864, 278, -1 }, { 3865, 278, -1 }, { 3852, 1567, -1 }, { 3853, 1567, -1 }, { 3854, 1567, -1 }, { 3855, 1567, -1 }, { 3856, 1567, -1 }, { 3857, 1567, -1 }, { 3858, 1567, -1 }, { 3859, 1567, -1 }, { 3860, 1567, -1 }, { 3861, 1567, -1 }, { 3862, 1567, -1 }, { 3863, 1567, -1 }, { 3864, 1567, -1 }, { 3865, 1567, -1 }, { 3852, 1340, -1 }, { 3853, 1340, -1 }, { 3854, 1340, -1 }, { 3855, 1340, -1 }, { 3856, 1340, -1 }, { 3857, 1340, -1 }, { 3858, 1340, -1 }, { 3859, 1340, -1 }, { 3860, 1340, -1 }, { 3861, 1340, -1 }, { 3862, 1340, -1 }, { 3863, 1340, -1 }, { 3864, 1340, -1 }, { 3865, 1340, -1 }, { 3852, 883, -1 }, { 3853, 883, -1 }, { 3854, 883, -1 }, { 3855, 883, -1 }, { 3856, 883, -1 }, { 3857, 883, -1 }, { 3858, 883, -1 }, { 3859, 883, -1 }, { 3860, 883, -1 }, { 3861, 883, -1 }, { 3862, 883, -1 }, { 3863, 883, -1 }, { 3864, 883, -1 }, { 3865, 883, -1 }, { 3852, 1607, -1 }, { 3853, 1607, -1 }, { 3854, 1607, -1 }, { 3855, 1607, -1 }, { 3856, 1607, -1 }, { 3857, 1607, -1 }, { 3858, 1607, -1 }, { 3859, 1607, -1 }, { 3860, 1607, -1 }, { 3861, 1607, -1 }, { 3862, 1607, -1 }, { 3863, 1607, -1 }, { 3864, 1607, -1 }, { 3865, 1607, -1 }, { 3852, 288, -1 }, { 3853, 288, -1 }, { 3854, 288, -1 }, { 3855, 288, -1 }, { 3856, 288, -1 }, { 3857, 288, -1 }, { 3858, 288, -1 }, { 3859, 288, -1 }, { 3860, 288, -1 }, { 3861, 288, -1 }, { 3862, 288, -1 }, { 3863, 288, -1 }, { 3864, 288, -1 }, { 3865, 288, -1 }, { 3852, 1949, -1 }, { 3853, 1949, -1 }, { 3854, 1949, -1 }, { 3855, 1949, -1 }, { 3856, 1949, -1 }, { 3857, 1949, -1 }, { 3858, 1949, -1 }, { 3859, 1949, -1 }, { 3860, 1949, -1 }, { 3861, 1949, -1 }, { 3862, 1949, -1 }, { 3863, 1949, -1 }, { 3864, 1949, -1 }, { 3865, 1949, -1 }, { 3852, 1822, -1 }, { 3853, 1822, -1 }, { 3854, 1822, -1 }, { 3855, 1822, -1 }, { 3856, 1822, -1 }, { 3857, 1822, -1 }, { 3858, 1822, -1 }, { 3859, 1822, -1 }, { 3860, 1822, -1 }, { 3861, 1822, -1 }, { 3862, 1822, -1 }, { 3863, 1822, -1 }, { 3864, 1822, -1 }, { 3865, 1822, -1 }, { 3852, 1995, -1 }, { 3853, 1995, -1 }, { 3854, 1995, -1 }, { 3855, 1995, -1 }, { 3856, 1995, -1 }, { 3857, 1995, -1 }, { 3858, 1995, -1 }, { 3859, 1995, -1 }, { 3860, 1995, -1 }, { 3861, 1995, -1 }, { 3862, 1995, -1 }, { 3863, 1995, -1 }, { 3864, 1995, -1 }, { 3865, 1995, -1 }, { 3852, 1496, -1 }, { 3853, 1496, -1 }, { 3854, 1496, -1 }, { 3855, 1496, -1 }, { 3856, 1496, -1 }, { 3857, 1496, -1 }, { 3858, 1496, -1 }, { 3859, 1496, -1 }, { 3860, 1496, -1 }, { 3861, 1496, -1 }, { 3862, 1496, -1 }, { 3863, 1496, -1 }, { 3864, 1496, -1 }, { 3865, 1496, -1 }, { 3852, 1493, -1 }, { 3853, 1493, -1 }, { 3854, 1493, -1 }, { 3855, 1493, -1 }, { 3856, 1493, -1 }, { 3857, 1493, -1 }, { 3858, 1493, -1 }, { 3859, 1493, -1 }, { 3860, 1493, -1 }, { 3861, 1493, -1 }, { 3862, 1493, -1 }, { 3863, 1493, -1 }, { 3864, 1493, -1 }, { 3865, 1493, -1 }, { 3852, 1489, -1 }, { 3853, 1489, -1 }, { 3854, 1489, -1 }, { 3855, 1489, -1 }, { 3856, 1489, -1 }, { 3857, 1489, -1 }, { 3858, 1489, -1 }, { 3859, 1489, -1 }, { 3860, 1489, -1 }, { 3861, 1489, -1 }, { 3862, 1489, -1 }, { 3863, 1489, -1 }, { 3864, 1489, -1 }, { 3865, 1489, -1 }, { 3852, 1359, -1 }, { 3853, 1359, -1 }, { 3854, 1359, -1 }, { 3855, 1359, -1 }, { 3856, 1359, -1 }, { 3857, 1359, -1 }, { 3858, 1359, -1 }, { 3859, 1359, -1 }, { 3860, 1359, -1 }, { 3861, 1359, -1 }, { 3862, 1359, -1 }, { 3863, 1359, -1 }, { 3864, 1359, -1 }, { 3865, 1359, -1 }, { 3852, 1297, -1 }, { 3853, 1297, -1 }, { 3854, 1297, -1 }, { 3855, 1297, -1 }, { 3856, 1297, -1 }, { 3857, 1297, -1 }, { 3858, 1297, -1 }, { 3859, 1297, -1 }, { 3860, 1297, -1 }, { 3861, 1297, -1 }, { 3862, 1297, -1 }, { 3863, 1297, -1 }, { 3864, 1297, -1 }, { 3865, 1297, -1 }, { 3852, 1306, -1 }, { 3853, 1306, -1 }, { 3854, 1306, -1 }, { 3855, 1306, -1 }, { 3856, 1306, -1 }, { 3857, 1306, -1 }, { 3858, 1306, -1 }, { 3859, 1306, -1 }, { 3860, 1306, -1 }, { 3861, 1306, -1 }, { 3862, 1306, -1 }, { 3863, 1306, -1 }, { 3864, 1306, -1 }, { 3865, 1306, -1 }, { 3852, 905, -1 }, { 3853, 905, -1 }, { 3854, 905, -1 }, { 3855, 905, -1 }, { 3856, 905, -1 }, { 3857, 905, -1 }, { 3858, 905, -1 }, { 3859, 905, -1 }, { 3860, 905, -1 }, { 3861, 905, -1 }, { 3862, 905, -1 }, { 3863, 905, -1 }, { 3864, 905, -1 }, { 3865, 905, -1 }, { 3852, 1796, -1 }, { 3853, 1796, -1 }, { 3854, 1796, -1 }, { 3855, 1796, -1 }, { 3856, 1796, -1 }, { 3857, 1796, -1 }, { 3858, 1796, -1 }, { 3859, 1796, -1 }, { 3860, 1796, -1 }, { 3861, 1796, -1 }, { 3862, 1796, -1 }, { 3863, 1796, -1 }, { 3864, 1796, -1 }, { 3865, 1796, -1 }, { 3852, 1659, -1 }, { 3853, 1659, -1 }, { 3854, 1659, -1 }, { 3855, 1659, -1 }, { 3856, 1659, -1 }, { 3857, 1659, -1 }, { 3858, 1659, -1 }, { 3859, 1659, -1 }, { 3860, 1659, -1 }, { 3861, 1659, -1 }, { 3862, 1659, -1 }, { 3863, 1659, -1 }, { 3864, 1659, -1 }, { 3865, 1659, -1 }, { 3852, 1525, -1 }, { 3853, 1525, -1 }, { 3854, 1525, -1 }, { 3855, 1525, -1 }, { 3856, 1525, -1 }, { 3857, 1525, -1 }, { 3858, 1525, -1 }, { 3859, 1525, -1 }, { 3860, 1525, -1 }, { 3861, 1525, -1 }, { 3862, 1525, -1 }, { 3863, 1525, -1 }, { 3864, 1525, -1 }, { 3865, 1525, -1 }, { 3852, 1481, -1 }, { 3853, 1481, -1 }, { 3854, 1481, -1 }, { 3855, 1481, -1 }, { 3856, 1481, -1 }, { 3857, 1481, -1 }, { 3858, 1481, -1 }, { 3859, 1481, -1 }, { 3860, 1481, -1 }, { 3861, 1481, -1 }, { 3862, 1481, -1 }, { 3863, 1481, -1 }, { 3864, 1481, -1 }, { 3865, 1481, -1 }, { 3852, 1503, -1 }, { 3853, 1503, -1 }, { 3854, 1503, -1 }, { 3855, 1503, -1 }, { 3856, 1503, -1 }, { 3857, 1503, -1 }, { 3858, 1503, -1 }, { 3859, 1503, -1 }, { 3860, 1503, -1 }, { 3861, 1503, -1 }, { 3862, 1503, -1 }, { 3863, 1503, -1 }, { 3864, 1503, -1 }, { 3865, 1503, -1 }, { 3852, 1507, -1 }, { 3854, 1507, -1 }, { 3855, 1507, -1 }, { 3856, 1507, -1 }, { 3857, 1507, -1 }, { 3858, 1507, -1 }, { 3859, 1507, -1 }, { 3860, 1507, -1 }, { 3861, 1507, -1 }, { 3862, 1507, -1 }, { 3863, 1507, -1 }, { 3864, 1507, -1 }, { 3865, 1507, -1 }, { 3852, 1511, -1 }, { 3853, 1511, -1 }, { 3854, 1511, -1 }, { 3855, 1511, -1 }, { 3856, 1511, -1 }, { 3857, 1511, -1 }, { 3858, 1511, -1 }, { 3859, 1511, -1 }, { 3860, 1511, -1 }, { 3861, 1511, -1 }, { 3862, 1511, -1 }, { 3863, 1511, -1 }, { 3864, 1511, -1 }, { 3865, 1511, -1 }, { 3886, 1775, -1 }, { 3887, 1775, -1 }, { 3888, 1775, -1 }, { 3889, 1775, -1 }, { 3890, 1775, -1 }, { 3891, 1775, -1 }, { 3886, 1982, -1 }, { 3887, 1982, -1 }, { 3888, 1982, -1 }, { 3889, 1982, -1 }, { 3890, 1982, -1 }, { 3891, 1982, -1 }, { 3886, 575, -1 }, { 3887, 575, -1 }, { 3888, 575, -1 }, { 3889, 575, -1 }, { 3890, 575, -1 }, { 3891, 575, -1 }, { 3886, 1061, -1 }, { 3887, 1061, -1 }, { 3888, 1061, -1 }, { 3889, 1061, -1 }, { 3890, 1061, -1 }, { 3891, 1061, -1 }, { 3886, 1040, -1 }, { 3887, 1040, -1 }, { 3888, 1040, -1 }, { 3889, 1040, -1 }, { 3890, 1040, -1 }, { 3891, 1040, -1 }, { 3886, 984, -1 }, { 3887, 984, -1 }, { 3888, 984, -1 }, { 3889, 984, -1 }, { 3890, 984, -1 }, { 3891, 984, -1 }, { 3886, 97, -1 }, { 3887, 97, -1 }, { 3888, 97, -1 }, { 3889, 97, -1 }, { 3890, 97, -1 }, { 3891, 97, -1 }, { 3886, 1329, -1 }, { 3887, 1329, -1 }, { 3888, 1329, -1 }, { 3889, 1329, -1 }, { 3890, 1329, -1 }, { 3891, 1329, -1 }, { 3886, 190, -1 }, { 3887, 190, -1 }, { 3888, 190, -1 }, { 3889, 190, -1 }, { 3890, 190, -1 }, { 3891, 190, -1 }, { 3886, 1352, -1 }, { 3887, 1352, -1 }, { 3888, 1352, -1 }, { 3889, 1352, -1 }, { 3890, 1352, -1 }, { 3891, 1352, -1 }, { 3886, 1595, -1 }, { 3887, 1595, -1 }, { 3888, 1595, -1 }, { 3889, 1595, -1 }, { 3890, 1595, -1 }, { 3891, 1595, -1 }, { 3886, 1598, -1 }, { 3887, 1598, -1 }, { 3888, 1598, -1 }, { 3889, 1598, -1 }, { 3890, 1598, -1 }, { 3891, 1598, -1 }, { 3886, 1694, -1 }, { 3887, 1694, -1 }, { 3888, 1694, -1 }, { 3889, 1694, -1 }, { 3890, 1694, -1 }, { 3891, 1694, -1 }, { 3886, 807, -1 }, { 3887, 807, -1 }, { 3888, 807, -1 }, { 3889, 807, -1 }, { 3890, 807, -1 }, { 3891, 807, -1 }, { 3886, 687, -1 }, { 3887, 687, -1 }, { 3888, 687, -1 }, { 3889, 687, -1 }, { 3890, 687, -1 }, { 3891, 687, -1 }, { 3886, 692, -1 }, { 3887, 692, -1 }, { 3888, 692, -1 }, { 3889, 692, -1 }, { 3890, 692, -1 }, { 3891, 692, -1 }, { 3886, 1081, -1 }, { 3887, 1081, -1 }, { 3888, 1081, -1 }, { 3889, 1081, -1 }, { 3890, 1081, -1 }, { 3891, 1081, -1 }, { 3886, 977, -1 }, { 3887, 977, -1 }, { 3888, 977, -1 }, { 3889, 977, -1 }, { 3890, 977, -1 }, { 3891, 977, -1 }, { 3886, 139, -1 }, { 3887, 139, -1 }, { 3888, 139, -1 }, { 3889, 139, -1 }, { 3890, 139, -1 }, { 3891, 139, -1 }, { 3886, 169, -1 }, { 3887, 169, -1 }, { 3888, 169, -1 }, { 3889, 169, -1 }, { 3890, 169, -1 }, { 3891, 169, -1 }, { 3886, 854, -1 }, { 3887, 854, -1 }, { 3888, 854, -1 }, { 3889, 854, -1 }, { 3890, 854, -1 }, { 3891, 854, -1 }, { 3886, 182, -1 }, { 3887, 182, -1 }, { 3888, 182, -1 }, { 3889, 182, -1 }, { 3890, 182, -1 }, { 3891, 182, -1 }, { 3886, 896, -1 }, { 3887, 896, -1 }, { 3888, 896, -1 }, { 3889, 896, -1 }, { 3890, 896, -1 }, { 3891, 896, -1 }, { 3886, 698, -1 }, { 3887, 698, -1 }, { 3888, 698, -1 }, { 3889, 698, -1 }, { 3890, 698, -1 }, { 3891, 698, -1 }, { 3886, 298, -1 }, { 3887, 298, -1 }, { 3888, 298, -1 }, { 3889, 298, -1 }, { 3890, 298, -1 }, { 3891, 298, -1 }, { 3886, 278, -1 }, { 3887, 278, -1 }, { 3888, 278, -1 }, { 3889, 278, -1 }, { 3890, 278, -1 }, { 3891, 278, -1 }, { 3886, 1567, -1 }, { 3887, 1567, -1 }, { 3888, 1567, -1 }, { 3889, 1567, -1 }, { 3890, 1567, -1 }, { 3891, 1567, -1 }, { 3886, 1340, -1 }, { 3887, 1340, -1 }, { 3888, 1340, -1 }, { 3889, 1340, -1 }, { 3890, 1340, -1 }, { 3891, 1340, -1 }, { 3886, 883, -1 }, { 3887, 883, -1 }, { 3888, 883, -1 }, { 3889, 883, -1 }, { 3890, 883, -1 }, { 3891, 883, -1 }, { 3886, 1607, -1 }, { 3887, 1607, -1 }, { 3888, 1607, -1 }, { 3889, 1607, -1 }, { 3890, 1607, -1 }, { 3891, 1607, -1 }, { 3886, 288, -1 }, { 3887, 288, -1 }, { 3888, 288, -1 }, { 3889, 288, -1 }, { 3890, 288, -1 }, { 3891, 288, -1 }, { 3886, 1949, -1 }, { 3887, 1949, -1 }, { 3888, 1949, -1 }, { 3889, 1949, -1 }, { 3890, 1949, -1 }, { 3891, 1949, -1 }, { 3886, 1822, -1 }, { 3887, 1822, -1 }, { 3888, 1822, -1 }, { 3889, 1822, -1 }, { 3890, 1822, -1 }, { 3891, 1822, -1 }, { 3886, 1995, -1 }, { 3887, 1995, -1 }, { 3890, 1995, -1 }, { 3891, 1995, -1 }, { 3886, 1496, -1 }, { 3887, 1496, -1 }, { 3888, 1496, -1 }, { 3889, 1496, -1 }, { 3890, 1496, -1 }, { 3891, 1496, -1 }, { 3886, 1493, -1 }, { 3887, 1493, -1 }, { 3888, 1493, -1 }, { 3889, 1493, -1 }, { 3890, 1493, -1 }, { 3891, 1493, -1 }, { 3886, 1489, -1 }, { 3887, 1489, -1 }, { 3888, 1489, -1 }, { 3889, 1489, -1 }, { 3890, 1489, -1 }, { 3891, 1489, -1 }, { 3886, 1359, -1 }, { 3887, 1359, -1 }, { 3888, 1359, -1 }, { 3889, 1359, -1 }, { 3890, 1359, -1 }, { 3891, 1359, -1 }, { 3886, 1297, -1 }, { 3887, 1297, -1 }, { 3888, 1297, -1 }, { 3889, 1297, -1 }, { 3890, 1297, -1 }, { 3891, 1297, -1 }, { 3886, 1306, -1 }, { 3887, 1306, -1 }, { 3888, 1306, -1 }, { 3889, 1306, -1 }, { 3890, 1306, -1 }, { 3891, 1306, -1 }, { 3886, 905, -1 }, { 3887, 905, -1 }, { 3888, 905, -1 }, { 3889, 905, -1 }, { 3890, 905, -1 }, { 3891, 905, -1 }, { 3886, 1796, -1 }, { 3887, 1796, -1 }, { 3888, 1796, -1 }, { 3889, 1796, -1 }, { 3890, 1796, -1 }, { 3891, 1796, -1 }, { 3886, 1659, -1 }, { 3887, 1659, -1 }, { 3888, 1659, -1 }, { 3889, 1659, -1 }, { 3890, 1659, -1 }, { 3891, 1659, -1 }, { 3886, 1525, -1 }, { 3887, 1525, -1 }, { 3888, 1525, -1 }, { 3889, 1525, -1 }, { 3890, 1525, -1 }, { 3891, 1525, -1 }, { 3886, 1481, -1 }, { 3887, 1481, -1 }, { 3888, 1481, -1 }, { 3889, 1481, -1 }, { 3890, 1481, -1 }, { 3891, 1481, -1 }, { 3886, 1503, -1 }, { 3887, 1503, -1 }, { 3888, 1503, -1 }, { 3889, 1503, -1 }, { 3890, 1503, -1 }, { 3891, 1503, -1 }, { 3886, 1507, -1 }, { 3887, 1507, -1 }, { 3888, 1507, -1 }, { 3889, 1507, -1 }, { 3890, 1507, -1 }, { 3891, 1507, -1 }, { 3886, 1511, -1 }, { 3887, 1511, -1 }, { 3888, 1511, -1 }, { 3889, 1511, -1 }, { 3890, 1511, -1 }, { 3891, 1511, -1 }, { 3872, 1775, -1 }, { 3873, 1775, -1 }, { 3874, 1775, -1 }, { 3875, 1775, -1 }, { 3876, 1775, -1 }, { 3877, 1775, -1 }, { 3878, 1775, -1 }, { 3879, 1775, -1 }, { 3880, 1775, -1 }, { 3881, 1775, -1 }, { 3882, 1775, -1 }, { 3883, 1775, -1 }, { 3884, 1775, -1 }, { 3885, 1775, -1 }, { 3872, 1982, -1 }, { 3873, 1982, -1 }, { 3874, 1982, -1 }, { 3875, 1982, -1 }, { 3876, 1982, -1 }, { 3877, 1982, -1 }, { 3878, 1982, -1 }, { 3879, 1982, -1 }, { 3880, 1982, -1 }, { 3881, 1982, -1 }, { 3882, 1982, -1 }, { 3883, 1982, -1 }, { 3884, 1982, -1 }, { 3885, 1982, -1 }, { 3872, 575, -1 }, { 3873, 575, -1 }, { 3874, 575, -1 }, { 3875, 575, -1 }, { 3876, 575, -1 }, { 3877, 575, -1 }, { 3878, 575, -1 }, { 3879, 575, -1 }, { 3880, 575, -1 }, { 3881, 575, -1 }, { 3882, 575, -1 }, { 3883, 575, -1 }, { 3884, 575, -1 }, { 3885, 575, -1 }, { 3872, 1061, -1 }, { 3873, 1061, -1 }, { 3874, 1061, -1 }, { 3875, 1061, -1 }, { 3876, 1061, -1 }, { 3877, 1061, -1 }, { 3878, 1061, -1 }, { 3879, 1061, -1 }, { 3880, 1061, -1 }, { 3881, 1061, -1 }, { 3882, 1061, -1 }, { 3883, 1061, -1 }, { 3884, 1061, -1 }, { 3885, 1061, -1 }, { 3872, 1040, -1 }, { 3873, 1040, -1 }, { 3874, 1040, -1 }, { 3875, 1040, -1 }, { 3876, 1040, -1 }, { 3877, 1040, -1 }, { 3878, 1040, -1 }, { 3879, 1040, -1 }, { 3880, 1040, -1 }, { 3881, 1040, -1 }, { 3882, 1040, -1 }, { 3883, 1040, -1 }, { 3884, 1040, -1 }, { 3885, 1040, -1 }, { 3872, 984, -1 }, { 3873, 984, -1 }, { 3874, 984, -1 }, { 3875, 984, -1 }, { 3876, 984, -1 }, { 3877, 984, -1 }, { 3878, 984, -1 }, { 3879, 984, -1 }, { 3880, 984, -1 }, { 3881, 984, -1 }, { 3882, 984, -1 }, { 3883, 984, -1 }, { 3884, 984, -1 }, { 3885, 984, -1 }, { 3872, 97, -1 }, { 3873, 97, -1 }, { 3874, 97, -1 }, { 3875, 97, -1 }, { 3876, 97, -1 }, { 3877, 97, -1 }, { 3878, 97, -1 }, { 3879, 97, -1 }, { 3880, 97, -1 }, { 3881, 97, -1 }, { 3882, 97, -1 }, { 3883, 97, -1 }, { 3884, 97, -1 }, { 3885, 97, -1 }, { 3872, 1329, -1 }, { 3873, 1329, -1 }, { 3874, 1329, -1 }, { 3875, 1329, -1 }, { 3876, 1329, -1 }, { 3877, 1329, -1 }, { 3878, 1329, -1 }, { 3879, 1329, -1 }, { 3880, 1329, -1 }, { 3881, 1329, -1 }, { 3882, 1329, -1 }, { 3883, 1329, -1 }, { 3884, 1329, -1 }, { 3885, 1329, -1 }, { 3872, 190, -1 }, { 3873, 190, -1 }, { 3874, 190, -1 }, { 3875, 190, -1 }, { 3876, 190, -1 }, { 3877, 190, -1 }, { 3878, 190, -1 }, { 3879, 190, -1 }, { 3880, 190, -1 }, { 3881, 190, -1 }, { 3882, 190, -1 }, { 3883, 190, -1 }, { 3884, 190, -1 }, { 3885, 190, -1 }, { 3872, 1352, -1 }, { 3873, 1352, -1 }, { 3874, 1352, -1 }, { 3875, 1352, -1 }, { 3876, 1352, -1 }, { 3877, 1352, -1 }, { 3878, 1352, -1 }, { 3879, 1352, -1 }, { 3880, 1352, -1 }, { 3881, 1352, -1 }, { 3882, 1352, -1 }, { 3883, 1352, -1 }, { 3884, 1352, -1 }, { 3885, 1352, -1 }, { 3872, 1595, -1 }, { 3873, 1595, -1 }, { 3874, 1595, -1 }, { 3875, 1595, -1 }, { 3876, 1595, -1 }, { 3877, 1595, -1 }, { 3878, 1595, -1 }, { 3879, 1595, -1 }, { 3880, 1595, -1 }, { 3881, 1595, -1 }, { 3882, 1595, -1 }, { 3883, 1595, -1 }, { 3884, 1595, -1 }, { 3885, 1595, -1 }, { 3872, 1598, -1 }, { 3873, 1598, -1 }, { 3874, 1598, -1 }, { 3875, 1598, -1 }, { 3876, 1598, -1 }, { 3877, 1598, -1 }, { 3878, 1598, -1 }, { 3879, 1598, -1 }, { 3880, 1598, -1 }, { 3881, 1598, -1 }, { 3882, 1598, -1 }, { 3883, 1598, -1 }, { 3884, 1598, -1 }, { 3885, 1598, -1 }, { 3872, 1694, -1 }, { 3873, 1694, -1 }, { 3874, 1694, -1 }, { 3875, 1694, -1 }, { 3876, 1694, -1 }, { 3877, 1694, -1 }, { 3878, 1694, -1 }, { 3879, 1694, -1 }, { 3880, 1694, -1 }, { 3881, 1694, -1 }, { 3882, 1694, -1 }, { 3883, 1694, -1 }, { 3884, 1694, -1 }, { 3885, 1694, -1 }, { 3872, 807, -1 }, { 3873, 807, -1 }, { 3874, 807, -1 }, { 3875, 807, -1 }, { 3876, 807, -1 }, { 3877, 807, -1 }, { 3878, 807, -1 }, { 3879, 807, -1 }, { 3880, 807, -1 }, { 3881, 807, -1 }, { 3882, 807, -1 }, { 3883, 807, -1 }, { 3884, 807, -1 }, { 3885, 807, -1 }, { 3872, 687, -1 }, { 3873, 687, -1 }, { 3874, 687, -1 }, { 3875, 687, -1 }, { 3876, 687, -1 }, { 3877, 687, -1 }, { 3878, 687, -1 }, { 3879, 687, -1 }, { 3880, 687, -1 }, { 3881, 687, -1 }, { 3882, 687, -1 }, { 3883, 687, -1 }, { 3884, 687, -1 }, { 3885, 687, -1 }, { 3872, 692, -1 }, { 3873, 692, -1 }, { 3874, 692, -1 }, { 3875, 692, -1 }, { 3876, 692, -1 }, { 3877, 692, -1 }, { 3878, 692, -1 }, { 3879, 692, -1 }, { 3880, 692, -1 }, { 3881, 692, -1 }, { 3882, 692, -1 }, { 3883, 692, -1 }, { 3884, 692, -1 }, { 3885, 692, -1 }, { 3872, 1081, -1 }, { 3873, 1081, -1 }, { 3874, 1081, -1 }, { 3875, 1081, -1 }, { 3876, 1081, -1 }, { 3877, 1081, -1 }, { 3878, 1081, -1 }, { 3879, 1081, -1 }, { 3880, 1081, -1 }, { 3881, 1081, -1 }, { 3882, 1081, -1 }, { 3883, 1081, -1 }, { 3884, 1081, -1 }, { 3885, 1081, -1 }, { 3872, 977, -1 }, { 3873, 977, -1 }, { 3874, 977, -1 }, { 3875, 977, -1 }, { 3876, 977, -1 }, { 3877, 977, -1 }, { 3878, 977, -1 }, { 3879, 977, -1 }, { 3880, 977, -1 }, { 3881, 977, -1 }, { 3882, 977, -1 }, { 3883, 977, -1 }, { 3884, 977, -1 }, { 3885, 977, -1 }, { 3872, 139, -1 }, { 3873, 139, -1 }, { 3874, 139, -1 }, { 3875, 139, -1 }, { 3876, 139, -1 }, { 3877, 139, -1 }, { 3878, 139, -1 }, { 3879, 139, -1 }, { 3880, 139, -1 }, { 3881, 139, -1 }, { 3882, 139, -1 }, { 3883, 139, -1 }, { 3884, 139, -1 }, { 3885, 139, -1 }, { 3872, 169, -1 }, { 3873, 169, -1 }, { 3874, 169, -1 }, { 3875, 169, -1 }, { 3876, 169, -1 }, { 3877, 169, -1 }, { 3878, 169, -1 }, { 3879, 169, -1 }, { 3880, 169, -1 }, { 3881, 169, -1 }, { 3882, 169, -1 }, { 3883, 169, -1 }, { 3884, 169, -1 }, { 3885, 169, -1 }, { 3872, 854, -1 }, { 3873, 854, -1 }, { 3874, 854, -1 }, { 3875, 854, -1 }, { 3876, 854, -1 }, { 3877, 854, -1 }, { 3878, 854, -1 }, { 3879, 854, -1 }, { 3880, 854, -1 }, { 3881, 854, -1 }, { 3882, 854, -1 }, { 3883, 854, -1 }, { 3884, 854, -1 }, { 3885, 854, -1 }, { 3872, 182, -1 }, { 3873, 182, -1 }, { 3874, 182, -1 }, { 3875, 182, -1 }, { 3876, 182, -1 }, { 3877, 182, -1 }, { 3878, 182, -1 }, { 3879, 182, -1 }, { 3880, 182, -1 }, { 3881, 182, -1 }, { 3882, 182, -1 }, { 3883, 182, -1 }, { 3884, 182, -1 }, { 3885, 182, -1 }, { 3872, 896, -1 }, { 3873, 896, -1 }, { 3874, 896, -1 }, { 3875, 896, -1 }, { 3876, 896, -1 }, { 3877, 896, -1 }, { 3878, 896, -1 }, { 3879, 896, -1 }, { 3880, 896, -1 }, { 3881, 896, -1 }, { 3882, 896, -1 }, { 3883, 896, -1 }, { 3884, 896, -1 }, { 3885, 896, -1 }, { 3872, 698, -1 }, { 3873, 698, -1 }, { 3874, 698, -1 }, { 3875, 698, -1 }, { 3876, 698, -1 }, { 3877, 698, -1 }, { 3878, 698, -1 }, { 3879, 698, -1 }, { 3880, 698, -1 }, { 3881, 698, -1 }, { 3882, 698, -1 }, { 3883, 698, -1 }, { 3884, 698, -1 }, { 3885, 698, -1 }, { 3872, 298, -1 }, { 3873, 298, -1 }, { 3874, 298, -1 }, { 3875, 298, -1 }, { 3876, 298, -1 }, { 3877, 298, -1 }, { 3878, 298, -1 }, { 3879, 298, -1 }, { 3880, 298, -1 }, { 3881, 298, -1 }, { 3882, 298, -1 }, { 3883, 298, -1 }, { 3884, 298, -1 }, { 3885, 298, -1 }, { 3872, 278, -1 }, { 3873, 278, -1 }, { 3874, 278, -1 }, { 3875, 278, -1 }, { 3876, 278, -1 }, { 3877, 278, -1 }, { 3878, 278, -1 }, { 3879, 278, -1 }, { 3880, 278, -1 }, { 3881, 278, -1 }, { 3882, 278, -1 }, { 3883, 278, -1 }, { 3884, 278, -1 }, { 3885, 278, -1 }, { 3872, 1567, -1 }, { 3873, 1567, -1 }, { 3874, 1567, -1 }, { 3875, 1567, -1 }, { 3876, 1567, -1 }, { 3877, 1567, -1 }, { 3878, 1567, -1 }, { 3879, 1567, -1 }, { 3880, 1567, -1 }, { 3881, 1567, -1 }, { 3882, 1567, -1 }, { 3883, 1567, -1 }, { 3884, 1567, -1 }, { 3885, 1567, -1 }, { 3872, 1340, -1 }, { 3873, 1340, -1 }, { 3874, 1340, -1 }, { 3875, 1340, -1 }, { 3876, 1340, -1 }, { 3877, 1340, -1 }, { 3878, 1340, -1 }, { 3879, 1340, -1 }, { 3880, 1340, -1 }, { 3881, 1340, -1 }, { 3882, 1340, -1 }, { 3883, 1340, -1 }, { 3884, 1340, -1 }, { 3885, 1340, -1 }, { 3872, 883, -1 }, { 3873, 883, -1 }, { 3874, 883, -1 }, { 3875, 883, -1 }, { 3876, 883, -1 }, { 3877, 883, -1 }, { 3878, 883, -1 }, { 3879, 883, -1 }, { 3880, 883, -1 }, { 3881, 883, -1 }, { 3882, 883, -1 }, { 3883, 883, -1 }, { 3884, 883, -1 }, { 3885, 883, -1 }, { 3872, 1607, -1 }, { 3873, 1607, -1 }, { 3874, 1607, -1 }, { 3875, 1607, -1 }, { 3876, 1607, -1 }, { 3877, 1607, -1 }, { 3878, 1607, -1 }, { 3879, 1607, -1 }, { 3880, 1607, -1 }, { 3881, 1607, -1 }, { 3882, 1607, -1 }, { 3883, 1607, -1 }, { 3884, 1607, -1 }, { 3885, 1607, -1 }, { 3872, 288, -1 }, { 3873, 288, -1 }, { 3874, 288, -1 }, { 3875, 288, -1 }, { 3876, 288, -1 }, { 3877, 288, -1 }, { 3878, 288, -1 }, { 3879, 288, -1 }, { 3880, 288, -1 }, { 3881, 288, -1 }, { 3882, 288, -1 }, { 3883, 288, -1 }, { 3884, 288, -1 }, { 3885, 288, -1 }, { 3872, 1949, -1 }, { 3873, 1949, -1 }, { 3874, 1949, -1 }, { 3875, 1949, -1 }, { 3876, 1949, -1 }, { 3877, 1949, -1 }, { 3878, 1949, -1 }, { 3879, 1949, -1 }, { 3880, 1949, -1 }, { 3881, 1949, -1 }, { 3882, 1949, -1 }, { 3883, 1949, -1 }, { 3884, 1949, -1 }, { 3885, 1949, -1 }, { 3872, 1822, -1 }, { 3873, 1822, -1 }, { 3874, 1822, -1 }, { 3875, 1822, -1 }, { 3876, 1822, -1 }, { 3877, 1822, -1 }, { 3878, 1822, -1 }, { 3879, 1822, -1 }, { 3880, 1822, -1 }, { 3881, 1822, -1 }, { 3882, 1822, -1 }, { 3883, 1822, -1 }, { 3884, 1822, -1 }, { 3885, 1822, -1 }, { 3872, 1995, -1 }, { 3876, 1995, -1 }, { 3877, 1995, -1 }, { 3878, 1995, -1 }, { 3879, 1995, -1 }, { 3880, 1995, -1 }, { 3881, 1995, -1 }, { 3882, 1995, -1 }, { 3883, 1995, -1 }, { 3884, 1995, -1 }, { 3885, 1995, -1 }, { 3872, 1496, -1 }, { 3873, 1496, -1 }, { 3874, 1496, -1 }, { 3875, 1496, -1 }, { 3876, 1496, -1 }, { 3877, 1496, -1 }, { 3878, 1496, -1 }, { 3879, 1496, -1 }, { 3880, 1496, -1 }, { 3881, 1496, -1 }, { 3882, 1496, -1 }, { 3883, 1496, -1 }, { 3884, 1496, -1 }, { 3885, 1496, -1 }, { 3872, 1493, -1 }, { 3873, 1493, -1 }, { 3874, 1493, -1 }, { 3875, 1493, -1 }, { 3876, 1493, -1 }, { 3877, 1493, -1 }, { 3878, 1493, -1 }, { 3879, 1493, -1 }, { 3880, 1493, -1 }, { 3881, 1493, -1 }, { 3882, 1493, -1 }, { 3883, 1493, -1 }, { 3884, 1493, -1 }, { 3885, 1493, -1 }, { 3872, 1489, -1 }, { 3873, 1489, -1 }, { 3874, 1489, -1 }, { 3875, 1489, -1 }, { 3876, 1489, -1 }, { 3877, 1489, -1 }, { 3878, 1489, -1 }, { 3879, 1489, -1 }, { 3880, 1489, -1 }, { 3881, 1489, -1 }, { 3882, 1489, -1 }, { 3883, 1489, -1 }, { 3884, 1489, -1 }, { 3885, 1489, -1 }, { 3872, 1359, -1 }, { 3873, 1359, -1 }, { 3874, 1359, -1 }, { 3875, 1359, -1 }, { 3876, 1359, -1 }, { 3877, 1359, -1 }, { 3878, 1359, -1 }, { 3879, 1359, -1 }, { 3880, 1359, -1 }, { 3881, 1359, -1 }, { 3882, 1359, -1 }, { 3883, 1359, -1 }, { 3884, 1359, -1 }, { 3885, 1359, -1 }, { 3872, 1297, -1 }, { 3873, 1297, -1 }, { 3874, 1297, -1 }, { 3875, 1297, -1 }, { 3876, 1297, -1 }, { 3877, 1297, -1 }, { 3878, 1297, -1 }, { 3879, 1297, -1 }, { 3880, 1297, -1 }, { 3881, 1297, -1 }, { 3882, 1297, -1 }, { 3883, 1297, -1 }, { 3884, 1297, -1 }, { 3885, 1297, -1 }, { 3872, 1306, -1 }, { 3873, 1306, -1 }, { 3874, 1306, -1 }, { 3875, 1306, -1 }, { 3876, 1306, -1 }, { 3877, 1306, -1 }, { 3878, 1306, -1 }, { 3879, 1306, -1 }, { 3880, 1306, -1 }, { 3881, 1306, -1 }, { 3882, 1306, -1 }, { 3883, 1306, -1 }, { 3884, 1306, -1 }, { 3885, 1306, -1 }, { 3872, 905, -1 }, { 3873, 905, -1 }, { 3874, 905, -1 }, { 3875, 905, -1 }, { 3876, 905, -1 }, { 3877, 905, -1 }, { 3878, 905, -1 }, { 3879, 905, -1 }, { 3880, 905, -1 }, { 3881, 905, -1 }, { 3882, 905, -1 }, { 3883, 905, -1 }, { 3884, 905, -1 }, { 3885, 905, -1 }, { 3872, 1796, -1 }, { 3873, 1796, -1 }, { 3874, 1796, -1 }, { 3875, 1796, -1 }, { 3876, 1796, -1 }, { 3877, 1796, -1 }, { 3878, 1796, -1 }, { 3879, 1796, -1 }, { 3880, 1796, -1 }, { 3881, 1796, -1 }, { 3882, 1796, -1 }, { 3883, 1796, -1 }, { 3884, 1796, -1 }, { 3885, 1796, -1 }, { 3872, 1659, -1 }, { 3873, 1659, -1 }, { 3874, 1659, -1 }, { 3875, 1659, -1 }, { 3876, 1659, -1 }, { 3877, 1659, -1 }, { 3878, 1659, -1 }, { 3879, 1659, -1 }, { 3880, 1659, -1 }, { 3881, 1659, -1 }, { 3882, 1659, -1 }, { 3883, 1659, -1 }, { 3884, 1659, -1 }, { 3885, 1659, -1 }, { 3872, 1525, -1 }, { 3873, 1525, -1 }, { 3874, 1525, -1 }, { 3875, 1525, -1 }, { 3876, 1525, -1 }, { 3877, 1525, -1 }, { 3878, 1525, -1 }, { 3879, 1525, -1 }, { 3880, 1525, -1 }, { 3881, 1525, -1 }, { 3882, 1525, -1 }, { 3883, 1525, -1 }, { 3884, 1525, -1 }, { 3885, 1525, -1 }, { 3872, 1481, -1 }, { 3873, 1481, -1 }, { 3874, 1481, -1 }, { 3875, 1481, -1 }, { 3876, 1481, -1 }, { 3877, 1481, -1 }, { 3878, 1481, -1 }, { 3879, 1481, -1 }, { 3880, 1481, -1 }, { 3881, 1481, -1 }, { 3882, 1481, -1 }, { 3883, 1481, -1 }, { 3884, 1481, -1 }, { 3885, 1481, -1 }, { 3872, 1503, -1 }, { 3873, 1503, -1 }, { 3874, 1503, -1 }, { 3875, 1503, -1 }, { 3876, 1503, -1 }, { 3877, 1503, -1 }, { 3878, 1503, -1 }, { 3879, 1503, -1 }, { 3880, 1503, -1 }, { 3881, 1503, -1 }, { 3882, 1503, -1 }, { 3883, 1503, -1 }, { 3884, 1503, -1 }, { 3885, 1503, -1 }, { 3872, 1507, -1 }, { 3873, 1507, -1 }, { 3874, 1507, -1 }, { 3875, 1507, -1 }, { 3876, 1507, -1 }, { 3877, 1507, -1 }, { 3878, 1507, -1 }, { 3879, 1507, -1 }, { 3880, 1507, -1 }, { 3881, 1507, -1 }, { 3882, 1507, -1 }, { 3883, 1507, -1 }, { 3884, 1507, -1 }, { 3885, 1507, -1 }, { 3872, 1511, -1 }, { 3873, 1511, -1 }, { 3874, 1511, -1 }, { 3875, 1511, -1 }, { 3876, 1511, -1 }, { 3877, 1511, -1 }, { 3878, 1511, -1 }, { 3879, 1511, -1 }, { 3880, 1511, -1 }, { 3881, 1511, -1 }, { 3882, 1511, -1 }, { 3883, 1511, -1 }, { 3884, 1511, -1 }, { 3885, 1511, -1 }, { 3792, 1775, -1 }, { 3793, 1775, -1 }, { 3794, 1775, -1 }, { 3795, 1775, -1 }, { 3796, 1775, -1 }, { 3797, 1775, -1 }, { 3798, 1775, -1 }, { 3800, 1775, -1 }, { 3801, 1775, -1 }, { 3802, 1775, -1 }, { 3803, 1775, -1 }, { 3804, 1775, -1 }, { 3806, 1775, -1 }, { 3808, 1775, -1 }, { 3809, 1775, -1 }, { 3810, 1775, -1 }, { 3811, 1775, -1 }, { 3812, 1775, -1 }, { 3813, 1775, -1 }, { 3814, 1775, -1 }, { 3815, 1775, -1 }, { 3816, 1775, -1 }, { 3817, 1775, -1 }, { 3818, 1775, -1 }, { 3819, 1775, -1 }, { 3820, 1775, -1 }, { 3821, 1775, -1 }, { 3822, 1775, -1 }, { 3823, 1775, -1 }, { 3824, 1775, -1 }, { 3825, 1775, -1 }, { 3826, 1775, -1 }, { 3827, 1775, -1 }, { 3828, 1775, -1 }, { 3829, 1775, -1 }, { 3830, 1775, -1 }, { 3831, 1775, -1 }, { 3832, 1775, -1 }, { 3833, 1775, -1 }, { 3834, 1775, -1 }, { 3835, 1775, -1 }, { 3836, 1775, -1 }, { 3837, 1775, -1 }, { 3838, 1775, -1 }, { 3839, 1775, -1 }, { 3840, 1775, -1 }, { 3841, 1775, -1 }, { 3842, 1775, -1 }, { 3791, 1982, -1 }, { 3792, 1982, -1 }, { 3793, 1982, -1 }, { 3794, 1982, -1 }, { 3795, 1982, -1 }, { 3796, 1982, -1 }, { 3797, 1982, -1 }, { 3798, 1982, -1 }, { 3799, 1982, -1 }, { 3800, 1982, -1 }, { 3801, 1982, -1 }, { 3802, 1982, -1 }, { 3803, 1982, -1 }, { 3804, 1982, -1 }, { 3805, 1982, -1 }, { 3806, 1982, -1 }, { 3807, 1982, -1 }, { 3808, 1982, -1 }, { 3809, 1982, -1 }, { 3810, 1982, -1 }, { 3811, 1982, -1 }, { 3812, 1982, -1 }, { 3813, 1982, -1 }, { 3814, 1982, -1 }, { 3815, 1982, -1 }, { 3816, 1982, -1 }, { 3817, 1982, -1 }, { 3818, 1982, -1 }, { 3819, 1982, -1 }, { 3820, 1982, -1 }, { 3821, 1982, -1 }, { 3822, 1982, -1 }, { 3823, 1982, -1 }, { 3824, 1982, -1 }, { 3825, 1982, -1 }, { 3826, 1982, -1 }, { 3827, 1982, -1 }, { 3828, 1982, -1 }, { 3829, 1982, -1 }, { 3830, 1982, -1 }, { 3831, 1982, -1 }, { 3832, 1982, -1 }, { 3833, 1982, -1 }, { 3834, 1982, -1 }, { 3835, 1982, -1 }, { 3836, 1982, -1 }, { 3837, 1982, -1 }, { 3838, 1982, -1 }, { 3839, 1982, -1 }, { 3840, 1982, -1 }, { 3841, 1982, -1 }, { 3842, 1982, -1 }, { 3791, 575, -1 }, { 3792, 575, -1 }, { 3793, 575, -1 }, { 3794, 575, -1 }, { 3795, 575, -1 }, { 3796, 575, -1 }, { 3797, 575, -1 }, { 3798, 575, -1 }, { 3799, 575, -1 }, { 3800, 575, -1 }, { 3801, 575, -1 }, { 3802, 575, -1 }, { 3803, 575, -1 }, { 3804, 575, -1 }, { 3806, 575, -1 }, { 3807, 575, -1 }, { 3808, 575, -1 }, { 3809, 575, -1 }, { 3810, 575, -1 }, { 3811, 575, -1 }, { 3813, 575, -1 }, { 3814, 575, -1 }, { 3815, 575, -1 }, { 3816, 575, -1 }, { 3817, 575, -1 }, { 3818, 575, -1 }, { 3819, 575, -1 }, { 3820, 575, -1 }, { 3821, 575, -1 }, { 3822, 575, -1 }, { 3823, 575, -1 }, { 3824, 575, -1 }, { 3825, 575, -1 }, { 3826, 575, -1 }, { 3827, 575, -1 }, { 3828, 575, -1 }, { 3829, 575, -1 }, { 3830, 575, -1 }, { 3831, 575, -1 }, { 3832, 575, -1 }, { 3833, 575, -1 }, { 3834, 575, -1 }, { 3835, 575, -1 }, { 3836, 575, -1 }, { 3837, 575, -1 }, { 3838, 575, -1 }, { 3839, 575, -1 }, { 3840, 575, -1 }, { 3841, 575, -1 }, { 3842, 575, -1 }, { 3791, 1061, -1 }, { 3792, 1061, -1 }, { 3793, 1061, -1 }, { 3794, 1061, -1 }, { 3795, 1061, -1 }, { 3796, 1061, -1 }, { 3797, 1061, -1 }, { 3798, 1061, -1 }, { 3799, 1061, -1 }, { 3800, 1061, -1 }, { 3801, 1061, -1 }, { 3802, 1061, -1 }, { 3803, 1061, -1 }, { 3804, 1061, -1 }, { 3805, 1061, -1 }, { 3806, 1061, -1 }, { 3807, 1061, -1 }, { 3808, 1061, -1 }, { 3809, 1061, -1 }, { 3810, 1061, -1 }, { 3811, 1061, -1 }, { 3812, 1061, -1 }, { 3813, 1061, -1 }, { 3814, 1061, -1 }, { 3815, 1061, -1 }, { 3816, 1061, -1 }, { 3817, 1061, -1 }, { 3818, 1061, -1 }, { 3819, 1061, -1 }, { 3820, 1061, -1 }, { 3821, 1061, -1 }, { 3822, 1061, -1 }, { 3823, 1061, -1 }, { 3824, 1061, -1 }, { 3825, 1061, -1 }, { 3826, 1061, -1 }, { 3827, 1061, -1 }, { 3828, 1061, -1 }, { 3829, 1061, -1 }, { 3830, 1061, -1 }, { 3831, 1061, -1 }, { 3832, 1061, -1 }, { 3833, 1061, -1 }, { 3834, 1061, -1 }, { 3835, 1061, -1 }, { 3836, 1061, -1 }, { 3837, 1061, -1 }, { 3838, 1061, -1 }, { 3839, 1061, -1 }, { 3840, 1061, -1 }, { 3841, 1061, -1 }, { 3842, 1061, -1 }, { 3791, 1040, -1 }, { 3792, 1040, -1 }, { 3793, 1040, -1 }, { 3794, 1040, -1 }, { 3795, 1040, -1 }, { 3796, 1040, -1 }, { 3797, 1040, -1 }, { 3798, 1040, -1 }, { 3799, 1040, -1 }, { 3800, 1040, -1 }, { 3801, 1040, -1 }, { 3802, 1040, -1 }, { 3803, 1040, -1 }, { 3804, 1040, -1 }, { 3805, 1040, -1 }, { 3806, 1040, -1 }, { 3807, 1040, -1 }, { 3808, 1040, -1 }, { 3809, 1040, -1 }, { 3810, 1040, -1 }, { 3811, 1040, -1 }, { 3812, 1040, -1 }, { 3813, 1040, -1 }, { 3814, 1040, -1 }, { 3815, 1040, -1 }, { 3816, 1040, -1 }, { 3817, 1040, -1 }, { 3818, 1040, -1 }, { 3819, 1040, -1 }, { 3820, 1040, -1 }, { 3821, 1040, -1 }, { 3822, 1040, -1 }, { 3823, 1040, -1 }, { 3824, 1040, -1 }, { 3825, 1040, -1 }, { 3826, 1040, -1 }, { 3827, 1040, -1 }, { 3828, 1040, -1 }, { 3829, 1040, -1 }, { 3830, 1040, -1 }, { 3831, 1040, -1 }, { 3832, 1040, -1 }, { 3833, 1040, -1 }, { 3834, 1040, -1 }, { 3835, 1040, -1 }, { 3836, 1040, -1 }, { 3837, 1040, -1 }, { 3838, 1040, -1 }, { 3839, 1040, -1 }, { 3840, 1040, -1 }, { 3841, 1040, -1 }, { 3842, 1040, -1 }, { 3791, 984, -1 }, { 3792, 984, -1 }, { 3793, 984, -1 }, { 3794, 984, -1 }, { 3795, 984, -1 }, { 3796, 984, -1 }, { 3797, 984, -1 }, { 3798, 984, -1 }, { 3799, 984, -1 }, { 3800, 984, -1 }, { 3801, 984, -1 }, { 3802, 984, -1 }, { 3803, 984, -1 }, { 3804, 984, -1 }, { 3805, 984, -1 }, { 3806, 984, -1 }, { 3807, 984, -1 }, { 3808, 984, -1 }, { 3809, 984, -1 }, { 3810, 984, -1 }, { 3811, 984, -1 }, { 3812, 984, -1 }, { 3813, 984, -1 }, { 3814, 984, -1 }, { 3815, 984, -1 }, { 3816, 984, -1 }, { 3817, 984, -1 }, { 3818, 984, -1 }, { 3819, 984, -1 }, { 3820, 984, -1 }, { 3821, 984, -1 }, { 3822, 984, -1 }, { 3823, 984, -1 }, { 3824, 984, -1 }, { 3825, 984, -1 }, { 3826, 984, -1 }, { 3827, 984, -1 }, { 3828, 984, -1 }, { 3829, 984, -1 }, { 3830, 984, -1 }, { 3831, 984, -1 }, { 3832, 984, -1 }, { 3833, 984, -1 }, { 3834, 984, -1 }, { 3835, 984, -1 }, { 3836, 984, -1 }, { 3837, 984, -1 }, { 3838, 984, -1 }, { 3839, 984, -1 }, { 3840, 984, -1 }, { 3841, 984, -1 }, { 3842, 984, -1 }, { 3791, 97, -1 }, { 3792, 97, -1 }, { 3793, 97, -1 }, { 3794, 97, -1 }, { 3795, 97, -1 }, { 3796, 97, -1 }, { 3797, 97, -1 }, { 3798, 97, -1 }, { 3799, 97, -1 }, { 3800, 97, -1 }, { 3801, 97, -1 }, { 3802, 97, -1 }, { 3803, 97, -1 }, { 3804, 97, -1 }, { 3805, 97, -1 }, { 3806, 97, -1 }, { 3807, 97, -1 }, { 3808, 97, -1 }, { 3809, 97, -1 }, { 3810, 97, -1 }, { 3811, 97, -1 }, { 3812, 97, -1 }, { 3813, 97, -1 }, { 3814, 97, -1 }, { 3815, 97, -1 }, { 3816, 97, -1 }, { 3817, 97, -1 }, { 3818, 97, -1 }, { 3819, 97, -1 }, { 3820, 97, -1 }, { 3821, 97, -1 }, { 3822, 97, -1 }, { 3823, 97, -1 }, { 3824, 97, -1 }, { 3825, 97, -1 }, { 3826, 97, -1 }, { 3827, 97, -1 }, { 3828, 97, -1 }, { 3829, 97, -1 }, { 3830, 97, -1 }, { 3831, 97, -1 }, { 3832, 97, -1 }, { 3833, 97, -1 }, { 3834, 97, -1 }, { 3835, 97, -1 }, { 3836, 97, -1 }, { 3837, 97, -1 }, { 3838, 97, -1 }, { 3839, 97, -1 }, { 3840, 97, -1 }, { 3841, 97, -1 }, { 3842, 97, -1 }, { 3791, 1329, -1 }, { 3792, 1329, -1 }, { 3793, 1329, -1 }, { 3794, 1329, -1 }, { 3795, 1329, -1 }, { 3796, 1329, -1 }, { 3797, 1329, -1 }, { 3798, 1329, -1 }, { 3799, 1329, -1 }, { 3800, 1329, -1 }, { 3801, 1329, -1 }, { 3802, 1329, -1 }, { 3803, 1329, -1 }, { 3804, 1329, -1 }, { 3805, 1329, -1 }, { 3806, 1329, -1 }, { 3807, 1329, -1 }, { 3808, 1329, -1 }, { 3809, 1329, -1 }, { 3810, 1329, -1 }, { 3811, 1329, -1 }, { 3812, 1329, -1 }, { 3813, 1329, -1 }, { 3814, 1329, -1 }, { 3815, 1329, -1 }, { 3816, 1329, -1 }, { 3817, 1329, -1 }, { 3818, 1329, -1 }, { 3819, 1329, -1 }, { 3820, 1329, -1 }, { 3821, 1329, -1 }, { 3822, 1329, -1 }, { 3823, 1329, -1 }, { 3824, 1329, -1 }, { 3825, 1329, -1 }, { 3826, 1329, -1 }, { 3827, 1329, -1 }, { 3828, 1329, -1 }, { 3829, 1329, -1 }, { 3830, 1329, -1 }, { 3831, 1329, -1 }, { 3832, 1329, -1 }, { 3833, 1329, -1 }, { 3834, 1329, -1 }, { 3835, 1329, -1 }, { 3836, 1329, -1 }, { 3837, 1329, -1 }, { 3838, 1329, -1 }, { 3839, 1329, -1 }, { 3840, 1329, -1 }, { 3841, 1329, -1 }, { 3842, 1329, -1 }, { 3792, 190, -1 }, { 3793, 190, -1 }, { 3794, 190, -1 }, { 3795, 190, -1 }, { 3796, 190, -1 }, { 3797, 190, -1 }, { 3798, 190, -1 }, { 3799, 190, -1 }, { 3800, 190, -1 }, { 3801, 190, -1 }, { 3802, 190, -1 }, { 3803, 190, -1 }, { 3804, 190, -1 }, { 3805, 190, -1 }, { 3807, 190, -1 }, { 3808, 190, -1 }, { 3809, 190, -1 }, { 3810, 190, -1 }, { 3811, 190, -1 }, { 3812, 190, -1 }, { 3813, 190, -1 }, { 3814, 190, -1 }, { 3815, 190, -1 }, { 3816, 190, -1 }, { 3817, 190, -1 }, { 3818, 190, -1 }, { 3819, 190, -1 }, { 3820, 190, -1 }, { 3821, 190, -1 }, { 3822, 190, -1 }, { 3823, 190, -1 }, { 3824, 190, -1 }, { 3826, 190, -1 }, { 3827, 190, -1 }, { 3828, 190, -1 }, { 3829, 190, -1 }, { 3830, 190, -1 }, { 3831, 190, -1 }, { 3832, 190, -1 }, { 3833, 190, -1 }, { 3834, 190, -1 }, { 3835, 190, -1 }, { 3836, 190, -1 }, { 3837, 190, -1 }, { 3838, 190, -1 }, { 3839, 190, -1 }, { 3840, 190, -1 }, { 3841, 190, -1 }, { 3842, 190, -1 }, { 3792, 1352, -1 }, { 3793, 1352, -1 }, { 3794, 1352, -1 }, { 3795, 1352, -1 }, { 3796, 1352, -1 }, { 3797, 1352, -1 }, { 3798, 1352, -1 }, { 3799, 1352, -1 }, { 3800, 1352, -1 }, { 3801, 1352, -1 }, { 3802, 1352, -1 }, { 3803, 1352, -1 }, { 3804, 1352, -1 }, { 3807, 1352, -1 }, { 3808, 1352, -1 }, { 3809, 1352, -1 }, { 3810, 1352, -1 }, { 3811, 1352, -1 }, { 3813, 1352, -1 }, { 3814, 1352, -1 }, { 3815, 1352, -1 }, { 3816, 1352, -1 }, { 3817, 1352, -1 }, { 3818, 1352, -1 }, { 3819, 1352, -1 }, { 3820, 1352, -1 }, { 3821, 1352, -1 }, { 3822, 1352, -1 }, { 3823, 1352, -1 }, { 3825, 1352, -1 }, { 3826, 1352, -1 }, { 3827, 1352, -1 }, { 3828, 1352, -1 }, { 3829, 1352, -1 }, { 3830, 1352, -1 }, { 3831, 1352, -1 }, { 3832, 1352, -1 }, { 3833, 1352, -1 }, { 3834, 1352, -1 }, { 3835, 1352, -1 }, { 3836, 1352, -1 }, { 3837, 1352, -1 }, { 3838, 1352, -1 }, { 3839, 1352, -1 }, { 3840, 1352, -1 }, { 3841, 1352, -1 }, { 3842, 1352, -1 }, { 3792, 1595, -1 }, { 3793, 1595, -1 }, { 3794, 1595, -1 }, { 3795, 1595, -1 }, { 3796, 1595, -1 }, { 3797, 1595, -1 }, { 3798, 1595, -1 }, { 3799, 1595, -1 }, { 3800, 1595, -1 }, { 3801, 1595, -1 }, { 3802, 1595, -1 }, { 3803, 1595, -1 }, { 3804, 1595, -1 }, { 3805, 1595, -1 }, { 3806, 1595, -1 }, { 3808, 1595, -1 }, { 3809, 1595, -1 }, { 3810, 1595, -1 }, { 3811, 1595, -1 }, { 3812, 1595, -1 }, { 3813, 1595, -1 }, { 3814, 1595, -1 }, { 3815, 1595, -1 }, { 3816, 1595, -1 }, { 3817, 1595, -1 }, { 3818, 1595, -1 }, { 3819, 1595, -1 }, { 3820, 1595, -1 }, { 3821, 1595, -1 }, { 3822, 1595, -1 }, { 3823, 1595, -1 }, { 3824, 1595, -1 }, { 3826, 1595, -1 }, { 3827, 1595, -1 }, { 3828, 1595, -1 }, { 3829, 1595, -1 }, { 3830, 1595, -1 }, { 3831, 1595, -1 }, { 3832, 1595, -1 }, { 3833, 1595, -1 }, { 3834, 1595, -1 }, { 3835, 1595, -1 }, { 3836, 1595, -1 }, { 3837, 1595, -1 }, { 3838, 1595, -1 }, { 3839, 1595, -1 }, { 3840, 1595, -1 }, { 3841, 1595, -1 }, { 3842, 1595, -1 }, { 3792, 1598, -1 }, { 3793, 1598, -1 }, { 3794, 1598, -1 }, { 3795, 1598, -1 }, { 3796, 1598, -1 }, { 3797, 1598, -1 }, { 3798, 1598, -1 }, { 3799, 1598, -1 }, { 3800, 1598, -1 }, { 3801, 1598, -1 }, { 3802, 1598, -1 }, { 3803, 1598, -1 }, { 3804, 1598, -1 }, { 3805, 1598, -1 }, { 3806, 1598, -1 }, { 3808, 1598, -1 }, { 3809, 1598, -1 }, { 3810, 1598, -1 }, { 3811, 1598, -1 }, { 3812, 1598, -1 }, { 3813, 1598, -1 }, { 3814, 1598, -1 }, { 3815, 1598, -1 }, { 3816, 1598, -1 }, { 3817, 1598, -1 }, { 3818, 1598, -1 }, { 3819, 1598, -1 }, { 3820, 1598, -1 }, { 3821, 1598, -1 }, { 3822, 1598, -1 }, { 3823, 1598, -1 }, { 3824, 1598, -1 }, { 3826, 1598, -1 }, { 3827, 1598, -1 }, { 3828, 1598, -1 }, { 3829, 1598, -1 }, { 3830, 1598, -1 }, { 3831, 1598, -1 }, { 3832, 1598, -1 }, { 3833, 1598, -1 }, { 3834, 1598, -1 }, { 3835, 1598, -1 }, { 3836, 1598, -1 }, { 3837, 1598, -1 }, { 3838, 1598, -1 }, { 3839, 1598, -1 }, { 3840, 1598, -1 }, { 3841, 1598, -1 }, { 3842, 1598, -1 }, { 3791, 1694, -1 }, { 3792, 1694, -1 }, { 3793, 1694, -1 }, { 3794, 1694, -1 }, { 3795, 1694, -1 }, { 3796, 1694, -1 }, { 3797, 1694, -1 }, { 3798, 1694, -1 }, { 3799, 1694, -1 }, { 3800, 1694, -1 }, { 3801, 1694, -1 }, { 3802, 1694, -1 }, { 3803, 1694, -1 }, { 3804, 1694, -1 }, { 3805, 1694, -1 }, { 3806, 1694, -1 }, { 3807, 1694, -1 }, { 3808, 1694, -1 }, { 3809, 1694, -1 }, { 3810, 1694, -1 }, { 3811, 1694, -1 }, { 3812, 1694, -1 }, { 3813, 1694, -1 }, { 3814, 1694, -1 }, { 3815, 1694, -1 }, { 3816, 1694, -1 }, { 3817, 1694, -1 }, { 3818, 1694, -1 }, { 3819, 1694, -1 }, { 3820, 1694, -1 }, { 3821, 1694, -1 }, { 3822, 1694, -1 }, { 3823, 1694, -1 }, { 3824, 1694, -1 }, { 3825, 1694, -1 }, { 3826, 1694, -1 }, { 3827, 1694, -1 }, { 3828, 1694, -1 }, { 3829, 1694, -1 }, { 3830, 1694, -1 }, { 3831, 1694, -1 }, { 3832, 1694, -1 }, { 3833, 1694, -1 }, { 3834, 1694, -1 }, { 3835, 1694, -1 }, { 3836, 1694, -1 }, { 3837, 1694, -1 }, { 3838, 1694, -1 }, { 3839, 1694, -1 }, { 3840, 1694, -1 }, { 3841, 1694, -1 }, { 3842, 1694, -1 }, { 3791, 807, -1 }, { 3792, 807, -1 }, { 3793, 807, -1 }, { 3794, 807, -1 }, { 3795, 807, -1 }, { 3796, 807, -1 }, { 3797, 807, -1 }, { 3798, 807, -1 }, { 3799, 807, -1 }, { 3800, 807, -1 }, { 3801, 807, -1 }, { 3802, 807, -1 }, { 3803, 807, -1 }, { 3804, 807, -1 }, { 3805, 807, -1 }, { 3806, 807, -1 }, { 3807, 807, -1 }, { 3808, 807, -1 }, { 3809, 807, -1 }, { 3810, 807, -1 }, { 3811, 807, -1 }, { 3812, 807, -1 }, { 3813, 807, -1 }, { 3814, 807, -1 }, { 3815, 807, -1 }, { 3816, 807, -1 }, { 3817, 807, -1 }, { 3818, 807, -1 }, { 3819, 807, -1 }, { 3820, 807, -1 }, { 3821, 807, -1 }, { 3822, 807, -1 }, { 3823, 807, -1 }, { 3824, 807, -1 }, { 3825, 807, -1 }, { 3826, 807, -1 }, { 3827, 807, -1 }, { 3828, 807, -1 }, { 3829, 807, -1 }, { 3830, 807, -1 }, { 3831, 807, -1 }, { 3832, 807, -1 }, { 3833, 807, -1 }, { 3834, 807, -1 }, { 3835, 807, -1 }, { 3836, 807, -1 }, { 3837, 807, -1 }, { 3838, 807, -1 }, { 3839, 807, -1 }, { 3840, 807, -1 }, { 3841, 807, -1 }, { 3842, 807, -1 }, { 3792, 687, -1 }, { 3793, 687, -1 }, { 3794, 687, -1 }, { 3795, 687, -1 }, { 3796, 687, -1 }, { 3797, 687, -1 }, { 3798, 687, -1 }, { 3799, 687, -1 }, { 3800, 687, -1 }, { 3801, 687, -1 }, { 3802, 687, -1 }, { 3803, 687, -1 }, { 3804, 687, -1 }, { 3805, 687, -1 }, { 3806, 687, -1 }, { 3807, 687, -1 }, { 3808, 687, -1 }, { 3809, 687, -1 }, { 3810, 687, -1 }, { 3811, 687, -1 }, { 3812, 687, -1 }, { 3813, 687, -1 }, { 3814, 687, -1 }, { 3816, 687, -1 }, { 3817, 687, -1 }, { 3818, 687, -1 }, { 3819, 687, -1 }, { 3820, 687, -1 }, { 3821, 687, -1 }, { 3822, 687, -1 }, { 3823, 687, -1 }, { 3824, 687, -1 }, { 3825, 687, -1 }, { 3826, 687, -1 }, { 3827, 687, -1 }, { 3828, 687, -1 }, { 3829, 687, -1 }, { 3830, 687, -1 }, { 3831, 687, -1 }, { 3832, 687, -1 }, { 3833, 687, -1 }, { 3834, 687, -1 }, { 3835, 687, -1 }, { 3836, 687, -1 }, { 3837, 687, -1 }, { 3838, 687, -1 }, { 3839, 687, -1 }, { 3840, 687, -1 }, { 3841, 687, -1 }, { 3842, 687, -1 }, { 3791, 692, -1 }, { 3792, 692, -1 }, { 3793, 692, -1 }, { 3794, 692, -1 }, { 3795, 692, -1 }, { 3796, 692, -1 }, { 3797, 692, -1 }, { 3798, 692, -1 }, { 3799, 692, -1 }, { 3800, 692, -1 }, { 3801, 692, -1 }, { 3802, 692, -1 }, { 3803, 692, -1 }, { 3804, 692, -1 }, { 3805, 692, -1 }, { 3806, 692, -1 }, { 3807, 692, -1 }, { 3808, 692, -1 }, { 3809, 692, -1 }, { 3810, 692, -1 }, { 3811, 692, -1 }, { 3812, 692, -1 }, { 3813, 692, -1 }, { 3814, 692, -1 }, { 3815, 692, -1 }, { 3816, 692, -1 }, { 3817, 692, -1 }, { 3818, 692, -1 }, { 3819, 692, -1 }, { 3820, 692, -1 }, { 3821, 692, -1 }, { 3822, 692, -1 }, { 3823, 692, -1 }, { 3824, 692, -1 }, { 3825, 692, -1 }, { 3826, 692, -1 }, { 3827, 692, -1 }, { 3828, 692, -1 }, { 3829, 692, -1 }, { 3830, 692, -1 }, { 3831, 692, -1 }, { 3832, 692, -1 }, { 3833, 692, -1 }, { 3834, 692, -1 }, { 3835, 692, -1 }, { 3836, 692, -1 }, { 3837, 692, -1 }, { 3838, 692, -1 }, { 3839, 692, -1 }, { 3840, 692, -1 }, { 3841, 692, -1 }, { 3842, 692, -1 }, { 3791, 1081, -1 }, { 3792, 1081, -1 }, { 3793, 1081, -1 }, { 3794, 1081, -1 }, { 3795, 1081, -1 }, { 3796, 1081, -1 }, { 3797, 1081, -1 }, { 3798, 1081, -1 }, { 3799, 1081, -1 }, { 3800, 1081, -1 }, { 3801, 1081, -1 }, { 3802, 1081, -1 }, { 3803, 1081, -1 }, { 3804, 1081, -1 }, { 3805, 1081, -1 }, { 3806, 1081, -1 }, { 3807, 1081, -1 }, { 3808, 1081, -1 }, { 3809, 1081, -1 }, { 3810, 1081, -1 }, { 3811, 1081, -1 }, { 3812, 1081, -1 }, { 3813, 1081, -1 }, { 3814, 1081, -1 }, { 3815, 1081, -1 }, { 3816, 1081, -1 }, { 3817, 1081, -1 }, { 3818, 1081, -1 }, { 3819, 1081, -1 }, { 3820, 1081, -1 }, { 3821, 1081, -1 }, { 3822, 1081, -1 }, { 3823, 1081, -1 }, { 3824, 1081, -1 }, { 3825, 1081, -1 }, { 3826, 1081, -1 }, { 3827, 1081, -1 }, { 3828, 1081, -1 }, { 3829, 1081, -1 }, { 3830, 1081, -1 }, { 3831, 1081, -1 }, { 3832, 1081, -1 }, { 3833, 1081, -1 }, { 3834, 1081, -1 }, { 3835, 1081, -1 }, { 3836, 1081, -1 }, { 3837, 1081, -1 }, { 3838, 1081, -1 }, { 3839, 1081, -1 }, { 3840, 1081, -1 }, { 3841, 1081, -1 }, { 3842, 1081, -1 }, { 3791, 977, -1 }, { 3792, 977, -1 }, { 3793, 977, -1 }, { 3794, 977, -1 }, { 3795, 977, -1 }, { 3796, 977, -1 }, { 3797, 977, -1 }, { 3798, 977, -1 }, { 3799, 977, -1 }, { 3800, 977, -1 }, { 3801, 977, -1 }, { 3802, 977, -1 }, { 3803, 977, -1 }, { 3804, 977, -1 }, { 3805, 977, -1 }, { 3806, 977, -1 }, { 3807, 977, -1 }, { 3808, 977, -1 }, { 3809, 977, -1 }, { 3810, 977, -1 }, { 3811, 977, -1 }, { 3812, 977, -1 }, { 3813, 977, -1 }, { 3814, 977, -1 }, { 3815, 977, -1 }, { 3816, 977, -1 }, { 3817, 977, -1 }, { 3818, 977, -1 }, { 3819, 977, -1 }, { 3820, 977, -1 }, { 3821, 977, -1 }, { 3822, 977, -1 }, { 3823, 977, -1 }, { 3824, 977, -1 }, { 3825, 977, -1 }, { 3826, 977, -1 }, { 3827, 977, -1 }, { 3828, 977, -1 }, { 3829, 977, -1 }, { 3830, 977, -1 }, { 3831, 977, -1 }, { 3832, 977, -1 }, { 3833, 977, -1 }, { 3834, 977, -1 }, { 3835, 977, -1 }, { 3836, 977, -1 }, { 3837, 977, -1 }, { 3838, 977, -1 }, { 3839, 977, -1 }, { 3840, 977, -1 }, { 3841, 977, -1 }, { 3842, 977, -1 }, { 3791, 139, -1 }, { 3792, 139, -1 }, { 3793, 139, -1 }, { 3794, 139, -1 }, { 3795, 139, -1 }, { 3796, 139, -1 }, { 3797, 139, -1 }, { 3798, 139, -1 }, { 3799, 139, -1 }, { 3800, 139, -1 }, { 3801, 139, -1 }, { 3802, 139, -1 }, { 3803, 139, -1 }, { 3804, 139, -1 }, { 3805, 139, -1 }, { 3806, 139, -1 }, { 3807, 139, -1 }, { 3808, 139, -1 }, { 3809, 139, -1 }, { 3810, 139, -1 }, { 3811, 139, -1 }, { 3812, 139, -1 }, { 3813, 139, -1 }, { 3814, 139, -1 }, { 3815, 139, -1 }, { 3816, 139, -1 }, { 3817, 139, -1 }, { 3818, 139, -1 }, { 3819, 139, -1 }, { 3820, 139, -1 }, { 3821, 139, -1 }, { 3822, 139, -1 }, { 3823, 139, -1 }, { 3824, 139, -1 }, { 3825, 139, -1 }, { 3826, 139, -1 }, { 3827, 139, -1 }, { 3828, 139, -1 }, { 3829, 139, -1 }, { 3830, 139, -1 }, { 3831, 139, -1 }, { 3832, 139, -1 }, { 3833, 139, -1 }, { 3834, 139, -1 }, { 3835, 139, -1 }, { 3836, 139, -1 }, { 3837, 139, -1 }, { 3838, 139, -1 }, { 3839, 139, -1 }, { 3840, 139, -1 }, { 3841, 139, -1 }, { 3842, 139, -1 }, { 3791, 169, -1 }, { 3792, 169, -1 }, { 3793, 169, -1 }, { 3794, 169, -1 }, { 3795, 169, -1 }, { 3796, 169, -1 }, { 3797, 169, -1 }, { 3798, 169, -1 }, { 3799, 169, -1 }, { 3800, 169, -1 }, { 3801, 169, -1 }, { 3802, 169, -1 }, { 3803, 169, -1 }, { 3804, 169, -1 }, { 3805, 169, -1 }, { 3806, 169, -1 }, { 3807, 169, -1 }, { 3808, 169, -1 }, { 3809, 169, -1 }, { 3810, 169, -1 }, { 3811, 169, -1 }, { 3812, 169, -1 }, { 3813, 169, -1 }, { 3814, 169, -1 }, { 3815, 169, -1 }, { 3816, 169, -1 }, { 3817, 169, -1 }, { 3818, 169, -1 }, { 3819, 169, -1 }, { 3820, 169, -1 }, { 3821, 169, -1 }, { 3822, 169, -1 }, { 3823, 169, -1 }, { 3824, 169, -1 }, { 3825, 169, -1 }, { 3826, 169, -1 }, { 3827, 169, -1 }, { 3828, 169, -1 }, { 3829, 169, -1 }, { 3830, 169, -1 }, { 3831, 169, -1 }, { 3832, 169, -1 }, { 3833, 169, -1 }, { 3834, 169, -1 }, { 3835, 169, -1 }, { 3836, 169, -1 }, { 3837, 169, -1 }, { 3838, 169, -1 }, { 3839, 169, -1 }, { 3840, 169, -1 }, { 3841, 169, -1 }, { 3842, 169, -1 }, { 3791, 854, -1 }, { 3792, 854, -1 }, { 3793, 854, -1 }, { 3794, 854, -1 }, { 3795, 854, -1 }, { 3796, 854, -1 }, { 3797, 854, -1 }, { 3798, 854, -1 }, { 3799, 854, -1 }, { 3800, 854, -1 }, { 3801, 854, -1 }, { 3802, 854, -1 }, { 3803, 854, -1 }, { 3804, 854, -1 }, { 3805, 854, -1 }, { 3806, 854, -1 }, { 3807, 854, -1 }, { 3808, 854, -1 }, { 3809, 854, -1 }, { 3810, 854, -1 }, { 3811, 854, -1 }, { 3812, 854, -1 }, { 3813, 854, -1 }, { 3814, 854, -1 }, { 3815, 854, -1 }, { 3816, 854, -1 }, { 3817, 854, -1 }, { 3818, 854, -1 }, { 3819, 854, -1 }, { 3820, 854, -1 }, { 3821, 854, -1 }, { 3822, 854, -1 }, { 3823, 854, -1 }, { 3824, 854, -1 }, { 3825, 854, -1 }, { 3826, 854, -1 }, { 3827, 854, -1 }, { 3828, 854, -1 }, { 3829, 854, -1 }, { 3830, 854, -1 }, { 3831, 854, -1 }, { 3832, 854, -1 }, { 3833, 854, -1 }, { 3834, 854, -1 }, { 3835, 854, -1 }, { 3836, 854, -1 }, { 3837, 854, -1 }, { 3838, 854, -1 }, { 3839, 854, -1 }, { 3840, 854, -1 }, { 3841, 854, -1 }, { 3842, 854, -1 }, { 3792, 182, -1 }, { 3794, 182, -1 }, { 3795, 182, -1 }, { 3796, 182, -1 }, { 3797, 182, -1 }, { 3799, 182, -1 }, { 3800, 182, -1 }, { 3801, 182, -1 }, { 3802, 182, -1 }, { 3803, 182, -1 }, { 3804, 182, -1 }, { 3805, 182, -1 }, { 3806, 182, -1 }, { 3808, 182, -1 }, { 3809, 182, -1 }, { 3810, 182, -1 }, { 3811, 182, -1 }, { 3813, 182, -1 }, { 3814, 182, -1 }, { 3815, 182, -1 }, { 3816, 182, -1 }, { 3817, 182, -1 }, { 3818, 182, -1 }, { 3819, 182, -1 }, { 3820, 182, -1 }, { 3821, 182, -1 }, { 3822, 182, -1 }, { 3823, 182, -1 }, { 3824, 182, -1 }, { 3826, 182, -1 }, { 3827, 182, -1 }, { 3828, 182, -1 }, { 3829, 182, -1 }, { 3830, 182, -1 }, { 3831, 182, -1 }, { 3832, 182, -1 }, { 3833, 182, -1 }, { 3834, 182, -1 }, { 3835, 182, -1 }, { 3836, 182, -1 }, { 3837, 182, -1 }, { 3838, 182, -1 }, { 3839, 182, -1 }, { 3840, 182, -1 }, { 3841, 182, -1 }, { 3842, 182, -1 }, { 3791, 896, -1 }, { 3792, 896, -1 }, { 3793, 896, -1 }, { 3794, 896, -1 }, { 3795, 896, -1 }, { 3796, 896, -1 }, { 3797, 896, -1 }, { 3798, 896, -1 }, { 3799, 896, -1 }, { 3800, 896, -1 }, { 3801, 896, -1 }, { 3802, 896, -1 }, { 3803, 896, -1 }, { 3804, 896, -1 }, { 3805, 896, -1 }, { 3806, 896, -1 }, { 3807, 896, -1 }, { 3808, 896, -1 }, { 3809, 896, -1 }, { 3810, 896, -1 }, { 3811, 896, -1 }, { 3812, 896, -1 }, { 3813, 896, -1 }, { 3814, 896, -1 }, { 3815, 896, -1 }, { 3816, 896, -1 }, { 3817, 896, -1 }, { 3818, 896, -1 }, { 3819, 896, -1 }, { 3820, 896, -1 }, { 3821, 896, -1 }, { 3822, 896, -1 }, { 3823, 896, -1 }, { 3824, 896, -1 }, { 3825, 896, -1 }, { 3826, 896, -1 }, { 3827, 896, -1 }, { 3828, 896, -1 }, { 3829, 896, -1 }, { 3830, 896, -1 }, { 3831, 896, -1 }, { 3832, 896, -1 }, { 3833, 896, -1 }, { 3834, 896, -1 }, { 3835, 896, -1 }, { 3836, 896, -1 }, { 3837, 896, -1 }, { 3838, 896, -1 }, { 3839, 896, -1 }, { 3840, 896, -1 }, { 3841, 896, -1 }, { 3842, 896, -1 }, { 3791, 698, -1 }, { 3792, 698, -1 }, { 3793, 698, -1 }, { 3794, 698, -1 }, { 3795, 698, -1 }, { 3796, 698, -1 }, { 3797, 698, -1 }, { 3798, 698, -1 }, { 3799, 698, -1 }, { 3800, 698, -1 }, { 3801, 698, -1 }, { 3802, 698, -1 }, { 3803, 698, -1 }, { 3804, 698, -1 }, { 3805, 698, -1 }, { 3806, 698, -1 }, { 3807, 698, -1 }, { 3808, 698, -1 }, { 3809, 698, -1 }, { 3810, 698, -1 }, { 3811, 698, -1 }, { 3812, 698, -1 }, { 3813, 698, -1 }, { 3814, 698, -1 }, { 3815, 698, -1 }, { 3816, 698, -1 }, { 3817, 698, -1 }, { 3818, 698, -1 }, { 3819, 698, -1 }, { 3820, 698, -1 }, { 3821, 698, -1 }, { 3822, 698, -1 }, { 3823, 698, -1 }, { 3824, 698, -1 }, { 3825, 698, -1 }, { 3826, 698, -1 }, { 3827, 698, -1 }, { 3828, 698, -1 }, { 3829, 698, -1 }, { 3830, 698, -1 }, { 3831, 698, -1 }, { 3832, 698, -1 }, { 3833, 698, -1 }, { 3834, 698, -1 }, { 3835, 698, -1 }, { 3836, 698, -1 }, { 3837, 698, -1 }, { 3838, 698, -1 }, { 3839, 698, -1 }, { 3840, 698, -1 }, { 3841, 698, -1 }, { 3842, 698, -1 }, { 3791, 298, -1 }, { 3792, 298, -1 }, { 3793, 298, -1 }, { 3794, 298, -1 }, { 3795, 298, -1 }, { 3796, 298, -1 }, { 3797, 298, -1 }, { 3798, 298, -1 }, { 3799, 298, -1 }, { 3800, 298, -1 }, { 3801, 298, -1 }, { 3802, 298, -1 }, { 3803, 298, -1 }, { 3804, 298, -1 }, { 3805, 298, -1 }, { 3806, 298, -1 }, { 3807, 298, -1 }, { 3808, 298, -1 }, { 3809, 298, -1 }, { 3810, 298, -1 }, { 3811, 298, -1 }, { 3812, 298, -1 }, { 3813, 298, -1 }, { 3814, 298, -1 }, { 3815, 298, -1 }, { 3816, 298, -1 }, { 3817, 298, -1 }, { 3818, 298, -1 }, { 3819, 298, -1 }, { 3820, 298, -1 }, { 3821, 298, -1 }, { 3822, 298, -1 }, { 3823, 298, -1 }, { 3824, 298, -1 }, { 3825, 298, -1 }, { 3826, 298, -1 }, { 3827, 298, -1 }, { 3828, 298, -1 }, { 3829, 298, -1 }, { 3830, 298, -1 }, { 3831, 298, -1 }, { 3832, 298, -1 }, { 3833, 298, -1 }, { 3834, 298, -1 }, { 3835, 298, -1 }, { 3836, 298, -1 }, { 3837, 298, -1 }, { 3838, 298, -1 }, { 3839, 298, -1 }, { 3840, 298, -1 }, { 3841, 298, -1 }, { 3842, 298, -1 }, { 3792, 278, -1 }, { 3793, 278, -1 }, { 3794, 278, -1 }, { 3795, 278, -1 }, { 3796, 278, -1 }, { 3797, 278, -1 }, { 3798, 278, -1 }, { 3799, 278, -1 }, { 3800, 278, -1 }, { 3801, 278, -1 }, { 3802, 278, -1 }, { 3803, 278, -1 }, { 3804, 278, -1 }, { 3805, 278, -1 }, { 3807, 278, -1 }, { 3808, 278, -1 }, { 3809, 278, -1 }, { 3810, 278, -1 }, { 3811, 278, -1 }, { 3812, 278, -1 }, { 3813, 278, -1 }, { 3814, 278, -1 }, { 3815, 278, -1 }, { 3816, 278, -1 }, { 3817, 278, -1 }, { 3818, 278, -1 }, { 3819, 278, -1 }, { 3820, 278, -1 }, { 3821, 278, -1 }, { 3822, 278, -1 }, { 3823, 278, -1 }, { 3824, 278, -1 }, { 3826, 278, -1 }, { 3827, 278, -1 }, { 3828, 278, -1 }, { 3829, 278, -1 }, { 3830, 278, -1 }, { 3831, 278, -1 }, { 3832, 278, -1 }, { 3833, 278, -1 }, { 3834, 278, -1 }, { 3835, 278, -1 }, { 3836, 278, -1 }, { 3837, 278, -1 }, { 3838, 278, -1 }, { 3839, 278, -1 }, { 3840, 278, -1 }, { 3841, 278, -1 }, { 3842, 278, -1 }, { 3791, 1567, -1 }, { 3792, 1567, -1 }, { 3793, 1567, -1 }, { 3794, 1567, -1 }, { 3795, 1567, -1 }, { 3796, 1567, -1 }, { 3797, 1567, -1 }, { 3798, 1567, -1 }, { 3799, 1567, -1 }, { 3800, 1567, -1 }, { 3801, 1567, -1 }, { 3802, 1567, -1 }, { 3803, 1567, -1 }, { 3804, 1567, -1 }, { 3805, 1567, -1 }, { 3806, 1567, -1 }, { 3807, 1567, -1 }, { 3808, 1567, -1 }, { 3809, 1567, -1 }, { 3810, 1567, -1 }, { 3811, 1567, -1 }, { 3812, 1567, -1 }, { 3813, 1567, -1 }, { 3814, 1567, -1 }, { 3815, 1567, -1 }, { 3816, 1567, -1 }, { 3817, 1567, -1 }, { 3818, 1567, -1 }, { 3819, 1567, -1 }, { 3820, 1567, -1 }, { 3821, 1567, -1 }, { 3822, 1567, -1 }, { 3823, 1567, -1 }, { 3824, 1567, -1 }, { 3825, 1567, -1 }, { 3826, 1567, -1 }, { 3827, 1567, -1 }, { 3828, 1567, -1 }, { 3829, 1567, -1 }, { 3830, 1567, -1 }, { 3831, 1567, -1 }, { 3832, 1567, -1 }, { 3833, 1567, -1 }, { 3834, 1567, -1 }, { 3835, 1567, -1 }, { 3836, 1567, -1 }, { 3837, 1567, -1 }, { 3838, 1567, -1 }, { 3839, 1567, -1 }, { 3840, 1567, -1 }, { 3841, 1567, -1 }, { 3842, 1567, -1 }, { 3791, 1340, -1 }, { 3792, 1340, -1 }, { 3793, 1340, -1 }, { 3794, 1340, -1 }, { 3795, 1340, -1 }, { 3796, 1340, -1 }, { 3797, 1340, -1 }, { 3798, 1340, -1 }, { 3799, 1340, -1 }, { 3800, 1340, -1 }, { 3801, 1340, -1 }, { 3802, 1340, -1 }, { 3803, 1340, -1 }, { 3804, 1340, -1 }, { 3805, 1340, -1 }, { 3806, 1340, -1 }, { 3807, 1340, -1 }, { 3808, 1340, -1 }, { 3809, 1340, -1 }, { 3810, 1340, -1 }, { 3811, 1340, -1 }, { 3812, 1340, -1 }, { 3813, 1340, -1 }, { 3814, 1340, -1 }, { 3815, 1340, -1 }, { 3816, 1340, -1 }, { 3817, 1340, -1 }, { 3818, 1340, -1 }, { 3819, 1340, -1 }, { 3820, 1340, -1 }, { 3821, 1340, -1 }, { 3822, 1340, -1 }, { 3823, 1340, -1 }, { 3824, 1340, -1 }, { 3825, 1340, -1 }, { 3826, 1340, -1 }, { 3827, 1340, -1 }, { 3828, 1340, -1 }, { 3829, 1340, -1 }, { 3830, 1340, -1 }, { 3831, 1340, -1 }, { 3832, 1340, -1 }, { 3833, 1340, -1 }, { 3834, 1340, -1 }, { 3835, 1340, -1 }, { 3836, 1340, -1 }, { 3837, 1340, -1 }, { 3838, 1340, -1 }, { 3839, 1340, -1 }, { 3840, 1340, -1 }, { 3841, 1340, -1 }, { 3842, 1340, -1 }, { 3791, 883, -1 }, { 3792, 883, -1 }, { 3793, 883, -1 }, { 3794, 883, -1 }, { 3795, 883, -1 }, { 3796, 883, -1 }, { 3797, 883, -1 }, { 3798, 883, -1 }, { 3799, 883, -1 }, { 3800, 883, -1 }, { 3801, 883, -1 }, { 3802, 883, -1 }, { 3803, 883, -1 }, { 3804, 883, -1 }, { 3805, 883, -1 }, { 3806, 883, -1 }, { 3807, 883, -1 }, { 3808, 883, -1 }, { 3809, 883, -1 }, { 3810, 883, -1 }, { 3811, 883, -1 }, { 3812, 883, -1 }, { 3813, 883, -1 }, { 3814, 883, -1 }, { 3815, 883, -1 }, { 3816, 883, -1 }, { 3817, 883, -1 }, { 3818, 883, -1 }, { 3819, 883, -1 }, { 3820, 883, -1 }, { 3821, 883, -1 }, { 3822, 883, -1 }, { 3823, 883, -1 }, { 3824, 883, -1 }, { 3825, 883, -1 }, { 3826, 883, -1 }, { 3827, 883, -1 }, { 3828, 883, -1 }, { 3829, 883, -1 }, { 3830, 883, -1 }, { 3831, 883, -1 }, { 3832, 883, -1 }, { 3833, 883, -1 }, { 3834, 883, -1 }, { 3835, 883, -1 }, { 3836, 883, -1 }, { 3837, 883, -1 }, { 3838, 883, -1 }, { 3839, 883, -1 }, { 3840, 883, -1 }, { 3841, 883, -1 }, { 3842, 883, -1 }, { 3791, 1607, -1 }, { 3792, 1607, -1 }, { 3793, 1607, -1 }, { 3794, 1607, -1 }, { 3795, 1607, -1 }, { 3796, 1607, -1 }, { 3797, 1607, -1 }, { 3798, 1607, -1 }, { 3799, 1607, -1 }, { 3800, 1607, -1 }, { 3801, 1607, -1 }, { 3802, 1607, -1 }, { 3803, 1607, -1 }, { 3804, 1607, -1 }, { 3805, 1607, -1 }, { 3806, 1607, -1 }, { 3807, 1607, -1 }, { 3808, 1607, -1 }, { 3809, 1607, -1 }, { 3810, 1607, -1 }, { 3811, 1607, -1 }, { 3812, 1607, -1 }, { 3813, 1607, -1 }, { 3814, 1607, -1 }, { 3815, 1607, -1 }, { 3816, 1607, -1 }, { 3817, 1607, -1 }, { 3818, 1607, -1 }, { 3819, 1607, -1 }, { 3820, 1607, -1 }, { 3821, 1607, -1 }, { 3822, 1607, -1 }, { 3823, 1607, -1 }, { 3824, 1607, -1 }, { 3825, 1607, -1 }, { 3826, 1607, -1 }, { 3827, 1607, -1 }, { 3828, 1607, -1 }, { 3829, 1607, -1 }, { 3830, 1607, -1 }, { 3831, 1607, -1 }, { 3832, 1607, -1 }, { 3833, 1607, -1 }, { 3834, 1607, -1 }, { 3835, 1607, -1 }, { 3836, 1607, -1 }, { 3837, 1607, -1 }, { 3838, 1607, -1 }, { 3839, 1607, -1 }, { 3840, 1607, -1 }, { 3841, 1607, -1 }, { 3842, 1607, -1 }, { 3791, 288, -1 }, { 3792, 288, -1 }, { 3794, 288, -1 }, { 3795, 288, -1 }, { 3796, 288, -1 }, { 3797, 288, -1 }, { 3798, 288, -1 }, { 3799, 288, -1 }, { 3800, 288, -1 }, { 3801, 288, -1 }, { 3802, 288, -1 }, { 3803, 288, -1 }, { 3804, 288, -1 }, { 3805, 288, -1 }, { 3806, 288, -1 }, { 3808, 288, -1 }, { 3809, 288, -1 }, { 3810, 288, -1 }, { 3811, 288, -1 }, { 3812, 288, -1 }, { 3813, 288, -1 }, { 3814, 288, -1 }, { 3815, 288, -1 }, { 3816, 288, -1 }, { 3817, 288, -1 }, { 3818, 288, -1 }, { 3819, 288, -1 }, { 3820, 288, -1 }, { 3821, 288, -1 }, { 3822, 288, -1 }, { 3823, 288, -1 }, { 3826, 288, -1 }, { 3827, 288, -1 }, { 3828, 288, -1 }, { 3829, 288, -1 }, { 3830, 288, -1 }, { 3831, 288, -1 }, { 3832, 288, -1 }, { 3833, 288, -1 }, { 3834, 288, -1 }, { 3835, 288, -1 }, { 3836, 288, -1 }, { 3837, 288, -1 }, { 3838, 288, -1 }, { 3839, 288, -1 }, { 3840, 288, -1 }, { 3841, 288, -1 }, { 3842, 288, -1 }, { 3791, 1949, -1 }, { 3793, 1949, -1 }, { 3794, 1949, -1 }, { 3795, 1949, -1 }, { 3796, 1949, -1 }, { 3797, 1949, -1 }, { 3799, 1949, -1 }, { 3800, 1949, -1 }, { 3801, 1949, -1 }, { 3802, 1949, -1 }, { 3803, 1949, -1 }, { 3804, 1949, -1 }, { 3805, 1949, -1 }, { 3806, 1949, -1 }, { 3808, 1949, -1 }, { 3809, 1949, -1 }, { 3810, 1949, -1 }, { 3812, 1949, -1 }, { 3813, 1949, -1 }, { 3814, 1949, -1 }, { 3816, 1949, -1 }, { 3817, 1949, -1 }, { 3818, 1949, -1 }, { 3819, 1949, -1 }, { 3820, 1949, -1 }, { 3821, 1949, -1 }, { 3822, 1949, -1 }, { 3823, 1949, -1 }, { 3824, 1949, -1 }, { 3825, 1949, -1 }, { 3826, 1949, -1 }, { 3827, 1949, -1 }, { 3828, 1949, -1 }, { 3829, 1949, -1 }, { 3830, 1949, -1 }, { 3831, 1949, -1 }, { 3832, 1949, -1 }, { 3833, 1949, -1 }, { 3834, 1949, -1 }, { 3835, 1949, -1 }, { 3836, 1949, -1 }, { 3837, 1949, -1 }, { 3838, 1949, -1 }, { 3839, 1949, -1 }, { 3840, 1949, -1 }, { 3841, 1949, -1 }, { 3842, 1949, -1 }, { 3791, 1822, -1 }, { 3792, 1822, -1 }, { 3793, 1822, -1 }, { 3794, 1822, -1 }, { 3795, 1822, -1 }, { 3796, 1822, -1 }, { 3797, 1822, -1 }, { 3798, 1822, -1 }, { 3799, 1822, -1 }, { 3800, 1822, -1 }, { 3801, 1822, -1 }, { 3802, 1822, -1 }, { 3803, 1822, -1 }, { 3804, 1822, -1 }, { 3805, 1822, -1 }, { 3806, 1822, -1 }, { 3807, 1822, -1 }, { 3808, 1822, -1 }, { 3809, 1822, -1 }, { 3810, 1822, -1 }, { 3811, 1822, -1 }, { 3812, 1822, -1 }, { 3813, 1822, -1 }, { 3814, 1822, -1 }, { 3815, 1822, -1 }, { 3816, 1822, -1 }, { 3817, 1822, -1 }, { 3818, 1822, -1 }, { 3819, 1822, -1 }, { 3820, 1822, -1 }, { 3821, 1822, -1 }, { 3822, 1822, -1 }, { 3823, 1822, -1 }, { 3824, 1822, -1 }, { 3825, 1822, -1 }, { 3826, 1822, -1 }, { 3827, 1822, -1 }, { 3828, 1822, -1 }, { 3829, 1822, -1 }, { 3830, 1822, -1 }, { 3831, 1822, -1 }, { 3832, 1822, -1 }, { 3833, 1822, -1 }, { 3834, 1822, -1 }, { 3835, 1822, -1 }, { 3836, 1822, -1 }, { 3837, 1822, -1 }, { 3838, 1822, -1 }, { 3839, 1822, -1 }, { 3840, 1822, -1 }, { 3841, 1822, -1 }, { 3842, 1822, -1 }, { 3792, 1995, -1 }, { 3793, 1995, -1 }, { 3794, 1995, -1 }, { 3795, 1995, -1 }, { 3796, 1995, -1 }, { 3797, 1995, -1 }, { 3799, 1995, -1 }, { 3800, 1995, -1 }, { 3801, 1995, -1 }, { 3803, 1995, -1 }, { 3804, 1995, -1 }, { 3805, 1995, -1 }, { 3807, 1995, -1 }, { 3808, 1995, -1 }, { 3809, 1995, -1 }, { 3810, 1995, -1 }, { 3811, 1995, -1 }, { 3813, 1995, -1 }, { 3814, 1995, -1 }, { 3815, 1995, -1 }, { 3816, 1995, -1 }, { 3817, 1995, -1 }, { 3818, 1995, -1 }, { 3819, 1995, -1 }, { 3820, 1995, -1 }, { 3821, 1995, -1 }, { 3822, 1995, -1 }, { 3823, 1995, -1 }, { 3825, 1995, -1 }, { 3826, 1995, -1 }, { 3827, 1995, -1 }, { 3828, 1995, -1 }, { 3829, 1995, -1 }, { 3830, 1995, -1 }, { 3831, 1995, -1 }, { 3832, 1995, -1 }, { 3833, 1995, -1 }, { 3834, 1995, -1 }, { 3835, 1995, -1 }, { 3836, 1995, -1 }, { 3837, 1995, -1 }, { 3838, 1995, -1 }, { 3839, 1995, -1 }, { 3840, 1995, -1 }, { 3841, 1995, -1 }, { 3842, 1995, -1 }, { 3792, 1496, -1 }, { 3793, 1496, -1 }, { 3794, 1496, -1 }, { 3795, 1496, -1 }, { 3796, 1496, -1 }, { 3797, 1496, -1 }, { 3798, 1496, -1 }, { 3799, 1496, -1 }, { 3800, 1496, -1 }, { 3801, 1496, -1 }, { 3802, 1496, -1 }, { 3803, 1496, -1 }, { 3804, 1496, -1 }, { 3808, 1496, -1 }, { 3809, 1496, -1 }, { 3810, 1496, -1 }, { 3811, 1496, -1 }, { 3813, 1496, -1 }, { 3814, 1496, -1 }, { 3815, 1496, -1 }, { 3816, 1496, -1 }, { 3817, 1496, -1 }, { 3818, 1496, -1 }, { 3819, 1496, -1 }, { 3820, 1496, -1 }, { 3821, 1496, -1 }, { 3822, 1496, -1 }, { 3823, 1496, -1 }, { 3825, 1496, -1 }, { 3826, 1496, -1 }, { 3827, 1496, -1 }, { 3828, 1496, -1 }, { 3829, 1496, -1 }, { 3830, 1496, -1 }, { 3831, 1496, -1 }, { 3832, 1496, -1 }, { 3833, 1496, -1 }, { 3834, 1496, -1 }, { 3835, 1496, -1 }, { 3836, 1496, -1 }, { 3837, 1496, -1 }, { 3838, 1496, -1 }, { 3839, 1496, -1 }, { 3840, 1496, -1 }, { 3841, 1496, -1 }, { 3842, 1496, -1 }, { 3792, 1493, -1 }, { 3793, 1493, -1 }, { 3794, 1493, -1 }, { 3795, 1493, -1 }, { 3796, 1493, -1 }, { 3797, 1493, -1 }, { 3798, 1493, -1 }, { 3799, 1493, -1 }, { 3800, 1493, -1 }, { 3801, 1493, -1 }, { 3802, 1493, -1 }, { 3803, 1493, -1 }, { 3804, 1493, -1 }, { 3808, 1493, -1 }, { 3809, 1493, -1 }, { 3810, 1493, -1 }, { 3811, 1493, -1 }, { 3812, 1493, -1 }, { 3813, 1493, -1 }, { 3814, 1493, -1 }, { 3815, 1493, -1 }, { 3816, 1493, -1 }, { 3817, 1493, -1 }, { 3818, 1493, -1 }, { 3819, 1493, -1 }, { 3820, 1493, -1 }, { 3821, 1493, -1 }, { 3822, 1493, -1 }, { 3823, 1493, -1 }, { 3824, 1493, -1 }, { 3825, 1493, -1 }, { 3826, 1493, -1 }, { 3827, 1493, -1 }, { 3828, 1493, -1 }, { 3829, 1493, -1 }, { 3830, 1493, -1 }, { 3831, 1493, -1 }, { 3832, 1493, -1 }, { 3833, 1493, -1 }, { 3834, 1493, -1 }, { 3835, 1493, -1 }, { 3836, 1493, -1 }, { 3837, 1493, -1 }, { 3838, 1493, -1 }, { 3839, 1493, -1 }, { 3840, 1493, -1 }, { 3841, 1493, -1 }, { 3842, 1493, -1 }, { 3792, 1489, -1 }, { 3793, 1489, -1 }, { 3794, 1489, -1 }, { 3795, 1489, -1 }, { 3796, 1489, -1 }, { 3797, 1489, -1 }, { 3798, 1489, -1 }, { 3799, 1489, -1 }, { 3800, 1489, -1 }, { 3801, 1489, -1 }, { 3802, 1489, -1 }, { 3803, 1489, -1 }, { 3804, 1489, -1 }, { 3807, 1489, -1 }, { 3808, 1489, -1 }, { 3809, 1489, -1 }, { 3810, 1489, -1 }, { 3811, 1489, -1 }, { 3812, 1489, -1 }, { 3813, 1489, -1 }, { 3814, 1489, -1 }, { 3815, 1489, -1 }, { 3816, 1489, -1 }, { 3817, 1489, -1 }, { 3818, 1489, -1 }, { 3819, 1489, -1 }, { 3820, 1489, -1 }, { 3821, 1489, -1 }, { 3822, 1489, -1 }, { 3823, 1489, -1 }, { 3824, 1489, -1 }, { 3825, 1489, -1 }, { 3826, 1489, -1 }, { 3827, 1489, -1 }, { 3828, 1489, -1 }, { 3829, 1489, -1 }, { 3830, 1489, -1 }, { 3831, 1489, -1 }, { 3832, 1489, -1 }, { 3833, 1489, -1 }, { 3834, 1489, -1 }, { 3835, 1489, -1 }, { 3836, 1489, -1 }, { 3837, 1489, -1 }, { 3838, 1489, -1 }, { 3839, 1489, -1 }, { 3840, 1489, -1 }, { 3841, 1489, -1 }, { 3842, 1489, -1 }, { 3791, 1359, -1 }, { 3792, 1359, -1 }, { 3793, 1359, -1 }, { 3794, 1359, -1 }, { 3795, 1359, -1 }, { 3796, 1359, -1 }, { 3797, 1359, -1 }, { 3798, 1359, -1 }, { 3799, 1359, -1 }, { 3800, 1359, -1 }, { 3801, 1359, -1 }, { 3802, 1359, -1 }, { 3803, 1359, -1 }, { 3804, 1359, -1 }, { 3805, 1359, -1 }, { 3806, 1359, -1 }, { 3807, 1359, -1 }, { 3808, 1359, -1 }, { 3809, 1359, -1 }, { 3810, 1359, -1 }, { 3811, 1359, -1 }, { 3812, 1359, -1 }, { 3813, 1359, -1 }, { 3814, 1359, -1 }, { 3815, 1359, -1 }, { 3816, 1359, -1 }, { 3817, 1359, -1 }, { 3818, 1359, -1 }, { 3819, 1359, -1 }, { 3820, 1359, -1 }, { 3821, 1359, -1 }, { 3822, 1359, -1 }, { 3823, 1359, -1 }, { 3824, 1359, -1 }, { 3825, 1359, -1 }, { 3826, 1359, -1 }, { 3827, 1359, -1 }, { 3828, 1359, -1 }, { 3829, 1359, -1 }, { 3830, 1359, -1 }, { 3831, 1359, -1 }, { 3832, 1359, -1 }, { 3833, 1359, -1 }, { 3834, 1359, -1 }, { 3835, 1359, -1 }, { 3836, 1359, -1 }, { 3837, 1359, -1 }, { 3838, 1359, -1 }, { 3839, 1359, -1 }, { 3840, 1359, -1 }, { 3841, 1359, -1 }, { 3842, 1359, -1 }, { 3791, 1297, -1 }, { 3792, 1297, -1 }, { 3793, 1297, -1 }, { 3794, 1297, -1 }, { 3795, 1297, -1 }, { 3796, 1297, -1 }, { 3797, 1297, -1 }, { 3798, 1297, -1 }, { 3799, 1297, -1 }, { 3800, 1297, -1 }, { 3801, 1297, -1 }, { 3802, 1297, -1 }, { 3803, 1297, -1 }, { 3804, 1297, -1 }, { 3805, 1297, -1 }, { 3806, 1297, -1 }, { 3807, 1297, -1 }, { 3808, 1297, -1 }, { 3809, 1297, -1 }, { 3810, 1297, -1 }, { 3811, 1297, -1 }, { 3812, 1297, -1 }, { 3813, 1297, -1 }, { 3814, 1297, -1 }, { 3815, 1297, -1 }, { 3816, 1297, -1 }, { 3817, 1297, -1 }, { 3818, 1297, -1 }, { 3819, 1297, -1 }, { 3820, 1297, -1 }, { 3821, 1297, -1 }, { 3822, 1297, -1 }, { 3823, 1297, -1 }, { 3824, 1297, -1 }, { 3825, 1297, -1 }, { 3826, 1297, -1 }, { 3827, 1297, -1 }, { 3828, 1297, -1 }, { 3829, 1297, -1 }, { 3830, 1297, -1 }, { 3831, 1297, -1 }, { 3832, 1297, -1 }, { 3833, 1297, -1 }, { 3834, 1297, -1 }, { 3835, 1297, -1 }, { 3836, 1297, -1 }, { 3837, 1297, -1 }, { 3838, 1297, -1 }, { 3839, 1297, -1 }, { 3840, 1297, -1 }, { 3841, 1297, -1 }, { 3842, 1297, -1 }, { 3791, 1306, -1 }, { 3792, 1306, -1 }, { 3793, 1306, -1 }, { 3794, 1306, -1 }, { 3795, 1306, -1 }, { 3796, 1306, -1 }, { 3797, 1306, -1 }, { 3798, 1306, -1 }, { 3799, 1306, -1 }, { 3800, 1306, -1 }, { 3801, 1306, -1 }, { 3802, 1306, -1 }, { 3803, 1306, -1 }, { 3804, 1306, -1 }, { 3805, 1306, -1 }, { 3806, 1306, -1 }, { 3807, 1306, -1 }, { 3808, 1306, -1 }, { 3809, 1306, -1 }, { 3810, 1306, -1 }, { 3811, 1306, -1 }, { 3812, 1306, -1 }, { 3813, 1306, -1 }, { 3814, 1306, -1 }, { 3815, 1306, -1 }, { 3816, 1306, -1 }, { 3817, 1306, -1 }, { 3818, 1306, -1 }, { 3819, 1306, -1 }, { 3820, 1306, -1 }, { 3821, 1306, -1 }, { 3822, 1306, -1 }, { 3823, 1306, -1 }, { 3824, 1306, -1 }, { 3825, 1306, -1 }, { 3826, 1306, -1 }, { 3827, 1306, -1 }, { 3828, 1306, -1 }, { 3829, 1306, -1 }, { 3830, 1306, -1 }, { 3831, 1306, -1 }, { 3832, 1306, -1 }, { 3833, 1306, -1 }, { 3834, 1306, -1 }, { 3835, 1306, -1 }, { 3836, 1306, -1 }, { 3837, 1306, -1 }, { 3838, 1306, -1 }, { 3839, 1306, -1 }, { 3840, 1306, -1 }, { 3841, 1306, -1 }, { 3842, 1306, -1 }, { 3791, 905, -1 }, { 3792, 905, -1 }, { 3793, 905, -1 }, { 3794, 905, -1 }, { 3795, 905, -1 }, { 3796, 905, -1 }, { 3797, 905, -1 }, { 3798, 905, -1 }, { 3799, 905, -1 }, { 3800, 905, -1 }, { 3801, 905, -1 }, { 3802, 905, -1 }, { 3803, 905, -1 }, { 3804, 905, -1 }, { 3805, 905, -1 }, { 3806, 905, -1 }, { 3807, 905, -1 }, { 3808, 905, -1 }, { 3809, 905, -1 }, { 3810, 905, -1 }, { 3811, 905, -1 }, { 3812, 905, -1 }, { 3813, 905, -1 }, { 3814, 905, -1 }, { 3815, 905, -1 }, { 3816, 905, -1 }, { 3817, 905, -1 }, { 3818, 905, -1 }, { 3819, 905, -1 }, { 3820, 905, -1 }, { 3821, 905, -1 }, { 3822, 905, -1 }, { 3823, 905, -1 }, { 3824, 905, -1 }, { 3825, 905, -1 }, { 3826, 905, -1 }, { 3827, 905, -1 }, { 3828, 905, -1 }, { 3829, 905, -1 }, { 3830, 905, -1 }, { 3831, 905, -1 }, { 3832, 905, -1 }, { 3833, 905, -1 }, { 3834, 905, -1 }, { 3835, 905, -1 }, { 3836, 905, -1 }, { 3837, 905, -1 }, { 3838, 905, -1 }, { 3839, 905, -1 }, { 3840, 905, -1 }, { 3841, 905, -1 }, { 3842, 905, -1 }, { 3791, 1796, -1 }, { 3792, 1796, -1 }, { 3793, 1796, -1 }, { 3794, 1796, -1 }, { 3795, 1796, -1 }, { 3796, 1796, -1 }, { 3797, 1796, -1 }, { 3798, 1796, -1 }, { 3799, 1796, -1 }, { 3800, 1796, -1 }, { 3801, 1796, -1 }, { 3802, 1796, -1 }, { 3803, 1796, -1 }, { 3804, 1796, -1 }, { 3805, 1796, -1 }, { 3806, 1796, -1 }, { 3807, 1796, -1 }, { 3808, 1796, -1 }, { 3809, 1796, -1 }, { 3810, 1796, -1 }, { 3811, 1796, -1 }, { 3812, 1796, -1 }, { 3813, 1796, -1 }, { 3814, 1796, -1 }, { 3815, 1796, -1 }, { 3816, 1796, -1 }, { 3817, 1796, -1 }, { 3818, 1796, -1 }, { 3819, 1796, -1 }, { 3820, 1796, -1 }, { 3821, 1796, -1 }, { 3822, 1796, -1 }, { 3823, 1796, -1 }, { 3824, 1796, -1 }, { 3825, 1796, -1 }, { 3826, 1796, -1 }, { 3827, 1796, -1 }, { 3828, 1796, -1 }, { 3829, 1796, -1 }, { 3830, 1796, -1 }, { 3831, 1796, -1 }, { 3832, 1796, -1 }, { 3833, 1796, -1 }, { 3834, 1796, -1 }, { 3835, 1796, -1 }, { 3836, 1796, -1 }, { 3837, 1796, -1 }, { 3838, 1796, -1 }, { 3839, 1796, -1 }, { 3840, 1796, -1 }, { 3841, 1796, -1 }, { 3842, 1796, -1 }, { 3791, 1659, -1 }, { 3792, 1659, -1 }, { 3793, 1659, -1 }, { 3794, 1659, -1 }, { 3795, 1659, -1 }, { 3796, 1659, -1 }, { 3797, 1659, -1 }, { 3798, 1659, -1 }, { 3799, 1659, -1 }, { 3800, 1659, -1 }, { 3801, 1659, -1 }, { 3802, 1659, -1 }, { 3803, 1659, -1 }, { 3804, 1659, -1 }, { 3805, 1659, -1 }, { 3806, 1659, -1 }, { 3807, 1659, -1 }, { 3808, 1659, -1 }, { 3809, 1659, -1 }, { 3810, 1659, -1 }, { 3811, 1659, -1 }, { 3812, 1659, -1 }, { 3813, 1659, -1 }, { 3814, 1659, -1 }, { 3815, 1659, -1 }, { 3816, 1659, -1 }, { 3817, 1659, -1 }, { 3818, 1659, -1 }, { 3819, 1659, -1 }, { 3820, 1659, -1 }, { 3821, 1659, -1 }, { 3822, 1659, -1 }, { 3823, 1659, -1 }, { 3824, 1659, -1 }, { 3825, 1659, -1 }, { 3826, 1659, -1 }, { 3827, 1659, -1 }, { 3828, 1659, -1 }, { 3829, 1659, -1 }, { 3830, 1659, -1 }, { 3831, 1659, -1 }, { 3832, 1659, -1 }, { 3833, 1659, -1 }, { 3834, 1659, -1 }, { 3835, 1659, -1 }, { 3836, 1659, -1 }, { 3837, 1659, -1 }, { 3838, 1659, -1 }, { 3839, 1659, -1 }, { 3840, 1659, -1 }, { 3841, 1659, -1 }, { 3842, 1659, -1 }, { 3791, 1525, -1 }, { 3792, 1525, -1 }, { 3793, 1525, -1 }, { 3794, 1525, -1 }, { 3795, 1525, -1 }, { 3796, 1525, -1 }, { 3797, 1525, -1 }, { 3798, 1525, -1 }, { 3799, 1525, -1 }, { 3800, 1525, -1 }, { 3801, 1525, -1 }, { 3802, 1525, -1 }, { 3803, 1525, -1 }, { 3804, 1525, -1 }, { 3805, 1525, -1 }, { 3806, 1525, -1 }, { 3807, 1525, -1 }, { 3808, 1525, -1 }, { 3809, 1525, -1 }, { 3810, 1525, -1 }, { 3811, 1525, -1 }, { 3812, 1525, -1 }, { 3813, 1525, -1 }, { 3814, 1525, -1 }, { 3815, 1525, -1 }, { 3816, 1525, -1 }, { 3817, 1525, -1 }, { 3818, 1525, -1 }, { 3819, 1525, -1 }, { 3820, 1525, -1 }, { 3821, 1525, -1 }, { 3822, 1525, -1 }, { 3823, 1525, -1 }, { 3824, 1525, -1 }, { 3825, 1525, -1 }, { 3826, 1525, -1 }, { 3827, 1525, -1 }, { 3828, 1525, -1 }, { 3829, 1525, -1 }, { 3830, 1525, -1 }, { 3831, 1525, -1 }, { 3832, 1525, -1 }, { 3833, 1525, -1 }, { 3834, 1525, -1 }, { 3835, 1525, -1 }, { 3836, 1525, -1 }, { 3837, 1525, -1 }, { 3838, 1525, -1 }, { 3839, 1525, -1 }, { 3840, 1525, -1 }, { 3841, 1525, -1 }, { 3842, 1525, -1 }, { 3791, 1481, -1 }, { 3792, 1481, -1 }, { 3793, 1481, -1 }, { 3794, 1481, -1 }, { 3795, 1481, -1 }, { 3796, 1481, -1 }, { 3797, 1481, -1 }, { 3798, 1481, -1 }, { 3799, 1481, -1 }, { 3800, 1481, -1 }, { 3801, 1481, -1 }, { 3802, 1481, -1 }, { 3803, 1481, -1 }, { 3804, 1481, -1 }, { 3805, 1481, -1 }, { 3806, 1481, -1 }, { 3807, 1481, -1 }, { 3808, 1481, -1 }, { 3809, 1481, -1 }, { 3810, 1481, -1 }, { 3811, 1481, -1 }, { 3812, 1481, -1 }, { 3813, 1481, -1 }, { 3814, 1481, -1 }, { 3815, 1481, -1 }, { 3816, 1481, -1 }, { 3817, 1481, -1 }, { 3818, 1481, -1 }, { 3819, 1481, -1 }, { 3820, 1481, -1 }, { 3821, 1481, -1 }, { 3822, 1481, -1 }, { 3823, 1481, -1 }, { 3824, 1481, -1 }, { 3825, 1481, -1 }, { 3826, 1481, -1 }, { 3827, 1481, -1 }, { 3828, 1481, -1 }, { 3829, 1481, -1 }, { 3830, 1481, -1 }, { 3831, 1481, -1 }, { 3832, 1481, -1 }, { 3833, 1481, -1 }, { 3834, 1481, -1 }, { 3835, 1481, -1 }, { 3836, 1481, -1 }, { 3837, 1481, -1 }, { 3838, 1481, -1 }, { 3839, 1481, -1 }, { 3840, 1481, -1 }, { 3841, 1481, -1 }, { 3842, 1481, -1 }, { 3792, 1503, -1 }, { 3793, 1503, -1 }, { 3794, 1503, -1 }, { 3795, 1503, -1 }, { 3796, 1503, -1 }, { 3797, 1503, -1 }, { 3798, 1503, -1 }, { 3800, 1503, -1 }, { 3801, 1503, -1 }, { 3802, 1503, -1 }, { 3803, 1503, -1 }, { 3804, 1503, -1 }, { 3807, 1503, -1 }, { 3808, 1503, -1 }, { 3809, 1503, -1 }, { 3810, 1503, -1 }, { 3813, 1503, -1 }, { 3814, 1503, -1 }, { 3815, 1503, -1 }, { 3816, 1503, -1 }, { 3817, 1503, -1 }, { 3818, 1503, -1 }, { 3819, 1503, -1 }, { 3820, 1503, -1 }, { 3821, 1503, -1 }, { 3822, 1503, -1 }, { 3823, 1503, -1 }, { 3825, 1503, -1 }, { 3826, 1503, -1 }, { 3827, 1503, -1 }, { 3828, 1503, -1 }, { 3829, 1503, -1 }, { 3830, 1503, -1 }, { 3831, 1503, -1 }, { 3832, 1503, -1 }, { 3833, 1503, -1 }, { 3834, 1503, -1 }, { 3835, 1503, -1 }, { 3836, 1503, -1 }, { 3837, 1503, -1 }, { 3838, 1503, -1 }, { 3839, 1503, -1 }, { 3840, 1503, -1 }, { 3841, 1503, -1 }, { 3842, 1503, -1 }, { 3792, 1507, -1 }, { 3793, 1507, -1 }, { 3794, 1507, -1 }, { 3795, 1507, -1 }, { 3796, 1507, -1 }, { 3797, 1507, -1 }, { 3798, 1507, -1 }, { 3800, 1507, -1 }, { 3801, 1507, -1 }, { 3802, 1507, -1 }, { 3803, 1507, -1 }, { 3804, 1507, -1 }, { 3807, 1507, -1 }, { 3808, 1507, -1 }, { 3809, 1507, -1 }, { 3810, 1507, -1 }, { 3813, 1507, -1 }, { 3814, 1507, -1 }, { 3815, 1507, -1 }, { 3816, 1507, -1 }, { 3817, 1507, -1 }, { 3818, 1507, -1 }, { 3819, 1507, -1 }, { 3820, 1507, -1 }, { 3821, 1507, -1 }, { 3822, 1507, -1 }, { 3823, 1507, -1 }, { 3825, 1507, -1 }, { 3826, 1507, -1 }, { 3827, 1507, -1 }, { 3828, 1507, -1 }, { 3829, 1507, -1 }, { 3830, 1507, -1 }, { 3831, 1507, -1 }, { 3832, 1507, -1 }, { 3833, 1507, -1 }, { 3834, 1507, -1 }, { 3835, 1507, -1 }, { 3836, 1507, -1 }, { 3837, 1507, -1 }, { 3838, 1507, -1 }, { 3839, 1507, -1 }, { 3840, 1507, -1 }, { 3841, 1507, -1 }, { 3842, 1507, -1 }, { 3792, 1511, -1 }, { 3793, 1511, -1 }, { 3794, 1511, -1 }, { 3795, 1511, -1 }, { 3796, 1511, -1 }, { 3797, 1511, -1 }, { 3798, 1511, -1 }, { 3799, 1511, -1 }, { 3800, 1511, -1 }, { 3801, 1511, -1 }, { 3802, 1511, -1 }, { 3803, 1511, -1 }, { 3804, 1511, -1 }, { 3807, 1511, -1 }, { 3808, 1511, -1 }, { 3809, 1511, -1 }, { 3810, 1511, -1 }, { 3813, 1511, -1 }, { 3814, 1511, -1 }, { 3815, 1511, -1 }, { 3816, 1511, -1 }, { 3817, 1511, -1 }, { 3818, 1511, -1 }, { 3819, 1511, -1 }, { 3820, 1511, -1 }, { 3821, 1511, -1 }, { 3822, 1511, -1 }, { 3823, 1511, -1 }, { 3825, 1511, -1 }, { 3826, 1511, -1 }, { 3827, 1511, -1 }, { 3828, 1511, -1 }, { 3829, 1511, -1 }, { 3830, 1511, -1 }, { 3831, 1511, -1 }, { 3832, 1511, -1 }, { 3833, 1511, -1 }, { 3834, 1511, -1 }, { 3835, 1511, -1 }, { 3836, 1511, -1 }, { 3837, 1511, -1 }, { 3838, 1511, -1 }, { 3839, 1511, -1 }, { 3840, 1511, -1 }, { 3841, 1511, -1 }, { 3842, 1511, -1 }, { 3924, 1777, -1 }, { 3925, 1777, -1 }, { 3926, 1777, -1 }, { 3927, 1777, -1 }, { 3928, 1777, -1 }, { 3929, 1777, -1 }, { 3930, 1777, -1 }, { 3924, 1682, -1 }, { 3925, 1682, -1 }, { 3926, 1682, -1 }, { 3927, 1682, -1 }, { 3928, 1682, -1 }, { 3929, 1682, -1 }, { 3930, 1682, -1 }, { 3924, 632, -1 }, { 3925, 632, -1 }, { 3926, 632, -1 }, { 3927, 632, -1 }, { 3928, 632, -1 }, { 3929, 632, -1 }, { 3930, 632, -1 }, { 3924, 634, -1 }, { 3925, 634, -1 }, { 3926, 634, -1 }, { 3927, 634, -1 }, { 3928, 634, -1 }, { 3929, 634, -1 }, { 3930, 634, -1 }, { 3924, 505, -1 }, { 3925, 505, -1 }, { 3926, 505, -1 }, { 3927, 505, -1 }, { 3928, 505, -1 }, { 3929, 505, -1 }, { 3930, 505, -1 }, { 3924, 971, -1 }, { 3925, 971, -1 }, { 3926, 971, -1 }, { 3927, 971, -1 }, { 3928, 971, -1 }, { 3929, 971, -1 }, { 3930, 971, -1 }, { 3924, 1119, -1 }, { 3925, 1119, -1 }, { 3926, 1119, -1 }, { 3927, 1119, -1 }, { 3928, 1119, -1 }, { 3929, 1119, -1 }, { 3930, 1119, -1 }, { 3924, 1083, -1 }, { 3925, 1083, -1 }, { 3926, 1083, -1 }, { 3927, 1083, -1 }, { 3928, 1083, -1 }, { 3929, 1083, -1 }, { 3930, 1083, -1 }, { 3924, 979, -1 }, { 3925, 979, -1 }, { 3926, 979, -1 }, { 3927, 979, -1 }, { 3928, 979, -1 }, { 3929, 979, -1 }, { 3930, 979, -1 }, { 3924, 141, -1 }, { 3925, 141, -1 }, { 3926, 141, -1 }, { 3927, 141, -1 }, { 3928, 141, -1 }, { 3929, 141, -1 }, { 3930, 141, -1 }, { 3924, 147, -1 }, { 3925, 147, -1 }, { 3926, 147, -1 }, { 3927, 147, -1 }, { 3928, 147, -1 }, { 3929, 147, -1 }, { 3930, 147, -1 }, { 3924, 410, -1 }, { 3925, 410, -1 }, { 3926, 410, -1 }, { 3927, 410, -1 }, { 3928, 410, -1 }, { 3929, 410, -1 }, { 3930, 410, -1 }, { 3924, 700, -1 }, { 3925, 700, -1 }, { 3926, 700, -1 }, { 3927, 700, -1 }, { 3928, 700, -1 }, { 3929, 700, -1 }, { 3930, 700, -1 }, { 3924, 455, -1 }, { 3925, 455, -1 }, { 3926, 455, -1 }, { 3927, 455, -1 }, { 3928, 455, -1 }, { 3929, 455, -1 }, { 3930, 455, -1 }, { 3924, 262, -1 }, { 3925, 262, -1 }, { 3926, 262, -1 }, { 3927, 262, -1 }, { 3928, 262, -1 }, { 3929, 262, -1 }, { 3930, 262, -1 }, { 3924, 264, -1 }, { 3925, 264, -1 }, { 3926, 264, -1 }, { 3927, 264, -1 }, { 3928, 264, -1 }, { 3929, 264, -1 }, { 3930, 264, -1 }, { 3924, 57, -1 }, { 3925, 57, -1 }, { 3926, 57, -1 }, { 3927, 57, -1 }, { 3928, 57, -1 }, { 3929, 57, -1 }, { 3930, 57, -1 }, { 3924, 453, -1 }, { 3925, 453, -1 }, { 3926, 453, -1 }, { 3927, 453, -1 }, { 3928, 453, -1 }, { 3929, 453, -1 }, { 3930, 453, -1 }, { 3924, 263, -1 }, { 3925, 263, -1 }, { 3926, 263, -1 }, { 3927, 263, -1 }, { 3928, 263, -1 }, { 3929, 263, -1 }, { 3930, 263, -1 }, { 3924, 629, -1 }, { 3925, 629, -1 }, { 3926, 629, -1 }, { 3927, 629, -1 }, { 3928, 629, -1 }, { 3929, 629, -1 }, { 3930, 629, -1 }, { 3924, 626, -1 }, { 3925, 626, -1 }, { 3926, 626, -1 }, { 3927, 626, -1 }, { 3928, 626, -1 }, { 3929, 626, -1 }, { 3930, 626, -1 }, { 3924, 534, -1 }, { 3925, 534, -1 }, { 3926, 534, -1 }, { 3927, 534, -1 }, { 3928, 534, -1 }, { 3929, 534, -1 }, { 3930, 534, -1 }, { 3924, 532, -1 }, { 3925, 532, -1 }, { 3926, 532, -1 }, { 3927, 532, -1 }, { 3928, 532, -1 }, { 3929, 532, -1 }, { 3930, 532, -1 }, { 3924, 538, -1 }, { 3925, 538, -1 }, { 3926, 538, -1 }, { 3927, 538, -1 }, { 3928, 538, -1 }, { 3929, 538, -1 }, { 3930, 538, -1 }, { 3924, 504, -1 }, { 3925, 504, -1 }, { 3926, 504, -1 }, { 3927, 504, -1 }, { 3928, 504, -1 }, { 3929, 504, -1 }, { 3930, 504, -1 }, { 3924, 1491, -1 }, { 3925, 1491, -1 }, { 3926, 1491, -1 }, { 3927, 1491, -1 }, { 3928, 1491, -1 }, { 3929, 1491, -1 }, { 3930, 1491, -1 }, { 3924, 1501, -1 }, { 3925, 1501, -1 }, { 3926, 1501, -1 }, { 3927, 1501, -1 }, { 3928, 1501, -1 }, { 3929, 1501, -1 }, { 3930, 1501, -1 }, { 3924, 1351, -1 }, { 3925, 1351, -1 }, { 3926, 1351, -1 }, { 3927, 1351, -1 }, { 3928, 1351, -1 }, { 3929, 1351, -1 }, { 3930, 1351, -1 }, { 3924, 885, -1 }, { 3925, 885, -1 }, { 3926, 885, -1 }, { 3927, 885, -1 }, { 3928, 885, -1 }, { 3929, 885, -1 }, { 3930, 885, -1 }, { 3924, 1449, -1 }, { 3925, 1449, -1 }, { 3926, 1449, -1 }, { 3927, 1449, -1 }, { 3928, 1449, -1 }, { 3929, 1449, -1 }, { 3930, 1449, -1 }, { 3924, 1467, -1 }, { 3925, 1467, -1 }, { 3926, 1467, -1 }, { 3927, 1467, -1 }, { 3928, 1467, -1 }, { 3929, 1467, -1 }, { 3930, 1467, -1 }, { 3924, 1468, -1 }, { 3925, 1468, -1 }, { 3926, 1468, -1 }, { 3927, 1468, -1 }, { 3928, 1468, -1 }, { 3929, 1468, -1 }, { 3930, 1468, -1 }, { 3924, 1445, -1 }, { 3925, 1445, -1 }, { 3926, 1445, -1 }, { 3927, 1445, -1 }, { 3928, 1445, -1 }, { 3929, 1445, -1 }, { 3930, 1445, -1 }, { 3924, 1444, -1 }, { 3925, 1444, -1 }, { 3926, 1444, -1 }, { 3927, 1444, -1 }, { 3928, 1444, -1 }, { 3929, 1444, -1 }, { 3930, 1444, -1 }, { 3924, 1450, -1 }, { 3925, 1450, -1 }, { 3926, 1450, -1 }, { 3927, 1450, -1 }, { 3928, 1450, -1 }, { 3929, 1450, -1 }, { 3930, 1450, -1 }, { 3924, 1446, -1 }, { 3925, 1446, -1 }, { 3926, 1446, -1 }, { 3927, 1446, -1 }, { 3928, 1446, -1 }, { 3929, 1446, -1 }, { 3930, 1446, -1 }, { 3924, 1448, -1 }, { 3925, 1448, -1 }, { 3926, 1448, -1 }, { 3927, 1448, -1 }, { 3928, 1448, -1 }, { 3929, 1448, -1 }, { 3930, 1448, -1 }, { 3924, 1447, -1 }, { 3925, 1447, -1 }, { 3926, 1447, -1 }, { 3927, 1447, -1 }, { 3928, 1447, -1 }, { 3929, 1447, -1 }, { 3930, 1447, -1 }, { 3924, 1458, -1 }, { 3925, 1458, -1 }, { 3926, 1458, -1 }, { 3927, 1458, -1 }, { 3928, 1458, -1 }, { 3929, 1458, -1 }, { 3930, 1458, -1 }, { 3924, 1460, -1 }, { 3925, 1460, -1 }, { 3926, 1460, -1 }, { 3927, 1460, -1 }, { 3928, 1460, -1 }, { 3929, 1460, -1 }, { 3930, 1460, -1 }, { 3924, 1463, -1 }, { 3925, 1463, -1 }, { 3926, 1463, -1 }, { 3927, 1463, -1 }, { 3928, 1463, -1 }, { 3929, 1463, -1 }, { 3930, 1463, -1 }, { 3924, 1661, -1 }, { 3925, 1661, -1 }, { 3926, 1661, -1 }, { 3927, 1661, -1 }, { 3928, 1661, -1 }, { 3929, 1661, -1 }, { 3930, 1661, -1 }, { 3924, 1527, -1 }, { 3925, 1527, -1 }, { 3926, 1527, -1 }, { 3927, 1527, -1 }, { 3928, 1527, -1 }, { 3929, 1527, -1 }, { 3930, 1527, -1 }, { 3924, 1513, -1 }, { 3925, 1513, -1 }, { 3926, 1513, -1 }, { 3927, 1513, -1 }, { 3928, 1513, -1 }, { 3929, 1513, -1 }, { 3930, 1513, -1 }, { 3892, 1258, -1 }, { 3893, 1258, -1 }, { 3896, 1258, -1 }, { 3897, 1258, -1 }, { 3898, 1258, -1 }, { 3899, 1258, -1 }, { 3892, 1257, -1 }, { 3893, 1257, -1 }, { 3896, 1257, -1 }, { 3897, 1257, -1 }, { 3898, 1257, -1 }, { 3899, 1257, -1 }, { 3892, 1256, -1 }, { 3893, 1256, -1 }, { 3896, 1256, -1 }, { 3897, 1256, -1 }, { 3898, 1256, -1 }, { 3899, 1256, -1 }, { 3892, 1259, -1 }, { 3893, 1259, -1 }, { 3896, 1259, -1 }, { 3897, 1259, -1 }, { 3898, 1259, -1 }, { 3899, 1259, -1 }, { 3892, 1737, -1 }, { 3893, 1737, -1 }, { 3896, 1737, -1 }, { 3897, 1737, -1 }, { 3898, 1737, -1 }, { 3899, 1737, -1 }, { 3892, 1778, -1 }, { 3893, 1778, -1 }, { 3896, 1778, -1 }, { 3897, 1778, -1 }, { 3898, 1778, -1 }, { 3899, 1778, -1 }, { 3892, 1777, -1 }, { 3893, 1777, -1 }, { 3896, 1777, -1 }, { 3897, 1777, -1 }, { 3898, 1777, -1 }, { 3899, 1777, -1 }, { 3892, 2004, -1 }, { 3893, 2004, -1 }, { 3896, 2004, -1 }, { 3897, 2004, -1 }, { 3898, 2004, -1 }, { 3899, 2004, -1 }, { 3892, 1867, -1 }, { 3893, 1867, -1 }, { 3896, 1867, -1 }, { 3897, 1867, -1 }, { 3898, 1867, -1 }, { 3899, 1867, -1 }, { 3892, 1923, -1 }, { 3893, 1923, -1 }, { 3896, 1923, -1 }, { 3897, 1923, -1 }, { 3898, 1923, -1 }, { 3899, 1923, -1 }, { 3892, 1922, -1 }, { 3893, 1922, -1 }, { 3896, 1922, -1 }, { 3897, 1922, -1 }, { 3898, 1922, -1 }, { 3899, 1922, -1 }, { 3892, 1868, -1 }, { 3893, 1868, -1 }, { 3896, 1868, -1 }, { 3897, 1868, -1 }, { 3898, 1868, -1 }, { 3899, 1868, -1 }, { 3892, 1984, -1 }, { 3893, 1984, -1 }, { 3896, 1984, -1 }, { 3897, 1984, -1 }, { 3898, 1984, -1 }, { 3899, 1984, -1 }, { 3892, 1947, -1 }, { 3893, 1947, -1 }, { 3896, 1947, -1 }, { 3897, 1947, -1 }, { 3898, 1947, -1 }, { 3899, 1947, -1 }, { 3892, 1924, -1 }, { 3893, 1924, -1 }, { 3896, 1924, -1 }, { 3897, 1924, -1 }, { 3898, 1924, -1 }, { 3899, 1924, -1 }, { 3892, 1925, -1 }, { 3893, 1925, -1 }, { 3896, 1925, -1 }, { 3897, 1925, -1 }, { 3898, 1925, -1 }, { 3899, 1925, -1 }, { 3892, 1957, -1 }, { 3893, 1957, -1 }, { 3896, 1957, -1 }, { 3897, 1957, -1 }, { 3898, 1957, -1 }, { 3899, 1957, -1 }, { 3892, 1926, -1 }, { 3893, 1926, -1 }, { 3896, 1926, -1 }, { 3897, 1926, -1 }, { 3898, 1926, -1 }, { 3899, 1926, -1 }, { 3892, 1951, -1 }, { 3893, 1951, -1 }, { 3896, 1951, -1 }, { 3897, 1951, -1 }, { 3898, 1951, -1 }, { 3899, 1951, -1 }, { 3892, 1831, -1 }, { 3893, 1831, -1 }, { 3896, 1831, -1 }, { 3897, 1831, -1 }, { 3898, 1831, -1 }, { 3899, 1831, -1 }, { 3892, 1768, -1 }, { 3893, 1768, -1 }, { 3896, 1768, -1 }, { 3897, 1768, -1 }, { 3898, 1768, -1 }, { 3899, 1768, -1 }, { 3892, 1913, -1 }, { 3893, 1913, -1 }, { 3896, 1913, -1 }, { 3897, 1913, -1 }, { 3898, 1913, -1 }, { 3899, 1913, -1 }, { 3892, 1912, -1 }, { 3893, 1912, -1 }, { 3896, 1912, -1 }, { 3897, 1912, -1 }, { 3898, 1912, -1 }, { 3899, 1912, -1 }, { 3892, 1914, -1 }, { 3893, 1914, -1 }, { 3896, 1914, -1 }, { 3897, 1914, -1 }, { 3898, 1914, -1 }, { 3899, 1914, -1 }, { 3892, 1794, -1 }, { 3893, 1794, -1 }, { 3896, 1794, -1 }, { 3897, 1794, -1 }, { 3898, 1794, -1 }, { 3899, 1794, -1 }, { 3892, 1802, -1 }, { 3893, 1802, -1 }, { 3896, 1802, -1 }, { 3897, 1802, -1 }, { 3898, 1802, -1 }, { 3899, 1802, -1 }, { 3892, 1803, -1 }, { 3893, 1803, -1 }, { 3896, 1803, -1 }, { 3897, 1803, -1 }, { 3898, 1803, -1 }, { 3899, 1803, -1 }, { 3892, 1804, -1 }, { 3893, 1804, -1 }, { 3896, 1804, -1 }, { 3897, 1804, -1 }, { 3898, 1804, -1 }, { 3899, 1804, -1 }, { 3892, 1850, -1 }, { 3893, 1850, -1 }, { 3896, 1850, -1 }, { 3897, 1850, -1 }, { 3898, 1850, -1 }, { 3899, 1850, -1 }, { 3892, 1852, -1 }, { 3893, 1852, -1 }, { 3896, 1852, -1 }, { 3897, 1852, -1 }, { 3898, 1852, -1 }, { 3899, 1852, -1 }, { 3892, 1881, -1 }, { 3893, 1881, -1 }, { 3896, 1881, -1 }, { 3897, 1881, -1 }, { 3898, 1881, -1 }, { 3899, 1881, -1 }, { 3892, 1891, -1 }, { 3893, 1891, -1 }, { 3896, 1891, -1 }, { 3897, 1891, -1 }, { 3898, 1891, -1 }, { 3899, 1891, -1 }, { 3892, 1716, -1 }, { 3893, 1716, -1 }, { 3896, 1716, -1 }, { 3897, 1716, -1 }, { 3898, 1716, -1 }, { 3899, 1716, -1 }, { 3892, 1682, -1 }, { 3893, 1682, -1 }, { 3896, 1682, -1 }, { 3897, 1682, -1 }, { 3898, 1682, -1 }, { 3899, 1682, -1 }, { 3892, 419, -1 }, { 3893, 419, -1 }, { 3896, 419, -1 }, { 3897, 419, -1 }, { 3898, 419, -1 }, { 3899, 419, -1 }, { 3892, 632, -1 }, { 3893, 632, -1 }, { 3896, 632, -1 }, { 3897, 632, -1 }, { 3898, 632, -1 }, { 3899, 632, -1 }, { 3892, 634, -1 }, { 3893, 634, -1 }, { 3896, 634, -1 }, { 3897, 634, -1 }, { 3898, 634, -1 }, { 3899, 634, -1 }, { 3892, 417, -1 }, { 3893, 417, -1 }, { 3896, 417, -1 }, { 3897, 417, -1 }, { 3898, 417, -1 }, { 3899, 417, -1 }, { 3892, 506, -1 }, { 3893, 506, -1 }, { 3896, 506, -1 }, { 3897, 506, -1 }, { 3898, 506, -1 }, { 3899, 506, -1 }, { 3892, 577, -1 }, { 3893, 577, -1 }, { 3896, 577, -1 }, { 3897, 577, -1 }, { 3898, 577, -1 }, { 3899, 577, -1 }, { 3892, 505, -1 }, { 3893, 505, -1 }, { 3896, 505, -1 }, { 3897, 505, -1 }, { 3898, 505, -1 }, { 3899, 505, -1 }, { 3892, 950, -1 }, { 3893, 950, -1 }, { 3896, 950, -1 }, { 3897, 950, -1 }, { 3898, 950, -1 }, { 3899, 950, -1 }, { 3892, 971, -1 }, { 3893, 971, -1 }, { 3896, 971, -1 }, { 3897, 971, -1 }, { 3898, 971, -1 }, { 3899, 971, -1 }, { 3892, 1119, -1 }, { 3893, 1119, -1 }, { 3896, 1119, -1 }, { 3897, 1119, -1 }, { 3898, 1119, -1 }, { 3899, 1119, -1 }, { 3892, 1083, -1 }, { 3893, 1083, -1 }, { 3896, 1083, -1 }, { 3897, 1083, -1 }, { 3898, 1083, -1 }, { 3899, 1083, -1 }, { 3892, 1063, -1 }, { 3893, 1063, -1 }, { 3896, 1063, -1 }, { 3897, 1063, -1 }, { 3898, 1063, -1 }, { 3899, 1063, -1 }, { 3892, 1038, -1 }, { 3893, 1038, -1 }, { 3896, 1038, -1 }, { 3897, 1038, -1 }, { 3898, 1038, -1 }, { 3899, 1038, -1 }, { 3892, 986, -1 }, { 3893, 986, -1 }, { 3896, 986, -1 }, { 3897, 986, -1 }, { 3898, 986, -1 }, { 3899, 986, -1 }, { 3892, 979, -1 }, { 3893, 979, -1 }, { 3896, 979, -1 }, { 3897, 979, -1 }, { 3898, 979, -1 }, { 3899, 979, -1 }, { 3892, 141, -1 }, { 3893, 141, -1 }, { 3896, 141, -1 }, { 3897, 141, -1 }, { 3898, 141, -1 }, { 3899, 141, -1 }, { 3892, 471, -1 }, { 3893, 471, -1 }, { 3896, 471, -1 }, { 3897, 471, -1 }, { 3898, 471, -1 }, { 3899, 471, -1 }, { 3892, 63, -1 }, { 3893, 63, -1 }, { 3896, 63, -1 }, { 3897, 63, -1 }, { 3898, 63, -1 }, { 3899, 63, -1 }, { 3892, 7, -1 }, { 3893, 7, -1 }, { 3896, 7, -1 }, { 3892, 13, -1 }, { 3893, 13, -1 }, { 3896, 13, -1 }, { 3897, 13, -1 }, { 3898, 13, -1 }, { 3899, 13, -1 }, { 3892, 23, -1 }, { 3893, 23, -1 }, { 3896, 23, -1 }, { 3897, 23, -1 }, { 3898, 23, -1 }, { 3899, 23, -1 }, { 3892, 1779, -1 }, { 3893, 1779, -1 }, { 3896, 1779, -1 }, { 3897, 1779, -1 }, { 3898, 1779, -1 }, { 3899, 1779, -1 }, { 3892, 1985, -1 }, { 3893, 1985, -1 }, { 3896, 1985, -1 }, { 3897, 1985, -1 }, { 3898, 1985, -1 }, { 3899, 1985, -1 }, { 3892, 578, -1 }, { 3893, 578, -1 }, { 3896, 578, -1 }, { 3897, 578, -1 }, { 3898, 578, -1 }, { 3899, 578, -1 }, { 3892, 1064, -1 }, { 3893, 1064, -1 }, { 3896, 1064, -1 }, { 3897, 1064, -1 }, { 3898, 1064, -1 }, { 3899, 1064, -1 }, { 3892, 1042, -1 }, { 3893, 1042, -1 }, { 3896, 1042, -1 }, { 3897, 1042, -1 }, { 3898, 1042, -1 }, { 3899, 1042, -1 }, { 3892, 987, -1 }, { 3893, 987, -1 }, { 3896, 987, -1 }, { 3897, 987, -1 }, { 3898, 987, -1 }, { 3899, 987, -1 }, { 3892, 100, -1 }, { 3893, 100, -1 }, { 3896, 100, -1 }, { 3897, 100, -1 }, { 3898, 100, -1 }, { 3899, 100, -1 }, { 3892, 1331, -1 }, { 3893, 1331, -1 }, { 3896, 1331, -1 }, { 3897, 1331, -1 }, { 3898, 1331, -1 }, { 3899, 1331, -1 }, { 3892, 192, -1 }, { 3893, 192, -1 }, { 3896, 192, -1 }, { 3897, 192, -1 }, { 3898, 192, -1 }, { 3899, 192, -1 }, { 3892, 1355, -1 }, { 3893, 1355, -1 }, { 3896, 1355, -1 }, { 3897, 1355, -1 }, { 3898, 1355, -1 }, { 3899, 1355, -1 }, { 3892, 1597, -1 }, { 3893, 1597, -1 }, { 3896, 1597, -1 }, { 3897, 1597, -1 }, { 3898, 1597, -1 }, { 3899, 1597, -1 }, { 3892, 1601, -1 }, { 3893, 1601, -1 }, { 3896, 1601, -1 }, { 3897, 1601, -1 }, { 3898, 1601, -1 }, { 3899, 1601, -1 }, { 3892, 1725, -1 }, { 3893, 1725, -1 }, { 3896, 1725, -1 }, { 3897, 1725, -1 }, { 3898, 1725, -1 }, { 3899, 1725, -1 }, { 3892, 809, -1 }, { 3893, 809, -1 }, { 3896, 809, -1 }, { 3897, 809, -1 }, { 3898, 809, -1 }, { 3899, 809, -1 }, { 3892, 690, -1 }, { 3893, 690, -1 }, { 3896, 690, -1 }, { 3897, 690, -1 }, { 3898, 690, -1 }, { 3899, 690, -1 }, { 3892, 694, -1 }, { 3893, 694, -1 }, { 3896, 694, -1 }, { 3897, 694, -1 }, { 3898, 694, -1 }, { 3899, 694, -1 }, { 3892, 1084, -1 }, { 3893, 1084, -1 }, { 3896, 1084, -1 }, { 3897, 1084, -1 }, { 3898, 1084, -1 }, { 3899, 1084, -1 }, { 3892, 980, -1 }, { 3893, 980, -1 }, { 3896, 980, -1 }, { 3897, 980, -1 }, { 3898, 980, -1 }, { 3899, 980, -1 }, { 3892, 142, -1 }, { 3893, 142, -1 }, { 3896, 142, -1 }, { 3897, 142, -1 }, { 3898, 142, -1 }, { 3899, 142, -1 }, { 3892, 607, -1 }, { 3893, 607, -1 }, { 3896, 607, -1 }, { 3897, 607, -1 }, { 3898, 607, -1 }, { 3899, 607, -1 }, { 3892, 861, -1 }, { 3893, 861, -1 }, { 3896, 861, -1 }, { 3897, 861, -1 }, { 3898, 861, -1 }, { 3899, 861, -1 }, { 3892, 260, -1 }, { 3893, 260, -1 }, { 3896, 260, -1 }, { 3897, 260, -1 }, { 3898, 260, -1 }, { 3899, 260, -1 }, { 3892, 899, -1 }, { 3893, 899, -1 }, { 3896, 899, -1 }, { 3897, 899, -1 }, { 3898, 899, -1 }, { 3899, 899, -1 }, { 3892, 701, -1 }, { 3893, 701, -1 }, { 3896, 701, -1 }, { 3897, 701, -1 }, { 3898, 701, -1 }, { 3899, 701, -1 }, { 3892, 33, -1 }, { 3893, 33, -1 }, { 3896, 33, -1 }, { 3897, 33, -1 }, { 3898, 33, -1 }, { 3899, 33, -1 }, { 3892, 301, -1 }, { 3893, 301, -1 }, { 3896, 301, -1 }, { 3897, 301, -1 }, { 3898, 301, -1 }, { 3899, 301, -1 }, { 3892, 281, -1 }, { 3893, 281, -1 }, { 3896, 281, -1 }, { 3897, 281, -1 }, { 3898, 281, -1 }, { 3899, 281, -1 }, { 3892, 1570, -1 }, { 3893, 1570, -1 }, { 3896, 1570, -1 }, { 3897, 1570, -1 }, { 3898, 1570, -1 }, { 3899, 1570, -1 }, { 3892, 1343, -1 }, { 3893, 1343, -1 }, { 3896, 1343, -1 }, { 3897, 1343, -1 }, { 3898, 1343, -1 }, { 3899, 1343, -1 }, { 3892, 886, -1 }, { 3893, 886, -1 }, { 3896, 886, -1 }, { 3897, 886, -1 }, { 3898, 886, -1 }, { 3899, 886, -1 }, { 3892, 1610, -1 }, { 3893, 1610, -1 }, { 3896, 1610, -1 }, { 3897, 1610, -1 }, { 3898, 1610, -1 }, { 3899, 1610, -1 }, { 3892, 292, -1 }, { 3893, 292, -1 }, { 3896, 292, -1 }, { 3897, 292, -1 }, { 3898, 292, -1 }, { 3899, 292, -1 }, { 3892, 1952, -1 }, { 3893, 1952, -1 }, { 3896, 1952, -1 }, { 3897, 1952, -1 }, { 3898, 1952, -1 }, { 3899, 1952, -1 }, { 3892, 1824, -1 }, { 3893, 1824, -1 }, { 3896, 1824, -1 }, { 3897, 1824, -1 }, { 3898, 1824, -1 }, { 3899, 1824, -1 }, { 3892, 1997, -1 }, { 3893, 1997, -1 }, { 3896, 1997, -1 }, { 3897, 1997, -1 }, { 3898, 1997, -1 }, { 3899, 1997, -1 }, { 3892, 1498, -1 }, { 3893, 1498, -1 }, { 3896, 1498, -1 }, { 3897, 1498, -1 }, { 3898, 1498, -1 }, { 3899, 1498, -1 }, { 3892, 1495, -1 }, { 3893, 1495, -1 }, { 3896, 1495, -1 }, { 3897, 1495, -1 }, { 3898, 1495, -1 }, { 3899, 1495, -1 }, { 3892, 1492, -1 }, { 3893, 1492, -1 }, { 3896, 1492, -1 }, { 3897, 1492, -1 }, { 3898, 1492, -1 }, { 3899, 1492, -1 }, { 3892, 1362, -1 }, { 3893, 1362, -1 }, { 3896, 1362, -1 }, { 3897, 1362, -1 }, { 3898, 1362, -1 }, { 3899, 1362, -1 }, { 3892, 1300, -1 }, { 3893, 1300, -1 }, { 3896, 1300, -1 }, { 3897, 1300, -1 }, { 3898, 1300, -1 }, { 3899, 1300, -1 }, { 3892, 1309, -1 }, { 3893, 1309, -1 }, { 3896, 1309, -1 }, { 3897, 1309, -1 }, { 3898, 1309, -1 }, { 3899, 1309, -1 }, { 3892, 908, -1 }, { 3893, 908, -1 }, { 3896, 908, -1 }, { 3897, 908, -1 }, { 3898, 908, -1 }, { 3899, 908, -1 }, { 3892, 1798, -1 }, { 3893, 1798, -1 }, { 3896, 1798, -1 }, { 3897, 1798, -1 }, { 3898, 1798, -1 }, { 3899, 1798, -1 }, { 3892, 1662, -1 }, { 3893, 1662, -1 }, { 3896, 1662, -1 }, { 3897, 1662, -1 }, { 3898, 1662, -1 }, { 3899, 1662, -1 }, { 3892, 1528, -1 }, { 3893, 1528, -1 }, { 3896, 1528, -1 }, { 3897, 1528, -1 }, { 3898, 1528, -1 }, { 3899, 1528, -1 }, { 3892, 1484, -1 }, { 3893, 1484, -1 }, { 3896, 1484, -1 }, { 3897, 1484, -1 }, { 3898, 1484, -1 }, { 3899, 1484, -1 }, { 3892, 1506, -1 }, { 3893, 1506, -1 }, { 3896, 1506, -1 }, { 3897, 1506, -1 }, { 3898, 1506, -1 }, { 3899, 1506, -1 }, { 3892, 1510, -1 }, { 3893, 1510, -1 }, { 3896, 1510, -1 }, { 3897, 1510, -1 }, { 3898, 1510, -1 }, { 3899, 1510, -1 }, { 3892, 1514, -1 }, { 3893, 1514, -1 }, { 3896, 1514, -1 }, { 3897, 1514, -1 }, { 3898, 1514, -1 }, { 3899, 1514, -1 }, { 3892, 743, -1 }, { 3893, 743, -1 }, { 3896, 743, -1 }, { 3897, 743, -1 }, { 3898, 743, -1 }, { 3899, 743, -1 }, { 3892, 1347, -1 }, { 3893, 1347, -1 }, { 3896, 1347, -1 }, { 3897, 1347, -1 }, { 3898, 1347, -1 }, { 3899, 1347, -1 }, { 3892, 662, -1 }, { 3893, 662, -1 }, { 3896, 662, -1 }, { 3897, 662, -1 }, { 3898, 662, -1 }, { 3899, 662, -1 }, { 3892, 1946, -1 }, { 3893, 1946, -1 }, { 3896, 1946, -1 }, { 3897, 1946, -1 }, { 3898, 1946, -1 }, { 3899, 1946, -1 }, { 3892, 1325, -1 }, { 3893, 1325, -1 }, { 3896, 1325, -1 }, { 3897, 1325, -1 }, { 3898, 1325, -1 }, { 3899, 1325, -1 }, { 3892, 1776, -1 }, { 3893, 1776, -1 }, { 3896, 1776, -1 }, { 3897, 1776, -1 }, { 3898, 1776, -1 }, { 3899, 1776, -1 }, { 3892, 1983, -1 }, { 3893, 1983, -1 }, { 3896, 1983, -1 }, { 3897, 1983, -1 }, { 3898, 1983, -1 }, { 3899, 1983, -1 }, { 3892, 576, -1 }, { 3893, 576, -1 }, { 3896, 576, -1 }, { 3897, 576, -1 }, { 3898, 576, -1 }, { 3899, 576, -1 }, { 3892, 1062, -1 }, { 3893, 1062, -1 }, { 3896, 1062, -1 }, { 3897, 1062, -1 }, { 3898, 1062, -1 }, { 3899, 1062, -1 }, { 3892, 1041, -1 }, { 3893, 1041, -1 }, { 3896, 1041, -1 }, { 3897, 1041, -1 }, { 3898, 1041, -1 }, { 3899, 1041, -1 }, { 3892, 985, -1 }, { 3893, 985, -1 }, { 3896, 985, -1 }, { 3897, 985, -1 }, { 3898, 985, -1 }, { 3899, 985, -1 }, { 3892, 98, -1 }, { 3893, 98, -1 }, { 3896, 98, -1 }, { 3897, 98, -1 }, { 3898, 98, -1 }, { 3899, 98, -1 }, { 3892, 1330, -1 }, { 3893, 1330, -1 }, { 3896, 1330, -1 }, { 3897, 1330, -1 }, { 3898, 1330, -1 }, { 3899, 1330, -1 }, { 3892, 1849, -1 }, { 3893, 1849, -1 }, { 3896, 1849, -1 }, { 3897, 1849, -1 }, { 3898, 1849, -1 }, { 3899, 1849, -1 }, { 3892, 191, -1 }, { 3893, 191, -1 }, { 3896, 191, -1 }, { 3897, 191, -1 }, { 3898, 191, -1 }, { 3899, 191, -1 }, { 3892, 1353, -1 }, { 3893, 1353, -1 }, { 3896, 1353, -1 }, { 3897, 1353, -1 }, { 3898, 1353, -1 }, { 3899, 1353, -1 }, { 3892, 1596, -1 }, { 3893, 1596, -1 }, { 3896, 1596, -1 }, { 3897, 1596, -1 }, { 3898, 1596, -1 }, { 3899, 1596, -1 }, { 3892, 1599, -1 }, { 3893, 1599, -1 }, { 3896, 1599, -1 }, { 3897, 1599, -1 }, { 3898, 1599, -1 }, { 3899, 1599, -1 }, { 3892, 1724, -1 }, { 3893, 1724, -1 }, { 3896, 1724, -1 }, { 3897, 1724, -1 }, { 3898, 1724, -1 }, { 3899, 1724, -1 }, { 3892, 808, -1 }, { 3893, 808, -1 }, { 3896, 808, -1 }, { 3897, 808, -1 }, { 3898, 808, -1 }, { 3899, 808, -1 }, { 3892, 688, -1 }, { 3893, 688, -1 }, { 3896, 688, -1 }, { 3897, 688, -1 }, { 3898, 688, -1 }, { 3899, 688, -1 }, { 3892, 693, -1 }, { 3893, 693, -1 }, { 3896, 693, -1 }, { 3897, 693, -1 }, { 3898, 693, -1 }, { 3899, 693, -1 }, { 3892, 1082, -1 }, { 3893, 1082, -1 }, { 3896, 1082, -1 }, { 3897, 1082, -1 }, { 3898, 1082, -1 }, { 3899, 1082, -1 }, { 3892, 978, -1 }, { 3893, 978, -1 }, { 3896, 978, -1 }, { 3897, 978, -1 }, { 3898, 978, -1 }, { 3899, 978, -1 }, { 3892, 140, -1 }, { 3893, 140, -1 }, { 3896, 140, -1 }, { 3897, 140, -1 }, { 3898, 140, -1 }, { 3899, 140, -1 }, { 3892, 605, -1 }, { 3893, 605, -1 }, { 3896, 605, -1 }, { 3897, 605, -1 }, { 3898, 605, -1 }, { 3899, 605, -1 }, { 3892, 855, -1 }, { 3893, 855, -1 }, { 3896, 855, -1 }, { 3897, 855, -1 }, { 3898, 855, -1 }, { 3899, 855, -1 }, { 3892, 258, -1 }, { 3893, 258, -1 }, { 3896, 258, -1 }, { 3897, 258, -1 }, { 3898, 258, -1 }, { 3899, 258, -1 }, { 3892, 897, -1 }, { 3893, 897, -1 }, { 3896, 897, -1 }, { 3897, 897, -1 }, { 3898, 897, -1 }, { 3899, 897, -1 }, { 3892, 699, -1 }, { 3893, 699, -1 }, { 3896, 699, -1 }, { 3897, 699, -1 }, { 3898, 699, -1 }, { 3899, 699, -1 }, { 3892, 10, -1 }, { 3893, 10, -1 }, { 3896, 10, -1 }, { 3897, 10, -1 }, { 3898, 10, -1 }, { 3899, 10, -1 }, { 3892, 299, -1 }, { 3893, 299, -1 }, { 3896, 299, -1 }, { 3897, 299, -1 }, { 3898, 299, -1 }, { 3899, 299, -1 }, { 3892, 279, -1 }, { 3893, 279, -1 }, { 3896, 279, -1 }, { 3897, 279, -1 }, { 3898, 279, -1 }, { 3899, 279, -1 }, { 3892, 1568, -1 }, { 3893, 1568, -1 }, { 3896, 1568, -1 }, { 3897, 1568, -1 }, { 3898, 1568, -1 }, { 3899, 1568, -1 }, { 3892, 1341, -1 }, { 3893, 1341, -1 }, { 3896, 1341, -1 }, { 3897, 1341, -1 }, { 3898, 1341, -1 }, { 3899, 1341, -1 }, { 3892, 884, -1 }, { 3893, 884, -1 }, { 3896, 884, -1 }, { 3897, 884, -1 }, { 3898, 884, -1 }, { 3899, 884, -1 }, { 3892, 1608, -1 }, { 3893, 1608, -1 }, { 3896, 1608, -1 }, { 3897, 1608, -1 }, { 3898, 1608, -1 }, { 3899, 1608, -1 }, { 3892, 289, -1 }, { 3893, 289, -1 }, { 3896, 289, -1 }, { 3897, 289, -1 }, { 3898, 289, -1 }, { 3899, 289, -1 }, { 3892, 1950, -1 }, { 3893, 1950, -1 }, { 3896, 1950, -1 }, { 3897, 1950, -1 }, { 3898, 1950, -1 }, { 3899, 1950, -1 }, { 3892, 1823, -1 }, { 3893, 1823, -1 }, { 3896, 1823, -1 }, { 3897, 1823, -1 }, { 3898, 1823, -1 }, { 3899, 1823, -1 }, { 3892, 1996, -1 }, { 3893, 1996, -1 }, { 3896, 1996, -1 }, { 3897, 1996, -1 }, { 3898, 1996, -1 }, { 3899, 1996, -1 }, { 3892, 1497, -1 }, { 3893, 1497, -1 }, { 3896, 1497, -1 }, { 3897, 1497, -1 }, { 3898, 1497, -1 }, { 3899, 1497, -1 }, { 3892, 1494, -1 }, { 3893, 1494, -1 }, { 3896, 1494, -1 }, { 3897, 1494, -1 }, { 3898, 1494, -1 }, { 3899, 1494, -1 }, { 3892, 1490, -1 }, { 3893, 1490, -1 }, { 3896, 1490, -1 }, { 3897, 1490, -1 }, { 3898, 1490, -1 }, { 3899, 1490, -1 }, { 3892, 1360, -1 }, { 3893, 1360, -1 }, { 3896, 1360, -1 }, { 3897, 1360, -1 }, { 3898, 1360, -1 }, { 3899, 1360, -1 }, { 3892, 1298, -1 }, { 3893, 1298, -1 }, { 3896, 1298, -1 }, { 3897, 1298, -1 }, { 3898, 1298, -1 }, { 3899, 1298, -1 }, { 3892, 1307, -1 }, { 3893, 1307, -1 }, { 3896, 1307, -1 }, { 3897, 1307, -1 }, { 3898, 1307, -1 }, { 3899, 1307, -1 }, { 3892, 906, -1 }, { 3893, 906, -1 }, { 3896, 906, -1 }, { 3897, 906, -1 }, { 3898, 906, -1 }, { 3899, 906, -1 }, { 3892, 1797, -1 }, { 3893, 1797, -1 }, { 3896, 1797, -1 }, { 3897, 1797, -1 }, { 3898, 1797, -1 }, { 3899, 1797, -1 }, { 3892, 1660, -1 }, { 3893, 1660, -1 }, { 3896, 1660, -1 }, { 3897, 1660, -1 }, { 3898, 1660, -1 }, { 3899, 1660, -1 }, { 3892, 1526, -1 }, { 3893, 1526, -1 }, { 3896, 1526, -1 }, { 3897, 1526, -1 }, { 3898, 1526, -1 }, { 3899, 1526, -1 }, { 3892, 1482, -1 }, { 3893, 1482, -1 }, { 3896, 1482, -1 }, { 3897, 1482, -1 }, { 3898, 1482, -1 }, { 3899, 1482, -1 }, { 3892, 1504, -1 }, { 3893, 1504, -1 }, { 3896, 1504, -1 }, { 3897, 1504, -1 }, { 3898, 1504, -1 }, { 3899, 1504, -1 }, { 3892, 1508, -1 }, { 3893, 1508, -1 }, { 3896, 1508, -1 }, { 3897, 1508, -1 }, { 3898, 1508, -1 }, { 3899, 1508, -1 }, { 3892, 1512, -1 }, { 3893, 1512, -1 }, { 3896, 1512, -1 }, { 3897, 1512, -1 }, { 3898, 1512, -1 }, { 3899, 1512, -1 }, { 3892, 652, -1 }, { 3893, 652, -1 }, { 3896, 652, -1 }, { 3897, 652, -1 }, { 3898, 652, -1 }, { 3899, 652, -1 }, { 3892, 152, -1 }, { 3893, 152, -1 }, { 3896, 152, -1 }, { 3897, 152, -1 }, { 3898, 152, -1 }, { 3899, 152, -1 }, { 3892, 494, -1 }, { 3893, 494, -1 }, { 3896, 494, -1 }, { 3897, 494, -1 }, { 3898, 494, -1 }, { 3899, 494, -1 }, { 3892, 14, -1 }, { 3893, 14, -1 }, { 3896, 14, -1 }, { 3897, 14, -1 }, { 3898, 14, -1 }, { 3899, 14, -1 }, { 3892, 134, -1 }, { 3893, 134, -1 }, { 3896, 134, -1 }, { 3897, 134, -1 }, { 3898, 134, -1 }, { 3899, 134, -1 }, { 3892, 147, -1 }, { 3893, 147, -1 }, { 3896, 147, -1 }, { 3897, 147, -1 }, { 3898, 147, -1 }, { 3899, 147, -1 }, { 3892, 15, -1 }, { 3893, 15, -1 }, { 3896, 15, -1 }, { 3897, 15, -1 }, { 3898, 15, -1 }, { 3899, 15, -1 }, { 3892, 16, -1 }, { 3893, 16, -1 }, { 3896, 16, -1 }, { 3897, 16, -1 }, { 3898, 16, -1 }, { 3899, 16, -1 }, { 3892, 410, -1 }, { 3893, 410, -1 }, { 3896, 410, -1 }, { 3897, 410, -1 }, { 3898, 410, -1 }, { 3899, 410, -1 }, { 3892, 399, -1 }, { 3893, 399, -1 }, { 3896, 399, -1 }, { 3897, 399, -1 }, { 3898, 399, -1 }, { 3899, 399, -1 }, { 3892, 400, -1 }, { 3893, 400, -1 }, { 3896, 400, -1 }, { 3897, 400, -1 }, { 3898, 400, -1 }, { 3899, 400, -1 }, { 3892, 416, -1 }, { 3893, 416, -1 }, { 3896, 416, -1 }, { 3897, 416, -1 }, { 3898, 416, -1 }, { 3899, 416, -1 }, { 3892, 44, -1 }, { 3893, 44, -1 }, { 3896, 44, -1 }, { 3897, 44, -1 }, { 3898, 44, -1 }, { 3899, 44, -1 }, { 3892, 17, -1 }, { 3893, 17, -1 }, { 3896, 17, -1 }, { 3897, 17, -1 }, { 3898, 17, -1 }, { 3899, 17, -1 }, { 3892, 11, -1 }, { 3893, 11, -1 }, { 3896, 11, -1 }, { 3897, 11, -1 }, { 3898, 11, -1 }, { 3899, 11, -1 }, { 3892, 12, -1 }, { 3893, 12, -1 }, { 3896, 12, -1 }, { 3897, 12, -1 }, { 3898, 12, -1 }, { 3899, 12, -1 }, { 3892, 136, -1 }, { 3893, 136, -1 }, { 3896, 136, -1 }, { 3897, 136, -1 }, { 3898, 136, -1 }, { 3899, 136, -1 }, { 3892, 689, -1 }, { 3893, 689, -1 }, { 3896, 689, -1 }, { 3897, 689, -1 }, { 3898, 689, -1 }, { 3899, 689, -1 }, { 3892, 700, -1 }, { 3893, 700, -1 }, { 3896, 700, -1 }, { 3897, 700, -1 }, { 3898, 700, -1 }, { 3899, 700, -1 }, { 3892, 1023, -1 }, { 3893, 1023, -1 }, { 3896, 1023, -1 }, { 3897, 1023, -1 }, { 3898, 1023, -1 }, { 3899, 1023, -1 }, { 3892, 653, -1 }, { 3893, 653, -1 }, { 3896, 653, -1 }, { 3897, 653, -1 }, { 3898, 653, -1 }, { 3899, 653, -1 }, { 3892, 458, -1 }, { 3893, 458, -1 }, { 3896, 458, -1 }, { 3897, 458, -1 }, { 3898, 458, -1 }, { 3899, 458, -1 }, { 3892, 459, -1 }, { 3893, 459, -1 }, { 3896, 459, -1 }, { 3897, 459, -1 }, { 3898, 459, -1 }, { 3899, 459, -1 }, { 3892, 493, -1 }, { 3893, 493, -1 }, { 3896, 493, -1 }, { 3897, 493, -1 }, { 3898, 493, -1 }, { 3899, 493, -1 }, { 3892, 475, -1 }, { 3893, 475, -1 }, { 3896, 475, -1 }, { 3897, 475, -1 }, { 3898, 475, -1 }, { 3899, 475, -1 }, { 3892, 455, -1 }, { 3893, 455, -1 }, { 3896, 455, -1 }, { 3897, 455, -1 }, { 3898, 455, -1 }, { 3899, 455, -1 }, { 3892, 56, -1 }, { 3893, 56, -1 }, { 3896, 56, -1 }, { 3897, 56, -1 }, { 3898, 56, -1 }, { 3899, 56, -1 }, { 3892, 307, -1 }, { 3893, 307, -1 }, { 3896, 307, -1 }, { 3897, 307, -1 }, { 3898, 307, -1 }, { 3899, 307, -1 }, { 3892, 306, -1 }, { 3893, 306, -1 }, { 3896, 306, -1 }, { 3897, 306, -1 }, { 3898, 306, -1 }, { 3899, 306, -1 }, { 3892, 338, -1 }, { 3893, 338, -1 }, { 3896, 338, -1 }, { 3897, 338, -1 }, { 3898, 338, -1 }, { 3899, 338, -1 }, { 3892, 342, -1 }, { 3893, 342, -1 }, { 3896, 342, -1 }, { 3897, 342, -1 }, { 3898, 342, -1 }, { 3899, 342, -1 }, { 3892, 344, -1 }, { 3893, 344, -1 }, { 3896, 344, -1 }, { 3897, 344, -1 }, { 3898, 344, -1 }, { 3899, 344, -1 }, { 3892, 345, -1 }, { 3893, 345, -1 }, { 3896, 345, -1 }, { 3897, 345, -1 }, { 3898, 345, -1 }, { 3899, 345, -1 }, { 3892, 343, -1 }, { 3893, 343, -1 }, { 3896, 343, -1 }, { 3897, 343, -1 }, { 3898, 343, -1 }, { 3899, 343, -1 }, { 3892, 346, -1 }, { 3893, 346, -1 }, { 3896, 346, -1 }, { 3897, 346, -1 }, { 3898, 346, -1 }, { 3899, 346, -1 }, { 3892, 315, -1 }, { 3893, 315, -1 }, { 3896, 315, -1 }, { 3897, 315, -1 }, { 3898, 315, -1 }, { 3899, 315, -1 }, { 3892, 316, -1 }, { 3893, 316, -1 }, { 3896, 316, -1 }, { 3897, 316, -1 }, { 3898, 316, -1 }, { 3899, 316, -1 }, { 3892, 317, -1 }, { 3893, 317, -1 }, { 3896, 317, -1 }, { 3897, 317, -1 }, { 3898, 317, -1 }, { 3899, 317, -1 }, { 3892, 43, -1 }, { 3893, 43, -1 }, { 3896, 43, -1 }, { 3897, 43, -1 }, { 3898, 43, -1 }, { 3899, 43, -1 }, { 3892, 300, -1 }, { 3893, 300, -1 }, { 3896, 300, -1 }, { 3897, 300, -1 }, { 3898, 300, -1 }, { 3899, 300, -1 }, { 3892, 35, -1 }, { 3893, 35, -1 }, { 3896, 35, -1 }, { 3897, 35, -1 }, { 3898, 35, -1 }, { 3899, 35, -1 }, { 3892, 476, -1 }, { 3893, 476, -1 }, { 3896, 476, -1 }, { 3897, 476, -1 }, { 3898, 476, -1 }, { 3899, 476, -1 }, { 3892, 275, -1 }, { 3893, 275, -1 }, { 3896, 275, -1 }, { 3897, 275, -1 }, { 3898, 275, -1 }, { 3899, 275, -1 }, { 3892, 280, -1 }, { 3893, 280, -1 }, { 3896, 280, -1 }, { 3897, 280, -1 }, { 3898, 280, -1 }, { 3899, 280, -1 }, { 3892, 291, -1 }, { 3893, 291, -1 }, { 3896, 291, -1 }, { 3897, 291, -1 }, { 3898, 291, -1 }, { 3899, 291, -1 }, { 3892, 290, -1 }, { 3893, 290, -1 }, { 3896, 290, -1 }, { 3897, 290, -1 }, { 3898, 290, -1 }, { 3899, 290, -1 }, { 3892, 262, -1 }, { 3893, 262, -1 }, { 3896, 262, -1 }, { 3897, 262, -1 }, { 3898, 262, -1 }, { 3899, 262, -1 }, { 3892, 264, -1 }, { 3893, 264, -1 }, { 3896, 264, -1 }, { 3897, 264, -1 }, { 3898, 264, -1 }, { 3899, 264, -1 }, { 3892, 18, -1 }, { 3893, 18, -1 }, { 3896, 18, -1 }, { 3897, 18, -1 }, { 3898, 18, -1 }, { 3899, 18, -1 }, { 3892, 426, -1 }, { 3893, 426, -1 }, { 3896, 426, -1 }, { 3897, 426, -1 }, { 3898, 426, -1 }, { 3899, 426, -1 }, { 3892, 19, -1 }, { 3893, 19, -1 }, { 3896, 19, -1 }, { 3897, 19, -1 }, { 3898, 19, -1 }, { 3899, 19, -1 }, { 3892, 57, -1 }, { 3893, 57, -1 }, { 3896, 57, -1 }, { 3897, 57, -1 }, { 3898, 57, -1 }, { 3899, 57, -1 }, { 3892, 447, -1 }, { 3893, 447, -1 }, { 3896, 447, -1 }, { 3897, 447, -1 }, { 3898, 447, -1 }, { 3899, 447, -1 }, { 3892, 453, -1 }, { 3893, 453, -1 }, { 3896, 453, -1 }, { 3897, 453, -1 }, { 3898, 453, -1 }, { 3899, 453, -1 }, { 3892, 161, -1 }, { 3893, 161, -1 }, { 3896, 161, -1 }, { 3897, 161, -1 }, { 3898, 161, -1 }, { 3899, 161, -1 }, { 3892, 68, -1 }, { 3893, 68, -1 }, { 3896, 68, -1 }, { 3897, 68, -1 }, { 3898, 68, -1 }, { 3899, 68, -1 }, { 3892, 62, -1 }, { 3893, 62, -1 }, { 3896, 62, -1 }, { 3897, 62, -1 }, { 3898, 62, -1 }, { 3899, 62, -1 }, { 3892, 263, -1 }, { 3893, 263, -1 }, { 3896, 263, -1 }, { 3897, 263, -1 }, { 3898, 263, -1 }, { 3899, 263, -1 }, { 3892, 20, -1 }, { 3893, 20, -1 }, { 3896, 20, -1 }, { 3897, 20, -1 }, { 3898, 20, -1 }, { 3899, 20, -1 }, { 3892, 21, -1 }, { 3893, 21, -1 }, { 3896, 21, -1 }, { 3897, 21, -1 }, { 3898, 21, -1 }, { 3899, 21, -1 }, { 3892, 22, -1 }, { 3893, 22, -1 }, { 3896, 22, -1 }, { 3897, 22, -1 }, { 3898, 22, -1 }, { 3899, 22, -1 }, { 3892, 820, -1 }, { 3893, 820, -1 }, { 3896, 820, -1 }, { 3897, 820, -1 }, { 3898, 820, -1 }, { 3899, 820, -1 }, { 3892, 601, -1 }, { 3893, 601, -1 }, { 3896, 601, -1 }, { 3897, 601, -1 }, { 3898, 601, -1 }, { 3899, 601, -1 }, { 3892, 589, -1 }, { 3893, 589, -1 }, { 3896, 589, -1 }, { 3897, 589, -1 }, { 3898, 589, -1 }, { 3899, 589, -1 }, { 3892, 588, -1 }, { 3893, 588, -1 }, { 3896, 588, -1 }, { 3897, 588, -1 }, { 3898, 588, -1 }, { 3899, 588, -1 }, { 3892, 620, -1 }, { 3893, 620, -1 }, { 3896, 620, -1 }, { 3897, 620, -1 }, { 3898, 620, -1 }, { 3899, 620, -1 }, { 3892, 629, -1 }, { 3893, 629, -1 }, { 3896, 629, -1 }, { 3897, 629, -1 }, { 3898, 629, -1 }, { 3899, 629, -1 }, { 3892, 626, -1 }, { 3893, 626, -1 }, { 3896, 626, -1 }, { 3897, 626, -1 }, { 3898, 626, -1 }, { 3899, 626, -1 }, { 3892, 534, -1 }, { 3893, 534, -1 }, { 3896, 534, -1 }, { 3897, 534, -1 }, { 3898, 534, -1 }, { 3899, 534, -1 }, { 3892, 515, -1 }, { 3893, 515, -1 }, { 3896, 515, -1 }, { 3897, 515, -1 }, { 3898, 515, -1 }, { 3899, 515, -1 }, { 3892, 574, -1 }, { 3893, 574, -1 }, { 3896, 574, -1 }, { 3897, 574, -1 }, { 3898, 574, -1 }, { 3899, 574, -1 }, { 3892, 560, -1 }, { 3893, 560, -1 }, { 3896, 560, -1 }, { 3897, 560, -1 }, { 3898, 560, -1 }, { 3899, 560, -1 }, { 3892, 520, -1 }, { 3893, 520, -1 }, { 3896, 520, -1 }, { 3897, 520, -1 }, { 3898, 520, -1 }, { 3899, 520, -1 }, { 3892, 533, -1 }, { 3893, 533, -1 }, { 3896, 533, -1 }, { 3897, 533, -1 }, { 3898, 533, -1 }, { 3899, 533, -1 }, { 3892, 532, -1 }, { 3893, 532, -1 }, { 3896, 532, -1 }, { 3897, 532, -1 }, { 3898, 532, -1 }, { 3899, 532, -1 }, { 3892, 531, -1 }, { 3893, 531, -1 }, { 3896, 531, -1 }, { 3897, 531, -1 }, { 3898, 531, -1 }, { 3899, 531, -1 }, { 3892, 537, -1 }, { 3893, 537, -1 }, { 3896, 537, -1 }, { 3897, 537, -1 }, { 3898, 537, -1 }, { 3899, 537, -1 }, { 3892, 536, -1 }, { 3893, 536, -1 }, { 3896, 536, -1 }, { 3897, 536, -1 }, { 3898, 536, -1 }, { 3899, 536, -1 }, { 3892, 535, -1 }, { 3893, 535, -1 }, { 3896, 535, -1 }, { 3897, 535, -1 }, { 3898, 535, -1 }, { 3899, 535, -1 }, { 3892, 538, -1 }, { 3893, 538, -1 }, { 3896, 538, -1 }, { 3897, 538, -1 }, { 3898, 538, -1 }, { 3899, 538, -1 }, { 3892, 504, -1 }, { 3893, 504, -1 }, { 3896, 504, -1 }, { 3897, 504, -1 }, { 3898, 504, -1 }, { 3899, 504, -1 }, { 3892, 1916, -1 }, { 3893, 1916, -1 }, { 3896, 1916, -1 }, { 3897, 1916, -1 }, { 3898, 1916, -1 }, { 3899, 1916, -1 }, { 3892, 1491, -1 }, { 3893, 1491, -1 }, { 3896, 1491, -1 }, { 3897, 1491, -1 }, { 3898, 1491, -1 }, { 3899, 1491, -1 }, { 3892, 784, -1 }, { 3893, 784, -1 }, { 3896, 784, -1 }, { 3897, 784, -1 }, { 3898, 784, -1 }, { 3899, 784, -1 }, { 3892, 785, -1 }, { 3893, 785, -1 }, { 3896, 785, -1 }, { 3897, 785, -1 }, { 3898, 785, -1 }, { 3899, 785, -1 }, { 3892, 834, -1 }, { 3893, 834, -1 }, { 3896, 834, -1 }, { 3897, 834, -1 }, { 3898, 834, -1 }, { 3899, 834, -1 }, { 3892, 831, -1 }, { 3893, 831, -1 }, { 3896, 831, -1 }, { 3897, 831, -1 }, { 3898, 831, -1 }, { 3899, 831, -1 }, { 3892, 1377, -1 }, { 3893, 1377, -1 }, { 3896, 1377, -1 }, { 3897, 1377, -1 }, { 3898, 1377, -1 }, { 3899, 1377, -1 }, { 3892, 776, -1 }, { 3893, 776, -1 }, { 3896, 776, -1 }, { 3897, 776, -1 }, { 3898, 776, -1 }, { 3899, 776, -1 }, { 3892, 775, -1 }, { 3893, 775, -1 }, { 3896, 775, -1 }, { 3897, 775, -1 }, { 3898, 775, -1 }, { 3899, 775, -1 }, { 3892, 1501, -1 }, { 3893, 1501, -1 }, { 3896, 1501, -1 }, { 3897, 1501, -1 }, { 3898, 1501, -1 }, { 3899, 1501, -1 }, { 3892, 782, -1 }, { 3893, 782, -1 }, { 3896, 782, -1 }, { 3897, 782, -1 }, { 3898, 782, -1 }, { 3899, 782, -1 }, { 3892, 1739, -1 }, { 3893, 1739, -1 }, { 3896, 1739, -1 }, { 3897, 1739, -1 }, { 3898, 1739, -1 }, { 3899, 1739, -1 }, { 3892, 786, -1 }, { 3893, 786, -1 }, { 3896, 786, -1 }, { 3897, 786, -1 }, { 3898, 786, -1 }, { 3899, 786, -1 }, { 3892, 1294, -1 }, { 3893, 1294, -1 }, { 3896, 1294, -1 }, { 3897, 1294, -1 }, { 3898, 1294, -1 }, { 3899, 1294, -1 }, { 3892, 1314, -1 }, { 3893, 1314, -1 }, { 3896, 1314, -1 }, { 3897, 1314, -1 }, { 3898, 1314, -1 }, { 3899, 1314, -1 }, { 3892, 1316, -1 }, { 3893, 1316, -1 }, { 3896, 1316, -1 }, { 3897, 1316, -1 }, { 3898, 1316, -1 }, { 3899, 1316, -1 }, { 3892, 1342, -1 }, { 3893, 1342, -1 }, { 3896, 1342, -1 }, { 3897, 1342, -1 }, { 3898, 1342, -1 }, { 3899, 1342, -1 }, { 3892, 1361, -1 }, { 3893, 1361, -1 }, { 3896, 1361, -1 }, { 3897, 1361, -1 }, { 3898, 1361, -1 }, { 3899, 1361, -1 }, { 3892, 1299, -1 }, { 3893, 1299, -1 }, { 3896, 1299, -1 }, { 3897, 1299, -1 }, { 3898, 1299, -1 }, { 3899, 1299, -1 }, { 3892, 1348, -1 }, { 3893, 1348, -1 }, { 3896, 1348, -1 }, { 3897, 1348, -1 }, { 3898, 1348, -1 }, { 3899, 1348, -1 }, { 3892, 1354, -1 }, { 3893, 1354, -1 }, { 3896, 1354, -1 }, { 3897, 1354, -1 }, { 3898, 1354, -1 }, { 3899, 1354, -1 }, { 3892, 1356, -1 }, { 3893, 1356, -1 }, { 3896, 1356, -1 }, { 3897, 1356, -1 }, { 3898, 1356, -1 }, { 3899, 1356, -1 }, { 3892, 1308, -1 }, { 3893, 1308, -1 }, { 3896, 1308, -1 }, { 3897, 1308, -1 }, { 3898, 1308, -1 }, { 3899, 1308, -1 }, { 3892, 1317, -1 }, { 3893, 1317, -1 }, { 3896, 1317, -1 }, { 3897, 1317, -1 }, { 3898, 1317, -1 }, { 3899, 1317, -1 }, { 3892, 1315, -1 }, { 3893, 1315, -1 }, { 3896, 1315, -1 }, { 3897, 1315, -1 }, { 3898, 1315, -1 }, { 3899, 1315, -1 }, { 3892, 1351, -1 }, { 3893, 1351, -1 }, { 3896, 1351, -1 }, { 3897, 1351, -1 }, { 3898, 1351, -1 }, { 3899, 1351, -1 }, { 3892, 907, -1 }, { 3893, 907, -1 }, { 3896, 907, -1 }, { 3897, 907, -1 }, { 3898, 907, -1 }, { 3899, 907, -1 }, { 3892, 890, -1 }, { 3893, 890, -1 }, { 3896, 890, -1 }, { 3897, 890, -1 }, { 3898, 890, -1 }, { 3899, 890, -1 }, { 3892, 780, -1 }, { 3893, 780, -1 }, { 3896, 780, -1 }, { 3897, 780, -1 }, { 3898, 780, -1 }, { 3899, 780, -1 }, { 3892, 802, -1 }, { 3893, 802, -1 }, { 3896, 802, -1 }, { 3897, 802, -1 }, { 3898, 802, -1 }, { 3899, 802, -1 }, { 3892, 1751, -1 }, { 3893, 1751, -1 }, { 3896, 1751, -1 }, { 3897, 1751, -1 }, { 3898, 1751, -1 }, { 3899, 1751, -1 }, { 3892, 1756, -1 }, { 3893, 1756, -1 }, { 3896, 1756, -1 }, { 3897, 1756, -1 }, { 3898, 1756, -1 }, { 3899, 1756, -1 }, { 3892, 832, -1 }, { 3893, 832, -1 }, { 3896, 832, -1 }, { 3897, 832, -1 }, { 3898, 832, -1 }, { 3899, 832, -1 }, { 3892, 829, -1 }, { 3893, 829, -1 }, { 3896, 829, -1 }, { 3897, 829, -1 }, { 3898, 829, -1 }, { 3899, 829, -1 }, { 3892, 943, -1 }, { 3893, 943, -1 }, { 3896, 943, -1 }, { 3897, 943, -1 }, { 3898, 943, -1 }, { 3899, 943, -1 }, { 3892, 798, -1 }, { 3893, 798, -1 }, { 3896, 798, -1 }, { 3897, 798, -1 }, { 3898, 798, -1 }, { 3899, 798, -1 }, { 3892, 787, -1 }, { 3893, 787, -1 }, { 3896, 787, -1 }, { 3897, 787, -1 }, { 3898, 787, -1 }, { 3899, 787, -1 }, { 3892, 885, -1 }, { 3893, 885, -1 }, { 3896, 885, -1 }, { 3897, 885, -1 }, { 3898, 885, -1 }, { 3899, 885, -1 }, { 3892, 781, -1 }, { 3893, 781, -1 }, { 3896, 781, -1 }, { 3897, 781, -1 }, { 3898, 781, -1 }, { 3899, 781, -1 }, { 3892, 1449, -1 }, { 3893, 1449, -1 }, { 3896, 1449, -1 }, { 3897, 1449, -1 }, { 3898, 1449, -1 }, { 3899, 1449, -1 }, { 3892, 1467, -1 }, { 3893, 1467, -1 }, { 3896, 1467, -1 }, { 3897, 1467, -1 }, { 3898, 1467, -1 }, { 3899, 1467, -1 }, { 3892, 1413, -1 }, { 3893, 1413, -1 }, { 3896, 1413, -1 }, { 3897, 1413, -1 }, { 3898, 1413, -1 }, { 3899, 1413, -1 }, { 3892, 1468, -1 }, { 3893, 1468, -1 }, { 3896, 1468, -1 }, { 3897, 1468, -1 }, { 3898, 1468, -1 }, { 3899, 1468, -1 }, { 3892, 1445, -1 }, { 3893, 1445, -1 }, { 3896, 1445, -1 }, { 3897, 1445, -1 }, { 3898, 1445, -1 }, { 3899, 1445, -1 }, { 3892, 1444, -1 }, { 3893, 1444, -1 }, { 3896, 1444, -1 }, { 3897, 1444, -1 }, { 3898, 1444, -1 }, { 3899, 1444, -1 }, { 3892, 1450, -1 }, { 3893, 1450, -1 }, { 3896, 1450, -1 }, { 3897, 1450, -1 }, { 3898, 1450, -1 }, { 3899, 1450, -1 }, { 3892, 1446, -1 }, { 3893, 1446, -1 }, { 3896, 1446, -1 }, { 3897, 1446, -1 }, { 3898, 1446, -1 }, { 3899, 1446, -1 }, { 3892, 1448, -1 }, { 3893, 1448, -1 }, { 3896, 1448, -1 }, { 3897, 1448, -1 }, { 3898, 1448, -1 }, { 3899, 1448, -1 }, { 3892, 1447, -1 }, { 3893, 1447, -1 }, { 3896, 1447, -1 }, { 3897, 1447, -1 }, { 3898, 1447, -1 }, { 3899, 1447, -1 }, { 3892, 1456, -1 }, { 3893, 1456, -1 }, { 3896, 1456, -1 }, { 3897, 1456, -1 }, { 3898, 1456, -1 }, { 3899, 1456, -1 }, { 3892, 1458, -1 }, { 3893, 1458, -1 }, { 3896, 1458, -1 }, { 3897, 1458, -1 }, { 3898, 1458, -1 }, { 3899, 1458, -1 }, { 3892, 1460, -1 }, { 3893, 1460, -1 }, { 3896, 1460, -1 }, { 3897, 1460, -1 }, { 3898, 1460, -1 }, { 3899, 1460, -1 }, { 3892, 1463, -1 }, { 3893, 1463, -1 }, { 3896, 1463, -1 }, { 3897, 1463, -1 }, { 3898, 1463, -1 }, { 3899, 1463, -1 }, { 3892, 1461, -1 }, { 3893, 1461, -1 }, { 3896, 1461, -1 }, { 3897, 1461, -1 }, { 3898, 1461, -1 }, { 3899, 1461, -1 }, { 3892, 837, -1 }, { 3893, 837, -1 }, { 3896, 837, -1 }, { 3897, 837, -1 }, { 3898, 837, -1 }, { 3899, 837, -1 }, { 3892, 838, -1 }, { 3893, 838, -1 }, { 3896, 838, -1 }, { 3897, 838, -1 }, { 3898, 838, -1 }, { 3899, 838, -1 }, { 3892, 836, -1 }, { 3893, 836, -1 }, { 3896, 836, -1 }, { 3897, 836, -1 }, { 3898, 836, -1 }, { 3899, 836, -1 }, { 3892, 801, -1 }, { 3893, 801, -1 }, { 3896, 801, -1 }, { 3897, 801, -1 }, { 3898, 801, -1 }, { 3899, 801, -1 }, { 3892, 783, -1 }, { 3893, 783, -1 }, { 3896, 783, -1 }, { 3897, 783, -1 }, { 3898, 783, -1 }, { 3899, 783, -1 }, { 3892, 778, -1 }, { 3893, 778, -1 }, { 3896, 778, -1 }, { 3897, 778, -1 }, { 3898, 778, -1 }, { 3899, 778, -1 }, { 3892, 779, -1 }, { 3893, 779, -1 }, { 3896, 779, -1 }, { 3897, 779, -1 }, { 3898, 779, -1 }, { 3899, 779, -1 }, { 3892, 818, -1 }, { 3893, 818, -1 }, { 3896, 818, -1 }, { 3897, 818, -1 }, { 3898, 818, -1 }, { 3899, 818, -1 }, { 3892, 793, -1 }, { 3893, 793, -1 }, { 3896, 793, -1 }, { 3897, 793, -1 }, { 3898, 793, -1 }, { 3899, 793, -1 }, { 3892, 942, -1 }, { 3893, 942, -1 }, { 3896, 942, -1 }, { 3897, 942, -1 }, { 3898, 942, -1 }, { 3899, 942, -1 }, { 3892, 1911, -1 }, { 3893, 1911, -1 }, { 3896, 1911, -1 }, { 3897, 1911, -1 }, { 3898, 1911, -1 }, { 3899, 1911, -1 }, { 3892, 1661, -1 }, { 3893, 1661, -1 }, { 3896, 1661, -1 }, { 3897, 1661, -1 }, { 3898, 1661, -1 }, { 3899, 1661, -1 }, { 3892, 1532, -1 }, { 3893, 1532, -1 }, { 3896, 1532, -1 }, { 3897, 1532, -1 }, { 3898, 1532, -1 }, { 3899, 1532, -1 }, { 3892, 1502, -1 }, { 3893, 1502, -1 }, { 3896, 1502, -1 }, { 3897, 1502, -1 }, { 3898, 1502, -1 }, { 3899, 1502, -1 }, { 3892, 1522, -1 }, { 3893, 1522, -1 }, { 3896, 1522, -1 }, { 3897, 1522, -1 }, { 3898, 1522, -1 }, { 3899, 1522, -1 }, { 3892, 1505, -1 }, { 3893, 1505, -1 }, { 3896, 1505, -1 }, { 3897, 1505, -1 }, { 3898, 1505, -1 }, { 3899, 1505, -1 }, { 3892, 1509, -1 }, { 3893, 1509, -1 }, { 3896, 1509, -1 }, { 3897, 1509, -1 }, { 3898, 1509, -1 }, { 3899, 1509, -1 }, { 3892, 1527, -1 }, { 3893, 1527, -1 }, { 3896, 1527, -1 }, { 3897, 1527, -1 }, { 3898, 1527, -1 }, { 3899, 1527, -1 }, { 3892, 1572, -1 }, { 3893, 1572, -1 }, { 3896, 1572, -1 }, { 3897, 1572, -1 }, { 3898, 1572, -1 }, { 3899, 1572, -1 }, { 3892, 1534, -1 }, { 3893, 1534, -1 }, { 3896, 1534, -1 }, { 3897, 1534, -1 }, { 3898, 1534, -1 }, { 3899, 1534, -1 }, { 3892, 1513, -1 }, { 3893, 1513, -1 }, { 3896, 1513, -1 }, { 3897, 1513, -1 }, { 3898, 1513, -1 }, { 3899, 1513, -1 }, { 3892, 1556, -1 }, { 3893, 1556, -1 }, { 3896, 1556, -1 }, { 3897, 1556, -1 }, { 3898, 1556, -1 }, { 3899, 1556, -1 }, { 3892, 1554, -1 }, { 3893, 1554, -1 }, { 3896, 1554, -1 }, { 3897, 1554, -1 }, { 3898, 1554, -1 }, { 3899, 1554, -1 }, { 3892, 1555, -1 }, { 3893, 1555, -1 }, { 3896, 1555, -1 }, { 3897, 1555, -1 }, { 3898, 1555, -1 }, { 3899, 1555, -1 }, { 3892, 1521, -1 }, { 3893, 1521, -1 }, { 3896, 1521, -1 }, { 3897, 1521, -1 }, { 3898, 1521, -1 }, { 3899, 1521, -1 }, { 3892, 1600, -1 }, { 3893, 1600, -1 }, { 3896, 1600, -1 }, { 3897, 1600, -1 }, { 3898, 1600, -1 }, { 3899, 1600, -1 }, { 3892, 1549, -1 }, { 3893, 1549, -1 }, { 3896, 1549, -1 }, { 3897, 1549, -1 }, { 3898, 1549, -1 }, { 3899, 1549, -1 }, { 3892, 1536, -1 }, { 3893, 1536, -1 }, { 3896, 1536, -1 }, { 3897, 1536, -1 }, { 3898, 1536, -1 }, { 3899, 1536, -1 }, { 3892, 1602, -1 }, { 3893, 1602, -1 }, { 3896, 1602, -1 }, { 3897, 1602, -1 }, { 3898, 1602, -1 }, { 3899, 1602, -1 }, { 3892, 1603, -1 }, { 3893, 1603, -1 }, { 3896, 1603, -1 }, { 3897, 1603, -1 }, { 3898, 1603, -1 }, { 3899, 1603, -1 }, { 3892, 1483, -1 }, { 3893, 1483, -1 }, { 3896, 1483, -1 }, { 3897, 1483, -1 }, { 3898, 1483, -1 }, { 3899, 1483, -1 }, { 3892, 1609, -1 }, { 3893, 1609, -1 }, { 3896, 1609, -1 }, { 3897, 1609, -1 }, { 3898, 1609, -1 }, { 3899, 1609, -1 }, { 3892, 1146, -1 }, { 3893, 1146, -1 }, { 3896, 1146, -1 }, { 3897, 1146, -1 }, { 3898, 1146, -1 }, { 3899, 1146, -1 }, { 3892, 1147, -1 }, { 3893, 1147, -1 }, { 3896, 1147, -1 }, { 3897, 1147, -1 }, { 3898, 1147, -1 }, { 3899, 1147, -1 }, { 3892, 1148, -1 }, { 3893, 1148, -1 }, { 3896, 1148, -1 }, { 3897, 1148, -1 }, { 3898, 1148, -1 }, { 3899, 1148, -1 }, { 3779, 63, -1 }, { 3780, 63, -1 }, { 3781, 63, -1 }, { 3782, 63, -1 }, { 3779, 7, -1 }, { 3780, 7, -1 }, { 3781, 7, -1 }, { 3782, 7, -1 }, { 3779, 13, -1 }, { 3780, 13, -1 }, { 3781, 13, -1 }, { 3782, 13, -1 }, { 3779, 14, -1 }, { 3780, 14, -1 }, { 3781, 14, -1 }, { 3782, 14, -1 }, { 3779, 134, -1 }, { 3780, 134, -1 }, { 3781, 134, -1 }, { 3782, 134, -1 }, { 3779, 15, -1 }, { 3780, 15, -1 }, { 3781, 15, -1 }, { 3782, 15, -1 }, { 3779, 16, -1 }, { 3780, 16, -1 }, { 3781, 16, -1 }, { 3782, 16, -1 }, { 3779, 44, -1 }, { 3780, 44, -1 }, { 3781, 44, -1 }, { 3782, 44, -1 }, { 3779, 17, -1 }, { 3780, 17, -1 }, { 3781, 17, -1 }, { 3782, 17, -1 }, { 3779, 11, -1 }, { 3780, 11, -1 }, { 3781, 11, -1 }, { 3782, 11, -1 }, { 3779, 12, -1 }, { 3780, 12, -1 }, { 3781, 12, -1 }, { 3782, 12, -1 }, { 3779, 18, -1 }, { 3780, 18, -1 }, { 3781, 18, -1 }, { 3782, 18, -1 }, { 3779, 19, -1 }, { 3780, 19, -1 }, { 3781, 19, -1 }, { 3782, 19, -1 }, { 3779, 68, -1 }, { 3780, 68, -1 }, { 3781, 68, -1 }, { 3782, 68, -1 }, { 3779, 20, -1 }, { 3780, 20, -1 }, { 3781, 20, -1 }, { 3782, 20, -1 }, { 3779, 21, -1 }, { 3780, 21, -1 }, { 3781, 21, -1 }, { 3782, 21, -1 }, { 3779, 22, -1 }, { 3780, 22, -1 }, { 3781, 22, -1 }, { 3782, 22, -1 }, { 3900, 1063, -1 }, { 3901, 1063, -1 }, { 3902, 1063, -1 }, { 3903, 1063, -1 }, { 3904, 1063, -1 }, { 3905, 1063, -1 }, { 3900, 1038, -1 }, { 3901, 1038, -1 }, { 3902, 1038, -1 }, { 3903, 1038, -1 }, { 3904, 1038, -1 }, { 3905, 1038, -1 }, { 3900, 986, -1 }, { 3901, 986, -1 }, { 3902, 986, -1 }, { 3903, 986, -1 }, { 3904, 986, -1 }, { 3905, 986, -1 }, { 3900, 63, -1 }, { 3901, 63, -1 }, { 3902, 63, -1 }, { 3903, 63, -1 }, { 3904, 63, -1 }, { 3905, 63, -1 }, { 3900, 7, -1 }, { 3901, 7, -1 }, { 3902, 7, -1 }, { 3903, 7, -1 }, { 3904, 7, -1 }, { 3905, 7, -1 }, { 3900, 13, -1 }, { 3901, 13, -1 }, { 3902, 13, -1 }, { 3903, 13, -1 }, { 3904, 13, -1 }, { 3905, 13, -1 }, { 3900, 14, -1 }, { 3901, 14, -1 }, { 3902, 14, -1 }, { 3903, 14, -1 }, { 3904, 14, -1 }, { 3905, 14, -1 }, { 3900, 134, -1 }, { 3901, 134, -1 }, { 3902, 134, -1 }, { 3903, 134, -1 }, { 3904, 134, -1 }, { 3905, 134, -1 }, { 3900, 15, -1 }, { 3901, 15, -1 }, { 3902, 15, -1 }, { 3903, 15, -1 }, { 3904, 15, -1 }, { 3905, 15, -1 }, { 3900, 16, -1 }, { 3901, 16, -1 }, { 3902, 16, -1 }, { 3903, 16, -1 }, { 3904, 16, -1 }, { 3905, 16, -1 }, { 3900, 44, -1 }, { 3901, 44, -1 }, { 3902, 44, -1 }, { 3903, 44, -1 }, { 3904, 44, -1 }, { 3905, 44, -1 }, { 3900, 17, -1 }, { 3901, 17, -1 }, { 3902, 17, -1 }, { 3903, 17, -1 }, { 3904, 17, -1 }, { 3905, 17, -1 }, { 3900, 11, -1 }, { 3901, 11, -1 }, { 3902, 11, -1 }, { 3903, 11, -1 }, { 3904, 11, -1 }, { 3905, 11, -1 }, { 3900, 12, -1 }, { 3901, 12, -1 }, { 3902, 12, -1 }, { 3903, 12, -1 }, { 3904, 12, -1 }, { 3905, 12, -1 }, { 3900, 689, -1 }, { 3901, 689, -1 }, { 3902, 689, -1 }, { 3903, 689, -1 }, { 3904, 689, -1 }, { 3905, 689, -1 }, { 3900, 18, -1 }, { 3901, 18, -1 }, { 3902, 18, -1 }, { 3903, 18, -1 }, { 3904, 18, -1 }, { 3905, 18, -1 }, { 3900, 19, -1 }, { 3901, 19, -1 }, { 3902, 19, -1 }, { 3903, 19, -1 }, { 3904, 19, -1 }, { 3905, 19, -1 }, { 3900, 161, -1 }, { 3901, 161, -1 }, { 3902, 161, -1 }, { 3903, 161, -1 }, { 3904, 161, -1 }, { 3905, 161, -1 }, { 3900, 68, -1 }, { 3901, 68, -1 }, { 3902, 68, -1 }, { 3903, 68, -1 }, { 3904, 68, -1 }, { 3905, 68, -1 }, { 3900, 20, -1 }, { 3901, 20, -1 }, { 3902, 20, -1 }, { 3903, 20, -1 }, { 3904, 20, -1 }, { 3905, 20, -1 }, { 3900, 21, -1 }, { 3901, 21, -1 }, { 3902, 21, -1 }, { 3903, 21, -1 }, { 3904, 21, -1 }, { 3905, 21, -1 }, { 3900, 22, -1 }, { 3901, 22, -1 }, { 3902, 22, -1 }, { 3903, 22, -1 }, { 3904, 22, -1 }, { 3905, 22, -1 }, { 3900, 1413, -1 }, { 3901, 1413, -1 }, { 3902, 1413, -1 }, { 3903, 1413, -1 }, { 3904, 1413, -1 }, { 3905, 1413, -1 }, { 3900, 1456, -1 }, { 3901, 1456, -1 }, { 3902, 1456, -1 }, { 3903, 1456, -1 }, { 3904, 1456, -1 }, { 3905, 1456, -1 }, { 3900, 1461, -1 }, { 3901, 1461, -1 }, { 3902, 1461, -1 }, { 3903, 1461, -1 }, { 3904, 1461, -1 }, { 3905, 1461, -1 }, { 25689, 15, -1 }, { 25690, 15, -1 }, { 25691, 15, -1 }, { 25692, 15, -1 }, { 25693, 15, -1 }, { 25694, 15, -1 }, { 25689, 11, -1 }, { 25690, 11, -1 }, { 25691, 11, -1 }, { 25692, 11, -1 }, { 25693, 11, -1 }, { 25694, 11, -1 }, { 25689, 21, -1 }, { 25693, 21, -1 }, { 25694, 21, -1 }, { 25689, 1299, -1 }, { 25693, 1299, -1 }, { 25694, 1299, -1 }, { 25663, 15, -1 }, { 25664, 15, -1 }, { 25665, 15, -1 }, { 25666, 15, -1 }, { 25667, 15, -1 }, { 25668, 15, -1 }, { 25669, 15, -1 }, { 25670, 15, -1 }, { 25671, 15, -1 }, { 25672, 15, -1 }, { 25673, 15, -1 }, { 25674, 15, -1 }, { 25675, 15, -1 }, { 25676, 15, -1 }, { 25677, 15, -1 }, { 25678, 15, -1 }, { 25680, 15, -1 }, { 25681, 15, -1 }, { 25682, 15, -1 }, { 25683, 15, -1 }, { 25684, 15, -1 }, { 25685, 15, -1 }, { 25686, 15, -1 }, { 25687, 15, -1 }, { 25688, 15, -1 }, { 25663, 11, -1 }, { 25664, 11, -1 }, { 25665, 11, -1 }, { 25666, 11, -1 }, { 25667, 11, -1 }, { 25670, 11, -1 }, { 25673, 11, -1 }, { 25674, 11, -1 }, { 25675, 11, -1 }, { 25676, 11, -1 }, { 25677, 11, -1 }, { 25678, 11, -1 }, { 25680, 11, -1 }, { 25681, 11, -1 }, { 25682, 11, -1 }, { 25683, 11, -1 }, { 25684, 11, -1 }, { 25685, 11, -1 }, { 25686, 11, -1 }, { 25687, 11, -1 }, { 25688, 11, -1 }, { 25663, 21, -1 }, { 25664, 21, -1 }, { 25665, 21, -1 }, { 25666, 21, -1 }, { 25667, 21, -1 }, { 25670, 21, -1 }, { 25671, 21, -1 }, { 25672, 21, -1 }, { 25673, 21, -1 }, { 25675, 21, -1 }, { 25676, 21, -1 }, { 25677, 21, -1 }, { 25678, 21, -1 }, { 25679, 21, -1 }, { 25680, 21, -1 }, { 25681, 21, -1 }, { 25682, 21, -1 }, { 25683, 21, -1 }, { 25684, 21, -1 }, { 25685, 21, -1 }, { 25686, 21, -1 }, { 25687, 21, -1 }, { 25688, 21, -1 }, { 25663, 1299, -1 }, { 25665, 1299, -1 }, { 25666, 1299, -1 }, { 25667, 1299, -1 }, { 25670, 1299, -1 }, { 25673, 1299, -1 }, { 25675, 1299, -1 }, { 25676, 1299, -1 }, { 25677, 1299, -1 }, { 25678, 1299, -1 }, { 25680, 1299, -1 }, { 25681, 1299, -1 }, { 25682, 1299, -1 }, { 25683, 1299, -1 }, { 25684, 1299, -1 }, { 25685, 1299, -1 }, { 25686, 1299, -1 }, { 25687, 1299, -1 }, { 25688, 1299, -1 }, { 3979, 1775, -1 }, { 3980, 1775, -1 }, { 3981, 1775, -1 }, { 3982, 1775, -1 }, { 3979, 1982, -1 }, { 3980, 1982, -1 }, { 3981, 1982, -1 }, { 3982, 1982, -1 }, { 3979, 575, -1 }, { 3980, 575, -1 }, { 3981, 575, -1 }, { 3982, 575, -1 }, { 3979, 1061, -1 }, { 3980, 1061, -1 }, { 3981, 1061, -1 }, { 3982, 1061, -1 }, { 3979, 1040, -1 }, { 3980, 1040, -1 }, { 3981, 1040, -1 }, { 3982, 1040, -1 }, { 3979, 984, -1 }, { 3980, 984, -1 }, { 3981, 984, -1 }, { 3982, 984, -1 }, { 3979, 97, -1 }, { 3980, 97, -1 }, { 3981, 97, -1 }, { 3982, 97, -1 }, { 3979, 1329, -1 }, { 3980, 1329, -1 }, { 3981, 1329, -1 }, { 3982, 1329, -1 }, { 3979, 1848, -1 }, { 3982, 1848, -1 }, { 3982, 442, -1 }, { 3979, 190, -1 }, { 3980, 190, -1 }, { 3981, 190, -1 }, { 3982, 190, -1 }, { 3979, 1352, -1 }, { 3980, 1352, -1 }, { 3981, 1352, -1 }, { 3982, 1352, -1 }, { 3979, 1595, -1 }, { 3980, 1595, -1 }, { 3981, 1595, -1 }, { 3982, 1595, -1 }, { 3979, 1598, -1 }, { 3980, 1598, -1 }, { 3981, 1598, -1 }, { 3982, 1598, -1 }, { 3979, 1694, -1 }, { 3980, 1694, -1 }, { 3981, 1694, -1 }, { 3982, 1694, -1 }, { 3979, 807, -1 }, { 3980, 807, -1 }, { 3981, 807, -1 }, { 3982, 807, -1 }, { 3979, 687, -1 }, { 3982, 687, -1 }, { 3979, 692, -1 }, { 3980, 692, -1 }, { 3981, 692, -1 }, { 3982, 692, -1 }, { 3979, 1081, -1 }, { 3980, 1081, -1 }, { 3981, 1081, -1 }, { 3982, 1081, -1 }, { 3979, 977, -1 }, { 3980, 977, -1 }, { 3981, 977, -1 }, { 3982, 977, -1 }, { 3979, 139, -1 }, { 3980, 139, -1 }, { 3981, 139, -1 }, { 3982, 139, -1 }, { 3979, 169, -1 }, { 3980, 169, -1 }, { 3981, 169, -1 }, { 3982, 169, -1 }, { 3979, 854, -1 }, { 3980, 854, -1 }, { 3981, 854, -1 }, { 3982, 854, -1 }, { 3979, 182, -1 }, { 3980, 182, -1 }, { 3981, 182, -1 }, { 3982, 182, -1 }, { 3979, 896, -1 }, { 3980, 896, -1 }, { 3981, 896, -1 }, { 3982, 896, -1 }, { 3979, 698, -1 }, { 3980, 698, -1 }, { 3981, 698, -1 }, { 3982, 698, -1 }, { 3979, 298, -1 }, { 3980, 298, -1 }, { 3981, 298, -1 }, { 3982, 298, -1 }, { 3979, 278, -1 }, { 3980, 278, -1 }, { 3981, 278, -1 }, { 3982, 278, -1 }, { 3979, 1567, -1 }, { 3980, 1567, -1 }, { 3981, 1567, -1 }, { 3982, 1567, -1 }, { 3979, 1340, -1 }, { 3980, 1340, -1 }, { 3981, 1340, -1 }, { 3982, 1340, -1 }, { 3979, 883, -1 }, { 3980, 883, -1 }, { 3981, 883, -1 }, { 3982, 883, -1 }, { 3979, 1607, -1 }, { 3980, 1607, -1 }, { 3981, 1607, -1 }, { 3982, 1607, -1 }, { 3979, 288, -1 }, { 3980, 288, -1 }, { 3981, 288, -1 }, { 3982, 288, -1 }, { 3979, 1949, -1 }, { 3981, 1949, -1 }, { 3982, 1949, -1 }, { 3979, 1822, -1 }, { 3980, 1822, -1 }, { 3981, 1822, -1 }, { 3982, 1822, -1 }, { 3979, 1995, -1 }, { 3980, 1995, -1 }, { 3981, 1995, -1 }, { 3982, 1995, -1 }, { 3979, 1496, -1 }, { 3980, 1496, -1 }, { 3981, 1496, -1 }, { 3982, 1496, -1 }, { 3979, 1493, -1 }, { 3980, 1493, -1 }, { 3981, 1493, -1 }, { 3982, 1493, -1 }, { 3979, 1489, -1 }, { 3980, 1489, -1 }, { 3981, 1489, -1 }, { 3982, 1489, -1 }, { 3979, 1359, -1 }, { 3980, 1359, -1 }, { 3981, 1359, -1 }, { 3982, 1359, -1 }, { 3979, 1297, -1 }, { 3980, 1297, -1 }, { 3981, 1297, -1 }, { 3982, 1297, -1 }, { 3979, 1306, -1 }, { 3980, 1306, -1 }, { 3981, 1306, -1 }, { 3982, 1306, -1 }, { 3979, 905, -1 }, { 3980, 905, -1 }, { 3981, 905, -1 }, { 3982, 905, -1 }, { 3979, 1796, -1 }, { 3980, 1796, -1 }, { 3981, 1796, -1 }, { 3982, 1796, -1 }, { 3979, 1659, -1 }, { 3980, 1659, -1 }, { 3981, 1659, -1 }, { 3982, 1659, -1 }, { 3979, 1525, -1 }, { 3980, 1525, -1 }, { 3981, 1525, -1 }, { 3982, 1525, -1 }, { 3979, 1481, -1 }, { 3980, 1481, -1 }, { 3981, 1481, -1 }, { 3982, 1481, -1 }, { 3979, 1503, -1 }, { 3980, 1503, -1 }, { 3981, 1503, -1 }, { 3982, 1503, -1 }, { 3979, 1507, -1 }, { 3980, 1507, -1 }, { 3981, 1507, -1 }, { 3982, 1507, -1 }, { 3979, 1511, -1 }, { 3980, 1511, -1 }, { 3981, 1511, -1 }, { 3982, 1511, -1 }, { 25637, 13, -1 }, { 25638, 13, -1 }, { 25639, 13, -1 }, { 25640, 13, -1 }, { 25641, 13, -1 }, { 25642, 13, -1 }, { 25643, 13, -1 }, { 25644, 13, -1 }, { 25645, 13, -1 }, { 25646, 13, -1 }, { 25647, 13, -1 }, { 25637, 23, -1 }, { 25638, 23, -1 }, { 25639, 23, -1 }, { 25640, 23, -1 }, { 25641, 23, -1 }, { 25642, 23, -1 }, { 25643, 23, -1 }, { 25644, 23, -1 }, { 25645, 23, -1 }, { 25646, 23, -1 }, { 25647, 23, -1 }, { 25637, 10, -1 }, { 25638, 10, -1 }, { 25639, 10, -1 }, { 25640, 10, -1 }, { 25641, 10, -1 }, { 25642, 10, -1 }, { 25643, 10, -1 }, { 25644, 10, -1 }, { 25645, 10, -1 }, { 25646, 10, -1 }, { 25647, 10, -1 }, { 25637, 11, -1 }, { 25638, 11, -1 }, { 25639, 11, -1 }, { 25640, 11, -1 }, { 25641, 11, -1 }, { 25642, 11, -1 }, { 25643, 11, -1 }, { 25644, 11, -1 }, { 25645, 11, -1 }, { 25646, 11, -1 }, { 25647, 11, -1 }, { 25637, 1756, -1 }, { 25638, 1756, -1 }, { 25639, 1756, -1 }, { 25640, 1756, -1 }, { 25641, 1756, -1 }, { 25642, 1756, -1 }, { 25643, 1756, -1 }, { 25644, 1756, -1 }, { 25645, 1756, -1 }, { 25646, 1756, -1 }, { 25647, 1756, -1 }, { 25637, 1483, -1 }, { 25638, 1483, -1 }, { 25639, 1483, -1 }, { 25640, 1483, -1 }, { 25641, 1483, -1 }, { 25642, 1483, -1 }, { 25643, 1483, -1 }, { 25644, 1483, -1 }, { 25645, 1483, -1 }, { 25646, 1483, -1 }, { 25647, 1483, -1 }, { 16220, 1483, -1 }, { 16221, 1483, -1 }, { 16223, 1483, -1 }, { 16225, 1483, -1 }, { 16227, 1483, -1 }, { 16228, 1483, -1 }, { 16191, 1483, -1 }, { 16194, 1483, -1 }, { 16195, 1483, -1 }, { 16196, 1483, -1 }, { 16197, 1483, -1 }, { 16198, 1483, -1 }, { 16200, 1483, -1 }, { 16202, 1483, -1 }, { 16203, 1483, -1 }, { 16205, 1483, -1 }, { 16208, 1483, -1 }, { 16209, 1483, -1 }, { 16210, 1483, -1 }, { 16211, 1483, -1 }, { 16212, 1483, -1 }, { 16213, 1483, -1 }, { 16214, 1483, -1 }, { 16215, 1483, -1 }, { 16216, 1483, -1 }, { 16217, 1483, -1 }, { 16218, 1483, -1 }, { 16219, 1483, -1 }, { 16229, 1483, -1 }, { 16232, 1483, -1 }, { 4039, 1737, -1 }, { 4040, 1737, -1 }, { 4041, 1737, -1 }, { 4042, 1737, -1 }, { 4043, 1737, -1 }, { 4044, 1737, -1 }, { 4045, 1737, -1 }, { 4039, 1868, -1 }, { 4040, 1868, -1 }, { 4041, 1868, -1 }, { 4042, 1868, -1 }, { 4043, 1868, -1 }, { 4044, 1868, -1 }, { 4045, 1868, -1 }, { 4039, 1984, -1 }, { 4040, 1984, -1 }, { 4041, 1984, -1 }, { 4042, 1984, -1 }, { 4043, 1984, -1 }, { 4044, 1984, -1 }, { 4045, 1984, -1 }, { 4039, 1831, -1 }, { 4040, 1831, -1 }, { 4041, 1831, -1 }, { 4042, 1831, -1 }, { 4043, 1831, -1 }, { 4044, 1831, -1 }, { 4045, 1831, -1 }, { 4039, 1914, -1 }, { 4040, 1914, -1 }, { 4041, 1914, -1 }, { 4042, 1914, -1 }, { 4043, 1914, -1 }, { 4044, 1914, -1 }, { 4045, 1914, -1 }, { 4039, 1794, -1 }, { 4040, 1794, -1 }, { 4041, 1794, -1 }, { 4042, 1794, -1 }, { 4043, 1794, -1 }, { 4044, 1794, -1 }, { 4045, 1794, -1 }, { 4039, 1803, -1 }, { 4040, 1803, -1 }, { 4041, 1803, -1 }, { 4042, 1803, -1 }, { 4043, 1803, -1 }, { 4044, 1803, -1 }, { 4045, 1803, -1 }, { 4039, 1804, -1 }, { 4040, 1804, -1 }, { 4041, 1804, -1 }, { 4042, 1804, -1 }, { 4043, 1804, -1 }, { 4044, 1804, -1 }, { 4045, 1804, -1 }, { 4039, 1850, -1 }, { 4040, 1850, -1 }, { 4041, 1850, -1 }, { 4042, 1850, -1 }, { 4043, 1850, -1 }, { 4044, 1850, -1 }, { 4045, 1850, -1 }, { 4039, 1852, -1 }, { 4040, 1852, -1 }, { 4041, 1852, -1 }, { 4042, 1852, -1 }, { 4043, 1852, -1 }, { 4044, 1852, -1 }, { 4045, 1852, -1 }, { 4039, 1881, -1 }, { 4040, 1881, -1 }, { 4041, 1881, -1 }, { 4042, 1881, -1 }, { 4043, 1881, -1 }, { 4044, 1881, -1 }, { 4045, 1881, -1 }, { 4039, 1682, -1 }, { 4040, 1682, -1 }, { 4041, 1682, -1 }, { 4042, 1682, -1 }, { 4043, 1682, -1 }, { 4044, 1682, -1 }, { 4045, 1682, -1 }, { 4039, 950, -1 }, { 4042, 950, -1 }, { 4044, 950, -1 }, { 4045, 950, -1 }, { 4039, 63, -1 }, { 4040, 63, -1 }, { 4041, 63, -1 }, { 4042, 63, -1 }, { 4043, 63, -1 }, { 4044, 63, -1 }, { 4045, 63, -1 }, { 4039, 7, -1 }, { 4040, 7, -1 }, { 4041, 7, -1 }, { 4042, 7, -1 }, { 4043, 7, -1 }, { 4044, 7, -1 }, { 4045, 7, -1 }, { 4039, 13, -1 }, { 4040, 13, -1 }, { 4041, 13, -1 }, { 4042, 13, -1 }, { 4043, 13, -1 }, { 4044, 13, -1 }, { 4045, 13, -1 }, { 4039, 23, -1 }, { 4040, 23, -1 }, { 4041, 23, -1 }, { 4042, 23, -1 }, { 4043, 23, -1 }, { 4044, 23, -1 }, { 4045, 23, -1 }, { 4039, 1849, -1 }, { 4040, 1849, -1 }, { 4041, 1849, -1 }, { 4042, 1849, -1 }, { 4043, 1849, -1 }, { 4044, 1849, -1 }, { 4045, 1849, -1 }, { 4039, 10, -1 }, { 4040, 10, -1 }, { 4041, 10, -1 }, { 4042, 10, -1 }, { 4043, 10, -1 }, { 4044, 10, -1 }, { 4045, 10, -1 }, { 4039, 14, -1 }, { 4040, 14, -1 }, { 4041, 14, -1 }, { 4042, 14, -1 }, { 4043, 14, -1 }, { 4044, 14, -1 }, { 4045, 14, -1 }, { 4039, 134, -1 }, { 4040, 134, -1 }, { 4041, 134, -1 }, { 4042, 134, -1 }, { 4043, 134, -1 }, { 4044, 134, -1 }, { 4045, 134, -1 }, { 4039, 15, -1 }, { 4040, 15, -1 }, { 4041, 15, -1 }, { 4042, 15, -1 }, { 4043, 15, -1 }, { 4044, 15, -1 }, { 4045, 15, -1 }, { 4039, 16, -1 }, { 4040, 16, -1 }, { 4041, 16, -1 }, { 4042, 16, -1 }, { 4043, 16, -1 }, { 4044, 16, -1 }, { 4045, 16, -1 }, { 4039, 17, -1 }, { 4040, 17, -1 }, { 4041, 17, -1 }, { 4042, 17, -1 }, { 4043, 17, -1 }, { 4044, 17, -1 }, { 4045, 17, -1 }, { 4039, 11, -1 }, { 4042, 11, -1 }, { 4044, 11, -1 }, { 4045, 11, -1 }, { 4039, 12, -1 }, { 4040, 12, -1 }, { 4041, 12, -1 }, { 4042, 12, -1 }, { 4043, 12, -1 }, { 4044, 12, -1 }, { 4045, 12, -1 }, { 4039, 493, -1 }, { 4040, 493, -1 }, { 4041, 493, -1 }, { 4042, 493, -1 }, { 4043, 493, -1 }, { 4044, 493, -1 }, { 4045, 493, -1 }, { 4039, 476, -1 }, { 4040, 476, -1 }, { 4041, 476, -1 }, { 4042, 476, -1 }, { 4043, 476, -1 }, { 4044, 476, -1 }, { 4045, 476, -1 }, { 4039, 275, -1 }, { 4040, 275, -1 }, { 4041, 275, -1 }, { 4042, 275, -1 }, { 4043, 275, -1 }, { 4044, 275, -1 }, { 4045, 275, -1 }, { 4039, 18, -1 }, { 4040, 18, -1 }, { 4041, 18, -1 }, { 4042, 18, -1 }, { 4043, 18, -1 }, { 4044, 18, -1 }, { 4045, 18, -1 }, { 4039, 19, -1 }, { 4040, 19, -1 }, { 4041, 19, -1 }, { 4042, 19, -1 }, { 4043, 19, -1 }, { 4044, 19, -1 }, { 4045, 19, -1 }, { 4039, 453, -1 }, { 4040, 453, -1 }, { 4041, 453, -1 }, { 4042, 453, -1 }, { 4043, 453, -1 }, { 4044, 453, -1 }, { 4045, 453, -1 }, { 4039, 68, -1 }, { 4040, 68, -1 }, { 4041, 68, -1 }, { 4042, 68, -1 }, { 4043, 68, -1 }, { 4044, 68, -1 }, { 4045, 68, -1 }, { 4039, 20, -1 }, { 4040, 20, -1 }, { 4041, 20, -1 }, { 4042, 20, -1 }, { 4043, 20, -1 }, { 4044, 20, -1 }, { 4045, 20, -1 }, { 4039, 21, -1 }, { 4040, 21, -1 }, { 4041, 21, -1 }, { 4042, 21, -1 }, { 4043, 21, -1 }, { 4044, 21, -1 }, { 4045, 21, -1 }, { 4039, 22, -1 }, { 4040, 22, -1 }, { 4041, 22, -1 }, { 4042, 22, -1 }, { 4043, 22, -1 }, { 4044, 22, -1 }, { 4045, 22, -1 }, { 4039, 589, -1 }, { 4040, 589, -1 }, { 4041, 589, -1 }, { 4042, 589, -1 }, { 4043, 589, -1 }, { 4044, 589, -1 }, { 4045, 589, -1 }, { 4039, 620, -1 }, { 4040, 620, -1 }, { 4041, 620, -1 }, { 4042, 620, -1 }, { 4043, 620, -1 }, { 4044, 620, -1 }, { 4045, 620, -1 }, { 4039, 784, -1 }, { 4040, 784, -1 }, { 4041, 784, -1 }, { 4042, 784, -1 }, { 4043, 784, -1 }, { 4044, 784, -1 }, { 4045, 784, -1 }, { 4039, 785, -1 }, { 4040, 785, -1 }, { 4041, 785, -1 }, { 4042, 785, -1 }, { 4043, 785, -1 }, { 4044, 785, -1 }, { 4045, 785, -1 }, { 4039, 1377, -1 }, { 4040, 1377, -1 }, { 4041, 1377, -1 }, { 4042, 1377, -1 }, { 4043, 1377, -1 }, { 4044, 1377, -1 }, { 4045, 1377, -1 }, { 4039, 1501, -1 }, { 4040, 1501, -1 }, { 4041, 1501, -1 }, { 4042, 1501, -1 }, { 4043, 1501, -1 }, { 4044, 1501, -1 }, { 4045, 1501, -1 }, { 4039, 1294, -1 }, { 4040, 1294, -1 }, { 4041, 1294, -1 }, { 4042, 1294, -1 }, { 4043, 1294, -1 }, { 4044, 1294, -1 }, { 4045, 1294, -1 }, { 4039, 1314, -1 }, { 4040, 1314, -1 }, { 4041, 1314, -1 }, { 4042, 1314, -1 }, { 4043, 1314, -1 }, { 4044, 1314, -1 }, { 4045, 1314, -1 }, { 4039, 1316, -1 }, { 4040, 1316, -1 }, { 4041, 1316, -1 }, { 4042, 1316, -1 }, { 4043, 1316, -1 }, { 4044, 1316, -1 }, { 4045, 1316, -1 }, { 4039, 1348, -1 }, { 4040, 1348, -1 }, { 4041, 1348, -1 }, { 4042, 1348, -1 }, { 4043, 1348, -1 }, { 4044, 1348, -1 }, { 4045, 1348, -1 }, { 4039, 1356, -1 }, { 4040, 1356, -1 }, { 4041, 1356, -1 }, { 4042, 1356, -1 }, { 4043, 1356, -1 }, { 4044, 1356, -1 }, { 4045, 1356, -1 }, { 4039, 1317, -1 }, { 4040, 1317, -1 }, { 4041, 1317, -1 }, { 4042, 1317, -1 }, { 4043, 1317, -1 }, { 4044, 1317, -1 }, { 4045, 1317, -1 }, { 4039, 1315, -1 }, { 4040, 1315, -1 }, { 4041, 1315, -1 }, { 4042, 1315, -1 }, { 4043, 1315, -1 }, { 4044, 1315, -1 }, { 4045, 1315, -1 }, { 4039, 1351, -1 }, { 4040, 1351, -1 }, { 4041, 1351, -1 }, { 4042, 1351, -1 }, { 4043, 1351, -1 }, { 4044, 1351, -1 }, { 4045, 1351, -1 }, { 4039, 1751, -1 }, { 4040, 1751, -1 }, { 4041, 1751, -1 }, { 4042, 1751, -1 }, { 4043, 1751, -1 }, { 4044, 1751, -1 }, { 4045, 1751, -1 }, { 4039, 1756, -1 }, { 4040, 1756, -1 }, { 4041, 1756, -1 }, { 4042, 1756, -1 }, { 4043, 1756, -1 }, { 4044, 1756, -1 }, { 4045, 1756, -1 }, { 4039, 837, -1 }, { 4040, 837, -1 }, { 4041, 837, -1 }, { 4042, 837, -1 }, { 4043, 837, -1 }, { 4044, 837, -1 }, { 4045, 837, -1 }, { 4039, 838, -1 }, { 4040, 838, -1 }, { 4041, 838, -1 }, { 4042, 838, -1 }, { 4043, 838, -1 }, { 4044, 838, -1 }, { 4045, 838, -1 }, { 4039, 836, -1 }, { 4040, 836, -1 }, { 4041, 836, -1 }, { 4042, 836, -1 }, { 4043, 836, -1 }, { 4044, 836, -1 }, { 4045, 836, -1 }, { 4039, 783, -1 }, { 4040, 783, -1 }, { 4041, 783, -1 }, { 4042, 783, -1 }, { 4043, 783, -1 }, { 4044, 783, -1 }, { 4045, 783, -1 }, { 4039, 778, -1 }, { 4042, 778, -1 }, { 4044, 778, -1 }, { 4045, 778, -1 }, { 4039, 779, -1 }, { 4040, 779, -1 }, { 4041, 779, -1 }, { 4042, 779, -1 }, { 4043, 779, -1 }, { 4044, 779, -1 }, { 4045, 779, -1 }, { 4039, 1532, -1 }, { 4040, 1532, -1 }, { 4041, 1532, -1 }, { 4042, 1532, -1 }, { 4043, 1532, -1 }, { 4044, 1532, -1 }, { 4045, 1532, -1 }, { 4039, 1527, -1 }, { 4040, 1527, -1 }, { 4041, 1527, -1 }, { 4042, 1527, -1 }, { 4043, 1527, -1 }, { 4044, 1527, -1 }, { 4045, 1527, -1 }, { 4039, 1534, -1 }, { 4040, 1534, -1 }, { 4041, 1534, -1 }, { 4042, 1534, -1 }, { 4043, 1534, -1 }, { 4044, 1534, -1 }, { 4045, 1534, -1 }, { 4039, 1549, -1 }, { 4040, 1549, -1 }, { 4041, 1549, -1 }, { 4042, 1549, -1 }, { 4043, 1549, -1 }, { 4044, 1549, -1 }, { 4045, 1549, -1 }, { 4039, 1536, -1 }, { 4040, 1536, -1 }, { 4041, 1536, -1 }, { 4042, 1536, -1 }, { 4043, 1536, -1 }, { 4044, 1536, -1 }, { 4045, 1536, -1 }, { 4039, 1483, -1 }, { 4042, 1483, -1 }, { 4044, 1483, -1 }, { 4045, 1483, -1 }, { 3983, 1737, -1 }, { 3984, 1737, -1 }, { 3985, 1737, -1 }, { 3986, 1737, -1 }, { 3987, 1737, -1 }, { 3989, 1737, -1 }, { 3990, 1737, -1 }, { 3991, 1737, -1 }, { 3992, 1737, -1 }, { 3993, 1737, -1 }, { 3995, 1737, -1 }, { 3996, 1737, -1 }, { 3997, 1737, -1 }, { 3998, 1737, -1 }, { 3999, 1737, -1 }, { 4000, 1737, -1 }, { 4001, 1737, -1 }, { 4002, 1737, -1 }, { 4003, 1737, -1 }, { 4004, 1737, -1 }, { 4005, 1737, -1 }, { 4006, 1737, -1 }, { 4007, 1737, -1 }, { 4008, 1737, -1 }, { 4009, 1737, -1 }, { 4010, 1737, -1 }, { 4011, 1737, -1 }, { 4012, 1737, -1 }, { 4013, 1737, -1 }, { 4014, 1737, -1 }, { 4015, 1737, -1 }, { 4016, 1737, -1 }, { 4017, 1737, -1 }, { 4018, 1737, -1 }, { 4019, 1737, -1 }, { 4020, 1737, -1 }, { 4021, 1737, -1 }, { 4022, 1737, -1 }, { 4023, 1737, -1 }, { 4024, 1737, -1 }, { 4025, 1737, -1 }, { 4026, 1737, -1 }, { 4027, 1737, -1 }, { 4028, 1737, -1 }, { 4029, 1737, -1 }, { 4030, 1737, -1 }, { 4031, 1737, -1 }, { 4032, 1737, -1 }, { 4033, 1737, -1 }, { 4034, 1737, -1 }, { 4035, 1737, -1 }, { 4036, 1737, -1 }, { 4037, 1737, -1 }, { 4038, 1737, -1 }, { 3983, 1868, -1 }, { 3985, 1868, -1 }, { 3986, 1868, -1 }, { 3987, 1868, -1 }, { 3989, 1868, -1 }, { 3990, 1868, -1 }, { 3991, 1868, -1 }, { 3992, 1868, -1 }, { 3993, 1868, -1 }, { 3995, 1868, -1 }, { 3996, 1868, -1 }, { 3997, 1868, -1 }, { 3998, 1868, -1 }, { 4000, 1868, -1 }, { 4001, 1868, -1 }, { 4002, 1868, -1 }, { 4003, 1868, -1 }, { 4004, 1868, -1 }, { 4005, 1868, -1 }, { 4006, 1868, -1 }, { 4007, 1868, -1 }, { 4008, 1868, -1 }, { 4009, 1868, -1 }, { 4010, 1868, -1 }, { 4011, 1868, -1 }, { 4012, 1868, -1 }, { 4013, 1868, -1 }, { 4014, 1868, -1 }, { 4015, 1868, -1 }, { 4016, 1868, -1 }, { 4017, 1868, -1 }, { 4018, 1868, -1 }, { 4019, 1868, -1 }, { 4020, 1868, -1 }, { 4021, 1868, -1 }, { 4022, 1868, -1 }, { 4023, 1868, -1 }, { 4024, 1868, -1 }, { 4025, 1868, -1 }, { 4026, 1868, -1 }, { 4027, 1868, -1 }, { 4029, 1868, -1 }, { 4030, 1868, -1 }, { 4031, 1868, -1 }, { 4032, 1868, -1 }, { 4033, 1868, -1 }, { 4034, 1868, -1 }, { 4035, 1868, -1 }, { 4036, 1868, -1 }, { 4037, 1868, -1 }, { 4038, 1868, -1 }, { 3984, 1984, -1 }, { 3985, 1984, -1 }, { 3986, 1984, -1 }, { 3987, 1984, -1 }, { 3989, 1984, -1 }, { 3990, 1984, -1 }, { 3991, 1984, -1 }, { 3992, 1984, -1 }, { 3993, 1984, -1 }, { 3995, 1984, -1 }, { 3996, 1984, -1 }, { 3997, 1984, -1 }, { 3998, 1984, -1 }, { 4000, 1984, -1 }, { 4002, 1984, -1 }, { 4003, 1984, -1 }, { 4004, 1984, -1 }, { 4006, 1984, -1 }, { 4007, 1984, -1 }, { 4008, 1984, -1 }, { 4009, 1984, -1 }, { 4010, 1984, -1 }, { 4011, 1984, -1 }, { 4012, 1984, -1 }, { 4013, 1984, -1 }, { 4014, 1984, -1 }, { 4015, 1984, -1 }, { 4016, 1984, -1 }, { 4017, 1984, -1 }, { 4018, 1984, -1 }, { 4019, 1984, -1 }, { 4020, 1984, -1 }, { 4021, 1984, -1 }, { 4022, 1984, -1 }, { 4023, 1984, -1 }, { 4024, 1984, -1 }, { 4025, 1984, -1 }, { 4026, 1984, -1 }, { 4027, 1984, -1 }, { 4028, 1984, -1 }, { 4029, 1984, -1 }, { 4030, 1984, -1 }, { 4031, 1984, -1 }, { 4032, 1984, -1 }, { 4033, 1984, -1 }, { 4034, 1984, -1 }, { 4035, 1984, -1 }, { 4036, 1984, -1 }, { 4037, 1984, -1 }, { 4038, 1984, -1 }, { 3983, 1831, -1 }, { 3985, 1831, -1 }, { 3986, 1831, -1 }, { 3987, 1831, -1 }, { 3988, 1831, -1 }, { 3989, 1831, -1 }, { 3990, 1831, -1 }, { 3991, 1831, -1 }, { 3992, 1831, -1 }, { 3993, 1831, -1 }, { 3994, 1831, -1 }, { 3996, 1831, -1 }, { 3997, 1831, -1 }, { 3998, 1831, -1 }, { 4000, 1831, -1 }, { 4001, 1831, -1 }, { 4002, 1831, -1 }, { 4003, 1831, -1 }, { 4004, 1831, -1 }, { 4005, 1831, -1 }, { 4006, 1831, -1 }, { 4007, 1831, -1 }, { 4008, 1831, -1 }, { 4009, 1831, -1 }, { 4010, 1831, -1 }, { 4011, 1831, -1 }, { 4012, 1831, -1 }, { 4013, 1831, -1 }, { 4015, 1831, -1 }, { 4016, 1831, -1 }, { 4017, 1831, -1 }, { 4018, 1831, -1 }, { 4019, 1831, -1 }, { 4020, 1831, -1 }, { 4021, 1831, -1 }, { 4022, 1831, -1 }, { 4023, 1831, -1 }, { 4024, 1831, -1 }, { 4025, 1831, -1 }, { 4026, 1831, -1 }, { 4027, 1831, -1 }, { 4029, 1831, -1 }, { 4030, 1831, -1 }, { 4031, 1831, -1 }, { 4032, 1831, -1 }, { 4033, 1831, -1 }, { 4034, 1831, -1 }, { 4036, 1831, -1 }, { 4037, 1831, -1 }, { 4038, 1831, -1 }, { 3984, 1914, -1 }, { 3985, 1914, -1 }, { 3986, 1914, -1 }, { 3987, 1914, -1 }, { 3989, 1914, -1 }, { 3990, 1914, -1 }, { 3991, 1914, -1 }, { 3992, 1914, -1 }, { 3993, 1914, -1 }, { 3995, 1914, -1 }, { 3996, 1914, -1 }, { 3997, 1914, -1 }, { 3998, 1914, -1 }, { 4000, 1914, -1 }, { 4001, 1914, -1 }, { 4002, 1914, -1 }, { 4003, 1914, -1 }, { 4004, 1914, -1 }, { 4005, 1914, -1 }, { 4006, 1914, -1 }, { 4007, 1914, -1 }, { 4008, 1914, -1 }, { 4009, 1914, -1 }, { 4010, 1914, -1 }, { 4011, 1914, -1 }, { 4012, 1914, -1 }, { 4013, 1914, -1 }, { 4014, 1914, -1 }, { 4015, 1914, -1 }, { 4016, 1914, -1 }, { 4017, 1914, -1 }, { 4018, 1914, -1 }, { 4019, 1914, -1 }, { 4020, 1914, -1 }, { 4021, 1914, -1 }, { 4022, 1914, -1 }, { 4023, 1914, -1 }, { 4024, 1914, -1 }, { 4025, 1914, -1 }, { 4026, 1914, -1 }, { 4027, 1914, -1 }, { 4028, 1914, -1 }, { 4029, 1914, -1 }, { 4030, 1914, -1 }, { 4031, 1914, -1 }, { 4032, 1914, -1 }, { 4033, 1914, -1 }, { 4034, 1914, -1 }, { 4035, 1914, -1 }, { 4036, 1914, -1 }, { 4037, 1914, -1 }, { 4038, 1914, -1 }, { 3984, 1794, -1 }, { 3985, 1794, -1 }, { 3986, 1794, -1 }, { 3987, 1794, -1 }, { 3989, 1794, -1 }, { 3990, 1794, -1 }, { 3991, 1794, -1 }, { 3992, 1794, -1 }, { 3993, 1794, -1 }, { 3996, 1794, -1 }, { 3997, 1794, -1 }, { 3998, 1794, -1 }, { 4000, 1794, -1 }, { 4001, 1794, -1 }, { 4002, 1794, -1 }, { 4003, 1794, -1 }, { 4004, 1794, -1 }, { 4006, 1794, -1 }, { 4007, 1794, -1 }, { 4008, 1794, -1 }, { 4009, 1794, -1 }, { 4010, 1794, -1 }, { 4011, 1794, -1 }, { 4012, 1794, -1 }, { 4013, 1794, -1 }, { 4014, 1794, -1 }, { 4015, 1794, -1 }, { 4016, 1794, -1 }, { 4017, 1794, -1 }, { 4018, 1794, -1 }, { 4019, 1794, -1 }, { 4020, 1794, -1 }, { 4021, 1794, -1 }, { 4022, 1794, -1 }, { 4023, 1794, -1 }, { 4024, 1794, -1 }, { 4025, 1794, -1 }, { 4026, 1794, -1 }, { 4027, 1794, -1 }, { 4029, 1794, -1 }, { 4030, 1794, -1 }, { 4031, 1794, -1 }, { 4032, 1794, -1 }, { 4033, 1794, -1 }, { 4034, 1794, -1 }, { 4035, 1794, -1 }, { 4036, 1794, -1 }, { 4037, 1794, -1 }, { 4038, 1794, -1 }, { 3984, 1803, -1 }, { 3985, 1803, -1 }, { 3986, 1803, -1 }, { 3987, 1803, -1 }, { 3989, 1803, -1 }, { 3990, 1803, -1 }, { 3991, 1803, -1 }, { 3992, 1803, -1 }, { 3993, 1803, -1 }, { 3996, 1803, -1 }, { 3997, 1803, -1 }, { 3998, 1803, -1 }, { 4000, 1803, -1 }, { 4001, 1803, -1 }, { 4002, 1803, -1 }, { 4003, 1803, -1 }, { 4004, 1803, -1 }, { 4006, 1803, -1 }, { 4007, 1803, -1 }, { 4008, 1803, -1 }, { 4009, 1803, -1 }, { 4010, 1803, -1 }, { 4011, 1803, -1 }, { 4012, 1803, -1 }, { 4013, 1803, -1 }, { 4014, 1803, -1 }, { 4015, 1803, -1 }, { 4016, 1803, -1 }, { 4017, 1803, -1 }, { 4018, 1803, -1 }, { 4019, 1803, -1 }, { 4020, 1803, -1 }, { 4021, 1803, -1 }, { 4022, 1803, -1 }, { 4023, 1803, -1 }, { 4024, 1803, -1 }, { 4025, 1803, -1 }, { 4026, 1803, -1 }, { 4027, 1803, -1 }, { 4029, 1803, -1 }, { 4030, 1803, -1 }, { 4031, 1803, -1 }, { 4032, 1803, -1 }, { 4033, 1803, -1 }, { 4034, 1803, -1 }, { 4035, 1803, -1 }, { 4036, 1803, -1 }, { 4037, 1803, -1 }, { 4038, 1803, -1 }, { 3983, 1804, -1 }, { 3984, 1804, -1 }, { 3985, 1804, -1 }, { 3986, 1804, -1 }, { 3987, 1804, -1 }, { 3989, 1804, -1 }, { 3990, 1804, -1 }, { 3991, 1804, -1 }, { 3992, 1804, -1 }, { 3993, 1804, -1 }, { 3994, 1804, -1 }, { 3995, 1804, -1 }, { 3996, 1804, -1 }, { 3997, 1804, -1 }, { 3998, 1804, -1 }, { 3999, 1804, -1 }, { 4000, 1804, -1 }, { 4001, 1804, -1 }, { 4002, 1804, -1 }, { 4003, 1804, -1 }, { 4004, 1804, -1 }, { 4005, 1804, -1 }, { 4006, 1804, -1 }, { 4007, 1804, -1 }, { 4008, 1804, -1 }, { 4009, 1804, -1 }, { 4010, 1804, -1 }, { 4011, 1804, -1 }, { 4012, 1804, -1 }, { 4013, 1804, -1 }, { 4014, 1804, -1 }, { 4015, 1804, -1 }, { 4016, 1804, -1 }, { 4017, 1804, -1 }, { 4018, 1804, -1 }, { 4019, 1804, -1 }, { 4020, 1804, -1 }, { 4021, 1804, -1 }, { 4022, 1804, -1 }, { 4023, 1804, -1 }, { 4024, 1804, -1 }, { 4025, 1804, -1 }, { 4026, 1804, -1 }, { 4027, 1804, -1 }, { 4028, 1804, -1 }, { 4029, 1804, -1 }, { 4030, 1804, -1 }, { 4031, 1804, -1 }, { 4032, 1804, -1 }, { 4033, 1804, -1 }, { 4034, 1804, -1 }, { 4035, 1804, -1 }, { 4037, 1804, -1 }, { 4038, 1804, -1 }, { 3983, 1850, -1 }, { 3985, 1850, -1 }, { 3986, 1850, -1 }, { 3987, 1850, -1 }, { 3989, 1850, -1 }, { 3990, 1850, -1 }, { 3991, 1850, -1 }, { 3992, 1850, -1 }, { 3993, 1850, -1 }, { 3995, 1850, -1 }, { 3996, 1850, -1 }, { 3997, 1850, -1 }, { 3998, 1850, -1 }, { 4000, 1850, -1 }, { 4001, 1850, -1 }, { 4002, 1850, -1 }, { 4003, 1850, -1 }, { 4004, 1850, -1 }, { 4006, 1850, -1 }, { 4007, 1850, -1 }, { 4008, 1850, -1 }, { 4009, 1850, -1 }, { 4010, 1850, -1 }, { 4011, 1850, -1 }, { 4012, 1850, -1 }, { 4013, 1850, -1 }, { 4014, 1850, -1 }, { 4015, 1850, -1 }, { 4016, 1850, -1 }, { 4017, 1850, -1 }, { 4018, 1850, -1 }, { 4019, 1850, -1 }, { 4020, 1850, -1 }, { 4021, 1850, -1 }, { 4022, 1850, -1 }, { 4023, 1850, -1 }, { 4024, 1850, -1 }, { 4025, 1850, -1 }, { 4026, 1850, -1 }, { 4027, 1850, -1 }, { 4029, 1850, -1 }, { 4030, 1850, -1 }, { 4031, 1850, -1 }, { 4032, 1850, -1 }, { 4033, 1850, -1 }, { 4034, 1850, -1 }, { 4035, 1850, -1 }, { 4036, 1850, -1 }, { 4037, 1850, -1 }, { 4038, 1850, -1 }, { 3983, 1852, -1 }, { 3985, 1852, -1 }, { 3986, 1852, -1 }, { 3987, 1852, -1 }, { 3989, 1852, -1 }, { 3990, 1852, -1 }, { 3991, 1852, -1 }, { 3992, 1852, -1 }, { 3993, 1852, -1 }, { 3995, 1852, -1 }, { 3996, 1852, -1 }, { 3997, 1852, -1 }, { 3998, 1852, -1 }, { 4000, 1852, -1 }, { 4001, 1852, -1 }, { 4002, 1852, -1 }, { 4003, 1852, -1 }, { 4004, 1852, -1 }, { 4005, 1852, -1 }, { 4006, 1852, -1 }, { 4007, 1852, -1 }, { 4008, 1852, -1 }, { 4009, 1852, -1 }, { 4010, 1852, -1 }, { 4011, 1852, -1 }, { 4012, 1852, -1 }, { 4013, 1852, -1 }, { 4014, 1852, -1 }, { 4015, 1852, -1 }, { 4016, 1852, -1 }, { 4017, 1852, -1 }, { 4018, 1852, -1 }, { 4019, 1852, -1 }, { 4020, 1852, -1 }, { 4021, 1852, -1 }, { 4022, 1852, -1 }, { 4023, 1852, -1 }, { 4024, 1852, -1 }, { 4025, 1852, -1 }, { 4026, 1852, -1 }, { 4027, 1852, -1 }, { 4029, 1852, -1 }, { 4030, 1852, -1 }, { 4031, 1852, -1 }, { 4032, 1852, -1 }, { 4033, 1852, -1 }, { 4034, 1852, -1 }, { 4035, 1852, -1 }, { 4036, 1852, -1 }, { 4037, 1852, -1 }, { 4038, 1852, -1 }, { 3984, 1881, -1 }, { 3985, 1881, -1 }, { 3986, 1881, -1 }, { 3987, 1881, -1 }, { 3988, 1881, -1 }, { 3989, 1881, -1 }, { 3990, 1881, -1 }, { 3991, 1881, -1 }, { 3992, 1881, -1 }, { 3993, 1881, -1 }, { 3994, 1881, -1 }, { 3995, 1881, -1 }, { 3996, 1881, -1 }, { 3997, 1881, -1 }, { 3998, 1881, -1 }, { 4000, 1881, -1 }, { 4001, 1881, -1 }, { 4002, 1881, -1 }, { 4003, 1881, -1 }, { 4004, 1881, -1 }, { 4005, 1881, -1 }, { 4006, 1881, -1 }, { 4007, 1881, -1 }, { 4008, 1881, -1 }, { 4009, 1881, -1 }, { 4010, 1881, -1 }, { 4011, 1881, -1 }, { 4012, 1881, -1 }, { 4013, 1881, -1 }, { 4014, 1881, -1 }, { 4015, 1881, -1 }, { 4016, 1881, -1 }, { 4017, 1881, -1 }, { 4018, 1881, -1 }, { 4019, 1881, -1 }, { 4020, 1881, -1 }, { 4021, 1881, -1 }, { 4022, 1881, -1 }, { 4023, 1881, -1 }, { 4024, 1881, -1 }, { 4025, 1881, -1 }, { 4026, 1881, -1 }, { 4027, 1881, -1 }, { 4028, 1881, -1 }, { 4029, 1881, -1 }, { 4030, 1881, -1 }, { 4031, 1881, -1 }, { 4032, 1881, -1 }, { 4033, 1881, -1 }, { 4034, 1881, -1 }, { 4035, 1881, -1 }, { 4037, 1881, -1 }, { 4038, 1881, -1 }, { 3984, 1682, -1 }, { 3985, 1682, -1 }, { 3986, 1682, -1 }, { 3987, 1682, -1 }, { 3989, 1682, -1 }, { 3990, 1682, -1 }, { 3991, 1682, -1 }, { 3992, 1682, -1 }, { 3993, 1682, -1 }, { 3995, 1682, -1 }, { 3996, 1682, -1 }, { 3997, 1682, -1 }, { 3998, 1682, -1 }, { 4000, 1682, -1 }, { 4001, 1682, -1 }, { 4002, 1682, -1 }, { 4003, 1682, -1 }, { 4004, 1682, -1 }, { 4005, 1682, -1 }, { 4006, 1682, -1 }, { 4007, 1682, -1 }, { 4008, 1682, -1 }, { 4009, 1682, -1 }, { 4010, 1682, -1 }, { 4011, 1682, -1 }, { 4012, 1682, -1 }, { 4013, 1682, -1 }, { 4014, 1682, -1 }, { 4015, 1682, -1 }, { 4016, 1682, -1 }, { 4017, 1682, -1 }, { 4018, 1682, -1 }, { 4019, 1682, -1 }, { 4020, 1682, -1 }, { 4021, 1682, -1 }, { 4022, 1682, -1 }, { 4023, 1682, -1 }, { 4024, 1682, -1 }, { 4025, 1682, -1 }, { 4026, 1682, -1 }, { 4027, 1682, -1 }, { 4028, 1682, -1 }, { 4029, 1682, -1 }, { 4030, 1682, -1 }, { 4031, 1682, -1 }, { 4032, 1682, -1 }, { 4033, 1682, -1 }, { 4034, 1682, -1 }, { 4035, 1682, -1 }, { 4036, 1682, -1 }, { 4037, 1682, -1 }, { 4038, 1682, -1 }, { 3984, 950, -1 }, { 3985, 950, -1 }, { 3986, 950, -1 }, { 3987, 950, -1 }, { 3989, 950, -1 }, { 3990, 950, -1 }, { 3991, 950, -1 }, { 3992, 950, -1 }, { 3993, 950, -1 }, { 3995, 950, -1 }, { 3996, 950, -1 }, { 3997, 950, -1 }, { 3998, 950, -1 }, { 4000, 950, -1 }, { 4001, 950, -1 }, { 4002, 950, -1 }, { 4003, 950, -1 }, { 4004, 950, -1 }, { 4005, 950, -1 }, { 4006, 950, -1 }, { 4007, 950, -1 }, { 4008, 950, -1 }, { 4009, 950, -1 }, { 4010, 950, -1 }, { 4011, 950, -1 }, { 4012, 950, -1 }, { 4013, 950, -1 }, { 4014, 950, -1 }, { 4015, 950, -1 }, { 4016, 950, -1 }, { 4018, 950, -1 }, { 4019, 950, -1 }, { 4020, 950, -1 }, { 4021, 950, -1 }, { 4022, 950, -1 }, { 4023, 950, -1 }, { 4024, 950, -1 }, { 4025, 950, -1 }, { 4026, 950, -1 }, { 4027, 950, -1 }, { 4029, 950, -1 }, { 4030, 950, -1 }, { 4031, 950, -1 }, { 4032, 950, -1 }, { 4033, 950, -1 }, { 4034, 950, -1 }, { 4035, 950, -1 }, { 4036, 950, -1 }, { 4037, 950, -1 }, { 4038, 950, -1 }, { 3983, 63, -1 }, { 3984, 63, -1 }, { 3985, 63, -1 }, { 3986, 63, -1 }, { 3987, 63, -1 }, { 3988, 63, -1 }, { 3989, 63, -1 }, { 3990, 63, -1 }, { 3991, 63, -1 }, { 3992, 63, -1 }, { 3993, 63, -1 }, { 3994, 63, -1 }, { 3995, 63, -1 }, { 3996, 63, -1 }, { 3997, 63, -1 }, { 3998, 63, -1 }, { 3999, 63, -1 }, { 4000, 63, -1 }, { 4001, 63, -1 }, { 4002, 63, -1 }, { 4003, 63, -1 }, { 4004, 63, -1 }, { 4005, 63, -1 }, { 4006, 63, -1 }, { 4007, 63, -1 }, { 4008, 63, -1 }, { 4009, 63, -1 }, { 4010, 63, -1 }, { 4011, 63, -1 }, { 4012, 63, -1 }, { 4013, 63, -1 }, { 4014, 63, -1 }, { 4015, 63, -1 }, { 4016, 63, -1 }, { 4017, 63, -1 }, { 4018, 63, -1 }, { 4019, 63, -1 }, { 4020, 63, -1 }, { 4021, 63, -1 }, { 4022, 63, -1 }, { 4023, 63, -1 }, { 4024, 63, -1 }, { 4025, 63, -1 }, { 4026, 63, -1 }, { 4027, 63, -1 }, { 4028, 63, -1 }, { 4029, 63, -1 }, { 4030, 63, -1 }, { 4031, 63, -1 }, { 4032, 63, -1 }, { 4033, 63, -1 }, { 4034, 63, -1 }, { 4035, 63, -1 }, { 4036, 63, -1 }, { 4037, 63, -1 }, { 4038, 63, -1 }, { 3983, 7, -1 }, { 3985, 7, -1 }, { 3986, 7, -1 }, { 3987, 7, -1 }, { 3989, 7, -1 }, { 3990, 7, -1 }, { 3991, 7, -1 }, { 3992, 7, -1 }, { 3993, 7, -1 }, { 3994, 7, -1 }, { 3995, 7, -1 }, { 3996, 7, -1 }, { 3997, 7, -1 }, { 3998, 7, -1 }, { 3999, 7, -1 }, { 4000, 7, -1 }, { 4002, 7, -1 }, { 4003, 7, -1 }, { 4004, 7, -1 }, { 4006, 7, -1 }, { 4007, 7, -1 }, { 4008, 7, -1 }, { 4009, 7, -1 }, { 4010, 7, -1 }, { 4011, 7, -1 }, { 4012, 7, -1 }, { 4013, 7, -1 }, { 4014, 7, -1 }, { 4015, 7, -1 }, { 4016, 7, -1 }, { 4017, 7, -1 }, { 4018, 7, -1 }, { 4019, 7, -1 }, { 4020, 7, -1 }, { 4021, 7, -1 }, { 4022, 7, -1 }, { 4023, 7, -1 }, { 4024, 7, -1 }, { 4025, 7, -1 }, { 4026, 7, -1 }, { 4027, 7, -1 }, { 4028, 7, -1 }, { 4029, 7, -1 }, { 4030, 7, -1 }, { 4031, 7, -1 }, { 4032, 7, -1 }, { 4033, 7, -1 }, { 4034, 7, -1 }, { 4035, 7, -1 }, { 4037, 7, -1 }, { 4038, 7, -1 }, { 3984, 13, -1 }, { 3985, 13, -1 }, { 3986, 13, -1 }, { 3987, 13, -1 }, { 3988, 13, -1 }, { 3989, 13, -1 }, { 3990, 13, -1 }, { 3991, 13, -1 }, { 3992, 13, -1 }, { 3993, 13, -1 }, { 3994, 13, -1 }, { 3995, 13, -1 }, { 3996, 13, -1 }, { 3997, 13, -1 }, { 3998, 13, -1 }, { 4000, 13, -1 }, { 4001, 13, -1 }, { 4002, 13, -1 }, { 4003, 13, -1 }, { 4004, 13, -1 }, { 4005, 13, -1 }, { 4006, 13, -1 }, { 4007, 13, -1 }, { 4008, 13, -1 }, { 4009, 13, -1 }, { 4010, 13, -1 }, { 4011, 13, -1 }, { 4012, 13, -1 }, { 4013, 13, -1 }, { 4014, 13, -1 }, { 4015, 13, -1 }, { 4016, 13, -1 }, { 4017, 13, -1 }, { 4018, 13, -1 }, { 4019, 13, -1 }, { 4020, 13, -1 }, { 4021, 13, -1 }, { 4022, 13, -1 }, { 4023, 13, -1 }, { 4024, 13, -1 }, { 4025, 13, -1 }, { 4026, 13, -1 }, { 4027, 13, -1 }, { 4028, 13, -1 }, { 4029, 13, -1 }, { 4030, 13, -1 }, { 4031, 13, -1 }, { 4032, 13, -1 }, { 4033, 13, -1 }, { 4034, 13, -1 }, { 4035, 13, -1 }, { 4036, 13, -1 }, { 4037, 13, -1 }, { 4038, 13, -1 }, { 3983, 23, -1 }, { 3984, 23, -1 }, { 3985, 23, -1 }, { 3986, 23, -1 }, { 3987, 23, -1 }, { 3988, 23, -1 }, { 3989, 23, -1 }, { 3990, 23, -1 }, { 3991, 23, -1 }, { 3992, 23, -1 }, { 3993, 23, -1 }, { 3994, 23, -1 }, { 3995, 23, -1 }, { 3996, 23, -1 }, { 3997, 23, -1 }, { 3998, 23, -1 }, { 3999, 23, -1 }, { 4000, 23, -1 }, { 4001, 23, -1 }, { 4002, 23, -1 }, { 4003, 23, -1 }, { 4004, 23, -1 }, { 4005, 23, -1 }, { 4006, 23, -1 }, { 4007, 23, -1 }, { 4008, 23, -1 }, { 4009, 23, -1 }, { 4010, 23, -1 }, { 4011, 23, -1 }, { 4012, 23, -1 }, { 4013, 23, -1 }, { 4014, 23, -1 }, { 4015, 23, -1 }, { 4016, 23, -1 }, { 4017, 23, -1 }, { 4018, 23, -1 }, { 4019, 23, -1 }, { 4020, 23, -1 }, { 4021, 23, -1 }, { 4022, 23, -1 }, { 4023, 23, -1 }, { 4024, 23, -1 }, { 4025, 23, -1 }, { 4026, 23, -1 }, { 4027, 23, -1 }, { 4028, 23, -1 }, { 4029, 23, -1 }, { 4030, 23, -1 }, { 4031, 23, -1 }, { 4032, 23, -1 }, { 4033, 23, -1 }, { 4034, 23, -1 }, { 4035, 23, -1 }, { 4036, 23, -1 }, { 4037, 23, -1 }, { 4038, 23, -1 }, { 3983, 1849, -1 }, { 3984, 1849, -1 }, { 3985, 1849, -1 }, { 3986, 1849, -1 }, { 3987, 1849, -1 }, { 3988, 1849, -1 }, { 3989, 1849, -1 }, { 3990, 1849, -1 }, { 3991, 1849, -1 }, { 3992, 1849, -1 }, { 3993, 1849, -1 }, { 3994, 1849, -1 }, { 3995, 1849, -1 }, { 3996, 1849, -1 }, { 3997, 1849, -1 }, { 3998, 1849, -1 }, { 3999, 1849, -1 }, { 4000, 1849, -1 }, { 4001, 1849, -1 }, { 4002, 1849, -1 }, { 4003, 1849, -1 }, { 4004, 1849, -1 }, { 4005, 1849, -1 }, { 4006, 1849, -1 }, { 4007, 1849, -1 }, { 4008, 1849, -1 }, { 4009, 1849, -1 }, { 4010, 1849, -1 }, { 4011, 1849, -1 }, { 4012, 1849, -1 }, { 4013, 1849, -1 }, { 4014, 1849, -1 }, { 4015, 1849, -1 }, { 4016, 1849, -1 }, { 4017, 1849, -1 }, { 4018, 1849, -1 }, { 4019, 1849, -1 }, { 4020, 1849, -1 }, { 4021, 1849, -1 }, { 4022, 1849, -1 }, { 4023, 1849, -1 }, { 4024, 1849, -1 }, { 4025, 1849, -1 }, { 4026, 1849, -1 }, { 4027, 1849, -1 }, { 4028, 1849, -1 }, { 4029, 1849, -1 }, { 4030, 1849, -1 }, { 4031, 1849, -1 }, { 4032, 1849, -1 }, { 4033, 1849, -1 }, { 4034, 1849, -1 }, { 4035, 1849, -1 }, { 4036, 1849, -1 }, { 4037, 1849, -1 }, { 4038, 1849, -1 }, { 3983, 10, -1 }, { 3984, 10, -1 }, { 3985, 10, -1 }, { 3986, 10, -1 }, { 3987, 10, -1 }, { 3988, 10, -1 }, { 3989, 10, -1 }, { 3990, 10, -1 }, { 3991, 10, -1 }, { 3992, 10, -1 }, { 3993, 10, -1 }, { 3994, 10, -1 }, { 3995, 10, -1 }, { 3996, 10, -1 }, { 3997, 10, -1 }, { 3998, 10, -1 }, { 3999, 10, -1 }, { 4000, 10, -1 }, { 4001, 10, -1 }, { 4002, 10, -1 }, { 4003, 10, -1 }, { 4004, 10, -1 }, { 4005, 10, -1 }, { 4006, 10, -1 }, { 4007, 10, -1 }, { 4008, 10, -1 }, { 4009, 10, -1 }, { 4010, 10, -1 }, { 4011, 10, -1 }, { 4012, 10, -1 }, { 4013, 10, -1 }, { 4014, 10, -1 }, { 4015, 10, -1 }, { 4016, 10, -1 }, { 4017, 10, -1 }, { 4018, 10, -1 }, { 4019, 10, -1 }, { 4020, 10, -1 }, { 4021, 10, -1 }, { 4022, 10, -1 }, { 4023, 10, -1 }, { 4024, 10, -1 }, { 4025, 10, -1 }, { 4026, 10, -1 }, { 4027, 10, -1 }, { 4028, 10, -1 }, { 4029, 10, -1 }, { 4030, 10, -1 }, { 4031, 10, -1 }, { 4032, 10, -1 }, { 4033, 10, -1 }, { 4034, 10, -1 }, { 4035, 10, -1 }, { 4036, 10, -1 }, { 4037, 10, -1 }, { 4038, 10, -1 }, { 3983, 14, -1 }, { 3984, 14, -1 }, { 3985, 14, -1 }, { 3986, 14, -1 }, { 3987, 14, -1 }, { 3988, 14, -1 }, { 3989, 14, -1 }, { 3990, 14, -1 }, { 3991, 14, -1 }, { 3992, 14, -1 }, { 3993, 14, -1 }, { 3994, 14, -1 }, { 3995, 14, -1 }, { 3996, 14, -1 }, { 3997, 14, -1 }, { 3998, 14, -1 }, { 3999, 14, -1 }, { 4000, 14, -1 }, { 4001, 14, -1 }, { 4002, 14, -1 }, { 4003, 14, -1 }, { 4004, 14, -1 }, { 4005, 14, -1 }, { 4006, 14, -1 }, { 4007, 14, -1 }, { 4008, 14, -1 }, { 4009, 14, -1 }, { 4010, 14, -1 }, { 4011, 14, -1 }, { 4012, 14, -1 }, { 4013, 14, -1 }, { 4014, 14, -1 }, { 4015, 14, -1 }, { 4016, 14, -1 }, { 4017, 14, -1 }, { 4018, 14, -1 }, { 4019, 14, -1 }, { 4020, 14, -1 }, { 4021, 14, -1 }, { 4022, 14, -1 }, { 4023, 14, -1 }, { 4024, 14, -1 }, { 4025, 14, -1 }, { 4026, 14, -1 }, { 4027, 14, -1 }, { 4028, 14, -1 }, { 4029, 14, -1 }, { 4030, 14, -1 }, { 4031, 14, -1 }, { 4032, 14, -1 }, { 4033, 14, -1 }, { 4034, 14, -1 }, { 4035, 14, -1 }, { 4036, 14, -1 }, { 4037, 14, -1 }, { 4038, 14, -1 }, { 3983, 134, -1 }, { 3984, 134, -1 }, { 3985, 134, -1 }, { 3986, 134, -1 }, { 3987, 134, -1 }, { 3988, 134, -1 }, { 3989, 134, -1 }, { 3990, 134, -1 }, { 3991, 134, -1 }, { 3992, 134, -1 }, { 3993, 134, -1 }, { 3994, 134, -1 }, { 3995, 134, -1 }, { 3996, 134, -1 }, { 3997, 134, -1 }, { 3998, 134, -1 }, { 3999, 134, -1 }, { 4000, 134, -1 }, { 4001, 134, -1 }, { 4002, 134, -1 }, { 4003, 134, -1 }, { 4004, 134, -1 }, { 4005, 134, -1 }, { 4006, 134, -1 }, { 4007, 134, -1 }, { 4008, 134, -1 }, { 4009, 134, -1 }, { 4010, 134, -1 }, { 4011, 134, -1 }, { 4012, 134, -1 }, { 4013, 134, -1 }, { 4014, 134, -1 }, { 4015, 134, -1 }, { 4016, 134, -1 }, { 4017, 134, -1 }, { 4018, 134, -1 }, { 4019, 134, -1 }, { 4020, 134, -1 }, { 4021, 134, -1 }, { 4022, 134, -1 }, { 4023, 134, -1 }, { 4024, 134, -1 }, { 4025, 134, -1 }, { 4026, 134, -1 }, { 4027, 134, -1 }, { 4028, 134, -1 }, { 4029, 134, -1 }, { 4030, 134, -1 }, { 4031, 134, -1 }, { 4032, 134, -1 }, { 4033, 134, -1 }, { 4034, 134, -1 }, { 4035, 134, -1 }, { 4036, 134, -1 }, { 4037, 134, -1 }, { 4038, 134, -1 }, { 3983, 15, -1 }, { 3984, 15, -1 }, { 3985, 15, -1 }, { 3986, 15, -1 }, { 3987, 15, -1 }, { 3988, 15, -1 }, { 3989, 15, -1 }, { 3990, 15, -1 }, { 3991, 15, -1 }, { 3992, 15, -1 }, { 3993, 15, -1 }, { 3994, 15, -1 }, { 3995, 15, -1 }, { 3996, 15, -1 }, { 3997, 15, -1 }, { 3998, 15, -1 }, { 3999, 15, -1 }, { 4000, 15, -1 }, { 4001, 15, -1 }, { 4002, 15, -1 }, { 4003, 15, -1 }, { 4004, 15, -1 }, { 4005, 15, -1 }, { 4006, 15, -1 }, { 4007, 15, -1 }, { 4008, 15, -1 }, { 4009, 15, -1 }, { 4010, 15, -1 }, { 4011, 15, -1 }, { 4012, 15, -1 }, { 4013, 15, -1 }, { 4014, 15, -1 }, { 4015, 15, -1 }, { 4016, 15, -1 }, { 4017, 15, -1 }, { 4018, 15, -1 }, { 4019, 15, -1 }, { 4020, 15, -1 }, { 4021, 15, -1 }, { 4022, 15, -1 }, { 4023, 15, -1 }, { 4024, 15, -1 }, { 4025, 15, -1 }, { 4026, 15, -1 }, { 4027, 15, -1 }, { 4028, 15, -1 }, { 4029, 15, -1 }, { 4030, 15, -1 }, { 4031, 15, -1 }, { 4032, 15, -1 }, { 4033, 15, -1 }, { 4034, 15, -1 }, { 4035, 15, -1 }, { 4036, 15, -1 }, { 4037, 15, -1 }, { 4038, 15, -1 }, { 3984, 16, -1 }, { 3985, 16, -1 }, { 3986, 16, -1 }, { 3987, 16, -1 }, { 3988, 16, -1 }, { 3989, 16, -1 }, { 3990, 16, -1 }, { 3991, 16, -1 }, { 3992, 16, -1 }, { 3993, 16, -1 }, { 3995, 16, -1 }, { 3996, 16, -1 }, { 3997, 16, -1 }, { 3998, 16, -1 }, { 4000, 16, -1 }, { 4001, 16, -1 }, { 4002, 16, -1 }, { 4003, 16, -1 }, { 4004, 16, -1 }, { 4005, 16, -1 }, { 4006, 16, -1 }, { 4007, 16, -1 }, { 4008, 16, -1 }, { 4009, 16, -1 }, { 4010, 16, -1 }, { 4011, 16, -1 }, { 4012, 16, -1 }, { 4013, 16, -1 }, { 4014, 16, -1 }, { 4015, 16, -1 }, { 4016, 16, -1 }, { 4017, 16, -1 }, { 4018, 16, -1 }, { 4019, 16, -1 }, { 4020, 16, -1 }, { 4021, 16, -1 }, { 4022, 16, -1 }, { 4023, 16, -1 }, { 4024, 16, -1 }, { 4025, 16, -1 }, { 4026, 16, -1 }, { 4027, 16, -1 }, { 4028, 16, -1 }, { 4029, 16, -1 }, { 4030, 16, -1 }, { 4031, 16, -1 }, { 4032, 16, -1 }, { 4033, 16, -1 }, { 4034, 16, -1 }, { 4035, 16, -1 }, { 4036, 16, -1 }, { 4037, 16, -1 }, { 4038, 16, -1 }, { 3983, 17, -1 }, { 3984, 17, -1 }, { 3985, 17, -1 }, { 3986, 17, -1 }, { 3987, 17, -1 }, { 3988, 17, -1 }, { 3989, 17, -1 }, { 3990, 17, -1 }, { 3991, 17, -1 }, { 3992, 17, -1 }, { 3993, 17, -1 }, { 3994, 17, -1 }, { 3995, 17, -1 }, { 3996, 17, -1 }, { 3997, 17, -1 }, { 3998, 17, -1 }, { 3999, 17, -1 }, { 4000, 17, -1 }, { 4001, 17, -1 }, { 4002, 17, -1 }, { 4003, 17, -1 }, { 4004, 17, -1 }, { 4005, 17, -1 }, { 4006, 17, -1 }, { 4007, 17, -1 }, { 4008, 17, -1 }, { 4009, 17, -1 }, { 4010, 17, -1 }, { 4011, 17, -1 }, { 4012, 17, -1 }, { 4013, 17, -1 }, { 4014, 17, -1 }, { 4015, 17, -1 }, { 4016, 17, -1 }, { 4017, 17, -1 }, { 4018, 17, -1 }, { 4019, 17, -1 }, { 4020, 17, -1 }, { 4021, 17, -1 }, { 4022, 17, -1 }, { 4023, 17, -1 }, { 4024, 17, -1 }, { 4025, 17, -1 }, { 4026, 17, -1 }, { 4027, 17, -1 }, { 4028, 17, -1 }, { 4029, 17, -1 }, { 4030, 17, -1 }, { 4031, 17, -1 }, { 4032, 17, -1 }, { 4033, 17, -1 }, { 4034, 17, -1 }, { 4035, 17, -1 }, { 4036, 17, -1 }, { 4037, 17, -1 }, { 4038, 17, -1 }, { 3984, 11, -1 }, { 3985, 11, -1 }, { 3986, 11, -1 }, { 3987, 11, -1 }, { 3989, 11, -1 }, { 3990, 11, -1 }, { 3991, 11, -1 }, { 3992, 11, -1 }, { 3993, 11, -1 }, { 3995, 11, -1 }, { 3996, 11, -1 }, { 3997, 11, -1 }, { 3998, 11, -1 }, { 4000, 11, -1 }, { 4002, 11, -1 }, { 4003, 11, -1 }, { 4004, 11, -1 }, { 4007, 11, -1 }, { 4008, 11, -1 }, { 4009, 11, -1 }, { 4010, 11, -1 }, { 4011, 11, -1 }, { 4012, 11, -1 }, { 4013, 11, -1 }, { 4014, 11, -1 }, { 4015, 11, -1 }, { 4016, 11, -1 }, { 4018, 11, -1 }, { 4019, 11, -1 }, { 4021, 11, -1 }, { 4022, 11, -1 }, { 4023, 11, -1 }, { 4024, 11, -1 }, { 4026, 11, -1 }, { 4027, 11, -1 }, { 4029, 11, -1 }, { 4030, 11, -1 }, { 4031, 11, -1 }, { 4032, 11, -1 }, { 4033, 11, -1 }, { 4034, 11, -1 }, { 4035, 11, -1 }, { 4037, 11, -1 }, { 4038, 11, -1 }, { 3983, 12, -1 }, { 3984, 12, -1 }, { 3985, 12, -1 }, { 3986, 12, -1 }, { 3987, 12, -1 }, { 3988, 12, -1 }, { 3989, 12, -1 }, { 3990, 12, -1 }, { 3991, 12, -1 }, { 3992, 12, -1 }, { 3993, 12, -1 }, { 3994, 12, -1 }, { 3995, 12, -1 }, { 3996, 12, -1 }, { 3997, 12, -1 }, { 3998, 12, -1 }, { 3999, 12, -1 }, { 4000, 12, -1 }, { 4001, 12, -1 }, { 4002, 12, -1 }, { 4003, 12, -1 }, { 4004, 12, -1 }, { 4005, 12, -1 }, { 4006, 12, -1 }, { 4007, 12, -1 }, { 4008, 12, -1 }, { 4009, 12, -1 }, { 4010, 12, -1 }, { 4011, 12, -1 }, { 4012, 12, -1 }, { 4013, 12, -1 }, { 4014, 12, -1 }, { 4015, 12, -1 }, { 4016, 12, -1 }, { 4017, 12, -1 }, { 4018, 12, -1 }, { 4019, 12, -1 }, { 4020, 12, -1 }, { 4021, 12, -1 }, { 4022, 12, -1 }, { 4023, 12, -1 }, { 4024, 12, -1 }, { 4025, 12, -1 }, { 4026, 12, -1 }, { 4027, 12, -1 }, { 4028, 12, -1 }, { 4029, 12, -1 }, { 4030, 12, -1 }, { 4031, 12, -1 }, { 4032, 12, -1 }, { 4033, 12, -1 }, { 4034, 12, -1 }, { 4035, 12, -1 }, { 4036, 12, -1 }, { 4037, 12, -1 }, { 4038, 12, -1 }, { 3984, 493, -1 }, { 3985, 493, -1 }, { 3986, 493, -1 }, { 3987, 493, -1 }, { 3988, 493, -1 }, { 3989, 493, -1 }, { 3990, 493, -1 }, { 3991, 493, -1 }, { 3992, 493, -1 }, { 3993, 493, -1 }, { 3994, 493, -1 }, { 3995, 493, -1 }, { 3996, 493, -1 }, { 3997, 493, -1 }, { 3998, 493, -1 }, { 4000, 493, -1 }, { 4001, 493, -1 }, { 4002, 493, -1 }, { 4003, 493, -1 }, { 4004, 493, -1 }, { 4005, 493, -1 }, { 4006, 493, -1 }, { 4007, 493, -1 }, { 4008, 493, -1 }, { 4009, 493, -1 }, { 4010, 493, -1 }, { 4011, 493, -1 }, { 4012, 493, -1 }, { 4013, 493, -1 }, { 4014, 493, -1 }, { 4015, 493, -1 }, { 4016, 493, -1 }, { 4017, 493, -1 }, { 4018, 493, -1 }, { 4019, 493, -1 }, { 4020, 493, -1 }, { 4021, 493, -1 }, { 4022, 493, -1 }, { 4023, 493, -1 }, { 4024, 493, -1 }, { 4025, 493, -1 }, { 4026, 493, -1 }, { 4027, 493, -1 }, { 4028, 493, -1 }, { 4029, 493, -1 }, { 4030, 493, -1 }, { 4031, 493, -1 }, { 4032, 493, -1 }, { 4033, 493, -1 }, { 4034, 493, -1 }, { 4035, 493, -1 }, { 4037, 493, -1 }, { 4038, 493, -1 }, { 3984, 476, -1 }, { 3985, 476, -1 }, { 3986, 476, -1 }, { 3987, 476, -1 }, { 3989, 476, -1 }, { 3990, 476, -1 }, { 3991, 476, -1 }, { 3992, 476, -1 }, { 3993, 476, -1 }, { 3995, 476, -1 }, { 3996, 476, -1 }, { 3997, 476, -1 }, { 3998, 476, -1 }, { 4000, 476, -1 }, { 4001, 476, -1 }, { 4002, 476, -1 }, { 4003, 476, -1 }, { 4004, 476, -1 }, { 4006, 476, -1 }, { 4007, 476, -1 }, { 4008, 476, -1 }, { 4009, 476, -1 }, { 4010, 476, -1 }, { 4011, 476, -1 }, { 4012, 476, -1 }, { 4013, 476, -1 }, { 4014, 476, -1 }, { 4015, 476, -1 }, { 4016, 476, -1 }, { 4017, 476, -1 }, { 4018, 476, -1 }, { 4019, 476, -1 }, { 4020, 476, -1 }, { 4021, 476, -1 }, { 4022, 476, -1 }, { 4023, 476, -1 }, { 4024, 476, -1 }, { 4025, 476, -1 }, { 4026, 476, -1 }, { 4027, 476, -1 }, { 4028, 476, -1 }, { 4029, 476, -1 }, { 4030, 476, -1 }, { 4031, 476, -1 }, { 4032, 476, -1 }, { 4033, 476, -1 }, { 4034, 476, -1 }, { 4035, 476, -1 }, { 4036, 476, -1 }, { 4037, 476, -1 }, { 4038, 476, -1 }, { 3984, 275, -1 }, { 3985, 275, -1 }, { 3986, 275, -1 }, { 3987, 275, -1 }, { 3988, 275, -1 }, { 3989, 275, -1 }, { 3990, 275, -1 }, { 3991, 275, -1 }, { 3992, 275, -1 }, { 3993, 275, -1 }, { 3994, 275, -1 }, { 3995, 275, -1 }, { 3996, 275, -1 }, { 3997, 275, -1 }, { 3998, 275, -1 }, { 4000, 275, -1 }, { 4001, 275, -1 }, { 4002, 275, -1 }, { 4003, 275, -1 }, { 4004, 275, -1 }, { 4005, 275, -1 }, { 4006, 275, -1 }, { 4007, 275, -1 }, { 4008, 275, -1 }, { 4009, 275, -1 }, { 4010, 275, -1 }, { 4011, 275, -1 }, { 4012, 275, -1 }, { 4013, 275, -1 }, { 4014, 275, -1 }, { 4015, 275, -1 }, { 4016, 275, -1 }, { 4017, 275, -1 }, { 4018, 275, -1 }, { 4019, 275, -1 }, { 4020, 275, -1 }, { 4021, 275, -1 }, { 4022, 275, -1 }, { 4023, 275, -1 }, { 4024, 275, -1 }, { 4025, 275, -1 }, { 4026, 275, -1 }, { 4027, 275, -1 }, { 4028, 275, -1 }, { 4029, 275, -1 }, { 4030, 275, -1 }, { 4031, 275, -1 }, { 4032, 275, -1 }, { 4033, 275, -1 }, { 4034, 275, -1 }, { 4035, 275, -1 }, { 4036, 275, -1 }, { 4037, 275, -1 }, { 4038, 275, -1 }, { 3983, 18, -1 }, { 3984, 18, -1 }, { 3985, 18, -1 }, { 3986, 18, -1 }, { 3987, 18, -1 }, { 3988, 18, -1 }, { 3989, 18, -1 }, { 3990, 18, -1 }, { 3991, 18, -1 }, { 3992, 18, -1 }, { 3993, 18, -1 }, { 3994, 18, -1 }, { 3995, 18, -1 }, { 3996, 18, -1 }, { 3997, 18, -1 }, { 3998, 18, -1 }, { 3999, 18, -1 }, { 4000, 18, -1 }, { 4001, 18, -1 }, { 4002, 18, -1 }, { 4003, 18, -1 }, { 4004, 18, -1 }, { 4005, 18, -1 }, { 4006, 18, -1 }, { 4007, 18, -1 }, { 4008, 18, -1 }, { 4009, 18, -1 }, { 4010, 18, -1 }, { 4011, 18, -1 }, { 4012, 18, -1 }, { 4013, 18, -1 }, { 4014, 18, -1 }, { 4015, 18, -1 }, { 4016, 18, -1 }, { 4017, 18, -1 }, { 4018, 18, -1 }, { 4019, 18, -1 }, { 4020, 18, -1 }, { 4021, 18, -1 }, { 4022, 18, -1 }, { 4023, 18, -1 }, { 4024, 18, -1 }, { 4025, 18, -1 }, { 4026, 18, -1 }, { 4027, 18, -1 }, { 4028, 18, -1 }, { 4029, 18, -1 }, { 4030, 18, -1 }, { 4031, 18, -1 }, { 4032, 18, -1 }, { 4033, 18, -1 }, { 4034, 18, -1 }, { 4035, 18, -1 }, { 4036, 18, -1 }, { 4037, 18, -1 }, { 4038, 18, -1 }, { 3984, 19, -1 }, { 3985, 19, -1 }, { 3986, 19, -1 }, { 3987, 19, -1 }, { 3988, 19, -1 }, { 3989, 19, -1 }, { 3990, 19, -1 }, { 3991, 19, -1 }, { 3992, 19, -1 }, { 3993, 19, -1 }, { 3995, 19, -1 }, { 3996, 19, -1 }, { 3997, 19, -1 }, { 3998, 19, -1 }, { 4000, 19, -1 }, { 4001, 19, -1 }, { 4002, 19, -1 }, { 4003, 19, -1 }, { 4004, 19, -1 }, { 4006, 19, -1 }, { 4007, 19, -1 }, { 4008, 19, -1 }, { 4009, 19, -1 }, { 4010, 19, -1 }, { 4011, 19, -1 }, { 4012, 19, -1 }, { 4013, 19, -1 }, { 4014, 19, -1 }, { 4015, 19, -1 }, { 4016, 19, -1 }, { 4017, 19, -1 }, { 4018, 19, -1 }, { 4019, 19, -1 }, { 4020, 19, -1 }, { 4021, 19, -1 }, { 4022, 19, -1 }, { 4023, 19, -1 }, { 4024, 19, -1 }, { 4025, 19, -1 }, { 4026, 19, -1 }, { 4027, 19, -1 }, { 4028, 19, -1 }, { 4029, 19, -1 }, { 4030, 19, -1 }, { 4031, 19, -1 }, { 4032, 19, -1 }, { 4033, 19, -1 }, { 4034, 19, -1 }, { 4035, 19, -1 }, { 4036, 19, -1 }, { 4037, 19, -1 }, { 4038, 19, -1 }, { 3984, 453, -1 }, { 3985, 453, -1 }, { 3986, 453, -1 }, { 3987, 453, -1 }, { 3989, 453, -1 }, { 3990, 453, -1 }, { 3991, 453, -1 }, { 3992, 453, -1 }, { 3993, 453, -1 }, { 3995, 453, -1 }, { 3996, 453, -1 }, { 3997, 453, -1 }, { 3998, 453, -1 }, { 4000, 453, -1 }, { 4001, 453, -1 }, { 4002, 453, -1 }, { 4003, 453, -1 }, { 4004, 453, -1 }, { 4005, 453, -1 }, { 4006, 453, -1 }, { 4007, 453, -1 }, { 4008, 453, -1 }, { 4009, 453, -1 }, { 4010, 453, -1 }, { 4011, 453, -1 }, { 4012, 453, -1 }, { 4013, 453, -1 }, { 4014, 453, -1 }, { 4015, 453, -1 }, { 4016, 453, -1 }, { 4017, 453, -1 }, { 4018, 453, -1 }, { 4019, 453, -1 }, { 4020, 453, -1 }, { 4021, 453, -1 }, { 4022, 453, -1 }, { 4023, 453, -1 }, { 4024, 453, -1 }, { 4025, 453, -1 }, { 4026, 453, -1 }, { 4027, 453, -1 }, { 4030, 453, -1 }, { 4031, 453, -1 }, { 4032, 453, -1 }, { 4033, 453, -1 }, { 4034, 453, -1 }, { 4035, 453, -1 }, { 4036, 453, -1 }, { 4037, 453, -1 }, { 4038, 453, -1 }, { 3983, 68, -1 }, { 3984, 68, -1 }, { 3985, 68, -1 }, { 3986, 68, -1 }, { 3987, 68, -1 }, { 3988, 68, -1 }, { 3989, 68, -1 }, { 3990, 68, -1 }, { 3991, 68, -1 }, { 3992, 68, -1 }, { 3993, 68, -1 }, { 3994, 68, -1 }, { 3995, 68, -1 }, { 3996, 68, -1 }, { 3997, 68, -1 }, { 3998, 68, -1 }, { 3999, 68, -1 }, { 4000, 68, -1 }, { 4001, 68, -1 }, { 4002, 68, -1 }, { 4003, 68, -1 }, { 4004, 68, -1 }, { 4005, 68, -1 }, { 4006, 68, -1 }, { 4007, 68, -1 }, { 4008, 68, -1 }, { 4009, 68, -1 }, { 4010, 68, -1 }, { 4011, 68, -1 }, { 4012, 68, -1 }, { 4013, 68, -1 }, { 4014, 68, -1 }, { 4015, 68, -1 }, { 4016, 68, -1 }, { 4017, 68, -1 }, { 4018, 68, -1 }, { 4019, 68, -1 }, { 4020, 68, -1 }, { 4021, 68, -1 }, { 4022, 68, -1 }, { 4023, 68, -1 }, { 4024, 68, -1 }, { 4025, 68, -1 }, { 4026, 68, -1 }, { 4027, 68, -1 }, { 4028, 68, -1 }, { 4029, 68, -1 }, { 4030, 68, -1 }, { 4031, 68, -1 }, { 4032, 68, -1 }, { 4033, 68, -1 }, { 4034, 68, -1 }, { 4035, 68, -1 }, { 4036, 68, -1 }, { 4037, 68, -1 }, { 4038, 68, -1 }, { 3983, 20, -1 }, { 3984, 20, -1 }, { 3985, 20, -1 }, { 3986, 20, -1 }, { 3987, 20, -1 }, { 3988, 20, -1 }, { 3989, 20, -1 }, { 3990, 20, -1 }, { 3991, 20, -1 }, { 3992, 20, -1 }, { 3993, 20, -1 }, { 3994, 20, -1 }, { 3995, 20, -1 }, { 3996, 20, -1 }, { 3997, 20, -1 }, { 3998, 20, -1 }, { 3999, 20, -1 }, { 4000, 20, -1 }, { 4001, 20, -1 }, { 4002, 20, -1 }, { 4003, 20, -1 }, { 4004, 20, -1 }, { 4005, 20, -1 }, { 4006, 20, -1 }, { 4007, 20, -1 }, { 4008, 20, -1 }, { 4009, 20, -1 }, { 4010, 20, -1 }, { 4011, 20, -1 }, { 4012, 20, -1 }, { 4013, 20, -1 }, { 4014, 20, -1 }, { 4015, 20, -1 }, { 4016, 20, -1 }, { 4017, 20, -1 }, { 4018, 20, -1 }, { 4019, 20, -1 }, { 4020, 20, -1 }, { 4021, 20, -1 }, { 4022, 20, -1 }, { 4023, 20, -1 }, { 4024, 20, -1 }, { 4025, 20, -1 }, { 4026, 20, -1 }, { 4027, 20, -1 }, { 4028, 20, -1 }, { 4029, 20, -1 }, { 4030, 20, -1 }, { 4031, 20, -1 }, { 4032, 20, -1 }, { 4033, 20, -1 }, { 4034, 20, -1 }, { 4035, 20, -1 }, { 4036, 20, -1 }, { 4037, 20, -1 }, { 4038, 20, -1 }, { 3984, 21, -1 }, { 3985, 21, -1 }, { 3986, 21, -1 }, { 3987, 21, -1 }, { 3989, 21, -1 }, { 3990, 21, -1 }, { 3991, 21, -1 }, { 3992, 21, -1 }, { 3993, 21, -1 }, { 3995, 21, -1 }, { 3996, 21, -1 }, { 3997, 21, -1 }, { 3998, 21, -1 }, { 4000, 21, -1 }, { 4001, 21, -1 }, { 4002, 21, -1 }, { 4003, 21, -1 }, { 4004, 21, -1 }, { 4006, 21, -1 }, { 4007, 21, -1 }, { 4008, 21, -1 }, { 4009, 21, -1 }, { 4010, 21, -1 }, { 4011, 21, -1 }, { 4012, 21, -1 }, { 4013, 21, -1 }, { 4014, 21, -1 }, { 4015, 21, -1 }, { 4016, 21, -1 }, { 4017, 21, -1 }, { 4018, 21, -1 }, { 4019, 21, -1 }, { 4020, 21, -1 }, { 4021, 21, -1 }, { 4022, 21, -1 }, { 4023, 21, -1 }, { 4024, 21, -1 }, { 4025, 21, -1 }, { 4026, 21, -1 }, { 4027, 21, -1 }, { 4028, 21, -1 }, { 4029, 21, -1 }, { 4030, 21, -1 }, { 4031, 21, -1 }, { 4032, 21, -1 }, { 4033, 21, -1 }, { 4034, 21, -1 }, { 4035, 21, -1 }, { 4036, 21, -1 }, { 4037, 21, -1 }, { 4038, 21, -1 }, { 3983, 22, -1 }, { 3984, 22, -1 }, { 3985, 22, -1 }, { 3986, 22, -1 }, { 3987, 22, -1 }, { 3988, 22, -1 }, { 3989, 22, -1 }, { 3990, 22, -1 }, { 3991, 22, -1 }, { 3992, 22, -1 }, { 3993, 22, -1 }, { 3994, 22, -1 }, { 3995, 22, -1 }, { 3996, 22, -1 }, { 3997, 22, -1 }, { 3998, 22, -1 }, { 3999, 22, -1 }, { 4000, 22, -1 }, { 4001, 22, -1 }, { 4002, 22, -1 }, { 4003, 22, -1 }, { 4004, 22, -1 }, { 4005, 22, -1 }, { 4006, 22, -1 }, { 4007, 22, -1 }, { 4008, 22, -1 }, { 4009, 22, -1 }, { 4010, 22, -1 }, { 4011, 22, -1 }, { 4012, 22, -1 }, { 4013, 22, -1 }, { 4014, 22, -1 }, { 4015, 22, -1 }, { 4016, 22, -1 }, { 4017, 22, -1 }, { 4018, 22, -1 }, { 4019, 22, -1 }, { 4020, 22, -1 }, { 4021, 22, -1 }, { 4022, 22, -1 }, { 4023, 22, -1 }, { 4024, 22, -1 }, { 4025, 22, -1 }, { 4026, 22, -1 }, { 4027, 22, -1 }, { 4028, 22, -1 }, { 4029, 22, -1 }, { 4030, 22, -1 }, { 4031, 22, -1 }, { 4032, 22, -1 }, { 4033, 22, -1 }, { 4034, 22, -1 }, { 4035, 22, -1 }, { 4036, 22, -1 }, { 4037, 22, -1 }, { 4038, 22, -1 }, { 3984, 589, -1 }, { 3985, 589, -1 }, { 3986, 589, -1 }, { 3987, 589, -1 }, { 3989, 589, -1 }, { 3990, 589, -1 }, { 3991, 589, -1 }, { 3992, 589, -1 }, { 3993, 589, -1 }, { 3996, 589, -1 }, { 3997, 589, -1 }, { 3998, 589, -1 }, { 4000, 589, -1 }, { 4001, 589, -1 }, { 4002, 589, -1 }, { 4003, 589, -1 }, { 4004, 589, -1 }, { 4006, 589, -1 }, { 4007, 589, -1 }, { 4008, 589, -1 }, { 4009, 589, -1 }, { 4010, 589, -1 }, { 4011, 589, -1 }, { 4012, 589, -1 }, { 4013, 589, -1 }, { 4014, 589, -1 }, { 4015, 589, -1 }, { 4016, 589, -1 }, { 4017, 589, -1 }, { 4018, 589, -1 }, { 4019, 589, -1 }, { 4020, 589, -1 }, { 4021, 589, -1 }, { 4022, 589, -1 }, { 4023, 589, -1 }, { 4024, 589, -1 }, { 4025, 589, -1 }, { 4026, 589, -1 }, { 4027, 589, -1 }, { 4028, 589, -1 }, { 4030, 589, -1 }, { 4031, 589, -1 }, { 4032, 589, -1 }, { 4033, 589, -1 }, { 4034, 589, -1 }, { 4035, 589, -1 }, { 4036, 589, -1 }, { 4037, 589, -1 }, { 4038, 589, -1 }, { 3984, 620, -1 }, { 3985, 620, -1 }, { 3986, 620, -1 }, { 3987, 620, -1 }, { 3989, 620, -1 }, { 3990, 620, -1 }, { 3991, 620, -1 }, { 3992, 620, -1 }, { 3993, 620, -1 }, { 3996, 620, -1 }, { 3997, 620, -1 }, { 3998, 620, -1 }, { 4000, 620, -1 }, { 4001, 620, -1 }, { 4002, 620, -1 }, { 4003, 620, -1 }, { 4004, 620, -1 }, { 4006, 620, -1 }, { 4007, 620, -1 }, { 4008, 620, -1 }, { 4009, 620, -1 }, { 4010, 620, -1 }, { 4011, 620, -1 }, { 4012, 620, -1 }, { 4013, 620, -1 }, { 4014, 620, -1 }, { 4015, 620, -1 }, { 4016, 620, -1 }, { 4017, 620, -1 }, { 4018, 620, -1 }, { 4019, 620, -1 }, { 4020, 620, -1 }, { 4021, 620, -1 }, { 4022, 620, -1 }, { 4023, 620, -1 }, { 4024, 620, -1 }, { 4025, 620, -1 }, { 4026, 620, -1 }, { 4027, 620, -1 }, { 4029, 620, -1 }, { 4030, 620, -1 }, { 4031, 620, -1 }, { 4032, 620, -1 }, { 4033, 620, -1 }, { 4034, 620, -1 }, { 4035, 620, -1 }, { 4036, 620, -1 }, { 4037, 620, -1 }, { 4038, 620, -1 }, { 3984, 784, -1 }, { 3985, 784, -1 }, { 3986, 784, -1 }, { 3987, 784, -1 }, { 3989, 784, -1 }, { 3990, 784, -1 }, { 3991, 784, -1 }, { 3992, 784, -1 }, { 3993, 784, -1 }, { 3995, 784, -1 }, { 3996, 784, -1 }, { 3997, 784, -1 }, { 3998, 784, -1 }, { 4000, 784, -1 }, { 4001, 784, -1 }, { 4002, 784, -1 }, { 4003, 784, -1 }, { 4004, 784, -1 }, { 4006, 784, -1 }, { 4007, 784, -1 }, { 4008, 784, -1 }, { 4009, 784, -1 }, { 4010, 784, -1 }, { 4011, 784, -1 }, { 4012, 784, -1 }, { 4013, 784, -1 }, { 4014, 784, -1 }, { 4015, 784, -1 }, { 4016, 784, -1 }, { 4017, 784, -1 }, { 4018, 784, -1 }, { 4019, 784, -1 }, { 4020, 784, -1 }, { 4021, 784, -1 }, { 4022, 784, -1 }, { 4023, 784, -1 }, { 4024, 784, -1 }, { 4025, 784, -1 }, { 4026, 784, -1 }, { 4027, 784, -1 }, { 4028, 784, -1 }, { 4029, 784, -1 }, { 4030, 784, -1 }, { 4031, 784, -1 }, { 4032, 784, -1 }, { 4033, 784, -1 }, { 4034, 784, -1 }, { 4035, 784, -1 }, { 4036, 784, -1 }, { 4037, 784, -1 }, { 4038, 784, -1 }, { 3983, 785, -1 }, { 3984, 785, -1 }, { 3985, 785, -1 }, { 3986, 785, -1 }, { 3987, 785, -1 }, { 3988, 785, -1 }, { 3989, 785, -1 }, { 3990, 785, -1 }, { 3991, 785, -1 }, { 3992, 785, -1 }, { 3993, 785, -1 }, { 3996, 785, -1 }, { 3997, 785, -1 }, { 3998, 785, -1 }, { 4000, 785, -1 }, { 4002, 785, -1 }, { 4003, 785, -1 }, { 4004, 785, -1 }, { 4006, 785, -1 }, { 4007, 785, -1 }, { 4008, 785, -1 }, { 4009, 785, -1 }, { 4010, 785, -1 }, { 4011, 785, -1 }, { 4012, 785, -1 }, { 4013, 785, -1 }, { 4014, 785, -1 }, { 4015, 785, -1 }, { 4016, 785, -1 }, { 4017, 785, -1 }, { 4018, 785, -1 }, { 4019, 785, -1 }, { 4020, 785, -1 }, { 4021, 785, -1 }, { 4022, 785, -1 }, { 4023, 785, -1 }, { 4024, 785, -1 }, { 4025, 785, -1 }, { 4026, 785, -1 }, { 4027, 785, -1 }, { 4028, 785, -1 }, { 4029, 785, -1 }, { 4030, 785, -1 }, { 4031, 785, -1 }, { 4032, 785, -1 }, { 4033, 785, -1 }, { 4034, 785, -1 }, { 4035, 785, -1 }, { 4036, 785, -1 }, { 4037, 785, -1 }, { 4038, 785, -1 }, { 3984, 1377, -1 }, { 3985, 1377, -1 }, { 3986, 1377, -1 }, { 3987, 1377, -1 }, { 3989, 1377, -1 }, { 3990, 1377, -1 }, { 3991, 1377, -1 }, { 3992, 1377, -1 }, { 3993, 1377, -1 }, { 3995, 1377, -1 }, { 3996, 1377, -1 }, { 3997, 1377, -1 }, { 3998, 1377, -1 }, { 4000, 1377, -1 }, { 4001, 1377, -1 }, { 4002, 1377, -1 }, { 4003, 1377, -1 }, { 4004, 1377, -1 }, { 4006, 1377, -1 }, { 4007, 1377, -1 }, { 4008, 1377, -1 }, { 4009, 1377, -1 }, { 4010, 1377, -1 }, { 4011, 1377, -1 }, { 4012, 1377, -1 }, { 4013, 1377, -1 }, { 4014, 1377, -1 }, { 4015, 1377, -1 }, { 4016, 1377, -1 }, { 4017, 1377, -1 }, { 4018, 1377, -1 }, { 4019, 1377, -1 }, { 4020, 1377, -1 }, { 4021, 1377, -1 }, { 4022, 1377, -1 }, { 4023, 1377, -1 }, { 4024, 1377, -1 }, { 4025, 1377, -1 }, { 4026, 1377, -1 }, { 4027, 1377, -1 }, { 4028, 1377, -1 }, { 4029, 1377, -1 }, { 4030, 1377, -1 }, { 4031, 1377, -1 }, { 4032, 1377, -1 }, { 4033, 1377, -1 }, { 4034, 1377, -1 }, { 4036, 1377, -1 }, { 4037, 1377, -1 }, { 4038, 1377, -1 }, { 3984, 1501, -1 }, { 3985, 1501, -1 }, { 3986, 1501, -1 }, { 3987, 1501, -1 }, { 3989, 1501, -1 }, { 3990, 1501, -1 }, { 3991, 1501, -1 }, { 3992, 1501, -1 }, { 3993, 1501, -1 }, { 3994, 1501, -1 }, { 3995, 1501, -1 }, { 3996, 1501, -1 }, { 3997, 1501, -1 }, { 3998, 1501, -1 }, { 4000, 1501, -1 }, { 4001, 1501, -1 }, { 4002, 1501, -1 }, { 4003, 1501, -1 }, { 4004, 1501, -1 }, { 4005, 1501, -1 }, { 4007, 1501, -1 }, { 4008, 1501, -1 }, { 4009, 1501, -1 }, { 4010, 1501, -1 }, { 4011, 1501, -1 }, { 4012, 1501, -1 }, { 4013, 1501, -1 }, { 4014, 1501, -1 }, { 4015, 1501, -1 }, { 4016, 1501, -1 }, { 4017, 1501, -1 }, { 4018, 1501, -1 }, { 4019, 1501, -1 }, { 4020, 1501, -1 }, { 4021, 1501, -1 }, { 4022, 1501, -1 }, { 4023, 1501, -1 }, { 4024, 1501, -1 }, { 4025, 1501, -1 }, { 4026, 1501, -1 }, { 4027, 1501, -1 }, { 4028, 1501, -1 }, { 4029, 1501, -1 }, { 4030, 1501, -1 }, { 4031, 1501, -1 }, { 4032, 1501, -1 }, { 4033, 1501, -1 }, { 4034, 1501, -1 }, { 4035, 1501, -1 }, { 4036, 1501, -1 }, { 4037, 1501, -1 }, { 4038, 1501, -1 }, { 3984, 1294, -1 }, { 3985, 1294, -1 }, { 3986, 1294, -1 }, { 3987, 1294, -1 }, { 3989, 1294, -1 }, { 3990, 1294, -1 }, { 3991, 1294, -1 }, { 3992, 1294, -1 }, { 3993, 1294, -1 }, { 3995, 1294, -1 }, { 3996, 1294, -1 }, { 3997, 1294, -1 }, { 3998, 1294, -1 }, { 4000, 1294, -1 }, { 4001, 1294, -1 }, { 4002, 1294, -1 }, { 4003, 1294, -1 }, { 4004, 1294, -1 }, { 4005, 1294, -1 }, { 4006, 1294, -1 }, { 4007, 1294, -1 }, { 4008, 1294, -1 }, { 4009, 1294, -1 }, { 4010, 1294, -1 }, { 4011, 1294, -1 }, { 4012, 1294, -1 }, { 4013, 1294, -1 }, { 4014, 1294, -1 }, { 4015, 1294, -1 }, { 4016, 1294, -1 }, { 4017, 1294, -1 }, { 4018, 1294, -1 }, { 4019, 1294, -1 }, { 4020, 1294, -1 }, { 4021, 1294, -1 }, { 4022, 1294, -1 }, { 4023, 1294, -1 }, { 4024, 1294, -1 }, { 4025, 1294, -1 }, { 4026, 1294, -1 }, { 4027, 1294, -1 }, { 4029, 1294, -1 }, { 4030, 1294, -1 }, { 4031, 1294, -1 }, { 4032, 1294, -1 }, { 4033, 1294, -1 }, { 4034, 1294, -1 }, { 4035, 1294, -1 }, { 4036, 1294, -1 }, { 4037, 1294, -1 }, { 4038, 1294, -1 }, { 3984, 1314, -1 }, { 3985, 1314, -1 }, { 3986, 1314, -1 }, { 3987, 1314, -1 }, { 3989, 1314, -1 }, { 3990, 1314, -1 }, { 3991, 1314, -1 }, { 3992, 1314, -1 }, { 3993, 1314, -1 }, { 3995, 1314, -1 }, { 3996, 1314, -1 }, { 3997, 1314, -1 }, { 3998, 1314, -1 }, { 4000, 1314, -1 }, { 4001, 1314, -1 }, { 4002, 1314, -1 }, { 4003, 1314, -1 }, { 4004, 1314, -1 }, { 4005, 1314, -1 }, { 4006, 1314, -1 }, { 4007, 1314, -1 }, { 4008, 1314, -1 }, { 4009, 1314, -1 }, { 4010, 1314, -1 }, { 4011, 1314, -1 }, { 4012, 1314, -1 }, { 4013, 1314, -1 }, { 4014, 1314, -1 }, { 4015, 1314, -1 }, { 4016, 1314, -1 }, { 4017, 1314, -1 }, { 4018, 1314, -1 }, { 4019, 1314, -1 }, { 4020, 1314, -1 }, { 4021, 1314, -1 }, { 4022, 1314, -1 }, { 4023, 1314, -1 }, { 4024, 1314, -1 }, { 4025, 1314, -1 }, { 4026, 1314, -1 }, { 4027, 1314, -1 }, { 4029, 1314, -1 }, { 4030, 1314, -1 }, { 4031, 1314, -1 }, { 4032, 1314, -1 }, { 4033, 1314, -1 }, { 4034, 1314, -1 }, { 4035, 1314, -1 }, { 4036, 1314, -1 }, { 4037, 1314, -1 }, { 4038, 1314, -1 }, { 3984, 1316, -1 }, { 3985, 1316, -1 }, { 3986, 1316, -1 }, { 3987, 1316, -1 }, { 3989, 1316, -1 }, { 3990, 1316, -1 }, { 3991, 1316, -1 }, { 3992, 1316, -1 }, { 3993, 1316, -1 }, { 3995, 1316, -1 }, { 3996, 1316, -1 }, { 3997, 1316, -1 }, { 3998, 1316, -1 }, { 4000, 1316, -1 }, { 4001, 1316, -1 }, { 4002, 1316, -1 }, { 4003, 1316, -1 }, { 4004, 1316, -1 }, { 4006, 1316, -1 }, { 4007, 1316, -1 }, { 4008, 1316, -1 }, { 4009, 1316, -1 }, { 4010, 1316, -1 }, { 4011, 1316, -1 }, { 4012, 1316, -1 }, { 4013, 1316, -1 }, { 4014, 1316, -1 }, { 4015, 1316, -1 }, { 4016, 1316, -1 }, { 4017, 1316, -1 }, { 4018, 1316, -1 }, { 4019, 1316, -1 }, { 4020, 1316, -1 }, { 4021, 1316, -1 }, { 4022, 1316, -1 }, { 4023, 1316, -1 }, { 4024, 1316, -1 }, { 4025, 1316, -1 }, { 4026, 1316, -1 }, { 4027, 1316, -1 }, { 4028, 1316, -1 }, { 4029, 1316, -1 }, { 4030, 1316, -1 }, { 4031, 1316, -1 }, { 4032, 1316, -1 }, { 4033, 1316, -1 }, { 4034, 1316, -1 }, { 4035, 1316, -1 }, { 4036, 1316, -1 }, { 4037, 1316, -1 }, { 4038, 1316, -1 }, { 3984, 1348, -1 }, { 3985, 1348, -1 }, { 3986, 1348, -1 }, { 3987, 1348, -1 }, { 3989, 1348, -1 }, { 3990, 1348, -1 }, { 3991, 1348, -1 }, { 3992, 1348, -1 }, { 3993, 1348, -1 }, { 3995, 1348, -1 }, { 3996, 1348, -1 }, { 3997, 1348, -1 }, { 3998, 1348, -1 }, { 4000, 1348, -1 }, { 4001, 1348, -1 }, { 4002, 1348, -1 }, { 4003, 1348, -1 }, { 4004, 1348, -1 }, { 4006, 1348, -1 }, { 4007, 1348, -1 }, { 4008, 1348, -1 }, { 4009, 1348, -1 }, { 4010, 1348, -1 }, { 4011, 1348, -1 }, { 4012, 1348, -1 }, { 4013, 1348, -1 }, { 4014, 1348, -1 }, { 4015, 1348, -1 }, { 4016, 1348, -1 }, { 4017, 1348, -1 }, { 4018, 1348, -1 }, { 4019, 1348, -1 }, { 4020, 1348, -1 }, { 4021, 1348, -1 }, { 4022, 1348, -1 }, { 4023, 1348, -1 }, { 4024, 1348, -1 }, { 4025, 1348, -1 }, { 4026, 1348, -1 }, { 4027, 1348, -1 }, { 4028, 1348, -1 }, { 4029, 1348, -1 }, { 4030, 1348, -1 }, { 4031, 1348, -1 }, { 4032, 1348, -1 }, { 4033, 1348, -1 }, { 4034, 1348, -1 }, { 4035, 1348, -1 }, { 4036, 1348, -1 }, { 4037, 1348, -1 }, { 4038, 1348, -1 }, { 3984, 1356, -1 }, { 3985, 1356, -1 }, { 3986, 1356, -1 }, { 3987, 1356, -1 }, { 3989, 1356, -1 }, { 3990, 1356, -1 }, { 3991, 1356, -1 }, { 3992, 1356, -1 }, { 3993, 1356, -1 }, { 3995, 1356, -1 }, { 3996, 1356, -1 }, { 3997, 1356, -1 }, { 3998, 1356, -1 }, { 4000, 1356, -1 }, { 4001, 1356, -1 }, { 4002, 1356, -1 }, { 4003, 1356, -1 }, { 4004, 1356, -1 }, { 4005, 1356, -1 }, { 4006, 1356, -1 }, { 4007, 1356, -1 }, { 4008, 1356, -1 }, { 4009, 1356, -1 }, { 4010, 1356, -1 }, { 4011, 1356, -1 }, { 4012, 1356, -1 }, { 4013, 1356, -1 }, { 4014, 1356, -1 }, { 4015, 1356, -1 }, { 4016, 1356, -1 }, { 4017, 1356, -1 }, { 4018, 1356, -1 }, { 4019, 1356, -1 }, { 4020, 1356, -1 }, { 4021, 1356, -1 }, { 4022, 1356, -1 }, { 4023, 1356, -1 }, { 4024, 1356, -1 }, { 4025, 1356, -1 }, { 4026, 1356, -1 }, { 4027, 1356, -1 }, { 4028, 1356, -1 }, { 4029, 1356, -1 }, { 4030, 1356, -1 }, { 4031, 1356, -1 }, { 4032, 1356, -1 }, { 4033, 1356, -1 }, { 4034, 1356, -1 }, { 4035, 1356, -1 }, { 4036, 1356, -1 }, { 4037, 1356, -1 }, { 4038, 1356, -1 }, { 3984, 1317, -1 }, { 3985, 1317, -1 }, { 3986, 1317, -1 }, { 3987, 1317, -1 }, { 3988, 1317, -1 }, { 3989, 1317, -1 }, { 3990, 1317, -1 }, { 3991, 1317, -1 }, { 3992, 1317, -1 }, { 3993, 1317, -1 }, { 3994, 1317, -1 }, { 3995, 1317, -1 }, { 3996, 1317, -1 }, { 3997, 1317, -1 }, { 3998, 1317, -1 }, { 4000, 1317, -1 }, { 4001, 1317, -1 }, { 4002, 1317, -1 }, { 4003, 1317, -1 }, { 4004, 1317, -1 }, { 4005, 1317, -1 }, { 4006, 1317, -1 }, { 4007, 1317, -1 }, { 4008, 1317, -1 }, { 4009, 1317, -1 }, { 4010, 1317, -1 }, { 4011, 1317, -1 }, { 4012, 1317, -1 }, { 4013, 1317, -1 }, { 4014, 1317, -1 }, { 4015, 1317, -1 }, { 4016, 1317, -1 }, { 4017, 1317, -1 }, { 4018, 1317, -1 }, { 4019, 1317, -1 }, { 4020, 1317, -1 }, { 4021, 1317, -1 }, { 4022, 1317, -1 }, { 4023, 1317, -1 }, { 4024, 1317, -1 }, { 4025, 1317, -1 }, { 4026, 1317, -1 }, { 4027, 1317, -1 }, { 4028, 1317, -1 }, { 4029, 1317, -1 }, { 4030, 1317, -1 }, { 4031, 1317, -1 }, { 4032, 1317, -1 }, { 4033, 1317, -1 }, { 4034, 1317, -1 }, { 4035, 1317, -1 }, { 4037, 1317, -1 }, { 4038, 1317, -1 }, { 3984, 1315, -1 }, { 3986, 1315, -1 }, { 3987, 1315, -1 }, { 3989, 1315, -1 }, { 3990, 1315, -1 }, { 3991, 1315, -1 }, { 3992, 1315, -1 }, { 3993, 1315, -1 }, { 3994, 1315, -1 }, { 3995, 1315, -1 }, { 3996, 1315, -1 }, { 3997, 1315, -1 }, { 3998, 1315, -1 }, { 4000, 1315, -1 }, { 4001, 1315, -1 }, { 4002, 1315, -1 }, { 4003, 1315, -1 }, { 4004, 1315, -1 }, { 4005, 1315, -1 }, { 4006, 1315, -1 }, { 4007, 1315, -1 }, { 4008, 1315, -1 }, { 4009, 1315, -1 }, { 4010, 1315, -1 }, { 4011, 1315, -1 }, { 4012, 1315, -1 }, { 4013, 1315, -1 }, { 4014, 1315, -1 }, { 4015, 1315, -1 }, { 4016, 1315, -1 }, { 4017, 1315, -1 }, { 4018, 1315, -1 }, { 4019, 1315, -1 }, { 4020, 1315, -1 }, { 4021, 1315, -1 }, { 4022, 1315, -1 }, { 4023, 1315, -1 }, { 4024, 1315, -1 }, { 4025, 1315, -1 }, { 4026, 1315, -1 }, { 4027, 1315, -1 }, { 4029, 1315, -1 }, { 4030, 1315, -1 }, { 4031, 1315, -1 }, { 4032, 1315, -1 }, { 4033, 1315, -1 }, { 4034, 1315, -1 }, { 4035, 1315, -1 }, { 4037, 1315, -1 }, { 4038, 1315, -1 }, { 3984, 1351, -1 }, { 3985, 1351, -1 }, { 3986, 1351, -1 }, { 3987, 1351, -1 }, { 3989, 1351, -1 }, { 3990, 1351, -1 }, { 3991, 1351, -1 }, { 3992, 1351, -1 }, { 3993, 1351, -1 }, { 3995, 1351, -1 }, { 3996, 1351, -1 }, { 3997, 1351, -1 }, { 3998, 1351, -1 }, { 3999, 1351, -1 }, { 4000, 1351, -1 }, { 4001, 1351, -1 }, { 4002, 1351, -1 }, { 4003, 1351, -1 }, { 4004, 1351, -1 }, { 4005, 1351, -1 }, { 4006, 1351, -1 }, { 4007, 1351, -1 }, { 4008, 1351, -1 }, { 4009, 1351, -1 }, { 4010, 1351, -1 }, { 4011, 1351, -1 }, { 4012, 1351, -1 }, { 4013, 1351, -1 }, { 4014, 1351, -1 }, { 4015, 1351, -1 }, { 4016, 1351, -1 }, { 4017, 1351, -1 }, { 4018, 1351, -1 }, { 4019, 1351, -1 }, { 4020, 1351, -1 }, { 4021, 1351, -1 }, { 4022, 1351, -1 }, { 4023, 1351, -1 }, { 4024, 1351, -1 }, { 4025, 1351, -1 }, { 4026, 1351, -1 }, { 4027, 1351, -1 }, { 4028, 1351, -1 }, { 4029, 1351, -1 }, { 4030, 1351, -1 }, { 4031, 1351, -1 }, { 4032, 1351, -1 }, { 4033, 1351, -1 }, { 4034, 1351, -1 }, { 4035, 1351, -1 }, { 4036, 1351, -1 }, { 4037, 1351, -1 }, { 4038, 1351, -1 }, { 3984, 1751, -1 }, { 3985, 1751, -1 }, { 3986, 1751, -1 }, { 3987, 1751, -1 }, { 3988, 1751, -1 }, { 3989, 1751, -1 }, { 3990, 1751, -1 }, { 3991, 1751, -1 }, { 3992, 1751, -1 }, { 3993, 1751, -1 }, { 3995, 1751, -1 }, { 3996, 1751, -1 }, { 3997, 1751, -1 }, { 3998, 1751, -1 }, { 4000, 1751, -1 }, { 4001, 1751, -1 }, { 4002, 1751, -1 }, { 4003, 1751, -1 }, { 4004, 1751, -1 }, { 4006, 1751, -1 }, { 4007, 1751, -1 }, { 4008, 1751, -1 }, { 4009, 1751, -1 }, { 4010, 1751, -1 }, { 4011, 1751, -1 }, { 4012, 1751, -1 }, { 4013, 1751, -1 }, { 4014, 1751, -1 }, { 4015, 1751, -1 }, { 4016, 1751, -1 }, { 4017, 1751, -1 }, { 4018, 1751, -1 }, { 4019, 1751, -1 }, { 4020, 1751, -1 }, { 4021, 1751, -1 }, { 4022, 1751, -1 }, { 4023, 1751, -1 }, { 4024, 1751, -1 }, { 4025, 1751, -1 }, { 4026, 1751, -1 }, { 4027, 1751, -1 }, { 4028, 1751, -1 }, { 4029, 1751, -1 }, { 4030, 1751, -1 }, { 4031, 1751, -1 }, { 4032, 1751, -1 }, { 4033, 1751, -1 }, { 4034, 1751, -1 }, { 4035, 1751, -1 }, { 4036, 1751, -1 }, { 4037, 1751, -1 }, { 4038, 1751, -1 }, { 3983, 1756, -1 }, { 3984, 1756, -1 }, { 3985, 1756, -1 }, { 3986, 1756, -1 }, { 3987, 1756, -1 }, { 3989, 1756, -1 }, { 3990, 1756, -1 }, { 3991, 1756, -1 }, { 3992, 1756, -1 }, { 3993, 1756, -1 }, { 3995, 1756, -1 }, { 3996, 1756, -1 }, { 3997, 1756, -1 }, { 3998, 1756, -1 }, { 3999, 1756, -1 }, { 4000, 1756, -1 }, { 4001, 1756, -1 }, { 4002, 1756, -1 }, { 4003, 1756, -1 }, { 4004, 1756, -1 }, { 4005, 1756, -1 }, { 4006, 1756, -1 }, { 4007, 1756, -1 }, { 4008, 1756, -1 }, { 4009, 1756, -1 }, { 4010, 1756, -1 }, { 4011, 1756, -1 }, { 4012, 1756, -1 }, { 4013, 1756, -1 }, { 4014, 1756, -1 }, { 4015, 1756, -1 }, { 4016, 1756, -1 }, { 4017, 1756, -1 }, { 4018, 1756, -1 }, { 4019, 1756, -1 }, { 4020, 1756, -1 }, { 4021, 1756, -1 }, { 4022, 1756, -1 }, { 4023, 1756, -1 }, { 4024, 1756, -1 }, { 4025, 1756, -1 }, { 4026, 1756, -1 }, { 4027, 1756, -1 }, { 4028, 1756, -1 }, { 4029, 1756, -1 }, { 4030, 1756, -1 }, { 4031, 1756, -1 }, { 4032, 1756, -1 }, { 4033, 1756, -1 }, { 4034, 1756, -1 }, { 4035, 1756, -1 }, { 4036, 1756, -1 }, { 4037, 1756, -1 }, { 4038, 1756, -1 }, { 3983, 837, -1 }, { 3985, 837, -1 }, { 3986, 837, -1 }, { 3987, 837, -1 }, { 3988, 837, -1 }, { 3989, 837, -1 }, { 3990, 837, -1 }, { 3991, 837, -1 }, { 3992, 837, -1 }, { 3993, 837, -1 }, { 3994, 837, -1 }, { 3995, 837, -1 }, { 3996, 837, -1 }, { 3997, 837, -1 }, { 3998, 837, -1 }, { 3999, 837, -1 }, { 4000, 837, -1 }, { 4001, 837, -1 }, { 4002, 837, -1 }, { 4003, 837, -1 }, { 4004, 837, -1 }, { 4005, 837, -1 }, { 4006, 837, -1 }, { 4007, 837, -1 }, { 4008, 837, -1 }, { 4009, 837, -1 }, { 4010, 837, -1 }, { 4011, 837, -1 }, { 4012, 837, -1 }, { 4013, 837, -1 }, { 4014, 837, -1 }, { 4015, 837, -1 }, { 4016, 837, -1 }, { 4017, 837, -1 }, { 4018, 837, -1 }, { 4019, 837, -1 }, { 4020, 837, -1 }, { 4021, 837, -1 }, { 4022, 837, -1 }, { 4023, 837, -1 }, { 4024, 837, -1 }, { 4025, 837, -1 }, { 4026, 837, -1 }, { 4027, 837, -1 }, { 4028, 837, -1 }, { 4029, 837, -1 }, { 4030, 837, -1 }, { 4031, 837, -1 }, { 4032, 837, -1 }, { 4033, 837, -1 }, { 4034, 837, -1 }, { 4035, 837, -1 }, { 4036, 837, -1 }, { 4037, 837, -1 }, { 4038, 837, -1 }, { 3983, 838, -1 }, { 3985, 838, -1 }, { 3986, 838, -1 }, { 3987, 838, -1 }, { 3988, 838, -1 }, { 3989, 838, -1 }, { 3990, 838, -1 }, { 3991, 838, -1 }, { 3992, 838, -1 }, { 3993, 838, -1 }, { 3994, 838, -1 }, { 3995, 838, -1 }, { 3996, 838, -1 }, { 3997, 838, -1 }, { 3998, 838, -1 }, { 3999, 838, -1 }, { 4000, 838, -1 }, { 4001, 838, -1 }, { 4002, 838, -1 }, { 4003, 838, -1 }, { 4004, 838, -1 }, { 4005, 838, -1 }, { 4006, 838, -1 }, { 4007, 838, -1 }, { 4008, 838, -1 }, { 4009, 838, -1 }, { 4010, 838, -1 }, { 4011, 838, -1 }, { 4012, 838, -1 }, { 4013, 838, -1 }, { 4014, 838, -1 }, { 4015, 838, -1 }, { 4016, 838, -1 }, { 4017, 838, -1 }, { 4018, 838, -1 }, { 4019, 838, -1 }, { 4020, 838, -1 }, { 4021, 838, -1 }, { 4022, 838, -1 }, { 4023, 838, -1 }, { 4024, 838, -1 }, { 4025, 838, -1 }, { 4026, 838, -1 }, { 4027, 838, -1 }, { 4028, 838, -1 }, { 4029, 838, -1 }, { 4030, 838, -1 }, { 4031, 838, -1 }, { 4032, 838, -1 }, { 4033, 838, -1 }, { 4034, 838, -1 }, { 4035, 838, -1 }, { 4036, 838, -1 }, { 4037, 838, -1 }, { 4038, 838, -1 }, { 3983, 836, -1 }, { 3985, 836, -1 }, { 3989, 836, -1 }, { 3990, 836, -1 }, { 3991, 836, -1 }, { 3992, 836, -1 }, { 3993, 836, -1 }, { 3996, 836, -1 }, { 3997, 836, -1 }, { 3998, 836, -1 }, { 4000, 836, -1 }, { 4001, 836, -1 }, { 4002, 836, -1 }, { 4003, 836, -1 }, { 4004, 836, -1 }, { 4005, 836, -1 }, { 4006, 836, -1 }, { 4007, 836, -1 }, { 4008, 836, -1 }, { 4009, 836, -1 }, { 4010, 836, -1 }, { 4011, 836, -1 }, { 4012, 836, -1 }, { 4013, 836, -1 }, { 4014, 836, -1 }, { 4015, 836, -1 }, { 4016, 836, -1 }, { 4017, 836, -1 }, { 4018, 836, -1 }, { 4019, 836, -1 }, { 4020, 836, -1 }, { 4021, 836, -1 }, { 4022, 836, -1 }, { 4023, 836, -1 }, { 4024, 836, -1 }, { 4025, 836, -1 }, { 4026, 836, -1 }, { 4027, 836, -1 }, { 4028, 836, -1 }, { 4029, 836, -1 }, { 4030, 836, -1 }, { 4031, 836, -1 }, { 4032, 836, -1 }, { 4033, 836, -1 }, { 4034, 836, -1 }, { 4035, 836, -1 }, { 4036, 836, -1 }, { 4037, 836, -1 }, { 4038, 836, -1 }, { 3983, 783, -1 }, { 3984, 783, -1 }, { 3985, 783, -1 }, { 3986, 783, -1 }, { 3987, 783, -1 }, { 3988, 783, -1 }, { 3989, 783, -1 }, { 3990, 783, -1 }, { 3991, 783, -1 }, { 3992, 783, -1 }, { 3993, 783, -1 }, { 3996, 783, -1 }, { 3997, 783, -1 }, { 3998, 783, -1 }, { 4000, 783, -1 }, { 4002, 783, -1 }, { 4003, 783, -1 }, { 4004, 783, -1 }, { 4006, 783, -1 }, { 4007, 783, -1 }, { 4008, 783, -1 }, { 4009, 783, -1 }, { 4010, 783, -1 }, { 4011, 783, -1 }, { 4012, 783, -1 }, { 4013, 783, -1 }, { 4014, 783, -1 }, { 4015, 783, -1 }, { 4016, 783, -1 }, { 4017, 783, -1 }, { 4018, 783, -1 }, { 4019, 783, -1 }, { 4020, 783, -1 }, { 4021, 783, -1 }, { 4022, 783, -1 }, { 4023, 783, -1 }, { 4024, 783, -1 }, { 4025, 783, -1 }, { 4026, 783, -1 }, { 4027, 783, -1 }, { 4028, 783, -1 }, { 4029, 783, -1 }, { 4030, 783, -1 }, { 4031, 783, -1 }, { 4032, 783, -1 }, { 4033, 783, -1 }, { 4034, 783, -1 }, { 4035, 783, -1 }, { 4036, 783, -1 }, { 4037, 783, -1 }, { 4038, 783, -1 }, { 3985, 778, -1 }, { 3986, 778, -1 }, { 3987, 778, -1 }, { 3989, 778, -1 }, { 3990, 778, -1 }, { 3991, 778, -1 }, { 3992, 778, -1 }, { 3993, 778, -1 }, { 3996, 778, -1 }, { 3997, 778, -1 }, { 3998, 778, -1 }, { 4000, 778, -1 }, { 4002, 778, -1 }, { 4003, 778, -1 }, { 4004, 778, -1 }, { 4006, 778, -1 }, { 4007, 778, -1 }, { 4008, 778, -1 }, { 4009, 778, -1 }, { 4010, 778, -1 }, { 4011, 778, -1 }, { 4012, 778, -1 }, { 4013, 778, -1 }, { 4014, 778, -1 }, { 4015, 778, -1 }, { 4016, 778, -1 }, { 4018, 778, -1 }, { 4019, 778, -1 }, { 4020, 778, -1 }, { 4021, 778, -1 }, { 4022, 778, -1 }, { 4023, 778, -1 }, { 4024, 778, -1 }, { 4025, 778, -1 }, { 4026, 778, -1 }, { 4027, 778, -1 }, { 4028, 778, -1 }, { 4029, 778, -1 }, { 4030, 778, -1 }, { 4031, 778, -1 }, { 4032, 778, -1 }, { 4033, 778, -1 }, { 4034, 778, -1 }, { 4035, 778, -1 }, { 4036, 778, -1 }, { 4037, 778, -1 }, { 4038, 778, -1 }, { 3983, 779, -1 }, { 3984, 779, -1 }, { 3985, 779, -1 }, { 3986, 779, -1 }, { 3987, 779, -1 }, { 3988, 779, -1 }, { 3989, 779, -1 }, { 3990, 779, -1 }, { 3991, 779, -1 }, { 3992, 779, -1 }, { 3993, 779, -1 }, { 3996, 779, -1 }, { 3997, 779, -1 }, { 3998, 779, -1 }, { 4000, 779, -1 }, { 4002, 779, -1 }, { 4003, 779, -1 }, { 4004, 779, -1 }, { 4006, 779, -1 }, { 4007, 779, -1 }, { 4008, 779, -1 }, { 4009, 779, -1 }, { 4010, 779, -1 }, { 4011, 779, -1 }, { 4012, 779, -1 }, { 4013, 779, -1 }, { 4014, 779, -1 }, { 4015, 779, -1 }, { 4016, 779, -1 }, { 4017, 779, -1 }, { 4018, 779, -1 }, { 4019, 779, -1 }, { 4020, 779, -1 }, { 4021, 779, -1 }, { 4022, 779, -1 }, { 4023, 779, -1 }, { 4024, 779, -1 }, { 4025, 779, -1 }, { 4026, 779, -1 }, { 4027, 779, -1 }, { 4028, 779, -1 }, { 4029, 779, -1 }, { 4030, 779, -1 }, { 4031, 779, -1 }, { 4032, 779, -1 }, { 4033, 779, -1 }, { 4034, 779, -1 }, { 4035, 779, -1 }, { 4036, 779, -1 }, { 4037, 779, -1 }, { 4038, 779, -1 }, { 3984, 1532, -1 }, { 3985, 1532, -1 }, { 3986, 1532, -1 }, { 3987, 1532, -1 }, { 3988, 1532, -1 }, { 3989, 1532, -1 }, { 3990, 1532, -1 }, { 3991, 1532, -1 }, { 3992, 1532, -1 }, { 3993, 1532, -1 }, { 3994, 1532, -1 }, { 3995, 1532, -1 }, { 3996, 1532, -1 }, { 3997, 1532, -1 }, { 3998, 1532, -1 }, { 4000, 1532, -1 }, { 4001, 1532, -1 }, { 4002, 1532, -1 }, { 4003, 1532, -1 }, { 4004, 1532, -1 }, { 4005, 1532, -1 }, { 4006, 1532, -1 }, { 4007, 1532, -1 }, { 4008, 1532, -1 }, { 4009, 1532, -1 }, { 4010, 1532, -1 }, { 4011, 1532, -1 }, { 4012, 1532, -1 }, { 4013, 1532, -1 }, { 4014, 1532, -1 }, { 4015, 1532, -1 }, { 4016, 1532, -1 }, { 4017, 1532, -1 }, { 4018, 1532, -1 }, { 4019, 1532, -1 }, { 4020, 1532, -1 }, { 4021, 1532, -1 }, { 4022, 1532, -1 }, { 4023, 1532, -1 }, { 4024, 1532, -1 }, { 4025, 1532, -1 }, { 4026, 1532, -1 }, { 4027, 1532, -1 }, { 4028, 1532, -1 }, { 4029, 1532, -1 }, { 4030, 1532, -1 }, { 4031, 1532, -1 }, { 4032, 1532, -1 }, { 4033, 1532, -1 }, { 4034, 1532, -1 }, { 4035, 1532, -1 }, { 4036, 1532, -1 }, { 4037, 1532, -1 }, { 4038, 1532, -1 }, { 3984, 1527, -1 }, { 3985, 1527, -1 }, { 3986, 1527, -1 }, { 3987, 1527, -1 }, { 3988, 1527, -1 }, { 3989, 1527, -1 }, { 3990, 1527, -1 }, { 3991, 1527, -1 }, { 3992, 1527, -1 }, { 3993, 1527, -1 }, { 3994, 1527, -1 }, { 3995, 1527, -1 }, { 3996, 1527, -1 }, { 3997, 1527, -1 }, { 3998, 1527, -1 }, { 4000, 1527, -1 }, { 4001, 1527, -1 }, { 4002, 1527, -1 }, { 4003, 1527, -1 }, { 4004, 1527, -1 }, { 4005, 1527, -1 }, { 4007, 1527, -1 }, { 4008, 1527, -1 }, { 4009, 1527, -1 }, { 4010, 1527, -1 }, { 4011, 1527, -1 }, { 4012, 1527, -1 }, { 4013, 1527, -1 }, { 4014, 1527, -1 }, { 4015, 1527, -1 }, { 4016, 1527, -1 }, { 4017, 1527, -1 }, { 4018, 1527, -1 }, { 4019, 1527, -1 }, { 4020, 1527, -1 }, { 4021, 1527, -1 }, { 4022, 1527, -1 }, { 4023, 1527, -1 }, { 4024, 1527, -1 }, { 4026, 1527, -1 }, { 4027, 1527, -1 }, { 4028, 1527, -1 }, { 4029, 1527, -1 }, { 4030, 1527, -1 }, { 4031, 1527, -1 }, { 4032, 1527, -1 }, { 4033, 1527, -1 }, { 4034, 1527, -1 }, { 4035, 1527, -1 }, { 4036, 1527, -1 }, { 4037, 1527, -1 }, { 4038, 1527, -1 }, { 3984, 1534, -1 }, { 3985, 1534, -1 }, { 3986, 1534, -1 }, { 3987, 1534, -1 }, { 3988, 1534, -1 }, { 3989, 1534, -1 }, { 3990, 1534, -1 }, { 3991, 1534, -1 }, { 3992, 1534, -1 }, { 3993, 1534, -1 }, { 3994, 1534, -1 }, { 3995, 1534, -1 }, { 3996, 1534, -1 }, { 3997, 1534, -1 }, { 3998, 1534, -1 }, { 4000, 1534, -1 }, { 4001, 1534, -1 }, { 4002, 1534, -1 }, { 4003, 1534, -1 }, { 4004, 1534, -1 }, { 4005, 1534, -1 }, { 4006, 1534, -1 }, { 4007, 1534, -1 }, { 4008, 1534, -1 }, { 4009, 1534, -1 }, { 4010, 1534, -1 }, { 4011, 1534, -1 }, { 4012, 1534, -1 }, { 4013, 1534, -1 }, { 4014, 1534, -1 }, { 4015, 1534, -1 }, { 4016, 1534, -1 }, { 4017, 1534, -1 }, { 4018, 1534, -1 }, { 4019, 1534, -1 }, { 4020, 1534, -1 }, { 4021, 1534, -1 }, { 4022, 1534, -1 }, { 4023, 1534, -1 }, { 4024, 1534, -1 }, { 4025, 1534, -1 }, { 4026, 1534, -1 }, { 4027, 1534, -1 }, { 4028, 1534, -1 }, { 4029, 1534, -1 }, { 4030, 1534, -1 }, { 4031, 1534, -1 }, { 4032, 1534, -1 }, { 4033, 1534, -1 }, { 4034, 1534, -1 }, { 4035, 1534, -1 }, { 4036, 1534, -1 }, { 4037, 1534, -1 }, { 4038, 1534, -1 }, { 3984, 1549, -1 }, { 3985, 1549, -1 }, { 3986, 1549, -1 }, { 3987, 1549, -1 }, { 3988, 1549, -1 }, { 3989, 1549, -1 }, { 3990, 1549, -1 }, { 3991, 1549, -1 }, { 3992, 1549, -1 }, { 3993, 1549, -1 }, { 3994, 1549, -1 }, { 3995, 1549, -1 }, { 3996, 1549, -1 }, { 3997, 1549, -1 }, { 3998, 1549, -1 }, { 4000, 1549, -1 }, { 4001, 1549, -1 }, { 4002, 1549, -1 }, { 4003, 1549, -1 }, { 4004, 1549, -1 }, { 4005, 1549, -1 }, { 4006, 1549, -1 }, { 4007, 1549, -1 }, { 4008, 1549, -1 }, { 4009, 1549, -1 }, { 4010, 1549, -1 }, { 4011, 1549, -1 }, { 4012, 1549, -1 }, { 4013, 1549, -1 }, { 4014, 1549, -1 }, { 4015, 1549, -1 }, { 4016, 1549, -1 }, { 4017, 1549, -1 }, { 4018, 1549, -1 }, { 4019, 1549, -1 }, { 4020, 1549, -1 }, { 4021, 1549, -1 }, { 4022, 1549, -1 }, { 4023, 1549, -1 }, { 4024, 1549, -1 }, { 4025, 1549, -1 }, { 4026, 1549, -1 }, { 4027, 1549, -1 }, { 4028, 1549, -1 }, { 4029, 1549, -1 }, { 4030, 1549, -1 }, { 4031, 1549, -1 }, { 4032, 1549, -1 }, { 4033, 1549, -1 }, { 4034, 1549, -1 }, { 4035, 1549, -1 }, { 4037, 1549, -1 }, { 4038, 1549, -1 }, { 3983, 1536, -1 }, { 3984, 1536, -1 }, { 3985, 1536, -1 }, { 3986, 1536, -1 }, { 3987, 1536, -1 }, { 3988, 1536, -1 }, { 3989, 1536, -1 }, { 3990, 1536, -1 }, { 3991, 1536, -1 }, { 3992, 1536, -1 }, { 3993, 1536, -1 }, { 3994, 1536, -1 }, { 3995, 1536, -1 }, { 3996, 1536, -1 }, { 3997, 1536, -1 }, { 3998, 1536, -1 }, { 4000, 1536, -1 }, { 4001, 1536, -1 }, { 4002, 1536, -1 }, { 4003, 1536, -1 }, { 4004, 1536, -1 }, { 4005, 1536, -1 }, { 4006, 1536, -1 }, { 4007, 1536, -1 }, { 4008, 1536, -1 }, { 4009, 1536, -1 }, { 4010, 1536, -1 }, { 4011, 1536, -1 }, { 4012, 1536, -1 }, { 4013, 1536, -1 }, { 4014, 1536, -1 }, { 4015, 1536, -1 }, { 4016, 1536, -1 }, { 4017, 1536, -1 }, { 4018, 1536, -1 }, { 4019, 1536, -1 }, { 4020, 1536, -1 }, { 4021, 1536, -1 }, { 4022, 1536, -1 }, { 4023, 1536, -1 }, { 4024, 1536, -1 }, { 4025, 1536, -1 }, { 4026, 1536, -1 }, { 4027, 1536, -1 }, { 4028, 1536, -1 }, { 4029, 1536, -1 }, { 4030, 1536, -1 }, { 4031, 1536, -1 }, { 4032, 1536, -1 }, { 4033, 1536, -1 }, { 4034, 1536, -1 }, { 4035, 1536, -1 }, { 4037, 1536, -1 }, { 4038, 1536, -1 }, { 3984, 1483, -1 }, { 3986, 1483, -1 }, { 3987, 1483, -1 }, { 3988, 1483, -1 }, { 3989, 1483, -1 }, { 3990, 1483, -1 }, { 3991, 1483, -1 }, { 3992, 1483, -1 }, { 3993, 1483, -1 }, { 3994, 1483, -1 }, { 3995, 1483, -1 }, { 3996, 1483, -1 }, { 3997, 1483, -1 }, { 3998, 1483, -1 }, { 4000, 1483, -1 }, { 4001, 1483, -1 }, { 4002, 1483, -1 }, { 4003, 1483, -1 }, { 4004, 1483, -1 }, { 4005, 1483, -1 }, { 4006, 1483, -1 }, { 4007, 1483, -1 }, { 4008, 1483, -1 }, { 4009, 1483, -1 }, { 4010, 1483, -1 }, { 4011, 1483, -1 }, { 4012, 1483, -1 }, { 4013, 1483, -1 }, { 4014, 1483, -1 }, { 4015, 1483, -1 }, { 4016, 1483, -1 }, { 4018, 1483, -1 }, { 4019, 1483, -1 }, { 4020, 1483, -1 }, { 4021, 1483, -1 }, { 4022, 1483, -1 }, { 4023, 1483, -1 }, { 4024, 1483, -1 }, { 4025, 1483, -1 }, { 4026, 1483, -1 }, { 4027, 1483, -1 }, { 4028, 1483, -1 }, { 4029, 1483, -1 }, { 4030, 1483, -1 }, { 4031, 1483, -1 }, { 4032, 1483, -1 }, { 4033, 1483, -1 }, { 4034, 1483, -1 }, { 4035, 1483, -1 }, { 4036, 1483, -1 }, { 4037, 1483, -1 }, { 4038, 1483, -1 }, { 3937, 907, -1 }, { 3938, 907, -1 }, { 3939, 907, -1 }, { 3940, 907, -1 }, { 3941, 907, -1 }, { 3942, 907, -1 }, { 3943, 907, -1 }, { 3787, 1737, -1 }, { 3788, 1737, -1 }, { 3789, 1737, -1 }, { 3790, 1737, -1 }, { 3787, 1868, -1 }, { 3788, 1868, -1 }, { 3789, 1868, -1 }, { 3790, 1868, -1 }, { 3787, 1984, -1 }, { 3788, 1984, -1 }, { 3789, 1984, -1 }, { 3790, 1984, -1 }, { 3787, 1831, -1 }, { 3788, 1831, -1 }, { 3789, 1831, -1 }, { 3790, 1831, -1 }, { 3787, 1914, -1 }, { 3788, 1914, -1 }, { 3789, 1914, -1 }, { 3790, 1914, -1 }, { 3787, 1794, -1 }, { 3788, 1794, -1 }, { 3789, 1794, -1 }, { 3790, 1794, -1 }, { 3787, 1803, -1 }, { 3788, 1803, -1 }, { 3789, 1803, -1 }, { 3790, 1803, -1 }, { 3787, 1804, -1 }, { 3788, 1804, -1 }, { 3789, 1804, -1 }, { 3790, 1804, -1 }, { 3787, 1850, -1 }, { 3788, 1850, -1 }, { 3789, 1850, -1 }, { 3790, 1850, -1 }, { 3787, 1852, -1 }, { 3788, 1852, -1 }, { 3789, 1852, -1 }, { 3790, 1852, -1 }, { 3787, 1881, -1 }, { 3788, 1881, -1 }, { 3789, 1881, -1 }, { 3790, 1881, -1 }, { 3787, 1682, -1 }, { 3788, 1682, -1 }, { 3789, 1682, -1 }, { 3790, 1682, -1 }, { 3787, 950, -1 }, { 3788, 950, -1 }, { 3789, 950, -1 }, { 3790, 950, -1 }, { 3787, 63, -1 }, { 3788, 63, -1 }, { 3789, 63, -1 }, { 3790, 63, -1 }, { 3787, 7, -1 }, { 3788, 7, -1 }, { 3789, 7, -1 }, { 3790, 7, -1 }, { 3787, 13, -1 }, { 3788, 13, -1 }, { 3789, 13, -1 }, { 3790, 13, -1 }, { 3787, 23, -1 }, { 3788, 23, -1 }, { 3789, 23, -1 }, { 3790, 23, -1 }, { 3787, 98, -1 }, { 3788, 98, -1 }, { 3789, 98, -1 }, { 3790, 98, -1 }, { 3787, 1330, -1 }, { 3788, 1330, -1 }, { 3789, 1330, -1 }, { 3790, 1330, -1 }, { 3787, 1849, -1 }, { 3788, 1849, -1 }, { 3789, 1849, -1 }, { 3790, 1849, -1 }, { 3787, 191, -1 }, { 3788, 191, -1 }, { 3789, 191, -1 }, { 3790, 191, -1 }, { 3787, 1724, -1 }, { 3788, 1724, -1 }, { 3789, 1724, -1 }, { 3790, 1724, -1 }, { 3787, 605, -1 }, { 3788, 605, -1 }, { 3789, 605, -1 }, { 3790, 605, -1 }, { 3787, 855, -1 }, { 3788, 855, -1 }, { 3789, 855, -1 }, { 3790, 855, -1 }, { 3787, 258, -1 }, { 3788, 258, -1 }, { 3789, 258, -1 }, { 3790, 258, -1 }, { 3787, 897, -1 }, { 3788, 897, -1 }, { 3789, 897, -1 }, { 3790, 897, -1 }, { 3787, 10, -1 }, { 3788, 10, -1 }, { 3789, 10, -1 }, { 3790, 10, -1 }, { 3787, 1568, -1 }, { 3788, 1568, -1 }, { 3789, 1568, -1 }, { 3790, 1568, -1 }, { 3787, 1823, -1 }, { 3788, 1823, -1 }, { 3789, 1823, -1 }, { 3790, 1823, -1 }, { 3787, 14, -1 }, { 3788, 14, -1 }, { 3789, 14, -1 }, { 3790, 14, -1 }, { 3787, 134, -1 }, { 3788, 134, -1 }, { 3789, 134, -1 }, { 3790, 134, -1 }, { 3787, 15, -1 }, { 3788, 15, -1 }, { 3789, 15, -1 }, { 3790, 15, -1 }, { 3787, 16, -1 }, { 3788, 16, -1 }, { 3789, 16, -1 }, { 3790, 16, -1 }, { 3787, 44, -1 }, { 3788, 44, -1 }, { 3789, 44, -1 }, { 3790, 44, -1 }, { 3787, 17, -1 }, { 3788, 17, -1 }, { 3789, 17, -1 }, { 3790, 17, -1 }, { 3787, 11, -1 }, { 3788, 11, -1 }, { 3789, 11, -1 }, { 3790, 11, -1 }, { 3787, 12, -1 }, { 3788, 12, -1 }, { 3789, 12, -1 }, { 3790, 12, -1 }, { 3787, 493, -1 }, { 3788, 493, -1 }, { 3789, 493, -1 }, { 3790, 493, -1 }, { 3787, 476, -1 }, { 3788, 476, -1 }, { 3789, 476, -1 }, { 3790, 476, -1 }, { 3787, 275, -1 }, { 3788, 275, -1 }, { 3789, 275, -1 }, { 3790, 275, -1 }, { 3787, 18, -1 }, { 3788, 18, -1 }, { 3789, 18, -1 }, { 3790, 18, -1 }, { 3787, 19, -1 }, { 3788, 19, -1 }, { 3789, 19, -1 }, { 3790, 19, -1 }, { 3787, 453, -1 }, { 3788, 453, -1 }, { 3789, 453, -1 }, { 3790, 453, -1 }, { 3787, 68, -1 }, { 3788, 68, -1 }, { 3789, 68, -1 }, { 3790, 68, -1 }, { 3787, 20, -1 }, { 3788, 20, -1 }, { 3789, 20, -1 }, { 3790, 20, -1 }, { 3787, 21, -1 }, { 3788, 21, -1 }, { 3789, 21, -1 }, { 3790, 21, -1 }, { 3787, 22, -1 }, { 3788, 22, -1 }, { 3789, 22, -1 }, { 3790, 22, -1 }, { 3787, 589, -1 }, { 3788, 589, -1 }, { 3789, 589, -1 }, { 3790, 589, -1 }, { 3787, 620, -1 }, { 3788, 620, -1 }, { 3789, 620, -1 }, { 3790, 620, -1 }, { 3787, 784, -1 }, { 3788, 784, -1 }, { 3789, 784, -1 }, { 3790, 784, -1 }, { 3787, 785, -1 }, { 3788, 785, -1 }, { 3789, 785, -1 }, { 3790, 785, -1 }, { 3787, 1377, -1 }, { 3788, 1377, -1 }, { 3789, 1377, -1 }, { 3790, 1377, -1 }, { 3787, 1501, -1 }, { 3788, 1501, -1 }, { 3789, 1501, -1 }, { 3790, 1501, -1 }, { 3787, 1294, -1 }, { 3788, 1294, -1 }, { 3789, 1294, -1 }, { 3790, 1294, -1 }, { 3787, 1314, -1 }, { 3788, 1314, -1 }, { 3789, 1314, -1 }, { 3790, 1314, -1 }, { 3787, 1316, -1 }, { 3788, 1316, -1 }, { 3789, 1316, -1 }, { 3790, 1316, -1 }, { 3787, 1348, -1 }, { 3788, 1348, -1 }, { 3789, 1348, -1 }, { 3790, 1348, -1 }, { 3787, 1356, -1 }, { 3788, 1356, -1 }, { 3789, 1356, -1 }, { 3790, 1356, -1 }, { 3787, 1317, -1 }, { 3788, 1317, -1 }, { 3789, 1317, -1 }, { 3790, 1317, -1 }, { 3787, 1315, -1 }, { 3788, 1315, -1 }, { 3789, 1315, -1 }, { 3790, 1315, -1 }, { 3787, 1351, -1 }, { 3788, 1351, -1 }, { 3789, 1351, -1 }, { 3790, 1351, -1 }, { 3787, 1751, -1 }, { 3788, 1751, -1 }, { 3789, 1751, -1 }, { 3790, 1751, -1 }, { 3787, 1756, -1 }, { 3788, 1756, -1 }, { 3789, 1756, -1 }, { 3790, 1756, -1 }, { 3787, 837, -1 }, { 3788, 837, -1 }, { 3789, 837, -1 }, { 3790, 837, -1 }, { 3787, 838, -1 }, { 3788, 838, -1 }, { 3789, 838, -1 }, { 3790, 838, -1 }, { 3787, 836, -1 }, { 3788, 836, -1 }, { 3789, 836, -1 }, { 3790, 836, -1 }, { 3787, 783, -1 }, { 3788, 783, -1 }, { 3789, 783, -1 }, { 3790, 783, -1 }, { 3787, 778, -1 }, { 3788, 778, -1 }, { 3789, 778, -1 }, { 3790, 778, -1 }, { 3787, 779, -1 }, { 3788, 779, -1 }, { 3789, 779, -1 }, { 3790, 779, -1 }, { 3787, 1532, -1 }, { 3788, 1532, -1 }, { 3789, 1532, -1 }, { 3790, 1532, -1 }, { 3787, 1527, -1 }, { 3788, 1527, -1 }, { 3789, 1527, -1 }, { 3790, 1527, -1 }, { 3787, 1534, -1 }, { 3788, 1534, -1 }, { 3789, 1534, -1 }, { 3790, 1534, -1 }, { 3787, 1549, -1 }, { 3788, 1549, -1 }, { 3789, 1549, -1 }, { 3790, 1549, -1 }, { 3787, 1536, -1 }, { 3788, 1536, -1 }, { 3789, 1536, -1 }, { 3790, 1536, -1 }, { 3787, 1483, -1 }, { 3788, 1483, -1 }, { 3789, 1483, -1 }, { 3790, 1483, -1 }, { 3912, 1258, -1 }, { 3913, 1258, -1 }, { 3914, 1258, -1 }, { 3915, 1258, -1 }, { 3916, 1258, -1 }, { 3917, 1258, -1 }, { 3912, 1257, -1 }, { 3913, 1257, -1 }, { 3914, 1257, -1 }, { 3915, 1257, -1 }, { 3916, 1257, -1 }, { 3917, 1257, -1 }, { 3912, 1256, -1 }, { 3913, 1256, -1 }, { 3914, 1256, -1 }, { 3915, 1256, -1 }, { 3916, 1256, -1 }, { 3917, 1256, -1 }, { 3912, 1259, -1 }, { 3913, 1259, -1 }, { 3914, 1259, -1 }, { 3915, 1259, -1 }, { 3916, 1259, -1 }, { 3917, 1259, -1 }, { 3912, 1737, -1 }, { 3913, 1737, -1 }, { 3914, 1737, -1 }, { 3915, 1737, -1 }, { 3916, 1737, -1 }, { 3917, 1737, -1 }, { 3912, 1778, -1 }, { 3913, 1778, -1 }, { 3914, 1778, -1 }, { 3915, 1778, -1 }, { 3916, 1778, -1 }, { 3917, 1778, -1 }, { 3912, 1777, -1 }, { 3913, 1777, -1 }, { 3914, 1777, -1 }, { 3915, 1777, -1 }, { 3916, 1777, -1 }, { 3917, 1777, -1 }, { 3912, 2004, -1 }, { 3913, 2004, -1 }, { 3914, 2004, -1 }, { 3915, 2004, -1 }, { 3916, 2004, -1 }, { 3917, 2004, -1 }, { 3912, 1867, -1 }, { 3913, 1867, -1 }, { 3914, 1867, -1 }, { 3915, 1867, -1 }, { 3916, 1867, -1 }, { 3917, 1867, -1 }, { 3912, 1923, -1 }, { 3913, 1923, -1 }, { 3914, 1923, -1 }, { 3915, 1923, -1 }, { 3916, 1923, -1 }, { 3917, 1923, -1 }, { 3912, 1922, -1 }, { 3913, 1922, -1 }, { 3914, 1922, -1 }, { 3915, 1922, -1 }, { 3916, 1922, -1 }, { 3917, 1922, -1 }, { 3912, 1868, -1 }, { 3913, 1868, -1 }, { 3914, 1868, -1 }, { 3915, 1868, -1 }, { 3916, 1868, -1 }, { 3917, 1868, -1 }, { 3912, 1984, -1 }, { 3913, 1984, -1 }, { 3914, 1984, -1 }, { 3915, 1984, -1 }, { 3916, 1984, -1 }, { 3917, 1984, -1 }, { 3912, 1947, -1 }, { 3913, 1947, -1 }, { 3914, 1947, -1 }, { 3915, 1947, -1 }, { 3916, 1947, -1 }, { 3917, 1947, -1 }, { 3912, 1924, -1 }, { 3913, 1924, -1 }, { 3914, 1924, -1 }, { 3915, 1924, -1 }, { 3916, 1924, -1 }, { 3917, 1924, -1 }, { 3912, 1925, -1 }, { 3913, 1925, -1 }, { 3914, 1925, -1 }, { 3915, 1925, -1 }, { 3916, 1925, -1 }, { 3917, 1925, -1 }, { 3912, 1957, -1 }, { 3913, 1957, -1 }, { 3914, 1957, -1 }, { 3915, 1957, -1 }, { 3916, 1957, -1 }, { 3917, 1957, -1 }, { 3912, 1926, -1 }, { 3913, 1926, -1 }, { 3914, 1926, -1 }, { 3915, 1926, -1 }, { 3916, 1926, -1 }, { 3917, 1926, -1 }, { 3912, 1951, -1 }, { 3913, 1951, -1 }, { 3914, 1951, -1 }, { 3915, 1951, -1 }, { 3916, 1951, -1 }, { 3917, 1951, -1 }, { 3912, 1831, -1 }, { 3913, 1831, -1 }, { 3914, 1831, -1 }, { 3915, 1831, -1 }, { 3916, 1831, -1 }, { 3917, 1831, -1 }, { 3912, 1768, -1 }, { 3913, 1768, -1 }, { 3914, 1768, -1 }, { 3915, 1768, -1 }, { 3916, 1768, -1 }, { 3917, 1768, -1 }, { 3912, 1913, -1 }, { 3913, 1913, -1 }, { 3914, 1913, -1 }, { 3915, 1913, -1 }, { 3916, 1913, -1 }, { 3917, 1913, -1 }, { 3912, 1912, -1 }, { 3913, 1912, -1 }, { 3914, 1912, -1 }, { 3915, 1912, -1 }, { 3916, 1912, -1 }, { 3917, 1912, -1 }, { 3912, 1914, -1 }, { 3913, 1914, -1 }, { 3914, 1914, -1 }, { 3915, 1914, -1 }, { 3916, 1914, -1 }, { 3917, 1914, -1 }, { 3912, 1794, -1 }, { 3913, 1794, -1 }, { 3914, 1794, -1 }, { 3915, 1794, -1 }, { 3916, 1794, -1 }, { 3917, 1794, -1 }, { 3912, 1802, -1 }, { 3913, 1802, -1 }, { 3914, 1802, -1 }, { 3915, 1802, -1 }, { 3916, 1802, -1 }, { 3917, 1802, -1 }, { 3912, 1803, -1 }, { 3913, 1803, -1 }, { 3914, 1803, -1 }, { 3915, 1803, -1 }, { 3916, 1803, -1 }, { 3917, 1803, -1 }, { 3912, 1804, -1 }, { 3913, 1804, -1 }, { 3914, 1804, -1 }, { 3915, 1804, -1 }, { 3916, 1804, -1 }, { 3917, 1804, -1 }, { 3912, 1850, -1 }, { 3913, 1850, -1 }, { 3914, 1850, -1 }, { 3915, 1850, -1 }, { 3916, 1850, -1 }, { 3917, 1850, -1 }, { 3912, 1852, -1 }, { 3913, 1852, -1 }, { 3914, 1852, -1 }, { 3915, 1852, -1 }, { 3916, 1852, -1 }, { 3917, 1852, -1 }, { 3912, 1881, -1 }, { 3913, 1881, -1 }, { 3914, 1881, -1 }, { 3915, 1881, -1 }, { 3916, 1881, -1 }, { 3917, 1881, -1 }, { 3912, 1891, -1 }, { 3913, 1891, -1 }, { 3914, 1891, -1 }, { 3915, 1891, -1 }, { 3916, 1891, -1 }, { 3917, 1891, -1 }, { 3912, 1716, -1 }, { 3913, 1716, -1 }, { 3914, 1716, -1 }, { 3915, 1716, -1 }, { 3916, 1716, -1 }, { 3917, 1716, -1 }, { 3912, 1682, -1 }, { 3913, 1682, -1 }, { 3914, 1682, -1 }, { 3915, 1682, -1 }, { 3916, 1682, -1 }, { 3917, 1682, -1 }, { 3912, 419, -1 }, { 3913, 419, -1 }, { 3914, 419, -1 }, { 3915, 419, -1 }, { 3916, 419, -1 }, { 3917, 419, -1 }, { 3912, 632, -1 }, { 3913, 632, -1 }, { 3914, 632, -1 }, { 3915, 632, -1 }, { 3916, 632, -1 }, { 3917, 632, -1 }, { 3912, 634, -1 }, { 3913, 634, -1 }, { 3914, 634, -1 }, { 3915, 634, -1 }, { 3916, 634, -1 }, { 3917, 634, -1 }, { 3912, 417, -1 }, { 3913, 417, -1 }, { 3914, 417, -1 }, { 3915, 417, -1 }, { 3916, 417, -1 }, { 3917, 417, -1 }, { 3912, 506, -1 }, { 3913, 506, -1 }, { 3914, 506, -1 }, { 3915, 506, -1 }, { 3916, 506, -1 }, { 3917, 506, -1 }, { 3912, 577, -1 }, { 3913, 577, -1 }, { 3914, 577, -1 }, { 3915, 577, -1 }, { 3916, 577, -1 }, { 3917, 577, -1 }, { 3912, 505, -1 }, { 3913, 505, -1 }, { 3914, 505, -1 }, { 3915, 505, -1 }, { 3916, 505, -1 }, { 3917, 505, -1 }, { 3912, 950, -1 }, { 3913, 950, -1 }, { 3914, 950, -1 }, { 3915, 950, -1 }, { 3916, 950, -1 }, { 3917, 950, -1 }, { 3912, 971, -1 }, { 3913, 971, -1 }, { 3914, 971, -1 }, { 3915, 971, -1 }, { 3916, 971, -1 }, { 3917, 971, -1 }, { 3912, 1119, -1 }, { 3913, 1119, -1 }, { 3914, 1119, -1 }, { 3915, 1119, -1 }, { 3916, 1119, -1 }, { 3917, 1119, -1 }, { 3912, 1083, -1 }, { 3913, 1083, -1 }, { 3914, 1083, -1 }, { 3915, 1083, -1 }, { 3916, 1083, -1 }, { 3917, 1083, -1 }, { 3912, 1063, -1 }, { 3913, 1063, -1 }, { 3914, 1063, -1 }, { 3915, 1063, -1 }, { 3916, 1063, -1 }, { 3917, 1063, -1 }, { 3912, 1038, -1 }, { 3913, 1038, -1 }, { 3914, 1038, -1 }, { 3915, 1038, -1 }, { 3916, 1038, -1 }, { 3917, 1038, -1 }, { 3912, 986, -1 }, { 3913, 986, -1 }, { 3914, 986, -1 }, { 3915, 986, -1 }, { 3916, 986, -1 }, { 3917, 986, -1 }, { 3912, 979, -1 }, { 3913, 979, -1 }, { 3914, 979, -1 }, { 3915, 979, -1 }, { 3916, 979, -1 }, { 3917, 979, -1 }, { 3912, 141, -1 }, { 3913, 141, -1 }, { 3914, 141, -1 }, { 3915, 141, -1 }, { 3916, 141, -1 }, { 3917, 141, -1 }, { 3912, 471, -1 }, { 3913, 471, -1 }, { 3914, 471, -1 }, { 3915, 471, -1 }, { 3916, 471, -1 }, { 3917, 471, -1 }, { 3912, 63, -1 }, { 3913, 63, -1 }, { 3914, 63, -1 }, { 3915, 63, -1 }, { 3916, 63, -1 }, { 3917, 63, -1 }, { 3912, 7, -1 }, { 3913, 7, -1 }, { 3914, 7, -1 }, { 3915, 7, -1 }, { 3916, 7, -1 }, { 3917, 7, -1 }, { 3912, 13, -1 }, { 3913, 13, -1 }, { 3914, 13, -1 }, { 3915, 13, -1 }, { 3916, 13, -1 }, { 3917, 13, -1 }, { 3912, 23, -1 }, { 3913, 23, -1 }, { 3914, 23, -1 }, { 3915, 23, -1 }, { 3916, 23, -1 }, { 3917, 23, -1 }, { 3912, 1779, -1 }, { 3913, 1779, -1 }, { 3914, 1779, -1 }, { 3915, 1779, -1 }, { 3916, 1779, -1 }, { 3917, 1779, -1 }, { 3912, 1985, -1 }, { 3913, 1985, -1 }, { 3914, 1985, -1 }, { 3915, 1985, -1 }, { 3916, 1985, -1 }, { 3917, 1985, -1 }, { 3912, 578, -1 }, { 3913, 578, -1 }, { 3914, 578, -1 }, { 3915, 578, -1 }, { 3916, 578, -1 }, { 3917, 578, -1 }, { 3912, 1064, -1 }, { 3913, 1064, -1 }, { 3914, 1064, -1 }, { 3915, 1064, -1 }, { 3916, 1064, -1 }, { 3917, 1064, -1 }, { 3912, 1042, -1 }, { 3913, 1042, -1 }, { 3914, 1042, -1 }, { 3915, 1042, -1 }, { 3916, 1042, -1 }, { 3917, 1042, -1 }, { 3912, 987, -1 }, { 3913, 987, -1 }, { 3914, 987, -1 }, { 3915, 987, -1 }, { 3916, 987, -1 }, { 3917, 987, -1 }, { 3912, 100, -1 }, { 3913, 100, -1 }, { 3914, 100, -1 }, { 3915, 100, -1 }, { 3916, 100, -1 }, { 3917, 100, -1 }, { 3912, 1331, -1 }, { 3913, 1331, -1 }, { 3914, 1331, -1 }, { 3915, 1331, -1 }, { 3916, 1331, -1 }, { 3917, 1331, -1 }, { 3912, 192, -1 }, { 3913, 192, -1 }, { 3914, 192, -1 }, { 3915, 192, -1 }, { 3916, 192, -1 }, { 3917, 192, -1 }, { 3912, 1355, -1 }, { 3913, 1355, -1 }, { 3914, 1355, -1 }, { 3915, 1355, -1 }, { 3916, 1355, -1 }, { 3917, 1355, -1 }, { 3912, 1597, -1 }, { 3913, 1597, -1 }, { 3914, 1597, -1 }, { 3915, 1597, -1 }, { 3916, 1597, -1 }, { 3917, 1597, -1 }, { 3912, 1601, -1 }, { 3913, 1601, -1 }, { 3914, 1601, -1 }, { 3915, 1601, -1 }, { 3916, 1601, -1 }, { 3917, 1601, -1 }, { 3912, 1725, -1 }, { 3913, 1725, -1 }, { 3914, 1725, -1 }, { 3915, 1725, -1 }, { 3916, 1725, -1 }, { 3917, 1725, -1 }, { 3912, 809, -1 }, { 3913, 809, -1 }, { 3914, 809, -1 }, { 3915, 809, -1 }, { 3916, 809, -1 }, { 3917, 809, -1 }, { 3912, 690, -1 }, { 3913, 690, -1 }, { 3914, 690, -1 }, { 3915, 690, -1 }, { 3916, 690, -1 }, { 3917, 690, -1 }, { 3912, 694, -1 }, { 3913, 694, -1 }, { 3914, 694, -1 }, { 3915, 694, -1 }, { 3916, 694, -1 }, { 3917, 694, -1 }, { 3912, 1084, -1 }, { 3913, 1084, -1 }, { 3914, 1084, -1 }, { 3915, 1084, -1 }, { 3916, 1084, -1 }, { 3917, 1084, -1 }, { 3912, 980, -1 }, { 3913, 980, -1 }, { 3914, 980, -1 }, { 3915, 980, -1 }, { 3916, 980, -1 }, { 3917, 980, -1 }, { 3912, 142, -1 }, { 3913, 142, -1 }, { 3914, 142, -1 }, { 3915, 142, -1 }, { 3916, 142, -1 }, { 3917, 142, -1 }, { 3912, 607, -1 }, { 3913, 607, -1 }, { 3914, 607, -1 }, { 3915, 607, -1 }, { 3916, 607, -1 }, { 3917, 607, -1 }, { 3912, 861, -1 }, { 3913, 861, -1 }, { 3914, 861, -1 }, { 3915, 861, -1 }, { 3916, 861, -1 }, { 3917, 861, -1 }, { 3912, 260, -1 }, { 3913, 260, -1 }, { 3914, 260, -1 }, { 3915, 260, -1 }, { 3916, 260, -1 }, { 3917, 260, -1 }, { 3912, 899, -1 }, { 3913, 899, -1 }, { 3914, 899, -1 }, { 3915, 899, -1 }, { 3916, 899, -1 }, { 3917, 899, -1 }, { 3912, 701, -1 }, { 3913, 701, -1 }, { 3914, 701, -1 }, { 3915, 701, -1 }, { 3916, 701, -1 }, { 3917, 701, -1 }, { 3912, 33, -1 }, { 3913, 33, -1 }, { 3914, 33, -1 }, { 3915, 33, -1 }, { 3916, 33, -1 }, { 3917, 33, -1 }, { 3912, 301, -1 }, { 3913, 301, -1 }, { 3914, 301, -1 }, { 3915, 301, -1 }, { 3916, 301, -1 }, { 3917, 301, -1 }, { 3912, 281, -1 }, { 3913, 281, -1 }, { 3914, 281, -1 }, { 3915, 281, -1 }, { 3916, 281, -1 }, { 3917, 281, -1 }, { 3912, 1570, -1 }, { 3913, 1570, -1 }, { 3914, 1570, -1 }, { 3915, 1570, -1 }, { 3916, 1570, -1 }, { 3917, 1570, -1 }, { 3912, 1343, -1 }, { 3913, 1343, -1 }, { 3914, 1343, -1 }, { 3915, 1343, -1 }, { 3916, 1343, -1 }, { 3917, 1343, -1 }, { 3912, 886, -1 }, { 3913, 886, -1 }, { 3914, 886, -1 }, { 3915, 886, -1 }, { 3916, 886, -1 }, { 3917, 886, -1 }, { 3912, 1610, -1 }, { 3913, 1610, -1 }, { 3914, 1610, -1 }, { 3915, 1610, -1 }, { 3916, 1610, -1 }, { 3917, 1610, -1 }, { 3912, 292, -1 }, { 3913, 292, -1 }, { 3914, 292, -1 }, { 3915, 292, -1 }, { 3916, 292, -1 }, { 3917, 292, -1 }, { 3912, 1952, -1 }, { 3913, 1952, -1 }, { 3914, 1952, -1 }, { 3915, 1952, -1 }, { 3916, 1952, -1 }, { 3917, 1952, -1 }, { 3912, 1824, -1 }, { 3913, 1824, -1 }, { 3914, 1824, -1 }, { 3915, 1824, -1 }, { 3916, 1824, -1 }, { 3917, 1824, -1 }, { 3912, 1997, -1 }, { 3913, 1997, -1 }, { 3914, 1997, -1 }, { 3915, 1997, -1 }, { 3916, 1997, -1 }, { 3917, 1997, -1 }, { 3912, 1498, -1 }, { 3913, 1498, -1 }, { 3914, 1498, -1 }, { 3915, 1498, -1 }, { 3916, 1498, -1 }, { 3917, 1498, -1 }, { 3912, 1495, -1 }, { 3913, 1495, -1 }, { 3914, 1495, -1 }, { 3915, 1495, -1 }, { 3916, 1495, -1 }, { 3917, 1495, -1 }, { 3912, 1492, -1 }, { 3913, 1492, -1 }, { 3914, 1492, -1 }, { 3915, 1492, -1 }, { 3916, 1492, -1 }, { 3917, 1492, -1 }, { 3912, 1362, -1 }, { 3913, 1362, -1 }, { 3914, 1362, -1 }, { 3915, 1362, -1 }, { 3916, 1362, -1 }, { 3917, 1362, -1 }, { 3912, 1300, -1 }, { 3913, 1300, -1 }, { 3914, 1300, -1 }, { 3915, 1300, -1 }, { 3916, 1300, -1 }, { 3917, 1300, -1 }, { 3912, 1309, -1 }, { 3913, 1309, -1 }, { 3914, 1309, -1 }, { 3915, 1309, -1 }, { 3916, 1309, -1 }, { 3917, 1309, -1 }, { 3912, 908, -1 }, { 3913, 908, -1 }, { 3914, 908, -1 }, { 3915, 908, -1 }, { 3916, 908, -1 }, { 3917, 908, -1 }, { 3912, 1798, -1 }, { 3913, 1798, -1 }, { 3914, 1798, -1 }, { 3915, 1798, -1 }, { 3916, 1798, -1 }, { 3917, 1798, -1 }, { 3912, 1662, -1 }, { 3913, 1662, -1 }, { 3914, 1662, -1 }, { 3915, 1662, -1 }, { 3916, 1662, -1 }, { 3917, 1662, -1 }, { 3912, 1528, -1 }, { 3913, 1528, -1 }, { 3914, 1528, -1 }, { 3915, 1528, -1 }, { 3916, 1528, -1 }, { 3917, 1528, -1 }, { 3912, 1484, -1 }, { 3913, 1484, -1 }, { 3914, 1484, -1 }, { 3915, 1484, -1 }, { 3916, 1484, -1 }, { 3917, 1484, -1 }, { 3912, 1506, -1 }, { 3913, 1506, -1 }, { 3914, 1506, -1 }, { 3915, 1506, -1 }, { 3916, 1506, -1 }, { 3917, 1506, -1 }, { 3912, 1510, -1 }, { 3913, 1510, -1 }, { 3914, 1510, -1 }, { 3915, 1510, -1 }, { 3916, 1510, -1 }, { 3917, 1510, -1 }, { 3912, 1514, -1 }, { 3913, 1514, -1 }, { 3914, 1514, -1 }, { 3915, 1514, -1 }, { 3916, 1514, -1 }, { 3917, 1514, -1 }, { 3912, 743, -1 }, { 3913, 743, -1 }, { 3914, 743, -1 }, { 3915, 743, -1 }, { 3916, 743, -1 }, { 3917, 743, -1 }, { 3912, 1347, -1 }, { 3913, 1347, -1 }, { 3914, 1347, -1 }, { 3915, 1347, -1 }, { 3916, 1347, -1 }, { 3917, 1347, -1 }, { 3912, 662, -1 }, { 3913, 662, -1 }, { 3914, 662, -1 }, { 3915, 662, -1 }, { 3916, 662, -1 }, { 3917, 662, -1 }, { 3912, 1946, -1 }, { 3913, 1946, -1 }, { 3914, 1946, -1 }, { 3915, 1946, -1 }, { 3916, 1946, -1 }, { 3917, 1946, -1 }, { 3912, 1325, -1 }, { 3913, 1325, -1 }, { 3914, 1325, -1 }, { 3915, 1325, -1 }, { 3916, 1325, -1 }, { 3917, 1325, -1 }, { 3912, 1776, -1 }, { 3913, 1776, -1 }, { 3914, 1776, -1 }, { 3915, 1776, -1 }, { 3916, 1776, -1 }, { 3917, 1776, -1 }, { 3912, 1983, -1 }, { 3913, 1983, -1 }, { 3914, 1983, -1 }, { 3915, 1983, -1 }, { 3916, 1983, -1 }, { 3917, 1983, -1 }, { 3912, 576, -1 }, { 3913, 576, -1 }, { 3914, 576, -1 }, { 3915, 576, -1 }, { 3916, 576, -1 }, { 3917, 576, -1 }, { 3912, 1062, -1 }, { 3913, 1062, -1 }, { 3914, 1062, -1 }, { 3915, 1062, -1 }, { 3916, 1062, -1 }, { 3917, 1062, -1 }, { 3912, 1041, -1 }, { 3913, 1041, -1 }, { 3914, 1041, -1 }, { 3915, 1041, -1 }, { 3916, 1041, -1 }, { 3917, 1041, -1 }, { 3912, 985, -1 }, { 3913, 985, -1 }, { 3914, 985, -1 }, { 3915, 985, -1 }, { 3916, 985, -1 }, { 3917, 985, -1 }, { 3912, 98, -1 }, { 3913, 98, -1 }, { 3914, 98, -1 }, { 3915, 98, -1 }, { 3916, 98, -1 }, { 3917, 98, -1 }, { 3912, 1330, -1 }, { 3913, 1330, -1 }, { 3914, 1330, -1 }, { 3915, 1330, -1 }, { 3916, 1330, -1 }, { 3917, 1330, -1 }, { 3912, 1849, -1 }, { 3913, 1849, -1 }, { 3914, 1849, -1 }, { 3915, 1849, -1 }, { 3916, 1849, -1 }, { 3917, 1849, -1 }, { 3912, 191, -1 }, { 3913, 191, -1 }, { 3914, 191, -1 }, { 3915, 191, -1 }, { 3916, 191, -1 }, { 3917, 191, -1 }, { 3912, 1353, -1 }, { 3913, 1353, -1 }, { 3914, 1353, -1 }, { 3915, 1353, -1 }, { 3916, 1353, -1 }, { 3917, 1353, -1 }, { 3912, 1596, -1 }, { 3913, 1596, -1 }, { 3914, 1596, -1 }, { 3915, 1596, -1 }, { 3916, 1596, -1 }, { 3917, 1596, -1 }, { 3912, 1599, -1 }, { 3913, 1599, -1 }, { 3914, 1599, -1 }, { 3915, 1599, -1 }, { 3916, 1599, -1 }, { 3917, 1599, -1 }, { 3912, 1724, -1 }, { 3913, 1724, -1 }, { 3914, 1724, -1 }, { 3915, 1724, -1 }, { 3916, 1724, -1 }, { 3917, 1724, -1 }, { 3912, 808, -1 }, { 3913, 808, -1 }, { 3914, 808, -1 }, { 3915, 808, -1 }, { 3916, 808, -1 }, { 3917, 808, -1 }, { 3912, 688, -1 }, { 3913, 688, -1 }, { 3914, 688, -1 }, { 3915, 688, -1 }, { 3916, 688, -1 }, { 3917, 688, -1 }, { 3912, 693, -1 }, { 3913, 693, -1 }, { 3914, 693, -1 }, { 3915, 693, -1 }, { 3916, 693, -1 }, { 3917, 693, -1 }, { 3912, 1082, -1 }, { 3913, 1082, -1 }, { 3914, 1082, -1 }, { 3915, 1082, -1 }, { 3916, 1082, -1 }, { 3917, 1082, -1 }, { 3912, 978, -1 }, { 3913, 978, -1 }, { 3914, 978, -1 }, { 3915, 978, -1 }, { 3916, 978, -1 }, { 3917, 978, -1 }, { 3912, 140, -1 }, { 3913, 140, -1 }, { 3914, 140, -1 }, { 3915, 140, -1 }, { 3916, 140, -1 }, { 3917, 140, -1 }, { 3912, 605, -1 }, { 3913, 605, -1 }, { 3914, 605, -1 }, { 3915, 605, -1 }, { 3916, 605, -1 }, { 3917, 605, -1 }, { 3912, 855, -1 }, { 3913, 855, -1 }, { 3914, 855, -1 }, { 3915, 855, -1 }, { 3916, 855, -1 }, { 3917, 855, -1 }, { 3912, 258, -1 }, { 3913, 258, -1 }, { 3914, 258, -1 }, { 3915, 258, -1 }, { 3916, 258, -1 }, { 3917, 258, -1 }, { 3912, 897, -1 }, { 3913, 897, -1 }, { 3914, 897, -1 }, { 3915, 897, -1 }, { 3916, 897, -1 }, { 3917, 897, -1 }, { 3912, 699, -1 }, { 3913, 699, -1 }, { 3914, 699, -1 }, { 3915, 699, -1 }, { 3916, 699, -1 }, { 3917, 699, -1 }, { 3912, 10, -1 }, { 3913, 10, -1 }, { 3914, 10, -1 }, { 3915, 10, -1 }, { 3916, 10, -1 }, { 3917, 10, -1 }, { 3912, 299, -1 }, { 3913, 299, -1 }, { 3914, 299, -1 }, { 3915, 299, -1 }, { 3916, 299, -1 }, { 3917, 299, -1 }, { 3912, 279, -1 }, { 3913, 279, -1 }, { 3914, 279, -1 }, { 3915, 279, -1 }, { 3916, 279, -1 }, { 3917, 279, -1 }, { 3912, 1568, -1 }, { 3913, 1568, -1 }, { 3914, 1568, -1 }, { 3915, 1568, -1 }, { 3916, 1568, -1 }, { 3917, 1568, -1 }, { 3912, 1341, -1 }, { 3913, 1341, -1 }, { 3914, 1341, -1 }, { 3915, 1341, -1 }, { 3916, 1341, -1 }, { 3917, 1341, -1 }, { 3912, 884, -1 }, { 3913, 884, -1 }, { 3914, 884, -1 }, { 3915, 884, -1 }, { 3916, 884, -1 }, { 3917, 884, -1 }, { 3912, 1608, -1 }, { 3913, 1608, -1 }, { 3914, 1608, -1 }, { 3915, 1608, -1 }, { 3916, 1608, -1 }, { 3917, 1608, -1 }, { 3912, 289, -1 }, { 3913, 289, -1 }, { 3914, 289, -1 }, { 3915, 289, -1 }, { 3916, 289, -1 }, { 3917, 289, -1 }, { 3912, 1950, -1 }, { 3913, 1950, -1 }, { 3914, 1950, -1 }, { 3915, 1950, -1 }, { 3916, 1950, -1 }, { 3917, 1950, -1 }, { 3912, 1823, -1 }, { 3913, 1823, -1 }, { 3914, 1823, -1 }, { 3915, 1823, -1 }, { 3916, 1823, -1 }, { 3917, 1823, -1 }, { 3912, 1996, -1 }, { 3913, 1996, -1 }, { 3914, 1996, -1 }, { 3915, 1996, -1 }, { 3916, 1996, -1 }, { 3917, 1996, -1 }, { 3912, 1497, -1 }, { 3913, 1497, -1 }, { 3914, 1497, -1 }, { 3915, 1497, -1 }, { 3916, 1497, -1 }, { 3917, 1497, -1 }, { 3912, 1494, -1 }, { 3913, 1494, -1 }, { 3914, 1494, -1 }, { 3915, 1494, -1 }, { 3916, 1494, -1 }, { 3917, 1494, -1 }, { 3912, 1490, -1 }, { 3913, 1490, -1 }, { 3914, 1490, -1 }, { 3915, 1490, -1 }, { 3916, 1490, -1 }, { 3917, 1490, -1 }, { 3912, 1360, -1 }, { 3913, 1360, -1 }, { 3914, 1360, -1 }, { 3915, 1360, -1 }, { 3916, 1360, -1 }, { 3917, 1360, -1 }, { 3912, 1298, -1 }, { 3913, 1298, -1 }, { 3914, 1298, -1 }, { 3915, 1298, -1 }, { 3916, 1298, -1 }, { 3917, 1298, -1 }, { 3912, 1307, -1 }, { 3913, 1307, -1 }, { 3914, 1307, -1 }, { 3915, 1307, -1 }, { 3916, 1307, -1 }, { 3917, 1307, -1 }, { 3912, 906, -1 }, { 3913, 906, -1 }, { 3914, 906, -1 }, { 3915, 906, -1 }, { 3916, 906, -1 }, { 3917, 906, -1 }, { 3912, 1797, -1 }, { 3913, 1797, -1 }, { 3914, 1797, -1 }, { 3915, 1797, -1 }, { 3916, 1797, -1 }, { 3917, 1797, -1 }, { 3912, 1660, -1 }, { 3913, 1660, -1 }, { 3914, 1660, -1 }, { 3915, 1660, -1 }, { 3916, 1660, -1 }, { 3917, 1660, -1 }, { 3912, 1526, -1 }, { 3913, 1526, -1 }, { 3914, 1526, -1 }, { 3915, 1526, -1 }, { 3916, 1526, -1 }, { 3917, 1526, -1 }, { 3912, 1482, -1 }, { 3913, 1482, -1 }, { 3914, 1482, -1 }, { 3915, 1482, -1 }, { 3916, 1482, -1 }, { 3917, 1482, -1 }, { 3912, 1504, -1 }, { 3913, 1504, -1 }, { 3914, 1504, -1 }, { 3915, 1504, -1 }, { 3916, 1504, -1 }, { 3917, 1504, -1 }, { 3912, 1508, -1 }, { 3913, 1508, -1 }, { 3914, 1508, -1 }, { 3915, 1508, -1 }, { 3916, 1508, -1 }, { 3917, 1508, -1 }, { 3912, 1512, -1 }, { 3913, 1512, -1 }, { 3914, 1512, -1 }, { 3915, 1512, -1 }, { 3916, 1512, -1 }, { 3917, 1512, -1 }, { 3912, 652, -1 }, { 3913, 652, -1 }, { 3914, 652, -1 }, { 3915, 652, -1 }, { 3916, 652, -1 }, { 3917, 652, -1 }, { 3912, 152, -1 }, { 3913, 152, -1 }, { 3914, 152, -1 }, { 3915, 152, -1 }, { 3916, 152, -1 }, { 3917, 152, -1 }, { 3912, 494, -1 }, { 3913, 494, -1 }, { 3914, 494, -1 }, { 3915, 494, -1 }, { 3916, 494, -1 }, { 3917, 494, -1 }, { 3912, 14, -1 }, { 3913, 14, -1 }, { 3914, 14, -1 }, { 3915, 14, -1 }, { 3916, 14, -1 }, { 3917, 14, -1 }, { 3912, 134, -1 }, { 3913, 134, -1 }, { 3914, 134, -1 }, { 3915, 134, -1 }, { 3916, 134, -1 }, { 3917, 134, -1 }, { 3912, 147, -1 }, { 3913, 147, -1 }, { 3914, 147, -1 }, { 3915, 147, -1 }, { 3916, 147, -1 }, { 3917, 147, -1 }, { 3912, 15, -1 }, { 3913, 15, -1 }, { 3914, 15, -1 }, { 3915, 15, -1 }, { 3916, 15, -1 }, { 3917, 15, -1 }, { 3912, 16, -1 }, { 3913, 16, -1 }, { 3914, 16, -1 }, { 3915, 16, -1 }, { 3916, 16, -1 }, { 3917, 16, -1 }, { 3912, 410, -1 }, { 3913, 410, -1 }, { 3914, 410, -1 }, { 3915, 410, -1 }, { 3916, 410, -1 }, { 3917, 410, -1 }, { 3912, 399, -1 }, { 3913, 399, -1 }, { 3914, 399, -1 }, { 3915, 399, -1 }, { 3916, 399, -1 }, { 3917, 399, -1 }, { 3912, 400, -1 }, { 3913, 400, -1 }, { 3914, 400, -1 }, { 3915, 400, -1 }, { 3916, 400, -1 }, { 3917, 400, -1 }, { 3912, 416, -1 }, { 3913, 416, -1 }, { 3914, 416, -1 }, { 3915, 416, -1 }, { 3916, 416, -1 }, { 3917, 416, -1 }, { 3912, 44, -1 }, { 3913, 44, -1 }, { 3914, 44, -1 }, { 3915, 44, -1 }, { 3916, 44, -1 }, { 3917, 44, -1 }, { 3912, 17, -1 }, { 3913, 17, -1 }, { 3914, 17, -1 }, { 3915, 17, -1 }, { 3916, 17, -1 }, { 3917, 17, -1 }, { 3912, 11, -1 }, { 3913, 11, -1 }, { 3914, 11, -1 }, { 3915, 11, -1 }, { 3916, 11, -1 }, { 3917, 11, -1 }, { 3912, 12, -1 }, { 3913, 12, -1 }, { 3914, 12, -1 }, { 3915, 12, -1 }, { 3916, 12, -1 }, { 3917, 12, -1 }, { 3912, 136, -1 }, { 3913, 136, -1 }, { 3914, 136, -1 }, { 3915, 136, -1 }, { 3916, 136, -1 }, { 3917, 136, -1 }, { 3912, 689, -1 }, { 3913, 689, -1 }, { 3914, 689, -1 }, { 3915, 689, -1 }, { 3916, 689, -1 }, { 3917, 689, -1 }, { 3912, 700, -1 }, { 3913, 700, -1 }, { 3914, 700, -1 }, { 3915, 700, -1 }, { 3916, 700, -1 }, { 3917, 700, -1 }, { 3912, 1023, -1 }, { 3913, 1023, -1 }, { 3914, 1023, -1 }, { 3915, 1023, -1 }, { 3916, 1023, -1 }, { 3917, 1023, -1 }, { 3912, 653, -1 }, { 3913, 653, -1 }, { 3914, 653, -1 }, { 3915, 653, -1 }, { 3916, 653, -1 }, { 3917, 653, -1 }, { 3912, 458, -1 }, { 3913, 458, -1 }, { 3914, 458, -1 }, { 3915, 458, -1 }, { 3916, 458, -1 }, { 3917, 458, -1 }, { 3912, 459, -1 }, { 3913, 459, -1 }, { 3914, 459, -1 }, { 3915, 459, -1 }, { 3916, 459, -1 }, { 3917, 459, -1 }, { 3912, 493, -1 }, { 3913, 493, -1 }, { 3914, 493, -1 }, { 3915, 493, -1 }, { 3916, 493, -1 }, { 3917, 493, -1 }, { 3912, 475, -1 }, { 3913, 475, -1 }, { 3914, 475, -1 }, { 3915, 475, -1 }, { 3916, 475, -1 }, { 3917, 475, -1 }, { 3912, 455, -1 }, { 3913, 455, -1 }, { 3914, 455, -1 }, { 3915, 455, -1 }, { 3916, 455, -1 }, { 3917, 455, -1 }, { 3912, 56, -1 }, { 3913, 56, -1 }, { 3914, 56, -1 }, { 3915, 56, -1 }, { 3916, 56, -1 }, { 3917, 56, -1 }, { 3912, 307, -1 }, { 3913, 307, -1 }, { 3914, 307, -1 }, { 3915, 307, -1 }, { 3916, 307, -1 }, { 3917, 307, -1 }, { 3912, 306, -1 }, { 3913, 306, -1 }, { 3914, 306, -1 }, { 3915, 306, -1 }, { 3916, 306, -1 }, { 3917, 306, -1 }, { 3912, 338, -1 }, { 3913, 338, -1 }, { 3914, 338, -1 }, { 3915, 338, -1 }, { 3916, 338, -1 }, { 3917, 338, -1 }, { 3912, 342, -1 }, { 3913, 342, -1 }, { 3914, 342, -1 }, { 3915, 342, -1 }, { 3916, 342, -1 }, { 3917, 342, -1 }, { 3912, 344, -1 }, { 3913, 344, -1 }, { 3914, 344, -1 }, { 3915, 344, -1 }, { 3916, 344, -1 }, { 3917, 344, -1 }, { 3912, 345, -1 }, { 3913, 345, -1 }, { 3914, 345, -1 }, { 3915, 345, -1 }, { 3916, 345, -1 }, { 3917, 345, -1 }, { 3912, 343, -1 }, { 3913, 343, -1 }, { 3914, 343, -1 }, { 3915, 343, -1 }, { 3916, 343, -1 }, { 3917, 343, -1 }, { 3912, 346, -1 }, { 3913, 346, -1 }, { 3914, 346, -1 }, { 3915, 346, -1 }, { 3916, 346, -1 }, { 3917, 346, -1 }, { 3912, 315, -1 }, { 3913, 315, -1 }, { 3914, 315, -1 }, { 3915, 315, -1 }, { 3916, 315, -1 }, { 3917, 315, -1 }, { 3912, 316, -1 }, { 3913, 316, -1 }, { 3914, 316, -1 }, { 3915, 316, -1 }, { 3916, 316, -1 }, { 3917, 316, -1 }, { 3912, 317, -1 }, { 3913, 317, -1 }, { 3914, 317, -1 }, { 3915, 317, -1 }, { 3916, 317, -1 }, { 3917, 317, -1 }, { 3912, 43, -1 }, { 3913, 43, -1 }, { 3914, 43, -1 }, { 3915, 43, -1 }, { 3916, 43, -1 }, { 3917, 43, -1 }, { 3912, 300, -1 }, { 3913, 300, -1 }, { 3914, 300, -1 }, { 3915, 300, -1 }, { 3916, 300, -1 }, { 3917, 300, -1 }, { 3912, 35, -1 }, { 3913, 35, -1 }, { 3914, 35, -1 }, { 3915, 35, -1 }, { 3916, 35, -1 }, { 3917, 35, -1 }, { 3912, 476, -1 }, { 3913, 476, -1 }, { 3914, 476, -1 }, { 3915, 476, -1 }, { 3916, 476, -1 }, { 3917, 476, -1 }, { 3912, 275, -1 }, { 3913, 275, -1 }, { 3914, 275, -1 }, { 3915, 275, -1 }, { 3916, 275, -1 }, { 3917, 275, -1 }, { 3912, 280, -1 }, { 3913, 280, -1 }, { 3914, 280, -1 }, { 3915, 280, -1 }, { 3916, 280, -1 }, { 3917, 280, -1 }, { 3912, 291, -1 }, { 3913, 291, -1 }, { 3914, 291, -1 }, { 3915, 291, -1 }, { 3916, 291, -1 }, { 3917, 291, -1 }, { 3912, 290, -1 }, { 3913, 290, -1 }, { 3914, 290, -1 }, { 3915, 290, -1 }, { 3916, 290, -1 }, { 3917, 290, -1 }, { 3912, 262, -1 }, { 3913, 262, -1 }, { 3914, 262, -1 }, { 3915, 262, -1 }, { 3916, 262, -1 }, { 3917, 262, -1 }, { 3912, 264, -1 }, { 3913, 264, -1 }, { 3914, 264, -1 }, { 3915, 264, -1 }, { 3916, 264, -1 }, { 3917, 264, -1 }, { 3912, 18, -1 }, { 3913, 18, -1 }, { 3914, 18, -1 }, { 3915, 18, -1 }, { 3916, 18, -1 }, { 3917, 18, -1 }, { 3912, 426, -1 }, { 3913, 426, -1 }, { 3914, 426, -1 }, { 3915, 426, -1 }, { 3916, 426, -1 }, { 3917, 426, -1 }, { 3912, 19, -1 }, { 3913, 19, -1 }, { 3914, 19, -1 }, { 3915, 19, -1 }, { 3916, 19, -1 }, { 3917, 19, -1 }, { 3912, 57, -1 }, { 3913, 57, -1 }, { 3914, 57, -1 }, { 3915, 57, -1 }, { 3916, 57, -1 }, { 3917, 57, -1 }, { 3912, 447, -1 }, { 3913, 447, -1 }, { 3914, 447, -1 }, { 3915, 447, -1 }, { 3916, 447, -1 }, { 3917, 447, -1 }, { 3912, 453, -1 }, { 3913, 453, -1 }, { 3914, 453, -1 }, { 3915, 453, -1 }, { 3916, 453, -1 }, { 3917, 453, -1 }, { 3912, 161, -1 }, { 3913, 161, -1 }, { 3914, 161, -1 }, { 3915, 161, -1 }, { 3916, 161, -1 }, { 3917, 161, -1 }, { 3912, 68, -1 }, { 3913, 68, -1 }, { 3914, 68, -1 }, { 3915, 68, -1 }, { 3916, 68, -1 }, { 3917, 68, -1 }, { 3912, 62, -1 }, { 3913, 62, -1 }, { 3914, 62, -1 }, { 3915, 62, -1 }, { 3916, 62, -1 }, { 3917, 62, -1 }, { 3912, 263, -1 }, { 3913, 263, -1 }, { 3914, 263, -1 }, { 3915, 263, -1 }, { 3916, 263, -1 }, { 3917, 263, -1 }, { 3912, 20, -1 }, { 3913, 20, -1 }, { 3914, 20, -1 }, { 3915, 20, -1 }, { 3916, 20, -1 }, { 3917, 20, -1 }, { 3912, 21, -1 }, { 3913, 21, -1 }, { 3914, 21, -1 }, { 3915, 21, -1 }, { 3916, 21, -1 }, { 3917, 21, -1 }, { 3912, 22, -1 }, { 3913, 22, -1 }, { 3914, 22, -1 }, { 3915, 22, -1 }, { 3916, 22, -1 }, { 3917, 22, -1 }, { 3912, 820, -1 }, { 3913, 820, -1 }, { 3914, 820, -1 }, { 3915, 820, -1 }, { 3916, 820, -1 }, { 3917, 820, -1 }, { 3912, 601, -1 }, { 3913, 601, -1 }, { 3914, 601, -1 }, { 3915, 601, -1 }, { 3916, 601, -1 }, { 3917, 601, -1 }, { 3912, 589, -1 }, { 3913, 589, -1 }, { 3914, 589, -1 }, { 3915, 589, -1 }, { 3916, 589, -1 }, { 3917, 589, -1 }, { 3912, 588, -1 }, { 3913, 588, -1 }, { 3914, 588, -1 }, { 3915, 588, -1 }, { 3916, 588, -1 }, { 3917, 588, -1 }, { 3912, 620, -1 }, { 3913, 620, -1 }, { 3914, 620, -1 }, { 3915, 620, -1 }, { 3916, 620, -1 }, { 3917, 620, -1 }, { 3912, 629, -1 }, { 3913, 629, -1 }, { 3914, 629, -1 }, { 3915, 629, -1 }, { 3916, 629, -1 }, { 3917, 629, -1 }, { 3912, 626, -1 }, { 3913, 626, -1 }, { 3914, 626, -1 }, { 3915, 626, -1 }, { 3916, 626, -1 }, { 3917, 626, -1 }, { 3912, 534, -1 }, { 3913, 534, -1 }, { 3914, 534, -1 }, { 3915, 534, -1 }, { 3916, 534, -1 }, { 3917, 534, -1 }, { 3912, 515, -1 }, { 3913, 515, -1 }, { 3914, 515, -1 }, { 3915, 515, -1 }, { 3916, 515, -1 }, { 3917, 515, -1 }, { 3912, 574, -1 }, { 3913, 574, -1 }, { 3914, 574, -1 }, { 3915, 574, -1 }, { 3916, 574, -1 }, { 3917, 574, -1 }, { 3912, 560, -1 }, { 3913, 560, -1 }, { 3914, 560, -1 }, { 3915, 560, -1 }, { 3916, 560, -1 }, { 3917, 560, -1 }, { 3912, 520, -1 }, { 3913, 520, -1 }, { 3914, 520, -1 }, { 3915, 520, -1 }, { 3916, 520, -1 }, { 3917, 520, -1 }, { 3912, 533, -1 }, { 3913, 533, -1 }, { 3914, 533, -1 }, { 3915, 533, -1 }, { 3916, 533, -1 }, { 3917, 533, -1 }, { 3912, 532, -1 }, { 3913, 532, -1 }, { 3914, 532, -1 }, { 3915, 532, -1 }, { 3916, 532, -1 }, { 3917, 532, -1 }, { 3912, 531, -1 }, { 3913, 531, -1 }, { 3914, 531, -1 }, { 3915, 531, -1 }, { 3916, 531, -1 }, { 3917, 531, -1 }, { 3912, 537, -1 }, { 3913, 537, -1 }, { 3914, 537, -1 }, { 3915, 537, -1 }, { 3916, 537, -1 }, { 3917, 537, -1 }, { 3912, 536, -1 }, { 3913, 536, -1 }, { 3914, 536, -1 }, { 3915, 536, -1 }, { 3916, 536, -1 }, { 3917, 536, -1 }, { 3912, 535, -1 }, { 3913, 535, -1 }, { 3914, 535, -1 }, { 3915, 535, -1 }, { 3916, 535, -1 }, { 3917, 535, -1 }, { 3912, 538, -1 }, { 3913, 538, -1 }, { 3914, 538, -1 }, { 3915, 538, -1 }, { 3916, 538, -1 }, { 3917, 538, -1 }, { 3912, 504, -1 }, { 3913, 504, -1 }, { 3914, 504, -1 }, { 3915, 504, -1 }, { 3916, 504, -1 }, { 3917, 504, -1 }, { 3912, 1916, -1 }, { 3913, 1916, -1 }, { 3914, 1916, -1 }, { 3915, 1916, -1 }, { 3916, 1916, -1 }, { 3917, 1916, -1 }, { 3912, 1491, -1 }, { 3913, 1491, -1 }, { 3914, 1491, -1 }, { 3915, 1491, -1 }, { 3916, 1491, -1 }, { 3917, 1491, -1 }, { 3912, 784, -1 }, { 3913, 784, -1 }, { 3914, 784, -1 }, { 3915, 784, -1 }, { 3916, 784, -1 }, { 3917, 784, -1 }, { 3912, 785, -1 }, { 3913, 785, -1 }, { 3914, 785, -1 }, { 3915, 785, -1 }, { 3916, 785, -1 }, { 3917, 785, -1 }, { 3912, 834, -1 }, { 3913, 834, -1 }, { 3914, 834, -1 }, { 3915, 834, -1 }, { 3916, 834, -1 }, { 3917, 834, -1 }, { 3912, 831, -1 }, { 3913, 831, -1 }, { 3914, 831, -1 }, { 3915, 831, -1 }, { 3916, 831, -1 }, { 3917, 831, -1 }, { 3912, 1377, -1 }, { 3913, 1377, -1 }, { 3914, 1377, -1 }, { 3915, 1377, -1 }, { 3916, 1377, -1 }, { 3917, 1377, -1 }, { 3912, 776, -1 }, { 3913, 776, -1 }, { 3914, 776, -1 }, { 3915, 776, -1 }, { 3916, 776, -1 }, { 3917, 776, -1 }, { 3912, 775, -1 }, { 3913, 775, -1 }, { 3914, 775, -1 }, { 3915, 775, -1 }, { 3916, 775, -1 }, { 3917, 775, -1 }, { 3912, 1501, -1 }, { 3913, 1501, -1 }, { 3914, 1501, -1 }, { 3915, 1501, -1 }, { 3916, 1501, -1 }, { 3917, 1501, -1 }, { 3912, 782, -1 }, { 3913, 782, -1 }, { 3914, 782, -1 }, { 3915, 782, -1 }, { 3916, 782, -1 }, { 3917, 782, -1 }, { 3912, 1739, -1 }, { 3913, 1739, -1 }, { 3914, 1739, -1 }, { 3915, 1739, -1 }, { 3916, 1739, -1 }, { 3917, 1739, -1 }, { 3912, 786, -1 }, { 3913, 786, -1 }, { 3914, 786, -1 }, { 3915, 786, -1 }, { 3916, 786, -1 }, { 3917, 786, -1 }, { 3912, 1294, -1 }, { 3913, 1294, -1 }, { 3914, 1294, -1 }, { 3915, 1294, -1 }, { 3916, 1294, -1 }, { 3917, 1294, -1 }, { 3912, 1314, -1 }, { 3913, 1314, -1 }, { 3914, 1314, -1 }, { 3915, 1314, -1 }, { 3916, 1314, -1 }, { 3917, 1314, -1 }, { 3912, 1316, -1 }, { 3913, 1316, -1 }, { 3914, 1316, -1 }, { 3915, 1316, -1 }, { 3916, 1316, -1 }, { 3917, 1316, -1 }, { 3912, 1342, -1 }, { 3913, 1342, -1 }, { 3914, 1342, -1 }, { 3915, 1342, -1 }, { 3916, 1342, -1 }, { 3917, 1342, -1 }, { 3912, 1361, -1 }, { 3913, 1361, -1 }, { 3914, 1361, -1 }, { 3915, 1361, -1 }, { 3916, 1361, -1 }, { 3917, 1361, -1 }, { 3912, 1299, -1 }, { 3913, 1299, -1 }, { 3914, 1299, -1 }, { 3915, 1299, -1 }, { 3916, 1299, -1 }, { 3917, 1299, -1 }, { 3912, 1348, -1 }, { 3913, 1348, -1 }, { 3914, 1348, -1 }, { 3915, 1348, -1 }, { 3916, 1348, -1 }, { 3917, 1348, -1 }, { 3912, 1354, -1 }, { 3913, 1354, -1 }, { 3914, 1354, -1 }, { 3915, 1354, -1 }, { 3916, 1354, -1 }, { 3917, 1354, -1 }, { 3912, 1356, -1 }, { 3913, 1356, -1 }, { 3914, 1356, -1 }, { 3915, 1356, -1 }, { 3916, 1356, -1 }, { 3917, 1356, -1 }, { 3912, 1308, -1 }, { 3913, 1308, -1 }, { 3914, 1308, -1 }, { 3915, 1308, -1 }, { 3916, 1308, -1 }, { 3917, 1308, -1 }, { 3912, 1317, -1 }, { 3913, 1317, -1 }, { 3914, 1317, -1 }, { 3915, 1317, -1 }, { 3916, 1317, -1 }, { 3917, 1317, -1 }, { 3912, 1315, -1 }, { 3913, 1315, -1 }, { 3914, 1315, -1 }, { 3915, 1315, -1 }, { 3916, 1315, -1 }, { 3917, 1315, -1 }, { 3912, 1351, -1 }, { 3913, 1351, -1 }, { 3914, 1351, -1 }, { 3915, 1351, -1 }, { 3916, 1351, -1 }, { 3917, 1351, -1 }, { 3912, 907, -1 }, { 3913, 907, -1 }, { 3914, 907, -1 }, { 3915, 907, -1 }, { 3916, 907, -1 }, { 3917, 907, -1 }, { 3912, 890, -1 }, { 3913, 890, -1 }, { 3914, 890, -1 }, { 3915, 890, -1 }, { 3916, 890, -1 }, { 3917, 890, -1 }, { 3912, 780, -1 }, { 3913, 780, -1 }, { 3914, 780, -1 }, { 3915, 780, -1 }, { 3916, 780, -1 }, { 3917, 780, -1 }, { 3912, 802, -1 }, { 3913, 802, -1 }, { 3914, 802, -1 }, { 3915, 802, -1 }, { 3916, 802, -1 }, { 3917, 802, -1 }, { 3912, 1751, -1 }, { 3913, 1751, -1 }, { 3914, 1751, -1 }, { 3915, 1751, -1 }, { 3916, 1751, -1 }, { 3917, 1751, -1 }, { 3912, 1756, -1 }, { 3913, 1756, -1 }, { 3914, 1756, -1 }, { 3915, 1756, -1 }, { 3916, 1756, -1 }, { 3917, 1756, -1 }, { 3912, 832, -1 }, { 3913, 832, -1 }, { 3914, 832, -1 }, { 3915, 832, -1 }, { 3916, 832, -1 }, { 3917, 832, -1 }, { 3912, 829, -1 }, { 3913, 829, -1 }, { 3914, 829, -1 }, { 3915, 829, -1 }, { 3916, 829, -1 }, { 3917, 829, -1 }, { 3912, 943, -1 }, { 3913, 943, -1 }, { 3914, 943, -1 }, { 3915, 943, -1 }, { 3916, 943, -1 }, { 3917, 943, -1 }, { 3912, 798, -1 }, { 3913, 798, -1 }, { 3914, 798, -1 }, { 3915, 798, -1 }, { 3916, 798, -1 }, { 3917, 798, -1 }, { 3912, 787, -1 }, { 3913, 787, -1 }, { 3914, 787, -1 }, { 3915, 787, -1 }, { 3916, 787, -1 }, { 3917, 787, -1 }, { 3912, 885, -1 }, { 3913, 885, -1 }, { 3914, 885, -1 }, { 3915, 885, -1 }, { 3916, 885, -1 }, { 3917, 885, -1 }, { 3912, 781, -1 }, { 3913, 781, -1 }, { 3914, 781, -1 }, { 3915, 781, -1 }, { 3916, 781, -1 }, { 3917, 781, -1 }, { 3912, 1449, -1 }, { 3913, 1449, -1 }, { 3914, 1449, -1 }, { 3915, 1449, -1 }, { 3916, 1449, -1 }, { 3917, 1449, -1 }, { 3912, 1467, -1 }, { 3913, 1467, -1 }, { 3914, 1467, -1 }, { 3915, 1467, -1 }, { 3916, 1467, -1 }, { 3917, 1467, -1 }, { 3912, 1413, -1 }, { 3913, 1413, -1 }, { 3914, 1413, -1 }, { 3915, 1413, -1 }, { 3916, 1413, -1 }, { 3917, 1413, -1 }, { 3912, 1468, -1 }, { 3913, 1468, -1 }, { 3914, 1468, -1 }, { 3915, 1468, -1 }, { 3916, 1468, -1 }, { 3917, 1468, -1 }, { 3912, 1445, -1 }, { 3913, 1445, -1 }, { 3914, 1445, -1 }, { 3915, 1445, -1 }, { 3916, 1445, -1 }, { 3917, 1445, -1 }, { 3912, 1444, -1 }, { 3913, 1444, -1 }, { 3914, 1444, -1 }, { 3915, 1444, -1 }, { 3916, 1444, -1 }, { 3917, 1444, -1 }, { 3912, 1450, -1 }, { 3913, 1450, -1 }, { 3914, 1450, -1 }, { 3915, 1450, -1 }, { 3916, 1450, -1 }, { 3917, 1450, -1 }, { 3912, 1446, -1 }, { 3913, 1446, -1 }, { 3914, 1446, -1 }, { 3915, 1446, -1 }, { 3916, 1446, -1 }, { 3917, 1446, -1 }, { 3912, 1448, -1 }, { 3913, 1448, -1 }, { 3914, 1448, -1 }, { 3915, 1448, -1 }, { 3916, 1448, -1 }, { 3917, 1448, -1 }, { 3912, 1447, -1 }, { 3913, 1447, -1 }, { 3914, 1447, -1 }, { 3915, 1447, -1 }, { 3916, 1447, -1 }, { 3917, 1447, -1 }, { 3912, 1456, -1 }, { 3913, 1456, -1 }, { 3914, 1456, -1 }, { 3915, 1456, -1 }, { 3916, 1456, -1 }, { 3917, 1456, -1 }, { 3912, 1458, -1 }, { 3913, 1458, -1 }, { 3914, 1458, -1 }, { 3915, 1458, -1 }, { 3916, 1458, -1 }, { 3917, 1458, -1 }, { 3912, 1460, -1 }, { 3913, 1460, -1 }, { 3914, 1460, -1 }, { 3915, 1460, -1 }, { 3916, 1460, -1 }, { 3917, 1460, -1 }, { 3912, 1463, -1 }, { 3913, 1463, -1 }, { 3914, 1463, -1 }, { 3915, 1463, -1 }, { 3916, 1463, -1 }, { 3917, 1463, -1 }, { 3912, 1461, -1 }, { 3913, 1461, -1 }, { 3914, 1461, -1 }, { 3915, 1461, -1 }, { 3916, 1461, -1 }, { 3917, 1461, -1 }, { 3912, 837, -1 }, { 3913, 837, -1 }, { 3914, 837, -1 }, { 3915, 837, -1 }, { 3916, 837, -1 }, { 3917, 837, -1 }, { 3912, 838, -1 }, { 3913, 838, -1 }, { 3914, 838, -1 }, { 3915, 838, -1 }, { 3916, 838, -1 }, { 3917, 838, -1 }, { 3912, 836, -1 }, { 3913, 836, -1 }, { 3914, 836, -1 }, { 3915, 836, -1 }, { 3916, 836, -1 }, { 3917, 836, -1 }, { 3912, 801, -1 }, { 3913, 801, -1 }, { 3914, 801, -1 }, { 3915, 801, -1 }, { 3916, 801, -1 }, { 3917, 801, -1 }, { 3912, 783, -1 }, { 3913, 783, -1 }, { 3914, 783, -1 }, { 3915, 783, -1 }, { 3916, 783, -1 }, { 3917, 783, -1 }, { 3912, 778, -1 }, { 3913, 778, -1 }, { 3914, 778, -1 }, { 3915, 778, -1 }, { 3916, 778, -1 }, { 3917, 778, -1 }, { 3912, 779, -1 }, { 3913, 779, -1 }, { 3914, 779, -1 }, { 3915, 779, -1 }, { 3916, 779, -1 }, { 3917, 779, -1 }, { 3912, 818, -1 }, { 3913, 818, -1 }, { 3914, 818, -1 }, { 3915, 818, -1 }, { 3916, 818, -1 }, { 3917, 818, -1 }, { 3912, 793, -1 }, { 3913, 793, -1 }, { 3914, 793, -1 }, { 3915, 793, -1 }, { 3916, 793, -1 }, { 3917, 793, -1 }, { 3912, 942, -1 }, { 3913, 942, -1 }, { 3914, 942, -1 }, { 3915, 942, -1 }, { 3916, 942, -1 }, { 3917, 942, -1 }, { 3912, 1911, -1 }, { 3913, 1911, -1 }, { 3914, 1911, -1 }, { 3915, 1911, -1 }, { 3916, 1911, -1 }, { 3917, 1911, -1 }, { 3912, 1661, -1 }, { 3913, 1661, -1 }, { 3914, 1661, -1 }, { 3915, 1661, -1 }, { 3916, 1661, -1 }, { 3917, 1661, -1 }, { 3912, 1532, -1 }, { 3913, 1532, -1 }, { 3914, 1532, -1 }, { 3915, 1532, -1 }, { 3916, 1532, -1 }, { 3917, 1532, -1 }, { 3912, 1502, -1 }, { 3913, 1502, -1 }, { 3914, 1502, -1 }, { 3915, 1502, -1 }, { 3916, 1502, -1 }, { 3917, 1502, -1 }, { 3912, 1522, -1 }, { 3913, 1522, -1 }, { 3914, 1522, -1 }, { 3915, 1522, -1 }, { 3916, 1522, -1 }, { 3917, 1522, -1 }, { 3912, 1505, -1 }, { 3913, 1505, -1 }, { 3914, 1505, -1 }, { 3915, 1505, -1 }, { 3916, 1505, -1 }, { 3917, 1505, -1 }, { 3912, 1509, -1 }, { 3913, 1509, -1 }, { 3914, 1509, -1 }, { 3915, 1509, -1 }, { 3916, 1509, -1 }, { 3917, 1509, -1 }, { 3912, 1527, -1 }, { 3913, 1527, -1 }, { 3914, 1527, -1 }, { 3915, 1527, -1 }, { 3916, 1527, -1 }, { 3917, 1527, -1 }, { 3912, 1572, -1 }, { 3913, 1572, -1 }, { 3914, 1572, -1 }, { 3915, 1572, -1 }, { 3916, 1572, -1 }, { 3917, 1572, -1 }, { 3912, 1534, -1 }, { 3913, 1534, -1 }, { 3914, 1534, -1 }, { 3915, 1534, -1 }, { 3916, 1534, -1 }, { 3917, 1534, -1 }, { 3912, 1513, -1 }, { 3913, 1513, -1 }, { 3914, 1513, -1 }, { 3915, 1513, -1 }, { 3916, 1513, -1 }, { 3917, 1513, -1 }, { 3912, 1556, -1 }, { 3913, 1556, -1 }, { 3914, 1556, -1 }, { 3915, 1556, -1 }, { 3916, 1556, -1 }, { 3917, 1556, -1 }, { 3912, 1554, -1 }, { 3913, 1554, -1 }, { 3914, 1554, -1 }, { 3915, 1554, -1 }, { 3916, 1554, -1 }, { 3917, 1554, -1 }, { 3912, 1555, -1 }, { 3913, 1555, -1 }, { 3914, 1555, -1 }, { 3915, 1555, -1 }, { 3916, 1555, -1 }, { 3917, 1555, -1 }, { 3912, 1521, -1 }, { 3913, 1521, -1 }, { 3914, 1521, -1 }, { 3915, 1521, -1 }, { 3916, 1521, -1 }, { 3917, 1521, -1 }, { 3912, 1600, -1 }, { 3913, 1600, -1 }, { 3914, 1600, -1 }, { 3915, 1600, -1 }, { 3916, 1600, -1 }, { 3917, 1600, -1 }, { 3912, 1549, -1 }, { 3913, 1549, -1 }, { 3914, 1549, -1 }, { 3915, 1549, -1 }, { 3916, 1549, -1 }, { 3917, 1549, -1 }, { 3912, 1536, -1 }, { 3913, 1536, -1 }, { 3914, 1536, -1 }, { 3915, 1536, -1 }, { 3916, 1536, -1 }, { 3917, 1536, -1 }, { 3912, 1602, -1 }, { 3913, 1602, -1 }, { 3914, 1602, -1 }, { 3915, 1602, -1 }, { 3916, 1602, -1 }, { 3917, 1602, -1 }, { 3912, 1603, -1 }, { 3913, 1603, -1 }, { 3914, 1603, -1 }, { 3915, 1603, -1 }, { 3916, 1603, -1 }, { 3917, 1603, -1 }, { 3912, 1483, -1 }, { 3913, 1483, -1 }, { 3914, 1483, -1 }, { 3915, 1483, -1 }, { 3916, 1483, -1 }, { 3917, 1483, -1 }, { 3912, 1609, -1 }, { 3913, 1609, -1 }, { 3914, 1609, -1 }, { 3915, 1609, -1 }, { 3916, 1609, -1 }, { 3917, 1609, -1 }, { 3912, 1146, -1 }, { 3913, 1146, -1 }, { 3914, 1146, -1 }, { 3915, 1146, -1 }, { 3916, 1146, -1 }, { 3917, 1146, -1 }, { 3912, 1147, -1 }, { 3913, 1147, -1 }, { 3914, 1147, -1 }, { 3915, 1147, -1 }, { 3916, 1147, -1 }, { 3917, 1147, -1 }, { 3912, 1148, -1 }, { 3913, 1148, -1 }, { 3914, 1148, -1 }, { 3915, 1148, -1 }, { 3916, 1148, -1 }, { 3917, 1148, -1 }, { 16248, 1716, -1 }, { 16249, 1716, -1 }, { 16250, 1716, -1 }, { 16251, 1716, -1 }, { 16252, 1716, -1 }, { 16253, 1716, -1 }, { 16248, 19, -1 }, { 16252, 19, -1 }, { 16253, 19, -1 }, { 16248, 1916, -1 }, { 16249, 1916, -1 }, { 16250, 1916, -1 }, { 16251, 1916, -1 }, { 16252, 1916, -1 }, { 16253, 1916, -1 }, { 16248, 1294, -1 }, { 16249, 1294, -1 }, { 16250, 1294, -1 }, { 16251, 1294, -1 }, { 16252, 1294, -1 }, { 16253, 1294, -1 }, { 16248, 801, -1 }, { 16249, 801, -1 }, { 16250, 801, -1 }, { 16251, 801, -1 }, { 16252, 801, -1 }, { 16253, 801, -1 }, { 16248, 1911, -1 }, { 16249, 1911, -1 }, { 16250, 1911, -1 }, { 16251, 1911, -1 }, { 16252, 1911, -1 }, { 16253, 1911, -1 }, { 16234, 1716, -1 }, { 16236, 1716, -1 }, { 16237, 1716, -1 }, { 16238, 1716, -1 }, { 16239, 1716, -1 }, { 16241, 1716, -1 }, { 16242, 1716, -1 }, { 16243, 1716, -1 }, { 16245, 1716, -1 }, { 16246, 1716, -1 }, { 16247, 1716, -1 }, { 16234, 19, -1 }, { 16236, 19, -1 }, { 16237, 19, -1 }, { 16238, 19, -1 }, { 16239, 19, -1 }, { 16242, 19, -1 }, { 16243, 19, -1 }, { 16245, 19, -1 }, { 16246, 19, -1 }, { 16247, 19, -1 }, { 16234, 1916, -1 }, { 16236, 1916, -1 }, { 16237, 1916, -1 }, { 16238, 1916, -1 }, { 16239, 1916, -1 }, { 16241, 1916, -1 }, { 16242, 1916, -1 }, { 16243, 1916, -1 }, { 16245, 1916, -1 }, { 16246, 1916, -1 }, { 16247, 1916, -1 }, { 16234, 1294, -1 }, { 16236, 1294, -1 }, { 16237, 1294, -1 }, { 16239, 1294, -1 }, { 16241, 1294, -1 }, { 16242, 1294, -1 }, { 16243, 1294, -1 }, { 16245, 1294, -1 }, { 16246, 1294, -1 }, { 16247, 1294, -1 }, { 16233, 801, -1 }, { 16236, 801, -1 }, { 16237, 801, -1 }, { 16238, 801, -1 }, { 16239, 801, -1 }, { 16241, 801, -1 }, { 16242, 801, -1 }, { 16243, 801, -1 }, { 16245, 801, -1 }, { 16246, 801, -1 }, { 16247, 801, -1 }, { 16234, 1911, -1 }, { 16236, 1911, -1 }, { 16237, 1911, -1 }, { 16239, 1911, -1 }, { 16241, 1911, -1 }, { 16242, 1911, -1 }, { 16243, 1911, -1 }, { 16245, 1911, -1 }, { 16246, 1911, -1 }, { 16247, 1911, -1 }, { 16353, 97, -1 }, { 16354, 97, -1 }, { 16355, 97, -1 }, { 16356, 97, -1 }, { 16292, 97, -1 }, { 16293, 97, -1 }, { 16294, 97, -1 }, { 16295, 97, -1 }, { 16296, 97, -1 }, { 16297, 97, -1 }, { 16298, 97, -1 }, { 16299, 97, -1 }, { 16300, 97, -1 }, { 16301, 97, -1 }, { 16302, 97, -1 }, { 16322, 97, -1 }, { 16323, 97, -1 }, { 16324, 97, -1 }, { 16325, 97, -1 }, { 16326, 97, -1 }, { 16316, 97, -1 }, { 16317, 97, -1 }, { 16318, 97, -1 }, { 16319, 97, -1 }, { 16320, 97, -1 }, { 16321, 97, -1 }, { 16303, 97, -1 }, { 16304, 97, -1 }, { 16305, 97, -1 }, { 16306, 97, -1 }, { 16307, 97, -1 }, { 16308, 97, -1 }, { 16309, 97, -1 }, { 16310, 97, -1 }, { 16311, 97, -1 }, { 16312, 97, -1 }, { 16313, 97, -1 }, { 16314, 97, -1 }, { 16315, 97, -1 }, { 16351, 97, -1 }, { 16352, 97, -1 }, { 16346, 97, -1 }, { 16347, 97, -1 }, { 16348, 97, -1 }, { 16349, 97, -1 }, { 16350, 97, -1 }, { 16340, 97, -1 }, { 16341, 97, -1 }, { 16342, 97, -1 }, { 16343, 97, -1 }, { 16344, 97, -1 }, { 16345, 97, -1 }, { 16327, 97, -1 }, { 16328, 97, -1 }, { 16329, 97, -1 }, { 16330, 97, -1 }, { 16331, 97, -1 }, { 16332, 97, -1 }, { 16333, 97, -1 }, { 16334, 97, -1 }, { 16335, 97, -1 }, { 16336, 97, -1 }, { 16337, 97, -1 }, { 16338, 97, -1 }, { 16339, 97, -1 }, { 16254, 97, -1 }, { 16255, 97, -1 }, { 16256, 97, -1 }, { 16257, 97, -1 }, { 16258, 97, -1 }, { 16259, 97, -1 }, { 16260, 97, -1 }, { 16261, 97, -1 }, { 16262, 97, -1 }, { 16263, 97, -1 }, { 16264, 97, -1 }, { 16265, 97, -1 }, { 16266, 97, -1 }, { 16267, 97, -1 }, { 16268, 97, -1 }, { 16269, 97, -1 }, { 16270, 97, -1 }, { 16271, 97, -1 }, { 16272, 97, -1 }, { 16273, 97, -1 }, { 16274, 97, -1 }, { 16275, 97, -1 }, { 16276, 97, -1 }, { 16277, 97, -1 }, { 16278, 97, -1 }, { 16279, 97, -1 }, { 16280, 97, -1 }, { 16281, 97, -1 }, { 16282, 97, -1 }, { 16283, 97, -1 }, { 16284, 97, -1 }, { 16285, 97, -1 }, { 16286, 97, -1 }, { 16287, 97, -1 }, { 16288, 97, -1 }, { 16289, 97, -1 }, { 16290, 97, -1 }, { 16291, 97, -1 }, { 16430, 98, -1 }, { 16431, 98, -1 }, { 16430, 10, -1 }, { 16431, 10, -1 }, { 16432, 98, -1 }, { 16433, 98, -1 }, { 16432, 10, -1 }, { 16433, 10, -1 }, { 16434, 98, -1 }, { 16434, 10, -1 }, { 16415, 98, -1 }, { 16416, 98, -1 }, { 16417, 98, -1 }, { 16418, 98, -1 }, { 16419, 98, -1 }, { 16420, 98, -1 }, { 16421, 98, -1 }, { 16422, 98, -1 }, { 16423, 98, -1 }, { 16424, 98, -1 }, { 16425, 98, -1 }, { 16426, 98, -1 }, { 16427, 98, -1 }, { 16428, 98, -1 }, { 16429, 98, -1 }, { 16415, 10, -1 }, { 16416, 10, -1 }, { 16417, 10, -1 }, { 16418, 10, -1 }, { 16419, 10, -1 }, { 16420, 10, -1 }, { 16421, 10, -1 }, { 16422, 10, -1 }, { 16423, 10, -1 }, { 16424, 10, -1 }, { 16425, 10, -1 }, { 16426, 10, -1 }, { 16427, 10, -1 }, { 16428, 10, -1 }, { 16429, 10, -1 }, { 16413, 98, -1 }, { 16414, 98, -1 }, { 16413, 10, -1 }, { 16414, 10, -1 }, { 16365, 98, -1 }, { 16366, 98, -1 }, { 16367, 98, -1 }, { 16368, 98, -1 }, { 16369, 98, -1 }, { 16370, 98, -1 }, { 16371, 98, -1 }, { 16372, 98, -1 }, { 16373, 98, -1 }, { 16374, 98, -1 }, { 16375, 98, -1 }, { 16376, 98, -1 }, { 16377, 98, -1 }, { 16378, 98, -1 }, { 16379, 98, -1 }, { 16380, 98, -1 }, { 16381, 98, -1 }, { 16382, 98, -1 }, { 16383, 98, -1 }, { 16384, 98, -1 }, { 16385, 98, -1 }, { 16386, 98, -1 }, { 16387, 98, -1 }, { 16388, 98, -1 }, { 16389, 98, -1 }, { 16390, 98, -1 }, { 16391, 98, -1 }, { 16392, 98, -1 }, { 16393, 98, -1 }, { 16394, 98, -1 }, { 16395, 98, -1 }, { 16396, 98, -1 }, { 16397, 98, -1 }, { 16398, 98, -1 }, { 16399, 98, -1 }, { 16400, 98, -1 }, { 16401, 98, -1 }, { 16402, 98, -1 }, { 16403, 98, -1 }, { 16404, 98, -1 }, { 16405, 98, -1 }, { 16406, 98, -1 }, { 16407, 98, -1 }, { 16408, 98, -1 }, { 16409, 98, -1 }, { 16410, 98, -1 }, { 16411, 98, -1 }, { 16412, 98, -1 }, { 16365, 10, -1 }, { 16366, 10, -1 }, { 16367, 10, -1 }, { 16368, 10, -1 }, { 16369, 10, -1 }, { 16370, 10, -1 }, { 16371, 10, -1 }, { 16372, 10, -1 }, { 16373, 10, -1 }, { 16374, 10, -1 }, { 16375, 10, -1 }, { 16376, 10, -1 }, { 16377, 10, -1 }, { 16378, 10, -1 }, { 16379, 10, -1 }, { 16380, 10, -1 }, { 16381, 10, -1 }, { 16382, 10, -1 }, { 16383, 10, -1 }, { 16384, 10, -1 }, { 16385, 10, -1 }, { 16386, 10, -1 }, { 16387, 10, -1 }, { 16388, 10, -1 }, { 16389, 10, -1 }, { 16390, 10, -1 }, { 16391, 10, -1 }, { 16392, 10, -1 }, { 16393, 10, -1 }, { 16394, 10, -1 }, { 16395, 10, -1 }, { 16396, 10, -1 }, { 16397, 10, -1 }, { 16398, 10, -1 }, { 16399, 10, -1 }, { 16400, 10, -1 }, { 16401, 10, -1 }, { 16402, 10, -1 }, { 16403, 10, -1 }, { 16404, 10, -1 }, { 16405, 10, -1 }, { 16406, 10, -1 }, { 16407, 10, -1 }, { 16408, 10, -1 }, { 16409, 10, -1 }, { 16410, 10, -1 }, { 16411, 10, -1 }, { 16412, 10, -1 }, { 16450, 11, -1 }, { 16451, 11, -1 }, { 16452, 11, -1 }, { 16453, 11, -1 }, { 16454, 11, -1 }, { 16455, 11, -1 }, { 16450, 588, -1 }, { 16451, 588, -1 }, { 16452, 588, -1 }, { 16453, 588, -1 }, { 16454, 588, -1 }, { 16455, 588, -1 }, { 16450, 1316, -1 }, { 16451, 1316, -1 }, { 16452, 1316, -1 }, { 16453, 1316, -1 }, { 16454, 1316, -1 }, { 16455, 1316, -1 }, { 16436, 11, -1 }, { 16438, 11, -1 }, { 16439, 11, -1 }, { 16440, 11, -1 }, { 16442, 11, -1 }, { 16443, 11, -1 }, { 16444, 11, -1 }, { 16445, 11, -1 }, { 16446, 11, -1 }, { 16449, 11, -1 }, { 16436, 588, -1 }, { 16438, 588, -1 }, { 16439, 588, -1 }, { 16440, 588, -1 }, { 16441, 588, -1 }, { 16442, 588, -1 }, { 16443, 588, -1 }, { 16444, 588, -1 }, { 16445, 588, -1 }, { 16446, 588, -1 }, { 16449, 588, -1 }, { 16436, 1316, -1 }, { 16438, 1316, -1 }, { 16439, 1316, -1 }, { 16440, 1316, -1 }, { 16441, 1316, -1 }, { 16442, 1316, -1 }, { 16443, 1316, -1 }, { 16444, 1316, -1 }, { 16445, 1316, -1 }, { 16446, 1316, -1 }, { 16449, 1316, -1 }, { 16357, 98, -1 }, { 16358, 98, -1 }, { 16359, 98, -1 }, { 16360, 98, -1 }, { 16357, 10, -1 }, { 16358, 10, -1 }, { 16359, 10, -1 }, { 16360, 10, -1 }, { 16361, 98, -1 }, { 16362, 98, -1 }, { 16363, 98, -1 }, { 16364, 98, -1 }, { 16361, 10, -1 }, { 16362, 10, -1 }, { 16363, 10, -1 }, { 16364, 10, -1 }, { 4097, 1737, -1 }, { 4098, 1737, -1 }, { 4099, 1737, -1 }, { 4100, 1737, -1 }, { 4101, 1737, -1 }, { 4102, 1737, -1 }, { 4103, 1737, -1 }, { 4104, 1737, -1 }, { 4105, 1737, -1 }, { 4106, 1737, -1 }, { 4107, 1737, -1 }, { 4108, 1737, -1 }, { 4109, 1737, -1 }, { 4110, 1737, -1 }, { 4111, 1737, -1 }, { 4112, 1737, -1 }, { 4113, 1737, -1 }, { 4114, 1737, -1 }, { 4115, 1737, -1 }, { 4116, 1737, -1 }, { 4117, 1737, -1 }, { 4118, 1737, -1 }, { 4119, 1737, -1 }, { 4120, 1737, -1 }, { 4121, 1737, -1 }, { 4122, 1737, -1 }, { 4123, 1737, -1 }, { 4124, 1737, -1 }, { 4125, 1737, -1 }, { 4126, 1737, -1 }, { 4127, 1737, -1 }, { 4097, 1868, -1 }, { 4098, 1868, -1 }, { 4099, 1868, -1 }, { 4100, 1868, -1 }, { 4101, 1868, -1 }, { 4102, 1868, -1 }, { 4103, 1868, -1 }, { 4104, 1868, -1 }, { 4105, 1868, -1 }, { 4106, 1868, -1 }, { 4107, 1868, -1 }, { 4108, 1868, -1 }, { 4109, 1868, -1 }, { 4110, 1868, -1 }, { 4111, 1868, -1 }, { 4112, 1868, -1 }, { 4113, 1868, -1 }, { 4114, 1868, -1 }, { 4115, 1868, -1 }, { 4116, 1868, -1 }, { 4117, 1868, -1 }, { 4118, 1868, -1 }, { 4119, 1868, -1 }, { 4120, 1868, -1 }, { 4121, 1868, -1 }, { 4122, 1868, -1 }, { 4123, 1868, -1 }, { 4124, 1868, -1 }, { 4125, 1868, -1 }, { 4126, 1868, -1 }, { 4127, 1868, -1 }, { 4097, 1984, -1 }, { 4098, 1984, -1 }, { 4099, 1984, -1 }, { 4100, 1984, -1 }, { 4101, 1984, -1 }, { 4102, 1984, -1 }, { 4103, 1984, -1 }, { 4104, 1984, -1 }, { 4105, 1984, -1 }, { 4106, 1984, -1 }, { 4107, 1984, -1 }, { 4108, 1984, -1 }, { 4109, 1984, -1 }, { 4110, 1984, -1 }, { 4111, 1984, -1 }, { 4112, 1984, -1 }, { 4113, 1984, -1 }, { 4114, 1984, -1 }, { 4115, 1984, -1 }, { 4116, 1984, -1 }, { 4117, 1984, -1 }, { 4118, 1984, -1 }, { 4119, 1984, -1 }, { 4120, 1984, -1 }, { 4121, 1984, -1 }, { 4122, 1984, -1 }, { 4123, 1984, -1 }, { 4124, 1984, -1 }, { 4125, 1984, -1 }, { 4126, 1984, -1 }, { 4127, 1984, -1 }, { 4097, 1831, -1 }, { 4098, 1831, -1 }, { 4099, 1831, -1 }, { 4100, 1831, -1 }, { 4101, 1831, -1 }, { 4102, 1831, -1 }, { 4103, 1831, -1 }, { 4104, 1831, -1 }, { 4105, 1831, -1 }, { 4106, 1831, -1 }, { 4107, 1831, -1 }, { 4108, 1831, -1 }, { 4109, 1831, -1 }, { 4110, 1831, -1 }, { 4111, 1831, -1 }, { 4112, 1831, -1 }, { 4113, 1831, -1 }, { 4114, 1831, -1 }, { 4115, 1831, -1 }, { 4116, 1831, -1 }, { 4117, 1831, -1 }, { 4118, 1831, -1 }, { 4119, 1831, -1 }, { 4120, 1831, -1 }, { 4121, 1831, -1 }, { 4122, 1831, -1 }, { 4123, 1831, -1 }, { 4124, 1831, -1 }, { 4125, 1831, -1 }, { 4126, 1831, -1 }, { 4127, 1831, -1 }, { 4097, 1914, -1 }, { 4098, 1914, -1 }, { 4099, 1914, -1 }, { 4100, 1914, -1 }, { 4101, 1914, -1 }, { 4102, 1914, -1 }, { 4103, 1914, -1 }, { 4104, 1914, -1 }, { 4105, 1914, -1 }, { 4106, 1914, -1 }, { 4107, 1914, -1 }, { 4108, 1914, -1 }, { 4109, 1914, -1 }, { 4110, 1914, -1 }, { 4111, 1914, -1 }, { 4112, 1914, -1 }, { 4113, 1914, -1 }, { 4114, 1914, -1 }, { 4115, 1914, -1 }, { 4116, 1914, -1 }, { 4117, 1914, -1 }, { 4118, 1914, -1 }, { 4119, 1914, -1 }, { 4120, 1914, -1 }, { 4121, 1914, -1 }, { 4122, 1914, -1 }, { 4123, 1914, -1 }, { 4124, 1914, -1 }, { 4125, 1914, -1 }, { 4126, 1914, -1 }, { 4127, 1914, -1 }, { 4100, 1794, -1 }, { 4101, 1794, -1 }, { 4103, 1794, -1 }, { 4104, 1794, -1 }, { 4105, 1794, -1 }, { 4106, 1794, -1 }, { 4107, 1794, -1 }, { 4108, 1794, -1 }, { 4109, 1794, -1 }, { 4110, 1794, -1 }, { 4111, 1794, -1 }, { 4112, 1794, -1 }, { 4113, 1794, -1 }, { 4114, 1794, -1 }, { 4115, 1794, -1 }, { 4116, 1794, -1 }, { 4117, 1794, -1 }, { 4118, 1794, -1 }, { 4119, 1794, -1 }, { 4120, 1794, -1 }, { 4121, 1794, -1 }, { 4122, 1794, -1 }, { 4123, 1794, -1 }, { 4124, 1794, -1 }, { 4125, 1794, -1 }, { 4126, 1794, -1 }, { 4127, 1794, -1 }, { 4097, 1803, -1 }, { 4098, 1803, -1 }, { 4099, 1803, -1 }, { 4100, 1803, -1 }, { 4101, 1803, -1 }, { 4102, 1803, -1 }, { 4103, 1803, -1 }, { 4104, 1803, -1 }, { 4105, 1803, -1 }, { 4106, 1803, -1 }, { 4107, 1803, -1 }, { 4108, 1803, -1 }, { 4109, 1803, -1 }, { 4110, 1803, -1 }, { 4111, 1803, -1 }, { 4112, 1803, -1 }, { 4113, 1803, -1 }, { 4114, 1803, -1 }, { 4115, 1803, -1 }, { 4116, 1803, -1 }, { 4117, 1803, -1 }, { 4118, 1803, -1 }, { 4119, 1803, -1 }, { 4120, 1803, -1 }, { 4121, 1803, -1 }, { 4122, 1803, -1 }, { 4123, 1803, -1 }, { 4124, 1803, -1 }, { 4125, 1803, -1 }, { 4126, 1803, -1 }, { 4127, 1803, -1 }, { 4097, 1804, -1 }, { 4098, 1804, -1 }, { 4099, 1804, -1 }, { 4100, 1804, -1 }, { 4101, 1804, -1 }, { 4102, 1804, -1 }, { 4103, 1804, -1 }, { 4104, 1804, -1 }, { 4105, 1804, -1 }, { 4106, 1804, -1 }, { 4107, 1804, -1 }, { 4108, 1804, -1 }, { 4109, 1804, -1 }, { 4110, 1804, -1 }, { 4111, 1804, -1 }, { 4112, 1804, -1 }, { 4113, 1804, -1 }, { 4114, 1804, -1 }, { 4115, 1804, -1 }, { 4116, 1804, -1 }, { 4117, 1804, -1 }, { 4118, 1804, -1 }, { 4119, 1804, -1 }, { 4120, 1804, -1 }, { 4121, 1804, -1 }, { 4122, 1804, -1 }, { 4123, 1804, -1 }, { 4124, 1804, -1 }, { 4125, 1804, -1 }, { 4126, 1804, -1 }, { 4127, 1804, -1 }, { 4097, 1850, -1 }, { 4098, 1850, -1 }, { 4099, 1850, -1 }, { 4100, 1850, -1 }, { 4101, 1850, -1 }, { 4102, 1850, -1 }, { 4103, 1850, -1 }, { 4104, 1850, -1 }, { 4105, 1850, -1 }, { 4106, 1850, -1 }, { 4107, 1850, -1 }, { 4108, 1850, -1 }, { 4109, 1850, -1 }, { 4110, 1850, -1 }, { 4111, 1850, -1 }, { 4112, 1850, -1 }, { 4113, 1850, -1 }, { 4114, 1850, -1 }, { 4115, 1850, -1 }, { 4116, 1850, -1 }, { 4117, 1850, -1 }, { 4118, 1850, -1 }, { 4119, 1850, -1 }, { 4120, 1850, -1 }, { 4121, 1850, -1 }, { 4122, 1850, -1 }, { 4123, 1850, -1 }, { 4124, 1850, -1 }, { 4125, 1850, -1 }, { 4126, 1850, -1 }, { 4127, 1850, -1 }, { 4097, 1852, -1 }, { 4098, 1852, -1 }, { 4099, 1852, -1 }, { 4100, 1852, -1 }, { 4101, 1852, -1 }, { 4102, 1852, -1 }, { 4103, 1852, -1 }, { 4104, 1852, -1 }, { 4105, 1852, -1 }, { 4106, 1852, -1 }, { 4107, 1852, -1 }, { 4108, 1852, -1 }, { 4109, 1852, -1 }, { 4110, 1852, -1 }, { 4111, 1852, -1 }, { 4112, 1852, -1 }, { 4113, 1852, -1 }, { 4114, 1852, -1 }, { 4115, 1852, -1 }, { 4116, 1852, -1 }, { 4117, 1852, -1 }, { 4118, 1852, -1 }, { 4119, 1852, -1 }, { 4120, 1852, -1 }, { 4121, 1852, -1 }, { 4122, 1852, -1 }, { 4123, 1852, -1 }, { 4124, 1852, -1 }, { 4125, 1852, -1 }, { 4126, 1852, -1 }, { 4127, 1852, -1 }, { 4097, 1881, -1 }, { 4098, 1881, -1 }, { 4099, 1881, -1 }, { 4100, 1881, -1 }, { 4101, 1881, -1 }, { 4102, 1881, -1 }, { 4103, 1881, -1 }, { 4104, 1881, -1 }, { 4105, 1881, -1 }, { 4106, 1881, -1 }, { 4107, 1881, -1 }, { 4108, 1881, -1 }, { 4109, 1881, -1 }, { 4110, 1881, -1 }, { 4111, 1881, -1 }, { 4112, 1881, -1 }, { 4113, 1881, -1 }, { 4114, 1881, -1 }, { 4115, 1881, -1 }, { 4116, 1881, -1 }, { 4117, 1881, -1 }, { 4118, 1881, -1 }, { 4119, 1881, -1 }, { 4120, 1881, -1 }, { 4121, 1881, -1 }, { 4122, 1881, -1 }, { 4123, 1881, -1 }, { 4124, 1881, -1 }, { 4125, 1881, -1 }, { 4126, 1881, -1 }, { 4127, 1881, -1 }, { 4097, 1682, -1 }, { 4098, 1682, -1 }, { 4099, 1682, -1 }, { 4100, 1682, -1 }, { 4101, 1682, -1 }, { 4102, 1682, -1 }, { 4103, 1682, -1 }, { 4104, 1682, -1 }, { 4105, 1682, -1 }, { 4106, 1682, -1 }, { 4107, 1682, -1 }, { 4108, 1682, -1 }, { 4109, 1682, -1 }, { 4110, 1682, -1 }, { 4111, 1682, -1 }, { 4112, 1682, -1 }, { 4113, 1682, -1 }, { 4114, 1682, -1 }, { 4115, 1682, -1 }, { 4116, 1682, -1 }, { 4117, 1682, -1 }, { 4118, 1682, -1 }, { 4119, 1682, -1 }, { 4120, 1682, -1 }, { 4121, 1682, -1 }, { 4122, 1682, -1 }, { 4123, 1682, -1 }, { 4124, 1682, -1 }, { 4125, 1682, -1 }, { 4126, 1682, -1 }, { 4127, 1682, -1 }, { 4097, 950, -1 }, { 4098, 950, -1 }, { 4099, 950, -1 }, { 4100, 950, -1 }, { 4101, 950, -1 }, { 4102, 950, -1 }, { 4103, 950, -1 }, { 4104, 950, -1 }, { 4105, 950, -1 }, { 4106, 950, -1 }, { 4107, 950, -1 }, { 4108, 950, -1 }, { 4109, 950, -1 }, { 4110, 950, -1 }, { 4111, 950, -1 }, { 4112, 950, -1 }, { 4113, 950, -1 }, { 4114, 950, -1 }, { 4115, 950, -1 }, { 4116, 950, -1 }, { 4117, 950, -1 }, { 4118, 950, -1 }, { 4119, 950, -1 }, { 4120, 950, -1 }, { 4121, 950, -1 }, { 4122, 950, -1 }, { 4123, 950, -1 }, { 4124, 950, -1 }, { 4125, 950, -1 }, { 4126, 950, -1 }, { 4127, 950, -1 }, { 4097, 63, -1 }, { 4098, 63, -1 }, { 4099, 63, -1 }, { 4100, 63, -1 }, { 4101, 63, -1 }, { 4102, 63, -1 }, { 4103, 63, -1 }, { 4104, 63, -1 }, { 4105, 63, -1 }, { 4106, 63, -1 }, { 4107, 63, -1 }, { 4108, 63, -1 }, { 4109, 63, -1 }, { 4110, 63, -1 }, { 4111, 63, -1 }, { 4112, 63, -1 }, { 4113, 63, -1 }, { 4114, 63, -1 }, { 4115, 63, -1 }, { 4116, 63, -1 }, { 4117, 63, -1 }, { 4118, 63, -1 }, { 4119, 63, -1 }, { 4120, 63, -1 }, { 4121, 63, -1 }, { 4122, 63, -1 }, { 4123, 63, -1 }, { 4124, 63, -1 }, { 4125, 63, -1 }, { 4126, 63, -1 }, { 4127, 63, -1 }, { 4097, 7, -1 }, { 4098, 7, -1 }, { 4099, 7, -1 }, { 4100, 7, -1 }, { 4101, 7, -1 }, { 4102, 7, -1 }, { 4103, 7, -1 }, { 4104, 7, -1 }, { 4105, 7, -1 }, { 4106, 7, -1 }, { 4107, 7, -1 }, { 4108, 7, -1 }, { 4109, 7, -1 }, { 4110, 7, -1 }, { 4111, 7, -1 }, { 4112, 7, -1 }, { 4113, 7, -1 }, { 4114, 7, -1 }, { 4115, 7, -1 }, { 4116, 7, -1 }, { 4117, 7, -1 }, { 4118, 7, -1 }, { 4119, 7, -1 }, { 4120, 7, -1 }, { 4121, 7, -1 }, { 4122, 7, -1 }, { 4123, 7, -1 }, { 4124, 7, -1 }, { 4125, 7, -1 }, { 4126, 7, -1 }, { 4127, 7, -1 }, { 4097, 13, -1 }, { 4098, 13, -1 }, { 4099, 13, -1 }, { 4100, 13, -1 }, { 4101, 13, -1 }, { 4102, 13, -1 }, { 4103, 13, -1 }, { 4104, 13, -1 }, { 4105, 13, -1 }, { 4106, 13, -1 }, { 4107, 13, -1 }, { 4108, 13, -1 }, { 4109, 13, -1 }, { 4110, 13, -1 }, { 4111, 13, -1 }, { 4112, 13, -1 }, { 4113, 13, -1 }, { 4114, 13, -1 }, { 4115, 13, -1 }, { 4116, 13, -1 }, { 4117, 13, -1 }, { 4118, 13, -1 }, { 4119, 13, -1 }, { 4120, 13, -1 }, { 4121, 13, -1 }, { 4122, 13, -1 }, { 4123, 13, -1 }, { 4124, 13, -1 }, { 4125, 13, -1 }, { 4126, 13, -1 }, { 4127, 13, -1 }, { 4097, 23, -1 }, { 4098, 23, -1 }, { 4099, 23, -1 }, { 4100, 23, -1 }, { 4101, 23, -1 }, { 4102, 23, -1 }, { 4103, 23, -1 }, { 4104, 23, -1 }, { 4105, 23, -1 }, { 4106, 23, -1 }, { 4107, 23, -1 }, { 4108, 23, -1 }, { 4109, 23, -1 }, { 4110, 23, -1 }, { 4111, 23, -1 }, { 4112, 23, -1 }, { 4113, 23, -1 }, { 4114, 23, -1 }, { 4115, 23, -1 }, { 4116, 23, -1 }, { 4117, 23, -1 }, { 4118, 23, -1 }, { 4119, 23, -1 }, { 4120, 23, -1 }, { 4121, 23, -1 }, { 4122, 23, -1 }, { 4123, 23, -1 }, { 4124, 23, -1 }, { 4125, 23, -1 }, { 4126, 23, -1 }, { 4127, 23, -1 }, { 4097, 98, -1 }, { 4098, 98, -1 }, { 4099, 98, -1 }, { 4100, 98, -1 }, { 4101, 98, -1 }, { 4102, 98, -1 }, { 4103, 98, -1 }, { 4104, 98, -1 }, { 4105, 98, -1 }, { 4106, 98, -1 }, { 4107, 98, -1 }, { 4108, 98, -1 }, { 4109, 98, -1 }, { 4110, 98, -1 }, { 4111, 98, -1 }, { 4112, 98, -1 }, { 4113, 98, -1 }, { 4114, 98, -1 }, { 4115, 98, -1 }, { 4116, 98, -1 }, { 4117, 98, -1 }, { 4118, 98, -1 }, { 4119, 98, -1 }, { 4120, 98, -1 }, { 4121, 98, -1 }, { 4122, 98, -1 }, { 4123, 98, -1 }, { 4124, 98, -1 }, { 4125, 98, -1 }, { 4126, 98, -1 }, { 4127, 98, -1 }, { 4097, 1330, -1 }, { 4098, 1330, -1 }, { 4099, 1330, -1 }, { 4100, 1330, -1 }, { 4101, 1330, -1 }, { 4102, 1330, -1 }, { 4103, 1330, -1 }, { 4104, 1330, -1 }, { 4105, 1330, -1 }, { 4106, 1330, -1 }, { 4107, 1330, -1 }, { 4108, 1330, -1 }, { 4109, 1330, -1 }, { 4110, 1330, -1 }, { 4111, 1330, -1 }, { 4112, 1330, -1 }, { 4113, 1330, -1 }, { 4114, 1330, -1 }, { 4115, 1330, -1 }, { 4116, 1330, -1 }, { 4117, 1330, -1 }, { 4118, 1330, -1 }, { 4119, 1330, -1 }, { 4120, 1330, -1 }, { 4121, 1330, -1 }, { 4122, 1330, -1 }, { 4123, 1330, -1 }, { 4124, 1330, -1 }, { 4125, 1330, -1 }, { 4126, 1330, -1 }, { 4127, 1330, -1 }, { 4097, 1849, -1 }, { 4098, 1849, -1 }, { 4099, 1849, -1 }, { 4100, 1849, -1 }, { 4101, 1849, -1 }, { 4102, 1849, -1 }, { 4103, 1849, -1 }, { 4104, 1849, -1 }, { 4105, 1849, -1 }, { 4106, 1849, -1 }, { 4107, 1849, -1 }, { 4108, 1849, -1 }, { 4109, 1849, -1 }, { 4110, 1849, -1 }, { 4111, 1849, -1 }, { 4112, 1849, -1 }, { 4113, 1849, -1 }, { 4114, 1849, -1 }, { 4115, 1849, -1 }, { 4116, 1849, -1 }, { 4117, 1849, -1 }, { 4118, 1849, -1 }, { 4119, 1849, -1 }, { 4120, 1849, -1 }, { 4121, 1849, -1 }, { 4122, 1849, -1 }, { 4123, 1849, -1 }, { 4124, 1849, -1 }, { 4125, 1849, -1 }, { 4126, 1849, -1 }, { 4127, 1849, -1 }, { 4097, 191, -1 }, { 4098, 191, -1 }, { 4099, 191, -1 }, { 4100, 191, -1 }, { 4101, 191, -1 }, { 4102, 191, -1 }, { 4103, 191, -1 }, { 4104, 191, -1 }, { 4105, 191, -1 }, { 4106, 191, -1 }, { 4107, 191, -1 }, { 4108, 191, -1 }, { 4109, 191, -1 }, { 4110, 191, -1 }, { 4111, 191, -1 }, { 4112, 191, -1 }, { 4113, 191, -1 }, { 4114, 191, -1 }, { 4115, 191, -1 }, { 4116, 191, -1 }, { 4117, 191, -1 }, { 4118, 191, -1 }, { 4119, 191, -1 }, { 4120, 191, -1 }, { 4121, 191, -1 }, { 4122, 191, -1 }, { 4123, 191, -1 }, { 4124, 191, -1 }, { 4125, 191, -1 }, { 4126, 191, -1 }, { 4127, 191, -1 }, { 4097, 1724, -1 }, { 4098, 1724, -1 }, { 4099, 1724, -1 }, { 4100, 1724, -1 }, { 4101, 1724, -1 }, { 4102, 1724, -1 }, { 4103, 1724, -1 }, { 4104, 1724, -1 }, { 4105, 1724, -1 }, { 4106, 1724, -1 }, { 4107, 1724, -1 }, { 4108, 1724, -1 }, { 4109, 1724, -1 }, { 4110, 1724, -1 }, { 4111, 1724, -1 }, { 4112, 1724, -1 }, { 4113, 1724, -1 }, { 4114, 1724, -1 }, { 4115, 1724, -1 }, { 4116, 1724, -1 }, { 4117, 1724, -1 }, { 4118, 1724, -1 }, { 4119, 1724, -1 }, { 4120, 1724, -1 }, { 4121, 1724, -1 }, { 4122, 1724, -1 }, { 4123, 1724, -1 }, { 4124, 1724, -1 }, { 4125, 1724, -1 }, { 4126, 1724, -1 }, { 4127, 1724, -1 }, { 4097, 605, -1 }, { 4098, 605, -1 }, { 4099, 605, -1 }, { 4100, 605, -1 }, { 4101, 605, -1 }, { 4102, 605, -1 }, { 4103, 605, -1 }, { 4104, 605, -1 }, { 4105, 605, -1 }, { 4106, 605, -1 }, { 4107, 605, -1 }, { 4108, 605, -1 }, { 4109, 605, -1 }, { 4110, 605, -1 }, { 4111, 605, -1 }, { 4112, 605, -1 }, { 4113, 605, -1 }, { 4114, 605, -1 }, { 4115, 605, -1 }, { 4116, 605, -1 }, { 4117, 605, -1 }, { 4118, 605, -1 }, { 4119, 605, -1 }, { 4120, 605, -1 }, { 4121, 605, -1 }, { 4122, 605, -1 }, { 4123, 605, -1 }, { 4124, 605, -1 }, { 4125, 605, -1 }, { 4126, 605, -1 }, { 4127, 605, -1 }, { 4097, 855, -1 }, { 4098, 855, -1 }, { 4099, 855, -1 }, { 4100, 855, -1 }, { 4101, 855, -1 }, { 4102, 855, -1 }, { 4103, 855, -1 }, { 4104, 855, -1 }, { 4105, 855, -1 }, { 4106, 855, -1 }, { 4107, 855, -1 }, { 4108, 855, -1 }, { 4109, 855, -1 }, { 4110, 855, -1 }, { 4111, 855, -1 }, { 4112, 855, -1 }, { 4113, 855, -1 }, { 4114, 855, -1 }, { 4115, 855, -1 }, { 4116, 855, -1 }, { 4117, 855, -1 }, { 4118, 855, -1 }, { 4119, 855, -1 }, { 4120, 855, -1 }, { 4121, 855, -1 }, { 4122, 855, -1 }, { 4123, 855, -1 }, { 4124, 855, -1 }, { 4125, 855, -1 }, { 4126, 855, -1 }, { 4127, 855, -1 }, { 4097, 258, -1 }, { 4098, 258, -1 }, { 4099, 258, -1 }, { 4100, 258, -1 }, { 4101, 258, -1 }, { 4102, 258, -1 }, { 4103, 258, -1 }, { 4104, 258, -1 }, { 4105, 258, -1 }, { 4106, 258, -1 }, { 4107, 258, -1 }, { 4108, 258, -1 }, { 4109, 258, -1 }, { 4110, 258, -1 }, { 4111, 258, -1 }, { 4112, 258, -1 }, { 4113, 258, -1 }, { 4114, 258, -1 }, { 4115, 258, -1 }, { 4116, 258, -1 }, { 4117, 258, -1 }, { 4118, 258, -1 }, { 4119, 258, -1 }, { 4120, 258, -1 }, { 4121, 258, -1 }, { 4122, 258, -1 }, { 4123, 258, -1 }, { 4124, 258, -1 }, { 4125, 258, -1 }, { 4126, 258, -1 }, { 4127, 258, -1 }, { 4097, 897, -1 }, { 4098, 897, -1 }, { 4099, 897, -1 }, { 4100, 897, -1 }, { 4101, 897, -1 }, { 4102, 897, -1 }, { 4103, 897, -1 }, { 4104, 897, -1 }, { 4105, 897, -1 }, { 4106, 897, -1 }, { 4107, 897, -1 }, { 4108, 897, -1 }, { 4109, 897, -1 }, { 4110, 897, -1 }, { 4111, 897, -1 }, { 4112, 897, -1 }, { 4113, 897, -1 }, { 4114, 897, -1 }, { 4115, 897, -1 }, { 4116, 897, -1 }, { 4117, 897, -1 }, { 4118, 897, -1 }, { 4119, 897, -1 }, { 4120, 897, -1 }, { 4121, 897, -1 }, { 4122, 897, -1 }, { 4123, 897, -1 }, { 4124, 897, -1 }, { 4125, 897, -1 }, { 4126, 897, -1 }, { 4127, 897, -1 }, { 4097, 10, -1 }, { 4098, 10, -1 }, { 4099, 10, -1 }, { 4100, 10, -1 }, { 4101, 10, -1 }, { 4102, 10, -1 }, { 4103, 10, -1 }, { 4104, 10, -1 }, { 4105, 10, -1 }, { 4106, 10, -1 }, { 4107, 10, -1 }, { 4108, 10, -1 }, { 4109, 10, -1 }, { 4110, 10, -1 }, { 4111, 10, -1 }, { 4112, 10, -1 }, { 4113, 10, -1 }, { 4114, 10, -1 }, { 4115, 10, -1 }, { 4116, 10, -1 }, { 4117, 10, -1 }, { 4118, 10, -1 }, { 4119, 10, -1 }, { 4120, 10, -1 }, { 4121, 10, -1 }, { 4122, 10, -1 }, { 4123, 10, -1 }, { 4124, 10, -1 }, { 4125, 10, -1 }, { 4126, 10, -1 }, { 4127, 10, -1 }, { 4097, 1568, -1 }, { 4098, 1568, -1 }, { 4099, 1568, -1 }, { 4100, 1568, -1 }, { 4101, 1568, -1 }, { 4102, 1568, -1 }, { 4103, 1568, -1 }, { 4104, 1568, -1 }, { 4105, 1568, -1 }, { 4106, 1568, -1 }, { 4107, 1568, -1 }, { 4108, 1568, -1 }, { 4109, 1568, -1 }, { 4110, 1568, -1 }, { 4111, 1568, -1 }, { 4112, 1568, -1 }, { 4113, 1568, -1 }, { 4114, 1568, -1 }, { 4115, 1568, -1 }, { 4116, 1568, -1 }, { 4117, 1568, -1 }, { 4118, 1568, -1 }, { 4119, 1568, -1 }, { 4120, 1568, -1 }, { 4121, 1568, -1 }, { 4122, 1568, -1 }, { 4123, 1568, -1 }, { 4124, 1568, -1 }, { 4125, 1568, -1 }, { 4126, 1568, -1 }, { 4127, 1568, -1 }, { 4097, 1823, -1 }, { 4098, 1823, -1 }, { 4099, 1823, -1 }, { 4100, 1823, -1 }, { 4101, 1823, -1 }, { 4102, 1823, -1 }, { 4103, 1823, -1 }, { 4104, 1823, -1 }, { 4105, 1823, -1 }, { 4106, 1823, -1 }, { 4107, 1823, -1 }, { 4108, 1823, -1 }, { 4109, 1823, -1 }, { 4110, 1823, -1 }, { 4111, 1823, -1 }, { 4112, 1823, -1 }, { 4113, 1823, -1 }, { 4114, 1823, -1 }, { 4115, 1823, -1 }, { 4116, 1823, -1 }, { 4117, 1823, -1 }, { 4118, 1823, -1 }, { 4119, 1823, -1 }, { 4120, 1823, -1 }, { 4121, 1823, -1 }, { 4122, 1823, -1 }, { 4123, 1823, -1 }, { 4124, 1823, -1 }, { 4125, 1823, -1 }, { 4126, 1823, -1 }, { 4127, 1823, -1 }, { 4097, 14, -1 }, { 4098, 14, -1 }, { 4099, 14, -1 }, { 4100, 14, -1 }, { 4101, 14, -1 }, { 4102, 14, -1 }, { 4103, 14, -1 }, { 4104, 14, -1 }, { 4105, 14, -1 }, { 4106, 14, -1 }, { 4107, 14, -1 }, { 4108, 14, -1 }, { 4109, 14, -1 }, { 4110, 14, -1 }, { 4111, 14, -1 }, { 4112, 14, -1 }, { 4113, 14, -1 }, { 4114, 14, -1 }, { 4115, 14, -1 }, { 4116, 14, -1 }, { 4117, 14, -1 }, { 4118, 14, -1 }, { 4119, 14, -1 }, { 4120, 14, -1 }, { 4121, 14, -1 }, { 4122, 14, -1 }, { 4123, 14, -1 }, { 4124, 14, -1 }, { 4125, 14, -1 }, { 4126, 14, -1 }, { 4127, 14, -1 }, { 4097, 134, -1 }, { 4098, 134, -1 }, { 4099, 134, -1 }, { 4100, 134, -1 }, { 4101, 134, -1 }, { 4102, 134, -1 }, { 4103, 134, -1 }, { 4104, 134, -1 }, { 4105, 134, -1 }, { 4106, 134, -1 }, { 4107, 134, -1 }, { 4108, 134, -1 }, { 4109, 134, -1 }, { 4110, 134, -1 }, { 4111, 134, -1 }, { 4112, 134, -1 }, { 4113, 134, -1 }, { 4114, 134, -1 }, { 4115, 134, -1 }, { 4116, 134, -1 }, { 4117, 134, -1 }, { 4118, 134, -1 }, { 4119, 134, -1 }, { 4120, 134, -1 }, { 4121, 134, -1 }, { 4122, 134, -1 }, { 4123, 134, -1 }, { 4124, 134, -1 }, { 4125, 134, -1 }, { 4126, 134, -1 }, { 4127, 134, -1 }, { 4097, 15, -1 }, { 4098, 15, -1 }, { 4099, 15, -1 }, { 4100, 15, -1 }, { 4101, 15, -1 }, { 4102, 15, -1 }, { 4103, 15, -1 }, { 4104, 15, -1 }, { 4105, 15, -1 }, { 4106, 15, -1 }, { 4107, 15, -1 }, { 4108, 15, -1 }, { 4109, 15, -1 }, { 4110, 15, -1 }, { 4111, 15, -1 }, { 4112, 15, -1 }, { 4113, 15, -1 }, { 4114, 15, -1 }, { 4115, 15, -1 }, { 4116, 15, -1 }, { 4117, 15, -1 }, { 4118, 15, -1 }, { 4119, 15, -1 }, { 4120, 15, -1 }, { 4121, 15, -1 }, { 4122, 15, -1 }, { 4123, 15, -1 }, { 4124, 15, -1 }, { 4125, 15, -1 }, { 4126, 15, -1 }, { 4127, 15, -1 }, { 4097, 16, -1 }, { 4098, 16, -1 }, { 4099, 16, -1 }, { 4100, 16, -1 }, { 4101, 16, -1 }, { 4102, 16, -1 }, { 4103, 16, -1 }, { 4104, 16, -1 }, { 4105, 16, -1 }, { 4106, 16, -1 }, { 4107, 16, -1 }, { 4108, 16, -1 }, { 4109, 16, -1 }, { 4110, 16, -1 }, { 4111, 16, -1 }, { 4112, 16, -1 }, { 4113, 16, -1 }, { 4114, 16, -1 }, { 4115, 16, -1 }, { 4116, 16, -1 }, { 4117, 16, -1 }, { 4118, 16, -1 }, { 4119, 16, -1 }, { 4120, 16, -1 }, { 4121, 16, -1 }, { 4122, 16, -1 }, { 4123, 16, -1 }, { 4124, 16, -1 }, { 4125, 16, -1 }, { 4126, 16, -1 }, { 4127, 16, -1 }, { 4097, 44, -1 }, { 4098, 44, -1 }, { 4099, 44, -1 }, { 4100, 44, -1 }, { 4101, 44, -1 }, { 4102, 44, -1 }, { 4103, 44, -1 }, { 4104, 44, -1 }, { 4105, 44, -1 }, { 4106, 44, -1 }, { 4107, 44, -1 }, { 4108, 44, -1 }, { 4109, 44, -1 }, { 4110, 44, -1 }, { 4111, 44, -1 }, { 4112, 44, -1 }, { 4113, 44, -1 }, { 4114, 44, -1 }, { 4115, 44, -1 }, { 4116, 44, -1 }, { 4117, 44, -1 }, { 4118, 44, -1 }, { 4119, 44, -1 }, { 4120, 44, -1 }, { 4121, 44, -1 }, { 4122, 44, -1 }, { 4123, 44, -1 }, { 4124, 44, -1 }, { 4125, 44, -1 }, { 4126, 44, -1 }, { 4127, 44, -1 }, { 4097, 17, -1 }, { 4098, 17, -1 }, { 4099, 17, -1 }, { 4100, 17, -1 }, { 4101, 17, -1 }, { 4102, 17, -1 }, { 4103, 17, -1 }, { 4104, 17, -1 }, { 4105, 17, -1 }, { 4106, 17, -1 }, { 4107, 17, -1 }, { 4108, 17, -1 }, { 4109, 17, -1 }, { 4110, 17, -1 }, { 4111, 17, -1 }, { 4112, 17, -1 }, { 4113, 17, -1 }, { 4114, 17, -1 }, { 4115, 17, -1 }, { 4116, 17, -1 }, { 4117, 17, -1 }, { 4118, 17, -1 }, { 4119, 17, -1 }, { 4120, 17, -1 }, { 4121, 17, -1 }, { 4122, 17, -1 }, { 4123, 17, -1 }, { 4124, 17, -1 }, { 4125, 17, -1 }, { 4126, 17, -1 }, { 4127, 17, -1 }, { 4097, 11, -1 }, { 4098, 11, -1 }, { 4099, 11, -1 }, { 4100, 11, -1 }, { 4101, 11, -1 }, { 4102, 11, -1 }, { 4103, 11, -1 }, { 4104, 11, -1 }, { 4105, 11, -1 }, { 4106, 11, -1 }, { 4107, 11, -1 }, { 4108, 11, -1 }, { 4109, 11, -1 }, { 4110, 11, -1 }, { 4111, 11, -1 }, { 4112, 11, -1 }, { 4113, 11, -1 }, { 4114, 11, -1 }, { 4115, 11, -1 }, { 4116, 11, -1 }, { 4117, 11, -1 }, { 4118, 11, -1 }, { 4119, 11, -1 }, { 4120, 11, -1 }, { 4121, 11, -1 }, { 4122, 11, -1 }, { 4123, 11, -1 }, { 4124, 11, -1 }, { 4125, 11, -1 }, { 4126, 11, -1 }, { 4127, 11, -1 }, { 4097, 12, -1 }, { 4098, 12, -1 }, { 4099, 12, -1 }, { 4100, 12, -1 }, { 4101, 12, -1 }, { 4102, 12, -1 }, { 4103, 12, -1 }, { 4104, 12, -1 }, { 4105, 12, -1 }, { 4106, 12, -1 }, { 4107, 12, -1 }, { 4108, 12, -1 }, { 4109, 12, -1 }, { 4110, 12, -1 }, { 4111, 12, -1 }, { 4112, 12, -1 }, { 4113, 12, -1 }, { 4114, 12, -1 }, { 4115, 12, -1 }, { 4116, 12, -1 }, { 4117, 12, -1 }, { 4118, 12, -1 }, { 4119, 12, -1 }, { 4120, 12, -1 }, { 4121, 12, -1 }, { 4122, 12, -1 }, { 4123, 12, -1 }, { 4124, 12, -1 }, { 4125, 12, -1 }, { 4126, 12, -1 }, { 4127, 12, -1 }, { 4097, 493, -1 }, { 4098, 493, -1 }, { 4099, 493, -1 }, { 4100, 493, -1 }, { 4101, 493, -1 }, { 4102, 493, -1 }, { 4103, 493, -1 }, { 4104, 493, -1 }, { 4105, 493, -1 }, { 4106, 493, -1 }, { 4107, 493, -1 }, { 4108, 493, -1 }, { 4109, 493, -1 }, { 4110, 493, -1 }, { 4111, 493, -1 }, { 4112, 493, -1 }, { 4113, 493, -1 }, { 4114, 493, -1 }, { 4115, 493, -1 }, { 4116, 493, -1 }, { 4117, 493, -1 }, { 4118, 493, -1 }, { 4119, 493, -1 }, { 4120, 493, -1 }, { 4121, 493, -1 }, { 4122, 493, -1 }, { 4123, 493, -1 }, { 4124, 493, -1 }, { 4125, 493, -1 }, { 4126, 493, -1 }, { 4127, 493, -1 }, { 4097, 307, -1 }, { 4098, 307, -1 }, { 4099, 307, -1 }, { 4100, 307, -1 }, { 4101, 307, -1 }, { 4102, 307, -1 }, { 4103, 307, -1 }, { 4104, 307, -1 }, { 4105, 307, -1 }, { 4106, 307, -1 }, { 4107, 307, -1 }, { 4108, 307, -1 }, { 4109, 307, -1 }, { 4110, 307, -1 }, { 4111, 307, -1 }, { 4112, 307, -1 }, { 4113, 307, -1 }, { 4114, 307, -1 }, { 4115, 307, -1 }, { 4116, 307, -1 }, { 4117, 307, -1 }, { 4118, 307, -1 }, { 4119, 307, -1 }, { 4120, 307, -1 }, { 4121, 307, -1 }, { 4122, 307, -1 }, { 4123, 307, -1 }, { 4124, 307, -1 }, { 4125, 307, -1 }, { 4126, 307, -1 }, { 4127, 307, -1 }, { 4097, 306, -1 }, { 4098, 306, -1 }, { 4099, 306, -1 }, { 4100, 306, -1 }, { 4101, 306, -1 }, { 4102, 306, -1 }, { 4103, 306, -1 }, { 4104, 306, -1 }, { 4105, 306, -1 }, { 4106, 306, -1 }, { 4107, 306, -1 }, { 4108, 306, -1 }, { 4109, 306, -1 }, { 4110, 306, -1 }, { 4111, 306, -1 }, { 4112, 306, -1 }, { 4113, 306, -1 }, { 4114, 306, -1 }, { 4115, 306, -1 }, { 4116, 306, -1 }, { 4117, 306, -1 }, { 4118, 306, -1 }, { 4119, 306, -1 }, { 4120, 306, -1 }, { 4121, 306, -1 }, { 4122, 306, -1 }, { 4123, 306, -1 }, { 4124, 306, -1 }, { 4125, 306, -1 }, { 4126, 306, -1 }, { 4127, 306, -1 }, { 4097, 476, -1 }, { 4098, 476, -1 }, { 4099, 476, -1 }, { 4100, 476, -1 }, { 4101, 476, -1 }, { 4102, 476, -1 }, { 4103, 476, -1 }, { 4104, 476, -1 }, { 4105, 476, -1 }, { 4106, 476, -1 }, { 4107, 476, -1 }, { 4108, 476, -1 }, { 4109, 476, -1 }, { 4110, 476, -1 }, { 4111, 476, -1 }, { 4112, 476, -1 }, { 4113, 476, -1 }, { 4114, 476, -1 }, { 4115, 476, -1 }, { 4116, 476, -1 }, { 4117, 476, -1 }, { 4118, 476, -1 }, { 4119, 476, -1 }, { 4120, 476, -1 }, { 4121, 476, -1 }, { 4122, 476, -1 }, { 4123, 476, -1 }, { 4124, 476, -1 }, { 4125, 476, -1 }, { 4126, 476, -1 }, { 4127, 476, -1 }, { 4097, 275, -1 }, { 4098, 275, -1 }, { 4099, 275, -1 }, { 4100, 275, -1 }, { 4101, 275, -1 }, { 4102, 275, -1 }, { 4103, 275, -1 }, { 4104, 275, -1 }, { 4105, 275, -1 }, { 4106, 275, -1 }, { 4107, 275, -1 }, { 4108, 275, -1 }, { 4109, 275, -1 }, { 4110, 275, -1 }, { 4111, 275, -1 }, { 4112, 275, -1 }, { 4113, 275, -1 }, { 4114, 275, -1 }, { 4115, 275, -1 }, { 4116, 275, -1 }, { 4117, 275, -1 }, { 4118, 275, -1 }, { 4119, 275, -1 }, { 4120, 275, -1 }, { 4121, 275, -1 }, { 4122, 275, -1 }, { 4123, 275, -1 }, { 4124, 275, -1 }, { 4125, 275, -1 }, { 4126, 275, -1 }, { 4127, 275, -1 }, { 4097, 18, -1 }, { 4098, 18, -1 }, { 4099, 18, -1 }, { 4100, 18, -1 }, { 4101, 18, -1 }, { 4102, 18, -1 }, { 4103, 18, -1 }, { 4104, 18, -1 }, { 4105, 18, -1 }, { 4106, 18, -1 }, { 4107, 18, -1 }, { 4108, 18, -1 }, { 4109, 18, -1 }, { 4110, 18, -1 }, { 4111, 18, -1 }, { 4112, 18, -1 }, { 4113, 18, -1 }, { 4114, 18, -1 }, { 4115, 18, -1 }, { 4116, 18, -1 }, { 4117, 18, -1 }, { 4118, 18, -1 }, { 4119, 18, -1 }, { 4120, 18, -1 }, { 4121, 18, -1 }, { 4122, 18, -1 }, { 4123, 18, -1 }, { 4124, 18, -1 }, { 4125, 18, -1 }, { 4126, 18, -1 }, { 4127, 18, -1 }, { 4097, 19, -1 }, { 4098, 19, -1 }, { 4099, 19, -1 }, { 4100, 19, -1 }, { 4101, 19, -1 }, { 4102, 19, -1 }, { 4103, 19, -1 }, { 4104, 19, -1 }, { 4105, 19, -1 }, { 4106, 19, -1 }, { 4107, 19, -1 }, { 4108, 19, -1 }, { 4109, 19, -1 }, { 4110, 19, -1 }, { 4111, 19, -1 }, { 4112, 19, -1 }, { 4113, 19, -1 }, { 4114, 19, -1 }, { 4115, 19, -1 }, { 4116, 19, -1 }, { 4117, 19, -1 }, { 4118, 19, -1 }, { 4119, 19, -1 }, { 4120, 19, -1 }, { 4121, 19, -1 }, { 4122, 19, -1 }, { 4123, 19, -1 }, { 4124, 19, -1 }, { 4125, 19, -1 }, { 4126, 19, -1 }, { 4127, 19, -1 }, { 4097, 453, -1 }, { 4098, 453, -1 }, { 4099, 453, -1 }, { 4100, 453, -1 }, { 4101, 453, -1 }, { 4102, 453, -1 }, { 4103, 453, -1 }, { 4104, 453, -1 }, { 4105, 453, -1 }, { 4106, 453, -1 }, { 4107, 453, -1 }, { 4108, 453, -1 }, { 4109, 453, -1 }, { 4110, 453, -1 }, { 4111, 453, -1 }, { 4112, 453, -1 }, { 4113, 453, -1 }, { 4114, 453, -1 }, { 4115, 453, -1 }, { 4116, 453, -1 }, { 4117, 453, -1 }, { 4118, 453, -1 }, { 4119, 453, -1 }, { 4120, 453, -1 }, { 4121, 453, -1 }, { 4122, 453, -1 }, { 4123, 453, -1 }, { 4124, 453, -1 }, { 4125, 453, -1 }, { 4126, 453, -1 }, { 4127, 453, -1 }, { 4097, 68, -1 }, { 4098, 68, -1 }, { 4099, 68, -1 }, { 4100, 68, -1 }, { 4101, 68, -1 }, { 4102, 68, -1 }, { 4103, 68, -1 }, { 4104, 68, -1 }, { 4105, 68, -1 }, { 4106, 68, -1 }, { 4107, 68, -1 }, { 4108, 68, -1 }, { 4109, 68, -1 }, { 4110, 68, -1 }, { 4111, 68, -1 }, { 4112, 68, -1 }, { 4113, 68, -1 }, { 4114, 68, -1 }, { 4115, 68, -1 }, { 4116, 68, -1 }, { 4117, 68, -1 }, { 4118, 68, -1 }, { 4119, 68, -1 }, { 4120, 68, -1 }, { 4121, 68, -1 }, { 4122, 68, -1 }, { 4123, 68, -1 }, { 4124, 68, -1 }, { 4125, 68, -1 }, { 4126, 68, -1 }, { 4127, 68, -1 }, { 4097, 20, -1 }, { 4098, 20, -1 }, { 4099, 20, -1 }, { 4100, 20, -1 }, { 4101, 20, -1 }, { 4102, 20, -1 }, { 4103, 20, -1 }, { 4104, 20, -1 }, { 4105, 20, -1 }, { 4106, 20, -1 }, { 4107, 20, -1 }, { 4108, 20, -1 }, { 4109, 20, -1 }, { 4110, 20, -1 }, { 4111, 20, -1 }, { 4112, 20, -1 }, { 4113, 20, -1 }, { 4114, 20, -1 }, { 4115, 20, -1 }, { 4116, 20, -1 }, { 4117, 20, -1 }, { 4118, 20, -1 }, { 4119, 20, -1 }, { 4120, 20, -1 }, { 4121, 20, -1 }, { 4122, 20, -1 }, { 4123, 20, -1 }, { 4124, 20, -1 }, { 4125, 20, -1 }, { 4126, 20, -1 }, { 4127, 20, -1 }, { 4097, 21, -1 }, { 4098, 21, -1 }, { 4099, 21, -1 }, { 4100, 21, -1 }, { 4101, 21, -1 }, { 4102, 21, -1 }, { 4103, 21, -1 }, { 4104, 21, -1 }, { 4105, 21, -1 }, { 4106, 21, -1 }, { 4107, 21, -1 }, { 4108, 21, -1 }, { 4109, 21, -1 }, { 4110, 21, -1 }, { 4111, 21, -1 }, { 4112, 21, -1 }, { 4113, 21, -1 }, { 4114, 21, -1 }, { 4115, 21, -1 }, { 4116, 21, -1 }, { 4117, 21, -1 }, { 4118, 21, -1 }, { 4119, 21, -1 }, { 4120, 21, -1 }, { 4121, 21, -1 }, { 4122, 21, -1 }, { 4123, 21, -1 }, { 4124, 21, -1 }, { 4125, 21, -1 }, { 4126, 21, -1 }, { 4127, 21, -1 }, { 4097, 22, -1 }, { 4098, 22, -1 }, { 4099, 22, -1 }, { 4100, 22, -1 }, { 4101, 22, -1 }, { 4102, 22, -1 }, { 4103, 22, -1 }, { 4104, 22, -1 }, { 4105, 22, -1 }, { 4106, 22, -1 }, { 4107, 22, -1 }, { 4108, 22, -1 }, { 4109, 22, -1 }, { 4110, 22, -1 }, { 4111, 22, -1 }, { 4112, 22, -1 }, { 4113, 22, -1 }, { 4114, 22, -1 }, { 4115, 22, -1 }, { 4116, 22, -1 }, { 4117, 22, -1 }, { 4118, 22, -1 }, { 4119, 22, -1 }, { 4120, 22, -1 }, { 4121, 22, -1 }, { 4122, 22, -1 }, { 4123, 22, -1 }, { 4124, 22, -1 }, { 4125, 22, -1 }, { 4126, 22, -1 }, { 4127, 22, -1 }, { 4097, 589, -1 }, { 4098, 589, -1 }, { 4099, 589, -1 }, { 4100, 589, -1 }, { 4101, 589, -1 }, { 4102, 589, -1 }, { 4103, 589, -1 }, { 4104, 589, -1 }, { 4105, 589, -1 }, { 4106, 589, -1 }, { 4107, 589, -1 }, { 4108, 589, -1 }, { 4109, 589, -1 }, { 4110, 589, -1 }, { 4111, 589, -1 }, { 4112, 589, -1 }, { 4113, 589, -1 }, { 4114, 589, -1 }, { 4115, 589, -1 }, { 4116, 589, -1 }, { 4117, 589, -1 }, { 4118, 589, -1 }, { 4119, 589, -1 }, { 4120, 589, -1 }, { 4121, 589, -1 }, { 4122, 589, -1 }, { 4123, 589, -1 }, { 4124, 589, -1 }, { 4125, 589, -1 }, { 4126, 589, -1 }, { 4127, 589, -1 }, { 4097, 620, -1 }, { 4098, 620, -1 }, { 4099, 620, -1 }, { 4100, 620, -1 }, { 4101, 620, -1 }, { 4102, 620, -1 }, { 4103, 620, -1 }, { 4104, 620, -1 }, { 4105, 620, -1 }, { 4106, 620, -1 }, { 4107, 620, -1 }, { 4108, 620, -1 }, { 4109, 620, -1 }, { 4110, 620, -1 }, { 4111, 620, -1 }, { 4112, 620, -1 }, { 4113, 620, -1 }, { 4114, 620, -1 }, { 4115, 620, -1 }, { 4116, 620, -1 }, { 4117, 620, -1 }, { 4118, 620, -1 }, { 4119, 620, -1 }, { 4120, 620, -1 }, { 4121, 620, -1 }, { 4122, 620, -1 }, { 4123, 620, -1 }, { 4124, 620, -1 }, { 4125, 620, -1 }, { 4126, 620, -1 }, { 4127, 620, -1 }, { 4097, 784, -1 }, { 4098, 784, -1 }, { 4099, 784, -1 }, { 4100, 784, -1 }, { 4101, 784, -1 }, { 4102, 784, -1 }, { 4103, 784, -1 }, { 4104, 784, -1 }, { 4105, 784, -1 }, { 4106, 784, -1 }, { 4107, 784, -1 }, { 4108, 784, -1 }, { 4109, 784, -1 }, { 4110, 784, -1 }, { 4111, 784, -1 }, { 4112, 784, -1 }, { 4113, 784, -1 }, { 4114, 784, -1 }, { 4115, 784, -1 }, { 4116, 784, -1 }, { 4117, 784, -1 }, { 4118, 784, -1 }, { 4119, 784, -1 }, { 4120, 784, -1 }, { 4121, 784, -1 }, { 4122, 784, -1 }, { 4123, 784, -1 }, { 4124, 784, -1 }, { 4125, 784, -1 }, { 4126, 784, -1 }, { 4127, 784, -1 }, { 4097, 785, -1 }, { 4098, 785, -1 }, { 4099, 785, -1 }, { 4100, 785, -1 }, { 4101, 785, -1 }, { 4102, 785, -1 }, { 4103, 785, -1 }, { 4104, 785, -1 }, { 4105, 785, -1 }, { 4106, 785, -1 }, { 4107, 785, -1 }, { 4108, 785, -1 }, { 4109, 785, -1 }, { 4110, 785, -1 }, { 4111, 785, -1 }, { 4112, 785, -1 }, { 4113, 785, -1 }, { 4114, 785, -1 }, { 4115, 785, -1 }, { 4116, 785, -1 }, { 4117, 785, -1 }, { 4118, 785, -1 }, { 4119, 785, -1 }, { 4120, 785, -1 }, { 4121, 785, -1 }, { 4122, 785, -1 }, { 4123, 785, -1 }, { 4124, 785, -1 }, { 4125, 785, -1 }, { 4126, 785, -1 }, { 4127, 785, -1 }, { 4097, 1377, -1 }, { 4098, 1377, -1 }, { 4099, 1377, -1 }, { 4100, 1377, -1 }, { 4101, 1377, -1 }, { 4102, 1377, -1 }, { 4103, 1377, -1 }, { 4104, 1377, -1 }, { 4105, 1377, -1 }, { 4106, 1377, -1 }, { 4107, 1377, -1 }, { 4108, 1377, -1 }, { 4109, 1377, -1 }, { 4110, 1377, -1 }, { 4111, 1377, -1 }, { 4112, 1377, -1 }, { 4113, 1377, -1 }, { 4114, 1377, -1 }, { 4115, 1377, -1 }, { 4116, 1377, -1 }, { 4117, 1377, -1 }, { 4118, 1377, -1 }, { 4119, 1377, -1 }, { 4120, 1377, -1 }, { 4121, 1377, -1 }, { 4122, 1377, -1 }, { 4123, 1377, -1 }, { 4124, 1377, -1 }, { 4125, 1377, -1 }, { 4126, 1377, -1 }, { 4127, 1377, -1 }, { 4097, 1501, -1 }, { 4098, 1501, -1 }, { 4099, 1501, -1 }, { 4100, 1501, -1 }, { 4101, 1501, -1 }, { 4102, 1501, -1 }, { 4103, 1501, -1 }, { 4104, 1501, -1 }, { 4105, 1501, -1 }, { 4106, 1501, -1 }, { 4107, 1501, -1 }, { 4108, 1501, -1 }, { 4109, 1501, -1 }, { 4110, 1501, -1 }, { 4111, 1501, -1 }, { 4112, 1501, -1 }, { 4113, 1501, -1 }, { 4114, 1501, -1 }, { 4115, 1501, -1 }, { 4116, 1501, -1 }, { 4117, 1501, -1 }, { 4118, 1501, -1 }, { 4119, 1501, -1 }, { 4120, 1501, -1 }, { 4121, 1501, -1 }, { 4122, 1501, -1 }, { 4123, 1501, -1 }, { 4124, 1501, -1 }, { 4125, 1501, -1 }, { 4126, 1501, -1 }, { 4127, 1501, -1 }, { 4097, 1294, -1 }, { 4098, 1294, -1 }, { 4099, 1294, -1 }, { 4100, 1294, -1 }, { 4101, 1294, -1 }, { 4102, 1294, -1 }, { 4103, 1294, -1 }, { 4104, 1294, -1 }, { 4105, 1294, -1 }, { 4106, 1294, -1 }, { 4107, 1294, -1 }, { 4108, 1294, -1 }, { 4109, 1294, -1 }, { 4110, 1294, -1 }, { 4111, 1294, -1 }, { 4112, 1294, -1 }, { 4113, 1294, -1 }, { 4114, 1294, -1 }, { 4115, 1294, -1 }, { 4116, 1294, -1 }, { 4117, 1294, -1 }, { 4118, 1294, -1 }, { 4119, 1294, -1 }, { 4120, 1294, -1 }, { 4121, 1294, -1 }, { 4122, 1294, -1 }, { 4123, 1294, -1 }, { 4124, 1294, -1 }, { 4125, 1294, -1 }, { 4126, 1294, -1 }, { 4127, 1294, -1 }, { 4097, 1314, -1 }, { 4098, 1314, -1 }, { 4099, 1314, -1 }, { 4100, 1314, -1 }, { 4101, 1314, -1 }, { 4102, 1314, -1 }, { 4103, 1314, -1 }, { 4104, 1314, -1 }, { 4105, 1314, -1 }, { 4106, 1314, -1 }, { 4107, 1314, -1 }, { 4108, 1314, -1 }, { 4109, 1314, -1 }, { 4110, 1314, -1 }, { 4111, 1314, -1 }, { 4112, 1314, -1 }, { 4113, 1314, -1 }, { 4114, 1314, -1 }, { 4115, 1314, -1 }, { 4116, 1314, -1 }, { 4117, 1314, -1 }, { 4118, 1314, -1 }, { 4119, 1314, -1 }, { 4120, 1314, -1 }, { 4121, 1314, -1 }, { 4122, 1314, -1 }, { 4123, 1314, -1 }, { 4124, 1314, -1 }, { 4125, 1314, -1 }, { 4126, 1314, -1 }, { 4127, 1314, -1 }, { 4097, 1316, -1 }, { 4098, 1316, -1 }, { 4099, 1316, -1 }, { 4100, 1316, -1 }, { 4101, 1316, -1 }, { 4102, 1316, -1 }, { 4103, 1316, -1 }, { 4104, 1316, -1 }, { 4105, 1316, -1 }, { 4106, 1316, -1 }, { 4107, 1316, -1 }, { 4108, 1316, -1 }, { 4109, 1316, -1 }, { 4110, 1316, -1 }, { 4111, 1316, -1 }, { 4112, 1316, -1 }, { 4113, 1316, -1 }, { 4114, 1316, -1 }, { 4115, 1316, -1 }, { 4116, 1316, -1 }, { 4117, 1316, -1 }, { 4118, 1316, -1 }, { 4119, 1316, -1 }, { 4120, 1316, -1 }, { 4121, 1316, -1 }, { 4122, 1316, -1 }, { 4123, 1316, -1 }, { 4124, 1316, -1 }, { 4125, 1316, -1 }, { 4126, 1316, -1 }, { 4127, 1316, -1 }, { 4097, 1348, -1 }, { 4098, 1348, -1 }, { 4099, 1348, -1 }, { 4100, 1348, -1 }, { 4101, 1348, -1 }, { 4102, 1348, -1 }, { 4103, 1348, -1 }, { 4104, 1348, -1 }, { 4105, 1348, -1 }, { 4106, 1348, -1 }, { 4107, 1348, -1 }, { 4108, 1348, -1 }, { 4109, 1348, -1 }, { 4110, 1348, -1 }, { 4111, 1348, -1 }, { 4112, 1348, -1 }, { 4113, 1348, -1 }, { 4114, 1348, -1 }, { 4115, 1348, -1 }, { 4116, 1348, -1 }, { 4117, 1348, -1 }, { 4118, 1348, -1 }, { 4119, 1348, -1 }, { 4120, 1348, -1 }, { 4121, 1348, -1 }, { 4122, 1348, -1 }, { 4123, 1348, -1 }, { 4124, 1348, -1 }, { 4125, 1348, -1 }, { 4126, 1348, -1 }, { 4127, 1348, -1 }, { 4097, 1356, -1 }, { 4098, 1356, -1 }, { 4099, 1356, -1 }, { 4100, 1356, -1 }, { 4101, 1356, -1 }, { 4102, 1356, -1 }, { 4103, 1356, -1 }, { 4104, 1356, -1 }, { 4105, 1356, -1 }, { 4106, 1356, -1 }, { 4107, 1356, -1 }, { 4108, 1356, -1 }, { 4109, 1356, -1 }, { 4110, 1356, -1 }, { 4111, 1356, -1 }, { 4112, 1356, -1 }, { 4113, 1356, -1 }, { 4114, 1356, -1 }, { 4115, 1356, -1 }, { 4116, 1356, -1 }, { 4117, 1356, -1 }, { 4118, 1356, -1 }, { 4119, 1356, -1 }, { 4120, 1356, -1 }, { 4121, 1356, -1 }, { 4122, 1356, -1 }, { 4123, 1356, -1 }, { 4124, 1356, -1 }, { 4125, 1356, -1 }, { 4126, 1356, -1 }, { 4127, 1356, -1 }, { 4097, 1317, -1 }, { 4098, 1317, -1 }, { 4099, 1317, -1 }, { 4100, 1317, -1 }, { 4101, 1317, -1 }, { 4102, 1317, -1 }, { 4103, 1317, -1 }, { 4104, 1317, -1 }, { 4105, 1317, -1 }, { 4106, 1317, -1 }, { 4107, 1317, -1 }, { 4108, 1317, -1 }, { 4109, 1317, -1 }, { 4110, 1317, -1 }, { 4111, 1317, -1 }, { 4112, 1317, -1 }, { 4113, 1317, -1 }, { 4114, 1317, -1 }, { 4115, 1317, -1 }, { 4116, 1317, -1 }, { 4117, 1317, -1 }, { 4118, 1317, -1 }, { 4119, 1317, -1 }, { 4120, 1317, -1 }, { 4121, 1317, -1 }, { 4122, 1317, -1 }, { 4123, 1317, -1 }, { 4124, 1317, -1 }, { 4125, 1317, -1 }, { 4126, 1317, -1 }, { 4127, 1317, -1 }, { 4097, 1315, -1 }, { 4098, 1315, -1 }, { 4099, 1315, -1 }, { 4100, 1315, -1 }, { 4101, 1315, -1 }, { 4102, 1315, -1 }, { 4103, 1315, -1 }, { 4104, 1315, -1 }, { 4105, 1315, -1 }, { 4106, 1315, -1 }, { 4107, 1315, -1 }, { 4108, 1315, -1 }, { 4109, 1315, -1 }, { 4110, 1315, -1 }, { 4111, 1315, -1 }, { 4112, 1315, -1 }, { 4113, 1315, -1 }, { 4114, 1315, -1 }, { 4115, 1315, -1 }, { 4116, 1315, -1 }, { 4117, 1315, -1 }, { 4118, 1315, -1 }, { 4119, 1315, -1 }, { 4120, 1315, -1 }, { 4121, 1315, -1 }, { 4122, 1315, -1 }, { 4123, 1315, -1 }, { 4124, 1315, -1 }, { 4125, 1315, -1 }, { 4126, 1315, -1 }, { 4127, 1315, -1 }, { 4097, 1351, -1 }, { 4098, 1351, -1 }, { 4099, 1351, -1 }, { 4100, 1351, -1 }, { 4101, 1351, -1 }, { 4102, 1351, -1 }, { 4103, 1351, -1 }, { 4104, 1351, -1 }, { 4105, 1351, -1 }, { 4106, 1351, -1 }, { 4107, 1351, -1 }, { 4108, 1351, -1 }, { 4109, 1351, -1 }, { 4110, 1351, -1 }, { 4111, 1351, -1 }, { 4112, 1351, -1 }, { 4113, 1351, -1 }, { 4114, 1351, -1 }, { 4115, 1351, -1 }, { 4116, 1351, -1 }, { 4117, 1351, -1 }, { 4118, 1351, -1 }, { 4119, 1351, -1 }, { 4120, 1351, -1 }, { 4121, 1351, -1 }, { 4122, 1351, -1 }, { 4123, 1351, -1 }, { 4124, 1351, -1 }, { 4125, 1351, -1 }, { 4126, 1351, -1 }, { 4127, 1351, -1 }, { 4097, 1751, -1 }, { 4098, 1751, -1 }, { 4099, 1751, -1 }, { 4100, 1751, -1 }, { 4101, 1751, -1 }, { 4102, 1751, -1 }, { 4103, 1751, -1 }, { 4104, 1751, -1 }, { 4105, 1751, -1 }, { 4106, 1751, -1 }, { 4107, 1751, -1 }, { 4108, 1751, -1 }, { 4109, 1751, -1 }, { 4110, 1751, -1 }, { 4111, 1751, -1 }, { 4112, 1751, -1 }, { 4113, 1751, -1 }, { 4114, 1751, -1 }, { 4115, 1751, -1 }, { 4116, 1751, -1 }, { 4117, 1751, -1 }, { 4118, 1751, -1 }, { 4119, 1751, -1 }, { 4120, 1751, -1 }, { 4121, 1751, -1 }, { 4122, 1751, -1 }, { 4123, 1751, -1 }, { 4124, 1751, -1 }, { 4125, 1751, -1 }, { 4126, 1751, -1 }, { 4127, 1751, -1 }, { 4097, 1756, -1 }, { 4098, 1756, -1 }, { 4099, 1756, -1 }, { 4100, 1756, -1 }, { 4101, 1756, -1 }, { 4102, 1756, -1 }, { 4103, 1756, -1 }, { 4104, 1756, -1 }, { 4105, 1756, -1 }, { 4106, 1756, -1 }, { 4107, 1756, -1 }, { 4108, 1756, -1 }, { 4109, 1756, -1 }, { 4110, 1756, -1 }, { 4111, 1756, -1 }, { 4112, 1756, -1 }, { 4113, 1756, -1 }, { 4114, 1756, -1 }, { 4115, 1756, -1 }, { 4116, 1756, -1 }, { 4117, 1756, -1 }, { 4118, 1756, -1 }, { 4119, 1756, -1 }, { 4120, 1756, -1 }, { 4121, 1756, -1 }, { 4122, 1756, -1 }, { 4123, 1756, -1 }, { 4124, 1756, -1 }, { 4125, 1756, -1 }, { 4126, 1756, -1 }, { 4127, 1756, -1 }, { 4097, 837, -1 }, { 4098, 837, -1 }, { 4099, 837, -1 }, { 4100, 837, -1 }, { 4101, 837, -1 }, { 4102, 837, -1 }, { 4103, 837, -1 }, { 4104, 837, -1 }, { 4105, 837, -1 }, { 4106, 837, -1 }, { 4107, 837, -1 }, { 4108, 837, -1 }, { 4109, 837, -1 }, { 4110, 837, -1 }, { 4111, 837, -1 }, { 4112, 837, -1 }, { 4113, 837, -1 }, { 4114, 837, -1 }, { 4115, 837, -1 }, { 4116, 837, -1 }, { 4117, 837, -1 }, { 4118, 837, -1 }, { 4119, 837, -1 }, { 4120, 837, -1 }, { 4121, 837, -1 }, { 4122, 837, -1 }, { 4123, 837, -1 }, { 4124, 837, -1 }, { 4125, 837, -1 }, { 4126, 837, -1 }, { 4127, 837, -1 }, { 4097, 838, -1 }, { 4098, 838, -1 }, { 4099, 838, -1 }, { 4100, 838, -1 }, { 4101, 838, -1 }, { 4102, 838, -1 }, { 4103, 838, -1 }, { 4104, 838, -1 }, { 4105, 838, -1 }, { 4106, 838, -1 }, { 4107, 838, -1 }, { 4108, 838, -1 }, { 4109, 838, -1 }, { 4110, 838, -1 }, { 4111, 838, -1 }, { 4112, 838, -1 }, { 4113, 838, -1 }, { 4114, 838, -1 }, { 4115, 838, -1 }, { 4116, 838, -1 }, { 4117, 838, -1 }, { 4118, 838, -1 }, { 4119, 838, -1 }, { 4120, 838, -1 }, { 4121, 838, -1 }, { 4122, 838, -1 }, { 4123, 838, -1 }, { 4124, 838, -1 }, { 4125, 838, -1 }, { 4126, 838, -1 }, { 4127, 838, -1 }, { 4097, 836, -1 }, { 4098, 836, -1 }, { 4099, 836, -1 }, { 4100, 836, -1 }, { 4101, 836, -1 }, { 4102, 836, -1 }, { 4103, 836, -1 }, { 4104, 836, -1 }, { 4105, 836, -1 }, { 4106, 836, -1 }, { 4107, 836, -1 }, { 4108, 836, -1 }, { 4109, 836, -1 }, { 4110, 836, -1 }, { 4111, 836, -1 }, { 4112, 836, -1 }, { 4113, 836, -1 }, { 4114, 836, -1 }, { 4115, 836, -1 }, { 4116, 836, -1 }, { 4117, 836, -1 }, { 4118, 836, -1 }, { 4119, 836, -1 }, { 4120, 836, -1 }, { 4121, 836, -1 }, { 4122, 836, -1 }, { 4123, 836, -1 }, { 4124, 836, -1 }, { 4125, 836, -1 }, { 4126, 836, -1 }, { 4127, 836, -1 }, { 4097, 783, -1 }, { 4098, 783, -1 }, { 4099, 783, -1 }, { 4100, 783, -1 }, { 4101, 783, -1 }, { 4102, 783, -1 }, { 4103, 783, -1 }, { 4104, 783, -1 }, { 4105, 783, -1 }, { 4106, 783, -1 }, { 4107, 783, -1 }, { 4108, 783, -1 }, { 4109, 783, -1 }, { 4110, 783, -1 }, { 4111, 783, -1 }, { 4112, 783, -1 }, { 4113, 783, -1 }, { 4114, 783, -1 }, { 4115, 783, -1 }, { 4116, 783, -1 }, { 4117, 783, -1 }, { 4118, 783, -1 }, { 4119, 783, -1 }, { 4120, 783, -1 }, { 4121, 783, -1 }, { 4122, 783, -1 }, { 4123, 783, -1 }, { 4124, 783, -1 }, { 4125, 783, -1 }, { 4126, 783, -1 }, { 4127, 783, -1 }, { 4097, 778, -1 }, { 4098, 778, -1 }, { 4099, 778, -1 }, { 4100, 778, -1 }, { 4101, 778, -1 }, { 4102, 778, -1 }, { 4103, 778, -1 }, { 4104, 778, -1 }, { 4105, 778, -1 }, { 4106, 778, -1 }, { 4107, 778, -1 }, { 4108, 778, -1 }, { 4109, 778, -1 }, { 4110, 778, -1 }, { 4111, 778, -1 }, { 4112, 778, -1 }, { 4113, 778, -1 }, { 4114, 778, -1 }, { 4115, 778, -1 }, { 4116, 778, -1 }, { 4117, 778, -1 }, { 4118, 778, -1 }, { 4119, 778, -1 }, { 4120, 778, -1 }, { 4121, 778, -1 }, { 4122, 778, -1 }, { 4123, 778, -1 }, { 4124, 778, -1 }, { 4125, 778, -1 }, { 4126, 778, -1 }, { 4127, 778, -1 }, { 4097, 779, -1 }, { 4098, 779, -1 }, { 4099, 779, -1 }, { 4100, 779, -1 }, { 4101, 779, -1 }, { 4102, 779, -1 }, { 4103, 779, -1 }, { 4104, 779, -1 }, { 4105, 779, -1 }, { 4106, 779, -1 }, { 4107, 779, -1 }, { 4108, 779, -1 }, { 4109, 779, -1 }, { 4110, 779, -1 }, { 4111, 779, -1 }, { 4112, 779, -1 }, { 4113, 779, -1 }, { 4114, 779, -1 }, { 4115, 779, -1 }, { 4116, 779, -1 }, { 4117, 779, -1 }, { 4118, 779, -1 }, { 4119, 779, -1 }, { 4120, 779, -1 }, { 4121, 779, -1 }, { 4122, 779, -1 }, { 4123, 779, -1 }, { 4124, 779, -1 }, { 4125, 779, -1 }, { 4126, 779, -1 }, { 4127, 779, -1 }, { 4097, 1532, -1 }, { 4098, 1532, -1 }, { 4099, 1532, -1 }, { 4100, 1532, -1 }, { 4101, 1532, -1 }, { 4102, 1532, -1 }, { 4103, 1532, -1 }, { 4104, 1532, -1 }, { 4105, 1532, -1 }, { 4106, 1532, -1 }, { 4107, 1532, -1 }, { 4108, 1532, -1 }, { 4109, 1532, -1 }, { 4110, 1532, -1 }, { 4111, 1532, -1 }, { 4112, 1532, -1 }, { 4113, 1532, -1 }, { 4114, 1532, -1 }, { 4115, 1532, -1 }, { 4116, 1532, -1 }, { 4117, 1532, -1 }, { 4118, 1532, -1 }, { 4119, 1532, -1 }, { 4120, 1532, -1 }, { 4121, 1532, -1 }, { 4122, 1532, -1 }, { 4123, 1532, -1 }, { 4124, 1532, -1 }, { 4125, 1532, -1 }, { 4126, 1532, -1 }, { 4127, 1532, -1 }, { 4097, 1527, -1 }, { 4098, 1527, -1 }, { 4099, 1527, -1 }, { 4100, 1527, -1 }, { 4101, 1527, -1 }, { 4102, 1527, -1 }, { 4103, 1527, -1 }, { 4104, 1527, -1 }, { 4105, 1527, -1 }, { 4106, 1527, -1 }, { 4107, 1527, -1 }, { 4108, 1527, -1 }, { 4109, 1527, -1 }, { 4110, 1527, -1 }, { 4111, 1527, -1 }, { 4112, 1527, -1 }, { 4113, 1527, -1 }, { 4114, 1527, -1 }, { 4115, 1527, -1 }, { 4116, 1527, -1 }, { 4117, 1527, -1 }, { 4118, 1527, -1 }, { 4119, 1527, -1 }, { 4120, 1527, -1 }, { 4121, 1527, -1 }, { 4122, 1527, -1 }, { 4123, 1527, -1 }, { 4124, 1527, -1 }, { 4125, 1527, -1 }, { 4126, 1527, -1 }, { 4127, 1527, -1 }, { 4097, 1534, -1 }, { 4098, 1534, -1 }, { 4099, 1534, -1 }, { 4100, 1534, -1 }, { 4101, 1534, -1 }, { 4102, 1534, -1 }, { 4103, 1534, -1 }, { 4104, 1534, -1 }, { 4105, 1534, -1 }, { 4106, 1534, -1 }, { 4107, 1534, -1 }, { 4108, 1534, -1 }, { 4109, 1534, -1 }, { 4110, 1534, -1 }, { 4111, 1534, -1 }, { 4112, 1534, -1 }, { 4113, 1534, -1 }, { 4114, 1534, -1 }, { 4115, 1534, -1 }, { 4116, 1534, -1 }, { 4117, 1534, -1 }, { 4118, 1534, -1 }, { 4119, 1534, -1 }, { 4120, 1534, -1 }, { 4121, 1534, -1 }, { 4122, 1534, -1 }, { 4123, 1534, -1 }, { 4124, 1534, -1 }, { 4125, 1534, -1 }, { 4126, 1534, -1 }, { 4127, 1534, -1 }, { 4097, 1549, -1 }, { 4098, 1549, -1 }, { 4099, 1549, -1 }, { 4100, 1549, -1 }, { 4101, 1549, -1 }, { 4102, 1549, -1 }, { 4103, 1549, -1 }, { 4104, 1549, -1 }, { 4105, 1549, -1 }, { 4106, 1549, -1 }, { 4107, 1549, -1 }, { 4108, 1549, -1 }, { 4109, 1549, -1 }, { 4110, 1549, -1 }, { 4111, 1549, -1 }, { 4112, 1549, -1 }, { 4113, 1549, -1 }, { 4114, 1549, -1 }, { 4115, 1549, -1 }, { 4116, 1549, -1 }, { 4117, 1549, -1 }, { 4118, 1549, -1 }, { 4119, 1549, -1 }, { 4120, 1549, -1 }, { 4121, 1549, -1 }, { 4122, 1549, -1 }, { 4123, 1549, -1 }, { 4124, 1549, -1 }, { 4125, 1549, -1 }, { 4126, 1549, -1 }, { 4127, 1549, -1 }, { 4097, 1536, -1 }, { 4098, 1536, -1 }, { 4099, 1536, -1 }, { 4100, 1536, -1 }, { 4101, 1536, -1 }, { 4102, 1536, -1 }, { 4103, 1536, -1 }, { 4104, 1536, -1 }, { 4105, 1536, -1 }, { 4106, 1536, -1 }, { 4107, 1536, -1 }, { 4108, 1536, -1 }, { 4109, 1536, -1 }, { 4110, 1536, -1 }, { 4111, 1536, -1 }, { 4112, 1536, -1 }, { 4113, 1536, -1 }, { 4114, 1536, -1 }, { 4115, 1536, -1 }, { 4116, 1536, -1 }, { 4117, 1536, -1 }, { 4118, 1536, -1 }, { 4119, 1536, -1 }, { 4120, 1536, -1 }, { 4121, 1536, -1 }, { 4122, 1536, -1 }, { 4123, 1536, -1 }, { 4124, 1536, -1 }, { 4125, 1536, -1 }, { 4126, 1536, -1 }, { 4127, 1536, -1 }, { 4097, 1483, -1 }, { 4098, 1483, -1 }, { 4099, 1483, -1 }, { 4100, 1483, -1 }, { 4101, 1483, -1 }, { 4102, 1483, -1 }, { 4103, 1483, -1 }, { 4104, 1483, -1 }, { 4105, 1483, -1 }, { 4106, 1483, -1 }, { 4107, 1483, -1 }, { 4108, 1483, -1 }, { 4109, 1483, -1 }, { 4110, 1483, -1 }, { 4111, 1483, -1 }, { 4112, 1483, -1 }, { 4113, 1483, -1 }, { 4114, 1483, -1 }, { 4115, 1483, -1 }, { 4116, 1483, -1 }, { 4117, 1483, -1 }, { 4118, 1483, -1 }, { 4119, 1483, -1 }, { 4120, 1483, -1 }, { 4121, 1483, -1 }, { 4122, 1483, -1 }, { 4123, 1483, -1 }, { 4124, 1483, -1 }, { 4125, 1483, -1 }, { 4126, 1483, -1 }, { 4127, 1483, -1 }, { 4097, 1146, -1 }, { 4098, 1146, -1 }, { 4099, 1146, -1 }, { 4100, 1146, -1 }, { 4101, 1146, -1 }, { 4102, 1146, -1 }, { 4103, 1146, -1 }, { 4104, 1146, -1 }, { 4105, 1146, -1 }, { 4106, 1146, -1 }, { 4107, 1146, -1 }, { 4108, 1146, -1 }, { 4109, 1146, -1 }, { 4110, 1146, -1 }, { 4111, 1146, -1 }, { 4112, 1146, -1 }, { 4113, 1146, -1 }, { 4114, 1146, -1 }, { 4115, 1146, -1 }, { 4116, 1146, -1 }, { 4117, 1146, -1 }, { 4118, 1146, -1 }, { 4119, 1146, -1 }, { 4120, 1146, -1 }, { 4121, 1146, -1 }, { 4122, 1146, -1 }, { 4123, 1146, -1 }, { 4124, 1146, -1 }, { 4125, 1146, -1 }, { 4126, 1146, -1 }, { 4127, 1146, -1 }, { 4097, 1147, -1 }, { 4098, 1147, -1 }, { 4099, 1147, -1 }, { 4100, 1147, -1 }, { 4101, 1147, -1 }, { 4102, 1147, -1 }, { 4103, 1147, -1 }, { 4104, 1147, -1 }, { 4105, 1147, -1 }, { 4106, 1147, -1 }, { 4107, 1147, -1 }, { 4108, 1147, -1 }, { 4109, 1147, -1 }, { 4110, 1147, -1 }, { 4111, 1147, -1 }, { 4112, 1147, -1 }, { 4113, 1147, -1 }, { 4114, 1147, -1 }, { 4115, 1147, -1 }, { 4116, 1147, -1 }, { 4117, 1147, -1 }, { 4118, 1147, -1 }, { 4119, 1147, -1 }, { 4120, 1147, -1 }, { 4121, 1147, -1 }, { 4122, 1147, -1 }, { 4123, 1147, -1 }, { 4124, 1147, -1 }, { 4125, 1147, -1 }, { 4126, 1147, -1 }, { 4127, 1147, -1 }, { 4097, 1148, -1 }, { 4098, 1148, -1 }, { 4099, 1148, -1 }, { 4100, 1148, -1 }, { 4101, 1148, -1 }, { 4102, 1148, -1 }, { 4103, 1148, -1 }, { 4104, 1148, -1 }, { 4105, 1148, -1 }, { 4106, 1148, -1 }, { 4107, 1148, -1 }, { 4108, 1148, -1 }, { 4109, 1148, -1 }, { 4110, 1148, -1 }, { 4111, 1148, -1 }, { 4112, 1148, -1 }, { 4113, 1148, -1 }, { 4114, 1148, -1 }, { 4115, 1148, -1 }, { 4116, 1148, -1 }, { 4117, 1148, -1 }, { 4118, 1148, -1 }, { 4119, 1148, -1 }, { 4120, 1148, -1 }, { 4121, 1148, -1 }, { 4122, 1148, -1 }, { 4123, 1148, -1 }, { 4124, 1148, -1 }, { 4125, 1148, -1 }, { 4126, 1148, -1 }, { 4127, 1148, -1 }, { 4165, 97, -1 }, { 4166, 97, -1 }, { 4167, 97, -1 }, { 4168, 97, -1 }, { 4169, 97, -1 }, { 4170, 97, -1 }, { 4171, 97, -1 }, { 4165, 1329, -1 }, { 4166, 1329, -1 }, { 4167, 1329, -1 }, { 4168, 1329, -1 }, { 4169, 1329, -1 }, { 4170, 1329, -1 }, { 4171, 1329, -1 }, { 4165, 190, -1 }, { 4166, 190, -1 }, { 4167, 190, -1 }, { 4168, 190, -1 }, { 4169, 190, -1 }, { 4170, 190, -1 }, { 4171, 190, -1 }, { 4165, 1694, -1 }, { 4166, 1694, -1 }, { 4167, 1694, -1 }, { 4168, 1694, -1 }, { 4169, 1694, -1 }, { 4170, 1694, -1 }, { 4171, 1694, -1 }, { 4165, 169, -1 }, { 4166, 169, -1 }, { 4167, 169, -1 }, { 4168, 169, -1 }, { 4169, 169, -1 }, { 4170, 169, -1 }, { 4171, 169, -1 }, { 4165, 854, -1 }, { 4166, 854, -1 }, { 4167, 854, -1 }, { 4168, 854, -1 }, { 4169, 854, -1 }, { 4170, 854, -1 }, { 4171, 854, -1 }, { 4165, 182, -1 }, { 4166, 182, -1 }, { 4167, 182, -1 }, { 4168, 182, -1 }, { 4169, 182, -1 }, { 4170, 182, -1 }, { 4171, 182, -1 }, { 4165, 896, -1 }, { 4166, 896, -1 }, { 4167, 896, -1 }, { 4168, 896, -1 }, { 4169, 896, -1 }, { 4170, 896, -1 }, { 4171, 896, -1 }, { 4165, 1567, -1 }, { 4166, 1567, -1 }, { 4167, 1567, -1 }, { 4168, 1567, -1 }, { 4169, 1567, -1 }, { 4170, 1567, -1 }, { 4171, 1567, -1 }, { 4165, 1822, -1 }, { 4166, 1822, -1 }, { 4167, 1822, -1 }, { 4168, 1822, -1 }, { 4169, 1822, -1 }, { 4170, 1822, -1 }, { 4171, 1822, -1 }, { 4172, 97, -1 }, { 4173, 97, -1 }, { 4174, 97, -1 }, { 4175, 97, -1 }, { 4176, 97, -1 }, { 4177, 97, -1 }, { 4178, 97, -1 }, { 4179, 97, -1 }, { 4180, 97, -1 }, { 4181, 97, -1 }, { 4182, 97, -1 }, { 4183, 97, -1 }, { 4184, 97, -1 }, { 4172, 1329, -1 }, { 4173, 1329, -1 }, { 4174, 1329, -1 }, { 4175, 1329, -1 }, { 4176, 1329, -1 }, { 4177, 1329, -1 }, { 4178, 1329, -1 }, { 4179, 1329, -1 }, { 4180, 1329, -1 }, { 4181, 1329, -1 }, { 4182, 1329, -1 }, { 4183, 1329, -1 }, { 4184, 1329, -1 }, { 4172, 190, -1 }, { 4173, 190, -1 }, { 4174, 190, -1 }, { 4175, 190, -1 }, { 4176, 190, -1 }, { 4177, 190, -1 }, { 4178, 190, -1 }, { 4179, 190, -1 }, { 4180, 190, -1 }, { 4181, 190, -1 }, { 4182, 190, -1 }, { 4183, 190, -1 }, { 4184, 190, -1 }, { 4172, 1694, -1 }, { 4173, 1694, -1 }, { 4174, 1694, -1 }, { 4175, 1694, -1 }, { 4176, 1694, -1 }, { 4177, 1694, -1 }, { 4178, 1694, -1 }, { 4179, 1694, -1 }, { 4180, 1694, -1 }, { 4181, 1694, -1 }, { 4182, 1694, -1 }, { 4183, 1694, -1 }, { 4184, 1694, -1 }, { 4172, 169, -1 }, { 4173, 169, -1 }, { 4174, 169, -1 }, { 4175, 169, -1 }, { 4176, 169, -1 }, { 4177, 169, -1 }, { 4178, 169, -1 }, { 4179, 169, -1 }, { 4180, 169, -1 }, { 4181, 169, -1 }, { 4182, 169, -1 }, { 4183, 169, -1 }, { 4184, 169, -1 }, { 4172, 854, -1 }, { 4173, 854, -1 }, { 4174, 854, -1 }, { 4175, 854, -1 }, { 4176, 854, -1 }, { 4177, 854, -1 }, { 4178, 854, -1 }, { 4179, 854, -1 }, { 4180, 854, -1 }, { 4181, 854, -1 }, { 4182, 854, -1 }, { 4183, 854, -1 }, { 4184, 854, -1 }, { 4172, 182, -1 }, { 4173, 182, -1 }, { 4174, 182, -1 }, { 4175, 182, -1 }, { 4176, 182, -1 }, { 4177, 182, -1 }, { 4178, 182, -1 }, { 4179, 182, -1 }, { 4180, 182, -1 }, { 4181, 182, -1 }, { 4182, 182, -1 }, { 4183, 182, -1 }, { 4184, 182, -1 }, { 4172, 896, -1 }, { 4173, 896, -1 }, { 4174, 896, -1 }, { 4175, 896, -1 }, { 4176, 896, -1 }, { 4177, 896, -1 }, { 4178, 896, -1 }, { 4179, 896, -1 }, { 4180, 896, -1 }, { 4181, 896, -1 }, { 4182, 896, -1 }, { 4183, 896, -1 }, { 4184, 896, -1 }, { 4172, 1567, -1 }, { 4173, 1567, -1 }, { 4174, 1567, -1 }, { 4175, 1567, -1 }, { 4176, 1567, -1 }, { 4177, 1567, -1 }, { 4178, 1567, -1 }, { 4179, 1567, -1 }, { 4180, 1567, -1 }, { 4181, 1567, -1 }, { 4182, 1567, -1 }, { 4183, 1567, -1 }, { 4184, 1567, -1 }, { 4172, 1822, -1 }, { 4173, 1822, -1 }, { 4174, 1822, -1 }, { 4175, 1822, -1 }, { 4176, 1822, -1 }, { 4177, 1822, -1 }, { 4178, 1822, -1 }, { 4179, 1822, -1 }, { 4180, 1822, -1 }, { 4181, 1822, -1 }, { 4182, 1822, -1 }, { 4183, 1822, -1 }, { 4184, 1822, -1 }, { 4185, 97, -1 }, { 4186, 97, -1 }, { 4187, 97, -1 }, { 4188, 97, -1 }, { 4189, 97, -1 }, { 4190, 97, -1 }, { 4191, 97, -1 }, { 4192, 97, -1 }, { 4193, 97, -1 }, { 4194, 97, -1 }, { 4195, 97, -1 }, { 4196, 97, -1 }, { 4197, 97, -1 }, { 4185, 1329, -1 }, { 4186, 1329, -1 }, { 4187, 1329, -1 }, { 4188, 1329, -1 }, { 4189, 1329, -1 }, { 4190, 1329, -1 }, { 4191, 1329, -1 }, { 4192, 1329, -1 }, { 4193, 1329, -1 }, { 4194, 1329, -1 }, { 4195, 1329, -1 }, { 4196, 1329, -1 }, { 4197, 1329, -1 }, { 4185, 190, -1 }, { 4186, 190, -1 }, { 4187, 190, -1 }, { 4188, 190, -1 }, { 4189, 190, -1 }, { 4190, 190, -1 }, { 4191, 190, -1 }, { 4192, 190, -1 }, { 4193, 190, -1 }, { 4194, 190, -1 }, { 4195, 190, -1 }, { 4196, 190, -1 }, { 4197, 190, -1 }, { 4185, 1694, -1 }, { 4186, 1694, -1 }, { 4187, 1694, -1 }, { 4188, 1694, -1 }, { 4189, 1694, -1 }, { 4190, 1694, -1 }, { 4191, 1694, -1 }, { 4192, 1694, -1 }, { 4193, 1694, -1 }, { 4194, 1694, -1 }, { 4195, 1694, -1 }, { 4196, 1694, -1 }, { 4197, 1694, -1 }, { 4185, 169, -1 }, { 4186, 169, -1 }, { 4187, 169, -1 }, { 4188, 169, -1 }, { 4189, 169, -1 }, { 4190, 169, -1 }, { 4191, 169, -1 }, { 4192, 169, -1 }, { 4193, 169, -1 }, { 4194, 169, -1 }, { 4195, 169, -1 }, { 4196, 169, -1 }, { 4197, 169, -1 }, { 4185, 854, -1 }, { 4186, 854, -1 }, { 4187, 854, -1 }, { 4188, 854, -1 }, { 4189, 854, -1 }, { 4190, 854, -1 }, { 4191, 854, -1 }, { 4192, 854, -1 }, { 4193, 854, -1 }, { 4194, 854, -1 }, { 4195, 854, -1 }, { 4196, 854, -1 }, { 4197, 854, -1 }, { 4185, 182, -1 }, { 4186, 182, -1 }, { 4187, 182, -1 }, { 4188, 182, -1 }, { 4189, 182, -1 }, { 4190, 182, -1 }, { 4191, 182, -1 }, { 4192, 182, -1 }, { 4193, 182, -1 }, { 4194, 182, -1 }, { 4195, 182, -1 }, { 4196, 182, -1 }, { 4197, 182, -1 }, { 4185, 896, -1 }, { 4186, 896, -1 }, { 4187, 896, -1 }, { 4188, 896, -1 }, { 4189, 896, -1 }, { 4190, 896, -1 }, { 4191, 896, -1 }, { 4192, 896, -1 }, { 4193, 896, -1 }, { 4194, 896, -1 }, { 4195, 896, -1 }, { 4196, 896, -1 }, { 4197, 896, -1 }, { 4185, 1567, -1 }, { 4186, 1567, -1 }, { 4187, 1567, -1 }, { 4188, 1567, -1 }, { 4189, 1567, -1 }, { 4190, 1567, -1 }, { 4191, 1567, -1 }, { 4192, 1567, -1 }, { 4193, 1567, -1 }, { 4194, 1567, -1 }, { 4195, 1567, -1 }, { 4196, 1567, -1 }, { 4197, 1567, -1 }, { 4185, 1822, -1 }, { 4186, 1822, -1 }, { 4187, 1822, -1 }, { 4188, 1822, -1 }, { 4189, 1822, -1 }, { 4190, 1822, -1 }, { 4191, 1822, -1 }, { 4192, 1822, -1 }, { 4193, 1822, -1 }, { 4194, 1822, -1 }, { 4195, 1822, -1 }, { 4196, 1822, -1 }, { 4197, 1822, -1 }, { 4128, 97, -1 }, { 4129, 97, -1 }, { 4130, 97, -1 }, { 4131, 97, -1 }, { 4132, 97, -1 }, { 4133, 97, -1 }, { 4134, 97, -1 }, { 4135, 97, -1 }, { 4136, 97, -1 }, { 4137, 97, -1 }, { 4138, 97, -1 }, { 4139, 97, -1 }, { 4140, 97, -1 }, { 4141, 97, -1 }, { 4142, 97, -1 }, { 4143, 97, -1 }, { 4144, 97, -1 }, { 4145, 97, -1 }, { 4146, 97, -1 }, { 4147, 97, -1 }, { 4148, 97, -1 }, { 4149, 97, -1 }, { 4150, 97, -1 }, { 4151, 97, -1 }, { 4152, 97, -1 }, { 4153, 97, -1 }, { 4154, 97, -1 }, { 4155, 97, -1 }, { 4156, 97, -1 }, { 4157, 97, -1 }, { 4158, 97, -1 }, { 4159, 97, -1 }, { 4160, 97, -1 }, { 4161, 97, -1 }, { 4162, 97, -1 }, { 4163, 97, -1 }, { 4164, 97, -1 }, { 4128, 1329, -1 }, { 4129, 1329, -1 }, { 4130, 1329, -1 }, { 4131, 1329, -1 }, { 4132, 1329, -1 }, { 4133, 1329, -1 }, { 4134, 1329, -1 }, { 4135, 1329, -1 }, { 4136, 1329, -1 }, { 4137, 1329, -1 }, { 4138, 1329, -1 }, { 4139, 1329, -1 }, { 4140, 1329, -1 }, { 4141, 1329, -1 }, { 4142, 1329, -1 }, { 4143, 1329, -1 }, { 4144, 1329, -1 }, { 4145, 1329, -1 }, { 4146, 1329, -1 }, { 4147, 1329, -1 }, { 4148, 1329, -1 }, { 4149, 1329, -1 }, { 4150, 1329, -1 }, { 4151, 1329, -1 }, { 4152, 1329, -1 }, { 4153, 1329, -1 }, { 4154, 1329, -1 }, { 4155, 1329, -1 }, { 4156, 1329, -1 }, { 4157, 1329, -1 }, { 4158, 1329, -1 }, { 4159, 1329, -1 }, { 4160, 1329, -1 }, { 4161, 1329, -1 }, { 4162, 1329, -1 }, { 4163, 1329, -1 }, { 4164, 1329, -1 }, { 4128, 190, -1 }, { 4129, 190, -1 }, { 4130, 190, -1 }, { 4131, 190, -1 }, { 4132, 190, -1 }, { 4133, 190, -1 }, { 4134, 190, -1 }, { 4135, 190, -1 }, { 4136, 190, -1 }, { 4137, 190, -1 }, { 4138, 190, -1 }, { 4139, 190, -1 }, { 4140, 190, -1 }, { 4141, 190, -1 }, { 4142, 190, -1 }, { 4143, 190, -1 }, { 4144, 190, -1 }, { 4145, 190, -1 }, { 4146, 190, -1 }, { 4147, 190, -1 }, { 4148, 190, -1 }, { 4149, 190, -1 }, { 4150, 190, -1 }, { 4151, 190, -1 }, { 4152, 190, -1 }, { 4153, 190, -1 }, { 4154, 190, -1 }, { 4155, 190, -1 }, { 4156, 190, -1 }, { 4157, 190, -1 }, { 4158, 190, -1 }, { 4159, 190, -1 }, { 4160, 190, -1 }, { 4161, 190, -1 }, { 4162, 190, -1 }, { 4163, 190, -1 }, { 4164, 190, -1 }, { 4128, 1694, -1 }, { 4129, 1694, -1 }, { 4130, 1694, -1 }, { 4131, 1694, -1 }, { 4132, 1694, -1 }, { 4133, 1694, -1 }, { 4134, 1694, -1 }, { 4135, 1694, -1 }, { 4136, 1694, -1 }, { 4137, 1694, -1 }, { 4138, 1694, -1 }, { 4139, 1694, -1 }, { 4140, 1694, -1 }, { 4141, 1694, -1 }, { 4142, 1694, -1 }, { 4143, 1694, -1 }, { 4144, 1694, -1 }, { 4145, 1694, -1 }, { 4146, 1694, -1 }, { 4147, 1694, -1 }, { 4148, 1694, -1 }, { 4149, 1694, -1 }, { 4150, 1694, -1 }, { 4151, 1694, -1 }, { 4152, 1694, -1 }, { 4153, 1694, -1 }, { 4154, 1694, -1 }, { 4155, 1694, -1 }, { 4156, 1694, -1 }, { 4157, 1694, -1 }, { 4158, 1694, -1 }, { 4159, 1694, -1 }, { 4160, 1694, -1 }, { 4161, 1694, -1 }, { 4162, 1694, -1 }, { 4163, 1694, -1 }, { 4164, 1694, -1 }, { 4128, 169, -1 }, { 4129, 169, -1 }, { 4130, 169, -1 }, { 4131, 169, -1 }, { 4132, 169, -1 }, { 4133, 169, -1 }, { 4134, 169, -1 }, { 4135, 169, -1 }, { 4136, 169, -1 }, { 4137, 169, -1 }, { 4138, 169, -1 }, { 4139, 169, -1 }, { 4140, 169, -1 }, { 4141, 169, -1 }, { 4142, 169, -1 }, { 4143, 169, -1 }, { 4144, 169, -1 }, { 4145, 169, -1 }, { 4146, 169, -1 }, { 4147, 169, -1 }, { 4148, 169, -1 }, { 4149, 169, -1 }, { 4150, 169, -1 }, { 4151, 169, -1 }, { 4152, 169, -1 }, { 4153, 169, -1 }, { 4154, 169, -1 }, { 4155, 169, -1 }, { 4156, 169, -1 }, { 4157, 169, -1 }, { 4158, 169, -1 }, { 4159, 169, -1 }, { 4160, 169, -1 }, { 4161, 169, -1 }, { 4162, 169, -1 }, { 4163, 169, -1 }, { 4164, 169, -1 }, { 4128, 854, -1 }, { 4129, 854, -1 }, { 4130, 854, -1 }, { 4131, 854, -1 }, { 4132, 854, -1 }, { 4133, 854, -1 }, { 4134, 854, -1 }, { 4135, 854, -1 }, { 4136, 854, -1 }, { 4137, 854, -1 }, { 4138, 854, -1 }, { 4139, 854, -1 }, { 4140, 854, -1 }, { 4141, 854, -1 }, { 4142, 854, -1 }, { 4143, 854, -1 }, { 4144, 854, -1 }, { 4145, 854, -1 }, { 4146, 854, -1 }, { 4147, 854, -1 }, { 4148, 854, -1 }, { 4149, 854, -1 }, { 4150, 854, -1 }, { 4151, 854, -1 }, { 4152, 854, -1 }, { 4153, 854, -1 }, { 4154, 854, -1 }, { 4155, 854, -1 }, { 4156, 854, -1 }, { 4157, 854, -1 }, { 4158, 854, -1 }, { 4159, 854, -1 }, { 4160, 854, -1 }, { 4161, 854, -1 }, { 4162, 854, -1 }, { 4163, 854, -1 }, { 4164, 854, -1 }, { 4128, 182, -1 }, { 4129, 182, -1 }, { 4130, 182, -1 }, { 4131, 182, -1 }, { 4132, 182, -1 }, { 4133, 182, -1 }, { 4134, 182, -1 }, { 4135, 182, -1 }, { 4136, 182, -1 }, { 4137, 182, -1 }, { 4138, 182, -1 }, { 4139, 182, -1 }, { 4140, 182, -1 }, { 4141, 182, -1 }, { 4142, 182, -1 }, { 4143, 182, -1 }, { 4144, 182, -1 }, { 4145, 182, -1 }, { 4146, 182, -1 }, { 4147, 182, -1 }, { 4148, 182, -1 }, { 4149, 182, -1 }, { 4150, 182, -1 }, { 4151, 182, -1 }, { 4152, 182, -1 }, { 4153, 182, -1 }, { 4154, 182, -1 }, { 4155, 182, -1 }, { 4156, 182, -1 }, { 4157, 182, -1 }, { 4158, 182, -1 }, { 4159, 182, -1 }, { 4160, 182, -1 }, { 4161, 182, -1 }, { 4162, 182, -1 }, { 4163, 182, -1 }, { 4164, 182, -1 }, { 4128, 896, -1 }, { 4129, 896, -1 }, { 4130, 896, -1 }, { 4131, 896, -1 }, { 4132, 896, -1 }, { 4133, 896, -1 }, { 4134, 896, -1 }, { 4135, 896, -1 }, { 4136, 896, -1 }, { 4137, 896, -1 }, { 4138, 896, -1 }, { 4139, 896, -1 }, { 4140, 896, -1 }, { 4141, 896, -1 }, { 4142, 896, -1 }, { 4143, 896, -1 }, { 4144, 896, -1 }, { 4145, 896, -1 }, { 4146, 896, -1 }, { 4147, 896, -1 }, { 4148, 896, -1 }, { 4149, 896, -1 }, { 4150, 896, -1 }, { 4151, 896, -1 }, { 4152, 896, -1 }, { 4153, 896, -1 }, { 4154, 896, -1 }, { 4155, 896, -1 }, { 4156, 896, -1 }, { 4157, 896, -1 }, { 4158, 896, -1 }, { 4159, 896, -1 }, { 4160, 896, -1 }, { 4161, 896, -1 }, { 4162, 896, -1 }, { 4163, 896, -1 }, { 4164, 896, -1 }, { 4128, 1567, -1 }, { 4129, 1567, -1 }, { 4130, 1567, -1 }, { 4131, 1567, -1 }, { 4132, 1567, -1 }, { 4133, 1567, -1 }, { 4134, 1567, -1 }, { 4135, 1567, -1 }, { 4136, 1567, -1 }, { 4137, 1567, -1 }, { 4138, 1567, -1 }, { 4139, 1567, -1 }, { 4140, 1567, -1 }, { 4141, 1567, -1 }, { 4142, 1567, -1 }, { 4143, 1567, -1 }, { 4144, 1567, -1 }, { 4145, 1567, -1 }, { 4146, 1567, -1 }, { 4147, 1567, -1 }, { 4148, 1567, -1 }, { 4149, 1567, -1 }, { 4150, 1567, -1 }, { 4151, 1567, -1 }, { 4152, 1567, -1 }, { 4153, 1567, -1 }, { 4154, 1567, -1 }, { 4155, 1567, -1 }, { 4156, 1567, -1 }, { 4157, 1567, -1 }, { 4158, 1567, -1 }, { 4159, 1567, -1 }, { 4160, 1567, -1 }, { 4161, 1567, -1 }, { 4162, 1567, -1 }, { 4163, 1567, -1 }, { 4164, 1567, -1 }, { 4128, 1822, -1 }, { 4129, 1822, -1 }, { 4130, 1822, -1 }, { 4131, 1822, -1 }, { 4132, 1822, -1 }, { 4133, 1822, -1 }, { 4134, 1822, -1 }, { 4135, 1822, -1 }, { 4136, 1822, -1 }, { 4137, 1822, -1 }, { 4138, 1822, -1 }, { 4139, 1822, -1 }, { 4140, 1822, -1 }, { 4141, 1822, -1 }, { 4142, 1822, -1 }, { 4143, 1822, -1 }, { 4144, 1822, -1 }, { 4145, 1822, -1 }, { 4146, 1822, -1 }, { 4147, 1822, -1 }, { 4148, 1822, -1 }, { 4149, 1822, -1 }, { 4150, 1822, -1 }, { 4151, 1822, -1 }, { 4152, 1822, -1 }, { 4153, 1822, -1 }, { 4154, 1822, -1 }, { 4155, 1822, -1 }, { 4156, 1822, -1 }, { 4157, 1822, -1 }, { 4158, 1822, -1 }, { 4159, 1822, -1 }, { 4160, 1822, -1 }, { 4161, 1822, -1 }, { 4162, 1822, -1 }, { 4163, 1822, -1 }, { 4164, 1822, -1 }, { 1555, 1737, -1 }, { 1556, 1737, -1 }, { 1557, 1737, -1 }, { 1558, 1737, -1 }, { 1555, 1868, -1 }, { 1556, 1868, -1 }, { 1557, 1868, -1 }, { 1558, 1868, -1 }, { 1555, 1984, -1 }, { 1556, 1984, -1 }, { 1557, 1984, -1 }, { 1558, 1984, -1 }, { 1556, 1831, -1 }, { 1557, 1831, -1 }, { 1558, 1831, -1 }, { 1555, 1914, -1 }, { 1556, 1914, -1 }, { 1557, 1914, -1 }, { 1558, 1914, -1 }, { 1555, 1794, -1 }, { 1556, 1794, -1 }, { 1557, 1794, -1 }, { 1558, 1794, -1 }, { 1555, 1803, -1 }, { 1556, 1803, -1 }, { 1557, 1803, -1 }, { 1558, 1803, -1 }, { 1555, 1804, -1 }, { 1556, 1804, -1 }, { 1557, 1804, -1 }, { 1558, 1804, -1 }, { 1555, 1850, -1 }, { 1556, 1850, -1 }, { 1557, 1850, -1 }, { 1558, 1850, -1 }, { 1555, 1852, -1 }, { 1556, 1852, -1 }, { 1557, 1852, -1 }, { 1558, 1852, -1 }, { 1555, 1881, -1 }, { 1556, 1881, -1 }, { 1557, 1881, -1 }, { 1558, 1881, -1 }, { 1555, 1682, -1 }, { 1556, 1682, -1 }, { 1557, 1682, -1 }, { 1558, 1682, -1 }, { 1555, 950, -1 }, { 1556, 950, -1 }, { 1557, 950, -1 }, { 1558, 950, -1 }, { 1555, 63, -1 }, { 1556, 63, -1 }, { 1557, 63, -1 }, { 1558, 63, -1 }, { 1555, 7, -1 }, { 1556, 7, -1 }, { 1557, 7, -1 }, { 1558, 7, -1 }, { 1555, 13, -1 }, { 1556, 13, -1 }, { 1557, 13, -1 }, { 1558, 13, -1 }, { 1555, 23, -1 }, { 1556, 23, -1 }, { 1557, 23, -1 }, { 1558, 23, -1 }, { 1555, 1849, -1 }, { 1556, 1849, -1 }, { 1557, 1849, -1 }, { 1558, 1849, -1 }, { 1555, 10, -1 }, { 1556, 10, -1 }, { 1557, 10, -1 }, { 1558, 10, -1 }, { 1555, 14, -1 }, { 1556, 14, -1 }, { 1557, 14, -1 }, { 1558, 14, -1 }, { 1555, 134, -1 }, { 1556, 134, -1 }, { 1557, 134, -1 }, { 1558, 134, -1 }, { 1555, 15, -1 }, { 1556, 15, -1 }, { 1557, 15, -1 }, { 1558, 15, -1 }, { 1555, 16, -1 }, { 1556, 16, -1 }, { 1557, 16, -1 }, { 1558, 16, -1 }, { 1555, 17, -1 }, { 1556, 17, -1 }, { 1557, 17, -1 }, { 1558, 17, -1 }, { 1555, 11, -1 }, { 1556, 11, -1 }, { 1557, 11, -1 }, { 1558, 11, -1 }, { 1555, 12, -1 }, { 1556, 12, -1 }, { 1557, 12, -1 }, { 1558, 12, -1 }, { 1555, 493, -1 }, { 1556, 493, -1 }, { 1557, 493, -1 }, { 1558, 493, -1 }, { 1555, 476, -1 }, { 1556, 476, -1 }, { 1557, 476, -1 }, { 1558, 476, -1 }, { 1555, 275, -1 }, { 1556, 275, -1 }, { 1557, 275, -1 }, { 1558, 275, -1 }, { 1555, 18, -1 }, { 1556, 18, -1 }, { 1557, 18, -1 }, { 1558, 18, -1 }, { 1555, 19, -1 }, { 1556, 19, -1 }, { 1557, 19, -1 }, { 1558, 19, -1 }, { 1555, 453, -1 }, { 1556, 453, -1 }, { 1557, 453, -1 }, { 1558, 453, -1 }, { 1555, 68, -1 }, { 1556, 68, -1 }, { 1557, 68, -1 }, { 1558, 68, -1 }, { 1555, 20, -1 }, { 1556, 20, -1 }, { 1557, 20, -1 }, { 1558, 20, -1 }, { 1555, 21, -1 }, { 1556, 21, -1 }, { 1557, 21, -1 }, { 1558, 21, -1 }, { 1555, 22, -1 }, { 1556, 22, -1 }, { 1557, 22, -1 }, { 1558, 22, -1 }, { 1555, 589, -1 }, { 1556, 589, -1 }, { 1557, 589, -1 }, { 1558, 589, -1 }, { 1555, 620, -1 }, { 1556, 620, -1 }, { 1557, 620, -1 }, { 1558, 620, -1 }, { 1555, 784, -1 }, { 1556, 784, -1 }, { 1557, 784, -1 }, { 1558, 784, -1 }, { 1555, 785, -1 }, { 1556, 785, -1 }, { 1557, 785, -1 }, { 1558, 785, -1 }, { 1556, 1377, -1 }, { 1557, 1377, -1 }, { 1558, 1377, -1 }, { 1555, 1501, -1 }, { 1556, 1501, -1 }, { 1557, 1501, -1 }, { 1558, 1501, -1 }, { 1555, 1294, -1 }, { 1556, 1294, -1 }, { 1557, 1294, -1 }, { 1558, 1294, -1 }, { 1555, 1314, -1 }, { 1556, 1314, -1 }, { 1557, 1314, -1 }, { 1558, 1314, -1 }, { 1555, 1316, -1 }, { 1556, 1316, -1 }, { 1557, 1316, -1 }, { 1558, 1316, -1 }, { 1555, 1348, -1 }, { 1556, 1348, -1 }, { 1557, 1348, -1 }, { 1558, 1348, -1 }, { 1555, 1356, -1 }, { 1556, 1356, -1 }, { 1557, 1356, -1 }, { 1558, 1356, -1 }, { 1555, 1317, -1 }, { 1556, 1317, -1 }, { 1557, 1317, -1 }, { 1558, 1317, -1 }, { 1555, 1315, -1 }, { 1556, 1315, -1 }, { 1557, 1315, -1 }, { 1558, 1315, -1 }, { 1555, 1351, -1 }, { 1556, 1351, -1 }, { 1557, 1351, -1 }, { 1558, 1351, -1 }, { 1555, 1751, -1 }, { 1556, 1751, -1 }, { 1557, 1751, -1 }, { 1558, 1751, -1 }, { 1555, 1756, -1 }, { 1556, 1756, -1 }, { 1557, 1756, -1 }, { 1558, 1756, -1 }, { 1556, 832, -1 }, { 1557, 832, -1 }, { 1558, 832, -1 }, { 1555, 837, -1 }, { 1556, 837, -1 }, { 1557, 837, -1 }, { 1558, 837, -1 }, { 1555, 838, -1 }, { 1556, 838, -1 }, { 1557, 838, -1 }, { 1558, 838, -1 }, { 1555, 836, -1 }, { 1556, 836, -1 }, { 1557, 836, -1 }, { 1558, 836, -1 }, { 1555, 783, -1 }, { 1556, 783, -1 }, { 1557, 783, -1 }, { 1558, 783, -1 }, { 1555, 778, -1 }, { 1556, 778, -1 }, { 1557, 778, -1 }, { 1558, 778, -1 }, { 1555, 779, -1 }, { 1556, 779, -1 }, { 1557, 779, -1 }, { 1558, 779, -1 }, { 1555, 1532, -1 }, { 1556, 1532, -1 }, { 1557, 1532, -1 }, { 1558, 1532, -1 }, { 1555, 1527, -1 }, { 1556, 1527, -1 }, { 1557, 1527, -1 }, { 1558, 1527, -1 }, { 1555, 1534, -1 }, { 1556, 1534, -1 }, { 1557, 1534, -1 }, { 1558, 1534, -1 }, { 1555, 1549, -1 }, { 1556, 1549, -1 }, { 1557, 1549, -1 }, { 1558, 1549, -1 }, { 1555, 1536, -1 }, { 1556, 1536, -1 }, { 1557, 1536, -1 }, { 1558, 1536, -1 }, { 1555, 1483, -1 }, { 1556, 1483, -1 }, { 1557, 1483, -1 }, { 1558, 1483, -1 }, { 338, 7, -1 }, { 338, 13, -1 }, { 338, 23, -1 }, { 338, 10, -1 }, { 338, 652, -1 }, { 338, 11, -1 }, { 338, 12, -1 }, { 338, 307, -1 }, { 338, 306, -1 }, { 338, 43, -1 }, { 338, 1756, -1 }, { 338, 783, -1 }, { 338, 778, -1 }, { 338, 1483, -1 }, { 1503, 1770, -1 }, { 1504, 1770, -1 }, { 1505, 1770, -1 }, { 1506, 1770, -1 }, { 1505, 63, -1 }, { 1506, 63, -1 }, { 1503, 11, -1 }, { 1504, 11, -1 }, { 1505, 11, -1 }, { 1506, 11, -1 }, { 1503, 752, -1 }, { 1504, 752, -1 }, { 1505, 752, -1 }, { 1506, 752, -1 }, { 1503, 198, -1 }, { 1504, 198, -1 }, { 1505, 198, -1 }, { 1506, 198, -1 }, { 1503, 21, -1 }, { 1504, 21, -1 }, { 1505, 21, -1 }, { 1506, 21, -1 }, { 1503, 1149, -1 }, { 1504, 1149, -1 }, { 1505, 1149, -1 }, { 1506, 1149, -1 }, { 1507, 1061, -1 }, { 1508, 1061, -1 }, { 1509, 1061, -1 }, { 1510, 1061, -1 }, { 1507, 984, -1 }, { 1508, 984, -1 }, { 1509, 984, -1 }, { 1510, 984, -1 }, { 1509, 69, -1 }, { 1510, 69, -1 }, { 1507, 993, -1 }, { 1508, 993, -1 }, { 1509, 993, -1 }, { 1510, 993, -1 }, { 1507, 992, -1 }, { 1508, 992, -1 }, { 1509, 992, -1 }, { 1510, 992, -1 }, { 1507, 1851, -1 }, { 1508, 1851, -1 }, { 1509, 1851, -1 }, { 1510, 1851, -1 }, { 1507, 1007, -1 }, { 1508, 1007, -1 }, { 1509, 1007, -1 }, { 1510, 1007, -1 }, { 1507, 1000, -1 }, { 1508, 1000, -1 }, { 1509, 1000, -1 }, { 1510, 1000, -1 }, { 1507, 1772, -1 }, { 1508, 1772, -1 }, { 1509, 1772, -1 }, { 1510, 1772, -1 }, { 1507, 169, -1 }, { 1508, 169, -1 }, { 1509, 169, -1 }, { 1510, 169, -1 }, { 1508, 182, -1 }, { 1509, 182, -1 }, { 1510, 182, -1 }, { 1507, 749, -1 }, { 1508, 749, -1 }, { 1509, 749, -1 }, { 1510, 749, -1 }, { 1507, 276, -1 }, { 1508, 276, -1 }, { 1509, 276, -1 }, { 1510, 276, -1 }, { 1507, 1471, -1 }, { 1508, 1471, -1 }, { 1509, 1471, -1 }, { 1510, 1471, -1 }, { 1507, 200, -1 }, { 1508, 200, -1 }, { 1509, 200, -1 }, { 1510, 200, -1 }, { 1507, 1178, -1 }, { 1508, 1178, -1 }, { 1509, 1178, -1 }, { 1510, 1178, -1 }, { 1507, 1151, -1 }, { 1508, 1151, -1 }, { 1509, 1151, -1 }, { 1510, 1151, -1 }, { 1507, 1161, -1 }, { 1508, 1161, -1 }, { 1509, 1161, -1 }, { 1510, 1161, -1 }, { 1508, 1757, -1 }, { 1509, 1757, -1 }, { 1510, 1757, -1 }, { 1507, 1744, -1 }, { 1508, 1744, -1 }, { 1509, 1744, -1 }, { 1510, 1744, -1 }, { 1508, 1743, -1 }, { 1509, 1743, -1 }, { 1510, 1743, -1 }, { 1507, 1746, -1 }, { 1508, 1746, -1 }, { 1509, 1746, -1 }, { 1510, 1746, -1 }, { 1508, 1745, -1 }, { 1509, 1745, -1 }, { 1510, 1745, -1 }, { 1513, 1766, -1 }, { 1514, 1766, -1 }, { 1511, 876, -1 }, { 1513, 876, -1 }, { 1514, 876, -1 }, { 1511, 372, -1 }, { 1512, 372, -1 }, { 1513, 372, -1 }, { 1514, 372, -1 }, { 1511, 378, -1 }, { 1512, 378, -1 }, { 1513, 378, -1 }, { 1514, 378, -1 }, { 1511, 1605, -1 }, { 1512, 1605, -1 }, { 1513, 1605, -1 }, { 1514, 1605, -1 }, { 1511, 1164, -1 }, { 1512, 1164, -1 }, { 1513, 1164, -1 }, { 1514, 1164, -1 }, { 1512, 2002, -1 }, { 1513, 2002, -1 }, { 1514, 2002, -1 }, { 1515, 78, -1 }, { 1516, 78, -1 }, { 1517, 78, -1 }, { 1518, 78, -1 }, { 1515, 748, -1 }, { 1516, 748, -1 }, { 1517, 748, -1 }, { 1518, 748, -1 }, { 1519, 370, -1 }, { 1520, 370, -1 }, { 1521, 370, -1 }, { 1522, 370, -1 }, { 1519, 661, -1 }, { 1520, 661, -1 }, { 1521, 661, -1 }, { 1522, 661, -1 }, { 3983, 367, -1 }, { 3999, 367, -1 }, { 3994, 367, -1 }, { 4028, 367, -1 }, { 3988, 367, -1 }, { 4022, 367, -1 }, { 23537, 783, -1 }, { 23537, 778, -1 }, { 23610, 783, -1 }, { 23610, 778, -1 }, { 23611, 182, -1 }, { 23612, 182, -1 }, { 23613, 182, -1 }, { 23611, 1743, -1 }, { 23612, 1743, -1 }, { 23613, 1743, -1 }, { 23611, 1745, -1 }, { 23612, 1745, -1 }, { 23613, 1745, -1 }, { 23614, 182, -1 }, { 23615, 182, -1 }, { 23616, 182, -1 }, { 23614, 1743, -1 }, { 23615, 1743, -1 }, { 23616, 1743, -1 }, { 23614, 1745, -1 }, { 23615, 1745, -1 }, { 23616, 1745, -1 }, { 23635, 10, -1 }, { 23636, 10, -1 }, { 23637, 10, -1 }, { 23638, 10, -1 }, { 23639, 10, -1 }, { 23640, 10, -1 }, { 23641, 10, -1 }, { 23642, 10, -1 }, { 23643, 10, -1 }, { 23644, 10, -1 }, { 23645, 10, -1 }, { 23646, 10, -1 }, { 23647, 10, -1 }, { 23648, 10, -1 }, { 23649, 10, -1 }, { 23635, 1756, -1 }, { 23636, 1756, -1 }, { 23637, 1756, -1 }, { 23638, 1756, -1 }, { 23639, 1756, -1 }, { 23640, 1756, -1 }, { 23641, 1756, -1 }, { 23642, 1756, -1 }, { 23643, 1756, -1 }, { 23644, 1756, -1 }, { 23645, 1756, -1 }, { 23646, 1756, -1 }, { 23647, 1756, -1 }, { 23648, 1756, -1 }, { 23649, 1756, -1 }, { 23528, 23, -1 }, { 23529, 23, -1 }, { 23530, 23, -1 }, { 23531, 23, -1 }, { 23532, 23, -1 }, { 23533, 23, -1 }, { 23534, 23, -1 }, { 23535, 23, -1 }, { 23536, 23, -1 }, { 23391, 13, -1 }, { 23392, 13, -1 }, { 23394, 13, -1 }, { 23395, 13, -1 }, { 23398, 13, -1 }, { 23399, 13, -1 }, { 23400, 13, -1 }, { 23401, 13, -1 }, { 23391, 23, -1 }, { 23392, 23, -1 }, { 23394, 23, -1 }, { 23395, 23, -1 }, { 23398, 23, -1 }, { 23399, 23, -1 }, { 23400, 23, -1 }, { 23401, 23, -1 }, { 23391, 10, -1 }, { 23392, 10, -1 }, { 23394, 10, -1 }, { 23395, 10, -1 }, { 23398, 10, -1 }, { 23399, 10, -1 }, { 23400, 10, -1 }, { 23401, 10, -1 }, { 23391, 1756, -1 }, { 23392, 1756, -1 }, { 23394, 1756, -1 }, { 23395, 1756, -1 }, { 23398, 1756, -1 }, { 23399, 1756, -1 }, { 23400, 1756, -1 }, { 23401, 1756, -1 }, { 23410, 992, -1 }, { 23411, 992, -1 }, { 23412, 992, -1 }, { 23414, 992, -1 }, { 23415, 992, -1 }, { 23416, 992, -1 }, { 23417, 992, -1 }, { 23418, 992, -1 }, { 23419, 992, -1 }, { 23402, 992, -1 }, { 23403, 992, -1 }, { 23404, 992, -1 }, { 23405, 992, -1 }, { 23407, 992, -1 }, { 23408, 992, -1 }, { 23409, 992, -1 }, { 23402, 1000, -1 }, { 23403, 1000, -1 }, { 23404, 1000, -1 }, { 23405, 1000, -1 }, { 23407, 1000, -1 }, { 23408, 1000, -1 }, { 23409, 1000, -1 }, { 23430, 992, -1 }, { 23431, 992, -1 }, { 23432, 992, -1 }, { 23433, 992, -1 }, { 23435, 992, -1 }, { 23436, 992, -1 }, { 23437, 992, -1 }, { 23438, 992, -1 }, { 23439, 992, -1 }, { 23440, 992, -1 }, { 23441, 992, -1 }, { 23442, 992, -1 }, { 23443, 992, -1 }, { 23444, 992, -1 }, { 23446, 992, -1 }, { 23447, 992, -1 }, { 23448, 992, -1 }, { 23449, 992, -1 }, { 23450, 992, -1 }, { 23451, 992, -1 }, { 23452, 992, -1 }, { 23453, 992, -1 }, { 23420, 992, -1 }, { 23421, 992, -1 }, { 23422, 992, -1 }, { 23424, 992, -1 }, { 23425, 992, -1 }, { 23426, 992, -1 }, { 23427, 992, -1 }, { 23428, 992, -1 }, { 23429, 992, -1 }, { 23461, 13, -1 }, { 23462, 13, -1 }, { 23465, 13, -1 }, { 23466, 13, -1 }, { 23467, 13, -1 }, { 23468, 13, -1 }, { 23469, 13, -1 }, { 23470, 13, -1 }, { 23471, 13, -1 }, { 23472, 13, -1 }, { 23473, 13, -1 }, { 23474, 13, -1 }, { 23475, 13, -1 }, { 23476, 13, -1 }, { 23477, 13, -1 }, { 23478, 13, -1 }, { 23479, 13, -1 }, { 23480, 13, -1 }, { 23490, 1756, -1 }, { 23491, 1756, -1 }, { 23492, 1756, -1 }, { 23493, 1756, -1 }, { 23495, 1756, -1 }, { 23496, 1756, -1 }, { 23497, 1756, -1 }, { 23481, 13, -1 }, { 23482, 13, -1 }, { 23483, 13, -1 }, { 23484, 13, -1 }, { 23485, 13, -1 }, { 23487, 13, -1 }, { 23488, 13, -1 }, { 23489, 13, -1 }, { 23481, 23, -1 }, { 23482, 23, -1 }, { 23483, 23, -1 }, { 23484, 23, -1 }, { 23485, 23, -1 }, { 23487, 23, -1 }, { 23488, 23, -1 }, { 23489, 23, -1 }, { 23481, 10, -1 }, { 23482, 10, -1 }, { 23483, 10, -1 }, { 23484, 10, -1 }, { 23485, 10, -1 }, { 23487, 10, -1 }, { 23488, 10, -1 }, { 23489, 10, -1 }, { 23481, 1756, -1 }, { 23482, 1756, -1 }, { 23483, 1756, -1 }, { 23484, 1756, -1 }, { 23485, 1756, -1 }, { 23487, 1756, -1 }, { 23488, 1756, -1 }, { 23489, 1756, -1 }, { 23498, 1756, -1 }, { 23499, 1756, -1 }, { 23500, 1756, -1 }, { 23501, 1756, -1 }, { 23503, 1756, -1 }, { 23504, 1756, -1 }, { 23505, 1756, -1 }, { 23520, 992, -1 }, { 23521, 992, -1 }, { 23522, 992, -1 }, { 23523, 992, -1 }, { 23524, 992, -1 }, { 23526, 992, -1 }, { 23527, 992, -1 }, { 23619, 783, -1 }, { 23620, 783, -1 }, { 23621, 783, -1 }, { 23622, 783, -1 }, { 23623, 783, -1 }, { 23624, 783, -1 }, { 23625, 783, -1 }, { 23619, 778, -1 }, { 23620, 778, -1 }, { 23621, 778, -1 }, { 23622, 778, -1 }, { 23623, 778, -1 }, { 23624, 778, -1 }, { 23625, 778, -1 }, { 23626, 182, -1 }, { 23627, 182, -1 }, { 23628, 182, -1 }, { 23626, 1743, -1 }, { 23627, 1743, -1 }, { 23628, 1743, -1 }, { 23626, 1745, -1 }, { 23627, 1745, -1 }, { 23628, 1745, -1 }, { 23849, -1, 645 }, { 24647, 63, -1 }, { 24647, 7, -1 }, { 24647, 13, -1 }, { 24647, 14, -1 }, { 24647, 15, -1 }, { 24647, 16, -1 }, { 24647, 17, -1 }, { 24647, 11, -1 }, { 24647, 12, -1 }, { 24647, 18, -1 }, { 24647, 19, -1 }, { 24647, 20, -1 }, { 24647, 21, -1 }, { 24647, 22, -1 }, { 24660, 737, -1 }, { 24661, 737, -1 }, { 24662, 737, -1 }, { 24666, 748, -1 }, { 24667, 748, -1 }, { 24668, 748, -1 }, { 23599, 783, -1 }, { 23600, 783, -1 }, { 23601, 783, -1 }, { 23602, 783, -1 }, { 23603, 783, -1 }, { 23604, 783, -1 }, { 23599, 778, -1 }, { 23600, 778, -1 }, { 23601, 778, -1 }, { 23602, 778, -1 }, { 23603, 778, -1 }, { 23604, 778, -1 }, { 23583, 783, -1 }, { 23584, 783, -1 }, { 23585, 783, -1 }, { 23586, 783, -1 }, { 23587, 783, -1 }, { 23588, 783, -1 }, { 23590, 783, -1 }, { 23592, 783, -1 }, { 23593, 783, -1 }, { 23594, 783, -1 }, { 23595, 783, -1 }, { 23596, 783, -1 }, { 23597, 783, -1 }, { 23598, 783, -1 }, { 23583, 778, -1 }, { 23584, 778, -1 }, { 23585, 778, -1 }, { 23586, 778, -1 }, { 23587, 778, -1 }, { 23588, 778, -1 }, { 23590, 778, -1 }, { 23592, 778, -1 }, { 23593, 778, -1 }, { 23594, 778, -1 }, { 23595, 778, -1 }, { 23596, 778, -1 }, { 23597, 778, -1 }, { 23598, 778, -1 }, { 23605, 182, -1 }, { 23606, 182, -1 }, { 23607, 182, -1 }, { 23605, 1743, -1 }, { 23606, 1743, -1 }, { 23607, 1743, -1 }, { 23605, 1745, -1 }, { 23606, 1745, -1 }, { 23607, 1745, -1 }, { 23650, 13, -1 }, { 23651, 13, -1 }, { 23652, 13, -1 }, { 23653, 13, -1 }, { 23654, 13, -1 }, { 23655, 13, -1 }, { 23656, 13, -1 }, { 23660, 13, -1 }, { 23661, 13, -1 }, { 23660, 23, -1 }, { 23661, 23, -1 }, { 23660, 10, -1 }, { 23661, 10, -1 }, { 23660, 1756, -1 }, { 23661, 1756, -1 }, { 482, 1930, -1 }, { 483, 1930, -1 }, { 484, 1930, -1 }, { 485, 1930, -1 }, { 486, 1930, -1 }, { 487, 1930, -1 }, { 482, 1794, -1 }, { 483, 1794, -1 }, { 484, 1794, -1 }, { 485, 1794, -1 }, { 486, 1794, -1 }, { 487, 1794, -1 }, { 480, 425, -1 }, { 481, 425, -1 }, { 482, 425, -1 }, { 483, 425, -1 }, { 484, 425, -1 }, { 485, 425, -1 }, { 486, 425, -1 }, { 487, 425, -1 }, { 479, 631, -1 }, { 480, 631, -1 }, { 481, 631, -1 }, { 482, 631, -1 }, { 483, 631, -1 }, { 484, 631, -1 }, { 485, 631, -1 }, { 486, 631, -1 }, { 487, 631, -1 }, { 479, 966, -1 }, { 481, 966, -1 }, { 482, 966, -1 }, { 483, 966, -1 }, { 484, 966, -1 }, { 486, 966, -1 }, { 487, 966, -1 }, { 481, 955, -1 }, { 482, 955, -1 }, { 483, 955, -1 }, { 484, 955, -1 }, { 486, 955, -1 }, { 487, 955, -1 }, { 479, 957, -1 }, { 481, 957, -1 }, { 482, 957, -1 }, { 483, 957, -1 }, { 484, 957, -1 }, { 485, 957, -1 }, { 486, 957, -1 }, { 487, 957, -1 }, { 481, 956, -1 }, { 482, 956, -1 }, { 483, 956, -1 }, { 484, 956, -1 }, { 486, 956, -1 }, { 487, 956, -1 }, { 481, 952, -1 }, { 482, 952, -1 }, { 483, 952, -1 }, { 484, 952, -1 }, { 487, 952, -1 }, { 481, 958, -1 }, { 482, 958, -1 }, { 483, 958, -1 }, { 484, 958, -1 }, { 486, 958, -1 }, { 487, 958, -1 }, { 479, 959, -1 }, { 481, 959, -1 }, { 482, 959, -1 }, { 483, 959, -1 }, { 484, 959, -1 }, { 485, 959, -1 }, { 486, 959, -1 }, { 487, 959, -1 }, { 481, 954, -1 }, { 482, 954, -1 }, { 483, 954, -1 }, { 484, 954, -1 }, { 486, 954, -1 }, { 487, 954, -1 }, { 481, 950, -1 }, { 482, 950, -1 }, { 483, 950, -1 }, { 484, 950, -1 }, { 486, 950, -1 }, { 487, 950, -1 }, { 479, 1119, -1 }, { 481, 1119, -1 }, { 482, 1119, -1 }, { 483, 1119, -1 }, { 484, 1119, -1 }, { 486, 1119, -1 }, { 487, 1119, -1 }, { 479, 962, -1 }, { 481, 962, -1 }, { 482, 962, -1 }, { 483, 962, -1 }, { 484, 962, -1 }, { 486, 962, -1 }, { 487, 962, -1 }, { 479, 965, -1 }, { 481, 965, -1 }, { 482, 965, -1 }, { 483, 965, -1 }, { 484, 965, -1 }, { 486, 965, -1 }, { 487, 965, -1 }, { 479, 951, -1 }, { 481, 951, -1 }, { 482, 951, -1 }, { 483, 951, -1 }, { 484, 951, -1 }, { 487, 951, -1 }, { 479, 953, -1 }, { 481, 953, -1 }, { 482, 953, -1 }, { 483, 953, -1 }, { 484, 953, -1 }, { 486, 953, -1 }, { 487, 953, -1 }, { 479, 964, -1 }, { 481, 964, -1 }, { 482, 964, -1 }, { 483, 964, -1 }, { 484, 964, -1 }, { 486, 964, -1 }, { 487, 964, -1 }, { 479, 945, -1 }, { 481, 945, -1 }, { 482, 945, -1 }, { 483, 945, -1 }, { 484, 945, -1 }, { 487, 945, -1 }, { 481, 949, -1 }, { 482, 949, -1 }, { 483, 949, -1 }, { 484, 949, -1 }, { 486, 949, -1 }, { 487, 949, -1 }, { 481, 960, -1 }, { 482, 960, -1 }, { 483, 960, -1 }, { 484, 960, -1 }, { 486, 960, -1 }, { 487, 960, -1 }, { 479, 946, -1 }, { 481, 946, -1 }, { 482, 946, -1 }, { 483, 946, -1 }, { 484, 946, -1 }, { 486, 946, -1 }, { 487, 946, -1 }, { 481, 1036, -1 }, { 482, 1036, -1 }, { 483, 1036, -1 }, { 484, 1036, -1 }, { 486, 1036, -1 }, { 487, 1036, -1 }, { 482, 63, -1 }, { 483, 63, -1 }, { 484, 63, -1 }, { 486, 63, -1 }, { 487, 63, -1 }, { 481, 7, -1 }, { 482, 7, -1 }, { 483, 7, -1 }, { 484, 7, -1 }, { 486, 7, -1 }, { 487, 7, -1 }, { 481, 13, -1 }, { 482, 13, -1 }, { 483, 13, -1 }, { 484, 13, -1 }, { 486, 13, -1 }, { 487, 13, -1 }, { 482, 14, -1 }, { 483, 14, -1 }, { 484, 14, -1 }, { 486, 14, -1 }, { 487, 14, -1 }, { 481, 134, -1 }, { 482, 134, -1 }, { 483, 134, -1 }, { 484, 134, -1 }, { 486, 134, -1 }, { 487, 134, -1 }, { 481, 15, -1 }, { 482, 15, -1 }, { 483, 15, -1 }, { 484, 15, -1 }, { 486, 15, -1 }, { 487, 15, -1 }, { 482, 16, -1 }, { 483, 16, -1 }, { 484, 16, -1 }, { 486, 16, -1 }, { 487, 16, -1 }, { 481, 44, -1 }, { 482, 44, -1 }, { 483, 44, -1 }, { 484, 44, -1 }, { 486, 44, -1 }, { 487, 44, -1 }, { 481, 17, -1 }, { 482, 17, -1 }, { 483, 17, -1 }, { 484, 17, -1 }, { 486, 17, -1 }, { 487, 17, -1 }, { 482, 11, -1 }, { 483, 11, -1 }, { 484, 11, -1 }, { 486, 11, -1 }, { 487, 11, -1 }, { 481, 12, -1 }, { 482, 12, -1 }, { 483, 12, -1 }, { 484, 12, -1 }, { 486, 12, -1 }, { 487, 12, -1 }, { 480, 346, -1 }, { 482, 346, -1 }, { 483, 346, -1 }, { 484, 346, -1 }, { 485, 346, -1 }, { 486, 346, -1 }, { 487, 346, -1 }, { 479, 963, -1 }, { 481, 963, -1 }, { 482, 963, -1 }, { 483, 963, -1 }, { 484, 963, -1 }, { 486, 963, -1 }, { 487, 963, -1 }, { 479, 967, -1 }, { 481, 967, -1 }, { 482, 967, -1 }, { 483, 967, -1 }, { 484, 967, -1 }, { 486, 967, -1 }, { 487, 967, -1 }, { 481, 18, -1 }, { 482, 18, -1 }, { 483, 18, -1 }, { 484, 18, -1 }, { 486, 18, -1 }, { 487, 18, -1 }, { 481, 19, -1 }, { 482, 19, -1 }, { 483, 19, -1 }, { 484, 19, -1 }, { 486, 19, -1 }, { 487, 19, -1 }, { 482, 68, -1 }, { 483, 68, -1 }, { 484, 68, -1 }, { 486, 68, -1 }, { 487, 68, -1 }, { 481, 20, -1 }, { 482, 20, -1 }, { 483, 20, -1 }, { 484, 20, -1 }, { 486, 20, -1 }, { 487, 20, -1 }, { 482, 21, -1 }, { 483, 21, -1 }, { 484, 21, -1 }, { 486, 21, -1 }, { 487, 21, -1 }, { 481, 22, -1 }, { 482, 22, -1 }, { 483, 22, -1 }, { 484, 22, -1 }, { 486, 22, -1 }, { 487, 22, -1 }, { 482, 1756, -1 }, { 483, 1756, -1 }, { 484, 1756, -1 }, { 485, 1756, -1 }, { 486, 1756, -1 }, { 487, 1756, -1 }, { 482, 832, -1 }, { 483, 832, -1 }, { 484, 832, -1 }, { 485, 832, -1 }, { 486, 832, -1 }, { 487, 832, -1 }, { 482, 781, -1 }, { 483, 781, -1 }, { 484, 781, -1 }, { 485, 781, -1 }, { 486, 781, -1 }, { 487, 781, -1 }, { 479, 778, -1 }, { 482, 778, -1 }, { 483, 778, -1 }, { 484, 778, -1 }, { 485, 778, -1 }, { 486, 778, -1 }, { 487, 778, -1 }, { 479, 944, -1 }, { 482, 944, -1 }, { 483, 944, -1 }, { 484, 944, -1 }, { 485, 944, -1 }, { 486, 944, -1 }, { 487, 944, -1 }, { 1563, 1737, -1 }, { 1564, 1737, -1 }, { 1565, 1737, -1 }, { 1566, 1737, -1 }, { 1563, 1868, -1 }, { 1564, 1868, -1 }, { 1565, 1868, -1 }, { 1566, 1868, -1 }, { 1563, 1984, -1 }, { 1564, 1984, -1 }, { 1565, 1984, -1 }, { 1566, 1984, -1 }, { 1564, 1831, -1 }, { 1565, 1831, -1 }, { 1566, 1831, -1 }, { 1563, 1914, -1 }, { 1564, 1914, -1 }, { 1565, 1914, -1 }, { 1566, 1914, -1 }, { 1563, 1794, -1 }, { 1564, 1794, -1 }, { 1565, 1794, -1 }, { 1566, 1794, -1 }, { 1563, 1803, -1 }, { 1564, 1803, -1 }, { 1565, 1803, -1 }, { 1566, 1803, -1 }, { 1563, 1804, -1 }, { 1564, 1804, -1 }, { 1565, 1804, -1 }, { 1566, 1804, -1 }, { 1564, 1850, -1 }, { 1565, 1850, -1 }, { 1566, 1850, -1 }, { 1563, 1852, -1 }, { 1564, 1852, -1 }, { 1565, 1852, -1 }, { 1566, 1852, -1 }, { 1563, 1881, -1 }, { 1564, 1881, -1 }, { 1565, 1881, -1 }, { 1566, 1881, -1 }, { 1563, 1682, -1 }, { 1564, 1682, -1 }, { 1565, 1682, -1 }, { 1566, 1682, -1 }, { 1563, 950, -1 }, { 1564, 950, -1 }, { 1565, 950, -1 }, { 1566, 950, -1 }, { 1563, 63, -1 }, { 1564, 63, -1 }, { 1565, 63, -1 }, { 1566, 63, -1 }, { 1563, 7, -1 }, { 1564, 7, -1 }, { 1565, 7, -1 }, { 1566, 7, -1 }, { 1563, 13, -1 }, { 1564, 13, -1 }, { 1565, 13, -1 }, { 1566, 13, -1 }, { 1563, 23, -1 }, { 1564, 23, -1 }, { 1565, 23, -1 }, { 1566, 23, -1 }, { 1563, 1849, -1 }, { 1564, 1849, -1 }, { 1565, 1849, -1 }, { 1566, 1849, -1 }, { 1563, 10, -1 }, { 1564, 10, -1 }, { 1565, 10, -1 }, { 1566, 10, -1 }, { 1563, 14, -1 }, { 1564, 14, -1 }, { 1565, 14, -1 }, { 1566, 14, -1 }, { 1563, 134, -1 }, { 1564, 134, -1 }, { 1565, 134, -1 }, { 1566, 134, -1 }, { 1563, 15, -1 }, { 1564, 15, -1 }, { 1565, 15, -1 }, { 1566, 15, -1 }, { 1563, 16, -1 }, { 1564, 16, -1 }, { 1565, 16, -1 }, { 1566, 16, -1 }, { 1563, 17, -1 }, { 1564, 17, -1 }, { 1565, 17, -1 }, { 1566, 17, -1 }, { 1563, 11, -1 }, { 1564, 11, -1 }, { 1565, 11, -1 }, { 1566, 11, -1 }, { 1563, 12, -1 }, { 1564, 12, -1 }, { 1565, 12, -1 }, { 1566, 12, -1 }, { 1563, 493, -1 }, { 1564, 493, -1 }, { 1565, 493, -1 }, { 1566, 493, -1 }, { 1563, 476, -1 }, { 1564, 476, -1 }, { 1565, 476, -1 }, { 1566, 476, -1 }, { 1563, 275, -1 }, { 1564, 275, -1 }, { 1565, 275, -1 }, { 1566, 275, -1 }, { 1563, 18, -1 }, { 1564, 18, -1 }, { 1565, 18, -1 }, { 1566, 18, -1 }, { 1563, 19, -1 }, { 1564, 19, -1 }, { 1565, 19, -1 }, { 1566, 19, -1 }, { 1563, 453, -1 }, { 1564, 453, -1 }, { 1565, 453, -1 }, { 1566, 453, -1 }, { 1563, 68, -1 }, { 1564, 68, -1 }, { 1565, 68, -1 }, { 1566, 68, -1 }, { 1563, 20, -1 }, { 1564, 20, -1 }, { 1565, 20, -1 }, { 1566, 20, -1 }, { 1563, 21, -1 }, { 1564, 21, -1 }, { 1565, 21, -1 }, { 1566, 21, -1 }, { 1563, 22, -1 }, { 1564, 22, -1 }, { 1565, 22, -1 }, { 1566, 22, -1 }, { 1563, 589, -1 }, { 1564, 589, -1 }, { 1565, 589, -1 }, { 1566, 589, -1 }, { 1563, 620, -1 }, { 1564, 620, -1 }, { 1565, 620, -1 }, { 1566, 620, -1 }, { 1563, 784, -1 }, { 1564, 784, -1 }, { 1565, 784, -1 }, { 1566, 784, -1 }, { 1563, 785, -1 }, { 1564, 785, -1 }, { 1565, 785, -1 }, { 1566, 785, -1 }, { 1563, 1377, -1 }, { 1564, 1377, -1 }, { 1565, 1377, -1 }, { 1566, 1377, -1 }, { 1563, 1501, -1 }, { 1564, 1501, -1 }, { 1565, 1501, -1 }, { 1566, 1501, -1 }, { 1563, 1294, -1 }, { 1564, 1294, -1 }, { 1565, 1294, -1 }, { 1566, 1294, -1 }, { 1563, 1314, -1 }, { 1564, 1314, -1 }, { 1565, 1314, -1 }, { 1566, 1314, -1 }, { 1563, 1316, -1 }, { 1564, 1316, -1 }, { 1565, 1316, -1 }, { 1566, 1316, -1 }, { 1563, 1348, -1 }, { 1564, 1348, -1 }, { 1565, 1348, -1 }, { 1566, 1348, -1 }, { 1563, 1356, -1 }, { 1564, 1356, -1 }, { 1565, 1356, -1 }, { 1566, 1356, -1 }, { 1563, 1317, -1 }, { 1564, 1317, -1 }, { 1565, 1317, -1 }, { 1566, 1317, -1 }, { 1563, 1315, -1 }, { 1564, 1315, -1 }, { 1565, 1315, -1 }, { 1566, 1315, -1 }, { 1563, 1351, -1 }, { 1564, 1351, -1 }, { 1565, 1351, -1 }, { 1566, 1351, -1 }, { 1563, 1751, -1 }, { 1564, 1751, -1 }, { 1565, 1751, -1 }, { 1566, 1751, -1 }, { 1563, 1756, -1 }, { 1564, 1756, -1 }, { 1565, 1756, -1 }, { 1566, 1756, -1 }, { 1563, 837, -1 }, { 1564, 837, -1 }, { 1565, 837, -1 }, { 1566, 837, -1 }, { 1563, 838, -1 }, { 1564, 838, -1 }, { 1565, 838, -1 }, { 1566, 838, -1 }, { 1563, 836, -1 }, { 1564, 836, -1 }, { 1565, 836, -1 }, { 1566, 836, -1 }, { 1563, 783, -1 }, { 1564, 783, -1 }, { 1565, 783, -1 }, { 1566, 783, -1 }, { 1563, 778, -1 }, { 1564, 778, -1 }, { 1565, 778, -1 }, { 1566, 778, -1 }, { 1563, 779, -1 }, { 1564, 779, -1 }, { 1565, 779, -1 }, { 1566, 779, -1 }, { 1563, 1532, -1 }, { 1564, 1532, -1 }, { 1565, 1532, -1 }, { 1566, 1532, -1 }, { 1563, 1527, -1 }, { 1564, 1527, -1 }, { 1565, 1527, -1 }, { 1566, 1527, -1 }, { 1563, 1534, -1 }, { 1564, 1534, -1 }, { 1565, 1534, -1 }, { 1566, 1534, -1 }, { 1564, 1521, -1 }, { 1565, 1521, -1 }, { 1566, 1521, -1 }, { 1563, 1549, -1 }, { 1564, 1549, -1 }, { 1565, 1549, -1 }, { 1566, 1549, -1 }, { 1564, 1536, -1 }, { 1565, 1536, -1 }, { 1566, 1536, -1 }, { 1563, 1483, -1 }, { 1564, 1483, -1 }, { 1565, 1483, -1 }, { 1566, 1483, -1 }, { 8022, 1770, -1 }, { 8024, 1770, -1 }, { 8025, 1770, -1 }, { 8022, 63, -1 }, { 8024, 63, -1 }, { 8025, 63, -1 }, { 8022, 11, -1 }, { 8024, 11, -1 }, { 8025, 11, -1 }, { 8015, 198, -1 }, { 8021, 198, -1 }, { 8024, 198, -1 }, { 8025, 198, -1 }, { 8022, 21, -1 }, { 8024, 21, -1 }, { 8025, 21, -1 }, { 25582, -1, 1 }, { 1559, 646, -1 }, { 215, -1, 646 }, { 25583, -1, 645 }, { 1559, 647, -1 }, { 215, -1, 647 }, { 8098, 1770, -1 }, { 8099, 1770, -1 }, { 8100, 1770, -1 }, { 8101, 1770, -1 }, { 8102, 1770, -1 }, { 8098, 63, -1 }, { 8100, 63, -1 }, { 8101, 63, -1 }, { 8098, 11, -1 }, { 8100, 11, -1 }, { 8101, 11, -1 }, { 8098, 752, -1 }, { 8099, 752, -1 }, { 8100, 752, -1 }, { 8101, 752, -1 }, { 8102, 752, -1 }, { 8098, 198, -1 }, { 8099, 198, -1 }, { 8100, 198, -1 }, { 8101, 198, -1 }, { 8102, 198, -1 }, { 8098, 21, -1 }, { 8099, 21, -1 }, { 8100, 21, -1 }, { 8101, 21, -1 }, { 8102, 21, -1 }, { 8098, 1149, -1 }, { 8099, 1149, -1 }, { 8100, 1149, -1 }, { 8101, 1149, -1 }, { 8102, 1149, -1 }, { 8096, 1770, -1 }, { 8097, 1770, -1 }, { 8096, 63, -1 }, { 8096, 11, -1 }, { 8096, 752, -1 }, { 8097, 752, -1 }, { 8096, 198, -1 }, { 8097, 198, -1 }, { 8096, 21, -1 }, { 8097, 21, -1 }, { 8096, 1149, -1 }, { 8097, 1149, -1 }, { 8084, 1770, -1 }, { 8086, 1770, -1 }, { 8087, 1770, -1 }, { 8084, 63, -1 }, { 8086, 63, -1 }, { 8087, 63, -1 }, { 8084, 11, -1 }, { 8085, 11, -1 }, { 8086, 11, -1 }, { 8087, 11, -1 }, { 8084, 752, -1 }, { 8085, 752, -1 }, { 8086, 752, -1 }, { 8087, 752, -1 }, { 8088, 752, -1 }, { 8084, 198, -1 }, { 8085, 198, -1 }, { 8086, 198, -1 }, { 8087, 198, -1 }, { 8088, 198, -1 }, { 8084, 21, -1 }, { 8086, 21, -1 }, { 8087, 21, -1 }, { 8084, 1149, -1 }, { 8085, 1149, -1 }, { 8086, 1149, -1 }, { 8087, 1149, -1 }, { 8088, 1149, -1 }, { 31396, 97, -1 }, { 31397, 97, -1 }, { 31398, 97, -1 }, { 31396, 1329, -1 }, { 31397, 1329, -1 }, { 31398, 1329, -1 }, { 31396, 190, -1 }, { 31397, 190, -1 }, { 31398, 190, -1 }, { 31396, 1694, -1 }, { 31397, 1694, -1 }, { 31398, 1694, -1 }, { 31396, 169, -1 }, { 31397, 169, -1 }, { 31398, 169, -1 }, { 31396, 854, -1 }, { 31397, 854, -1 }, { 31398, 854, -1 }, { 31396, 182, -1 }, { 31397, 182, -1 }, { 31398, 182, -1 }, { 31396, 896, -1 }, { 31397, 896, -1 }, { 31398, 896, -1 }, { 31396, 1567, -1 }, { 31397, 1567, -1 }, { 31398, 1567, -1 }, { 31396, 1822, -1 }, { 31397, 1822, -1 }, { 31398, 1822, -1 }, { 31399, 97, -1 }, { 31400, 97, -1 }, { 31401, 97, -1 }, { 31402, 97, -1 }, { 31403, 97, -1 }, { 31404, 97, -1 }, { 31399, 1329, -1 }, { 31400, 1329, -1 }, { 31401, 1329, -1 }, { 31402, 1329, -1 }, { 31403, 1329, -1 }, { 31404, 1329, -1 }, { 31399, 190, -1 }, { 31400, 190, -1 }, { 31401, 190, -1 }, { 31402, 190, -1 }, { 31403, 190, -1 }, { 31404, 190, -1 }, { 31399, 1694, -1 }, { 31400, 1694, -1 }, { 31401, 1694, -1 }, { 31402, 1694, -1 }, { 31403, 1694, -1 }, { 31404, 1694, -1 }, { 31399, 169, -1 }, { 31400, 169, -1 }, { 31401, 169, -1 }, { 31402, 169, -1 }, { 31403, 169, -1 }, { 31404, 169, -1 }, { 31399, 854, -1 }, { 31400, 854, -1 }, { 31401, 854, -1 }, { 31402, 854, -1 }, { 31403, 854, -1 }, { 31404, 854, -1 }, { 31399, 182, -1 }, { 31400, 182, -1 }, { 31401, 182, -1 }, { 31402, 182, -1 }, { 31403, 182, -1 }, { 31404, 182, -1 }, { 31399, 896, -1 }, { 31400, 896, -1 }, { 31401, 896, -1 }, { 31402, 896, -1 }, { 31403, 896, -1 }, { 31404, 896, -1 }, { 31399, 1567, -1 }, { 31400, 1567, -1 }, { 31401, 1567, -1 }, { 31402, 1567, -1 }, { 31403, 1567, -1 }, { 31404, 1567, -1 }, { 31399, 1822, -1 }, { 31400, 1822, -1 }, { 31401, 1822, -1 }, { 31402, 1822, -1 }, { 31403, 1822, -1 }, { 31404, 1822, -1 }, { 31383, 97, -1 }, { 31384, 97, -1 }, { 31385, 97, -1 }, { 31386, 97, -1 }, { 31387, 97, -1 }, { 31388, 97, -1 }, { 31389, 97, -1 }, { 31390, 97, -1 }, { 31391, 97, -1 }, { 31392, 97, -1 }, { 31393, 97, -1 }, { 31394, 97, -1 }, { 31395, 97, -1 }, { 31383, 1329, -1 }, { 31384, 1329, -1 }, { 31385, 1329, -1 }, { 31386, 1329, -1 }, { 31387, 1329, -1 }, { 31388, 1329, -1 }, { 31389, 1329, -1 }, { 31390, 1329, -1 }, { 31391, 1329, -1 }, { 31392, 1329, -1 }, { 31393, 1329, -1 }, { 31394, 1329, -1 }, { 31395, 1329, -1 }, { 31383, 190, -1 }, { 31384, 190, -1 }, { 31385, 190, -1 }, { 31386, 190, -1 }, { 31387, 190, -1 }, { 31388, 190, -1 }, { 31389, 190, -1 }, { 31390, 190, -1 }, { 31391, 190, -1 }, { 31392, 190, -1 }, { 31393, 190, -1 }, { 31394, 190, -1 }, { 31395, 190, -1 }, { 31383, 1694, -1 }, { 31384, 1694, -1 }, { 31385, 1694, -1 }, { 31386, 1694, -1 }, { 31387, 1694, -1 }, { 31388, 1694, -1 }, { 31389, 1694, -1 }, { 31390, 1694, -1 }, { 31391, 1694, -1 }, { 31392, 1694, -1 }, { 31393, 1694, -1 }, { 31394, 1694, -1 }, { 31395, 1694, -1 }, { 31383, 169, -1 }, { 31384, 169, -1 }, { 31385, 169, -1 }, { 31386, 169, -1 }, { 31387, 169, -1 }, { 31388, 169, -1 }, { 31389, 169, -1 }, { 31390, 169, -1 }, { 31391, 169, -1 }, { 31392, 169, -1 }, { 31393, 169, -1 }, { 31394, 169, -1 }, { 31395, 169, -1 }, { 31383, 854, -1 }, { 31384, 854, -1 }, { 31385, 854, -1 }, { 31386, 854, -1 }, { 31387, 854, -1 }, { 31388, 854, -1 }, { 31389, 854, -1 }, { 31390, 854, -1 }, { 31391, 854, -1 }, { 31392, 854, -1 }, { 31393, 854, -1 }, { 31394, 854, -1 }, { 31395, 854, -1 }, { 31383, 182, -1 }, { 31384, 182, -1 }, { 31385, 182, -1 }, { 31386, 182, -1 }, { 31387, 182, -1 }, { 31388, 182, -1 }, { 31389, 182, -1 }, { 31390, 182, -1 }, { 31391, 182, -1 }, { 31392, 182, -1 }, { 31393, 182, -1 }, { 31394, 182, -1 }, { 31395, 182, -1 }, { 31383, 896, -1 }, { 31384, 896, -1 }, { 31385, 896, -1 }, { 31386, 896, -1 }, { 31387, 896, -1 }, { 31388, 896, -1 }, { 31389, 896, -1 }, { 31390, 896, -1 }, { 31391, 896, -1 }, { 31392, 896, -1 }, { 31393, 896, -1 }, { 31394, 896, -1 }, { 31395, 896, -1 }, { 31383, 1567, -1 }, { 31384, 1567, -1 }, { 31385, 1567, -1 }, { 31386, 1567, -1 }, { 31387, 1567, -1 }, { 31388, 1567, -1 }, { 31389, 1567, -1 }, { 31390, 1567, -1 }, { 31391, 1567, -1 }, { 31392, 1567, -1 }, { 31393, 1567, -1 }, { 31394, 1567, -1 }, { 31395, 1567, -1 }, { 31383, 1822, -1 }, { 31384, 1822, -1 }, { 31385, 1822, -1 }, { 31386, 1822, -1 }, { 31387, 1822, -1 }, { 31388, 1822, -1 }, { 31389, 1822, -1 }, { 31390, 1822, -1 }, { 31391, 1822, -1 }, { 31392, 1822, -1 }, { 31393, 1822, -1 }, { 31394, 1822, -1 }, { 31395, 1822, -1 }, { 12357, 1775, -1 }, { 12358, 1775, -1 }, { 12359, 1775, -1 }, { 12360, 1775, -1 }, { 12361, 1775, -1 }, { 12362, 1775, -1 }, { 12363, 1775, -1 }, { 12364, 1775, -1 }, { 12365, 1775, -1 }, { 12366, 1775, -1 }, { 12357, 1982, -1 }, { 12358, 1982, -1 }, { 12359, 1982, -1 }, { 12360, 1982, -1 }, { 12361, 1982, -1 }, { 12362, 1982, -1 }, { 12363, 1982, -1 }, { 12364, 1982, -1 }, { 12365, 1982, -1 }, { 12366, 1982, -1 }, { 12357, 575, -1 }, { 12358, 575, -1 }, { 12359, 575, -1 }, { 12360, 575, -1 }, { 12361, 575, -1 }, { 12362, 575, -1 }, { 12363, 575, -1 }, { 12364, 575, -1 }, { 12365, 575, -1 }, { 12366, 575, -1 }, { 12357, 1061, -1 }, { 12358, 1061, -1 }, { 12359, 1061, -1 }, { 12360, 1061, -1 }, { 12361, 1061, -1 }, { 12362, 1061, -1 }, { 12363, 1061, -1 }, { 12364, 1061, -1 }, { 12365, 1061, -1 }, { 12366, 1061, -1 }, { 12357, 1040, -1 }, { 12358, 1040, -1 }, { 12359, 1040, -1 }, { 12360, 1040, -1 }, { 12361, 1040, -1 }, { 12362, 1040, -1 }, { 12363, 1040, -1 }, { 12364, 1040, -1 }, { 12365, 1040, -1 }, { 12366, 1040, -1 }, { 12357, 984, -1 }, { 12358, 984, -1 }, { 12359, 984, -1 }, { 12360, 984, -1 }, { 12361, 984, -1 }, { 12362, 984, -1 }, { 12363, 984, -1 }, { 12364, 984, -1 }, { 12365, 984, -1 }, { 12366, 984, -1 }, { 12357, 97, -1 }, { 12358, 97, -1 }, { 12359, 97, -1 }, { 12360, 97, -1 }, { 12361, 97, -1 }, { 12362, 97, -1 }, { 12363, 97, -1 }, { 12364, 97, -1 }, { 12365, 97, -1 }, { 12366, 97, -1 }, { 12357, 1329, -1 }, { 12358, 1329, -1 }, { 12359, 1329, -1 }, { 12360, 1329, -1 }, { 12361, 1329, -1 }, { 12362, 1329, -1 }, { 12363, 1329, -1 }, { 12364, 1329, -1 }, { 12365, 1329, -1 }, { 12366, 1329, -1 }, { 12357, 190, -1 }, { 12358, 190, -1 }, { 12359, 190, -1 }, { 12360, 190, -1 }, { 12361, 190, -1 }, { 12362, 190, -1 }, { 12363, 190, -1 }, { 12364, 190, -1 }, { 12365, 190, -1 }, { 12366, 190, -1 }, { 12357, 1352, -1 }, { 12358, 1352, -1 }, { 12359, 1352, -1 }, { 12360, 1352, -1 }, { 12361, 1352, -1 }, { 12362, 1352, -1 }, { 12363, 1352, -1 }, { 12364, 1352, -1 }, { 12365, 1352, -1 }, { 12366, 1352, -1 }, { 12357, 1595, -1 }, { 12358, 1595, -1 }, { 12359, 1595, -1 }, { 12360, 1595, -1 }, { 12361, 1595, -1 }, { 12362, 1595, -1 }, { 12363, 1595, -1 }, { 12364, 1595, -1 }, { 12365, 1595, -1 }, { 12366, 1595, -1 }, { 12357, 1598, -1 }, { 12358, 1598, -1 }, { 12359, 1598, -1 }, { 12360, 1598, -1 }, { 12361, 1598, -1 }, { 12362, 1598, -1 }, { 12363, 1598, -1 }, { 12364, 1598, -1 }, { 12365, 1598, -1 }, { 12366, 1598, -1 }, { 12357, 1694, -1 }, { 12358, 1694, -1 }, { 12359, 1694, -1 }, { 12360, 1694, -1 }, { 12361, 1694, -1 }, { 12362, 1694, -1 }, { 12363, 1694, -1 }, { 12364, 1694, -1 }, { 12365, 1694, -1 }, { 12366, 1694, -1 }, { 12357, 807, -1 }, { 12358, 807, -1 }, { 12359, 807, -1 }, { 12360, 807, -1 }, { 12361, 807, -1 }, { 12362, 807, -1 }, { 12363, 807, -1 }, { 12364, 807, -1 }, { 12365, 807, -1 }, { 12366, 807, -1 }, { 12357, 687, -1 }, { 12358, 687, -1 }, { 12359, 687, -1 }, { 12360, 687, -1 }, { 12361, 687, -1 }, { 12362, 687, -1 }, { 12363, 687, -1 }, { 12364, 687, -1 }, { 12365, 687, -1 }, { 12366, 687, -1 }, { 12357, 692, -1 }, { 12358, 692, -1 }, { 12359, 692, -1 }, { 12360, 692, -1 }, { 12361, 692, -1 }, { 12362, 692, -1 }, { 12363, 692, -1 }, { 12364, 692, -1 }, { 12365, 692, -1 }, { 12366, 692, -1 }, { 12357, 1081, -1 }, { 12358, 1081, -1 }, { 12359, 1081, -1 }, { 12360, 1081, -1 }, { 12361, 1081, -1 }, { 12362, 1081, -1 }, { 12363, 1081, -1 }, { 12364, 1081, -1 }, { 12365, 1081, -1 }, { 12366, 1081, -1 }, { 12357, 977, -1 }, { 12358, 977, -1 }, { 12359, 977, -1 }, { 12360, 977, -1 }, { 12361, 977, -1 }, { 12362, 977, -1 }, { 12363, 977, -1 }, { 12364, 977, -1 }, { 12365, 977, -1 }, { 12366, 977, -1 }, { 12357, 139, -1 }, { 12358, 139, -1 }, { 12359, 139, -1 }, { 12360, 139, -1 }, { 12361, 139, -1 }, { 12362, 139, -1 }, { 12363, 139, -1 }, { 12364, 139, -1 }, { 12365, 139, -1 }, { 12366, 139, -1 }, { 12357, 169, -1 }, { 12358, 169, -1 }, { 12359, 169, -1 }, { 12360, 169, -1 }, { 12361, 169, -1 }, { 12362, 169, -1 }, { 12363, 169, -1 }, { 12364, 169, -1 }, { 12365, 169, -1 }, { 12366, 169, -1 }, { 12357, 854, -1 }, { 12358, 854, -1 }, { 12359, 854, -1 }, { 12360, 854, -1 }, { 12361, 854, -1 }, { 12362, 854, -1 }, { 12363, 854, -1 }, { 12364, 854, -1 }, { 12365, 854, -1 }, { 12366, 854, -1 }, { 12357, 182, -1 }, { 12358, 182, -1 }, { 12359, 182, -1 }, { 12360, 182, -1 }, { 12361, 182, -1 }, { 12362, 182, -1 }, { 12363, 182, -1 }, { 12364, 182, -1 }, { 12365, 182, -1 }, { 12366, 182, -1 }, { 12357, 896, -1 }, { 12358, 896, -1 }, { 12359, 896, -1 }, { 12360, 896, -1 }, { 12361, 896, -1 }, { 12362, 896, -1 }, { 12363, 896, -1 }, { 12364, 896, -1 }, { 12365, 896, -1 }, { 12366, 896, -1 }, { 12357, 698, -1 }, { 12358, 698, -1 }, { 12359, 698, -1 }, { 12360, 698, -1 }, { 12361, 698, -1 }, { 12362, 698, -1 }, { 12363, 698, -1 }, { 12364, 698, -1 }, { 12365, 698, -1 }, { 12366, 698, -1 }, { 12357, 298, -1 }, { 12358, 298, -1 }, { 12359, 298, -1 }, { 12360, 298, -1 }, { 12361, 298, -1 }, { 12362, 298, -1 }, { 12363, 298, -1 }, { 12364, 298, -1 }, { 12365, 298, -1 }, { 12366, 298, -1 }, { 12357, 278, -1 }, { 12358, 278, -1 }, { 12359, 278, -1 }, { 12360, 278, -1 }, { 12361, 278, -1 }, { 12362, 278, -1 }, { 12363, 278, -1 }, { 12364, 278, -1 }, { 12365, 278, -1 }, { 12366, 278, -1 }, { 12357, 1567, -1 }, { 12358, 1567, -1 }, { 12359, 1567, -1 }, { 12360, 1567, -1 }, { 12361, 1567, -1 }, { 12362, 1567, -1 }, { 12363, 1567, -1 }, { 12364, 1567, -1 }, { 12365, 1567, -1 }, { 12366, 1567, -1 }, { 12357, 1340, -1 }, { 12358, 1340, -1 }, { 12359, 1340, -1 }, { 12360, 1340, -1 }, { 12361, 1340, -1 }, { 12362, 1340, -1 }, { 12363, 1340, -1 }, { 12364, 1340, -1 }, { 12365, 1340, -1 }, { 12366, 1340, -1 }, { 12357, 883, -1 }, { 12358, 883, -1 }, { 12359, 883, -1 }, { 12360, 883, -1 }, { 12361, 883, -1 }, { 12362, 883, -1 }, { 12363, 883, -1 }, { 12364, 883, -1 }, { 12365, 883, -1 }, { 12366, 883, -1 }, { 12357, 1607, -1 }, { 12358, 1607, -1 }, { 12359, 1607, -1 }, { 12360, 1607, -1 }, { 12361, 1607, -1 }, { 12362, 1607, -1 }, { 12363, 1607, -1 }, { 12364, 1607, -1 }, { 12365, 1607, -1 }, { 12366, 1607, -1 }, { 12357, 288, -1 }, { 12358, 288, -1 }, { 12359, 288, -1 }, { 12360, 288, -1 }, { 12361, 288, -1 }, { 12362, 288, -1 }, { 12363, 288, -1 }, { 12364, 288, -1 }, { 12365, 288, -1 }, { 12366, 288, -1 }, { 12357, 1949, -1 }, { 12358, 1949, -1 }, { 12359, 1949, -1 }, { 12360, 1949, -1 }, { 12361, 1949, -1 }, { 12362, 1949, -1 }, { 12363, 1949, -1 }, { 12364, 1949, -1 }, { 12365, 1949, -1 }, { 12366, 1949, -1 }, { 12357, 1822, -1 }, { 12358, 1822, -1 }, { 12359, 1822, -1 }, { 12360, 1822, -1 }, { 12361, 1822, -1 }, { 12362, 1822, -1 }, { 12363, 1822, -1 }, { 12364, 1822, -1 }, { 12365, 1822, -1 }, { 12366, 1822, -1 }, { 12357, 1995, -1 }, { 12358, 1995, -1 }, { 12359, 1995, -1 }, { 12360, 1995, -1 }, { 12361, 1995, -1 }, { 12362, 1995, -1 }, { 12363, 1995, -1 }, { 12364, 1995, -1 }, { 12365, 1995, -1 }, { 12366, 1995, -1 }, { 12357, 1496, -1 }, { 12358, 1496, -1 }, { 12359, 1496, -1 }, { 12360, 1496, -1 }, { 12361, 1496, -1 }, { 12362, 1496, -1 }, { 12363, 1496, -1 }, { 12364, 1496, -1 }, { 12365, 1496, -1 }, { 12366, 1496, -1 }, { 12357, 1493, -1 }, { 12358, 1493, -1 }, { 12359, 1493, -1 }, { 12360, 1493, -1 }, { 12361, 1493, -1 }, { 12362, 1493, -1 }, { 12363, 1493, -1 }, { 12364, 1493, -1 }, { 12365, 1493, -1 }, { 12366, 1493, -1 }, { 12357, 1489, -1 }, { 12358, 1489, -1 }, { 12359, 1489, -1 }, { 12360, 1489, -1 }, { 12361, 1489, -1 }, { 12362, 1489, -1 }, { 12363, 1489, -1 }, { 12364, 1489, -1 }, { 12365, 1489, -1 }, { 12366, 1489, -1 }, { 12357, 1359, -1 }, { 12358, 1359, -1 }, { 12359, 1359, -1 }, { 12360, 1359, -1 }, { 12361, 1359, -1 }, { 12362, 1359, -1 }, { 12363, 1359, -1 }, { 12364, 1359, -1 }, { 12365, 1359, -1 }, { 12366, 1359, -1 }, { 12357, 1297, -1 }, { 12358, 1297, -1 }, { 12359, 1297, -1 }, { 12360, 1297, -1 }, { 12361, 1297, -1 }, { 12362, 1297, -1 }, { 12363, 1297, -1 }, { 12364, 1297, -1 }, { 12365, 1297, -1 }, { 12366, 1297, -1 }, { 12357, 1306, -1 }, { 12358, 1306, -1 }, { 12359, 1306, -1 }, { 12360, 1306, -1 }, { 12361, 1306, -1 }, { 12362, 1306, -1 }, { 12363, 1306, -1 }, { 12364, 1306, -1 }, { 12365, 1306, -1 }, { 12366, 1306, -1 }, { 12357, 905, -1 }, { 12358, 905, -1 }, { 12359, 905, -1 }, { 12360, 905, -1 }, { 12361, 905, -1 }, { 12362, 905, -1 }, { 12363, 905, -1 }, { 12364, 905, -1 }, { 12365, 905, -1 }, { 12366, 905, -1 }, { 12357, 1796, -1 }, { 12358, 1796, -1 }, { 12359, 1796, -1 }, { 12360, 1796, -1 }, { 12361, 1796, -1 }, { 12362, 1796, -1 }, { 12363, 1796, -1 }, { 12364, 1796, -1 }, { 12365, 1796, -1 }, { 12366, 1796, -1 }, { 12357, 1659, -1 }, { 12358, 1659, -1 }, { 12359, 1659, -1 }, { 12360, 1659, -1 }, { 12361, 1659, -1 }, { 12362, 1659, -1 }, { 12363, 1659, -1 }, { 12364, 1659, -1 }, { 12365, 1659, -1 }, { 12366, 1659, -1 }, { 12357, 1525, -1 }, { 12358, 1525, -1 }, { 12359, 1525, -1 }, { 12360, 1525, -1 }, { 12361, 1525, -1 }, { 12362, 1525, -1 }, { 12363, 1525, -1 }, { 12364, 1525, -1 }, { 12365, 1525, -1 }, { 12366, 1525, -1 }, { 12357, 1481, -1 }, { 12358, 1481, -1 }, { 12359, 1481, -1 }, { 12360, 1481, -1 }, { 12361, 1481, -1 }, { 12362, 1481, -1 }, { 12363, 1481, -1 }, { 12364, 1481, -1 }, { 12365, 1481, -1 }, { 12366, 1481, -1 }, { 12357, 1503, -1 }, { 12358, 1503, -1 }, { 12359, 1503, -1 }, { 12360, 1503, -1 }, { 12361, 1503, -1 }, { 12362, 1503, -1 }, { 12363, 1503, -1 }, { 12364, 1503, -1 }, { 12365, 1503, -1 }, { 12366, 1503, -1 }, { 12357, 1507, -1 }, { 12358, 1507, -1 }, { 12359, 1507, -1 }, { 12360, 1507, -1 }, { 12361, 1507, -1 }, { 12362, 1507, -1 }, { 12363, 1507, -1 }, { 12364, 1507, -1 }, { 12365, 1507, -1 }, { 12366, 1507, -1 }, { 12357, 1511, -1 }, { 12358, 1511, -1 }, { 12359, 1511, -1 }, { 12360, 1511, -1 }, { 12361, 1511, -1 }, { 12362, 1511, -1 }, { 12363, 1511, -1 }, { 12364, 1511, -1 }, { 12365, 1511, -1 }, { 12366, 1511, -1 }, { 12367, 1775, -1 }, { 12368, 1775, -1 }, { 12369, 1775, -1 }, { 12370, 1775, -1 }, { 12371, 1775, -1 }, { 12372, 1775, -1 }, { 12367, 1982, -1 }, { 12368, 1982, -1 }, { 12369, 1982, -1 }, { 12370, 1982, -1 }, { 12371, 1982, -1 }, { 12372, 1982, -1 }, { 12367, 575, -1 }, { 12368, 575, -1 }, { 12369, 575, -1 }, { 12370, 575, -1 }, { 12371, 575, -1 }, { 12372, 575, -1 }, { 12367, 1061, -1 }, { 12368, 1061, -1 }, { 12369, 1061, -1 }, { 12370, 1061, -1 }, { 12371, 1061, -1 }, { 12372, 1061, -1 }, { 12367, 1040, -1 }, { 12368, 1040, -1 }, { 12369, 1040, -1 }, { 12370, 1040, -1 }, { 12371, 1040, -1 }, { 12372, 1040, -1 }, { 12367, 984, -1 }, { 12368, 984, -1 }, { 12369, 984, -1 }, { 12370, 984, -1 }, { 12371, 984, -1 }, { 12372, 984, -1 }, { 12367, 97, -1 }, { 12368, 97, -1 }, { 12369, 97, -1 }, { 12370, 97, -1 }, { 12371, 97, -1 }, { 12372, 97, -1 }, { 12367, 1329, -1 }, { 12368, 1329, -1 }, { 12369, 1329, -1 }, { 12370, 1329, -1 }, { 12371, 1329, -1 }, { 12372, 1329, -1 }, { 12367, 190, -1 }, { 12368, 190, -1 }, { 12369, 190, -1 }, { 12370, 190, -1 }, { 12371, 190, -1 }, { 12372, 190, -1 }, { 12367, 1352, -1 }, { 12368, 1352, -1 }, { 12369, 1352, -1 }, { 12370, 1352, -1 }, { 12371, 1352, -1 }, { 12372, 1352, -1 }, { 12367, 1595, -1 }, { 12368, 1595, -1 }, { 12369, 1595, -1 }, { 12370, 1595, -1 }, { 12371, 1595, -1 }, { 12372, 1595, -1 }, { 12367, 1598, -1 }, { 12368, 1598, -1 }, { 12369, 1598, -1 }, { 12370, 1598, -1 }, { 12371, 1598, -1 }, { 12372, 1598, -1 }, { 12367, 1694, -1 }, { 12368, 1694, -1 }, { 12369, 1694, -1 }, { 12370, 1694, -1 }, { 12371, 1694, -1 }, { 12372, 1694, -1 }, { 12367, 807, -1 }, { 12368, 807, -1 }, { 12369, 807, -1 }, { 12370, 807, -1 }, { 12371, 807, -1 }, { 12372, 807, -1 }, { 12367, 687, -1 }, { 12368, 687, -1 }, { 12369, 687, -1 }, { 12370, 687, -1 }, { 12371, 687, -1 }, { 12372, 687, -1 }, { 12367, 692, -1 }, { 12368, 692, -1 }, { 12369, 692, -1 }, { 12370, 692, -1 }, { 12371, 692, -1 }, { 12372, 692, -1 }, { 12367, 1081, -1 }, { 12368, 1081, -1 }, { 12369, 1081, -1 }, { 12370, 1081, -1 }, { 12371, 1081, -1 }, { 12372, 1081, -1 }, { 12367, 977, -1 }, { 12368, 977, -1 }, { 12369, 977, -1 }, { 12370, 977, -1 }, { 12371, 977, -1 }, { 12372, 977, -1 }, { 12367, 139, -1 }, { 12368, 139, -1 }, { 12369, 139, -1 }, { 12370, 139, -1 }, { 12371, 139, -1 }, { 12372, 139, -1 }, { 12367, 169, -1 }, { 12368, 169, -1 }, { 12369, 169, -1 }, { 12370, 169, -1 }, { 12371, 169, -1 }, { 12372, 169, -1 }, { 12367, 854, -1 }, { 12368, 854, -1 }, { 12369, 854, -1 }, { 12370, 854, -1 }, { 12371, 854, -1 }, { 12372, 854, -1 }, { 12367, 182, -1 }, { 12368, 182, -1 }, { 12369, 182, -1 }, { 12370, 182, -1 }, { 12371, 182, -1 }, { 12372, 182, -1 }, { 12367, 896, -1 }, { 12368, 896, -1 }, { 12369, 896, -1 }, { 12370, 896, -1 }, { 12371, 896, -1 }, { 12372, 896, -1 }, { 12367, 698, -1 }, { 12368, 698, -1 }, { 12369, 698, -1 }, { 12370, 698, -1 }, { 12371, 698, -1 }, { 12372, 698, -1 }, { 12367, 298, -1 }, { 12368, 298, -1 }, { 12369, 298, -1 }, { 12370, 298, -1 }, { 12371, 298, -1 }, { 12372, 298, -1 }, { 12367, 278, -1 }, { 12368, 278, -1 }, { 12369, 278, -1 }, { 12370, 278, -1 }, { 12371, 278, -1 }, { 12372, 278, -1 }, { 12367, 1567, -1 }, { 12368, 1567, -1 }, { 12369, 1567, -1 }, { 12370, 1567, -1 }, { 12371, 1567, -1 }, { 12372, 1567, -1 }, { 12367, 1340, -1 }, { 12368, 1340, -1 }, { 12369, 1340, -1 }, { 12370, 1340, -1 }, { 12371, 1340, -1 }, { 12372, 1340, -1 }, { 12367, 883, -1 }, { 12368, 883, -1 }, { 12369, 883, -1 }, { 12370, 883, -1 }, { 12371, 883, -1 }, { 12372, 883, -1 }, { 12367, 1607, -1 }, { 12368, 1607, -1 }, { 12369, 1607, -1 }, { 12370, 1607, -1 }, { 12371, 1607, -1 }, { 12372, 1607, -1 }, { 12367, 288, -1 }, { 12368, 288, -1 }, { 12369, 288, -1 }, { 12370, 288, -1 }, { 12371, 288, -1 }, { 12372, 288, -1 }, { 12367, 1949, -1 }, { 12368, 1949, -1 }, { 12369, 1949, -1 }, { 12370, 1949, -1 }, { 12371, 1949, -1 }, { 12372, 1949, -1 }, { 12367, 1822, -1 }, { 12368, 1822, -1 }, { 12369, 1822, -1 }, { 12370, 1822, -1 }, { 12371, 1822, -1 }, { 12372, 1822, -1 }, { 12367, 1995, -1 }, { 12368, 1995, -1 }, { 12369, 1995, -1 }, { 12370, 1995, -1 }, { 12371, 1995, -1 }, { 12372, 1995, -1 }, { 12367, 1496, -1 }, { 12368, 1496, -1 }, { 12369, 1496, -1 }, { 12370, 1496, -1 }, { 12371, 1496, -1 }, { 12372, 1496, -1 }, { 12367, 1493, -1 }, { 12368, 1493, -1 }, { 12369, 1493, -1 }, { 12370, 1493, -1 }, { 12371, 1493, -1 }, { 12372, 1493, -1 }, { 12367, 1489, -1 }, { 12368, 1489, -1 }, { 12369, 1489, -1 }, { 12370, 1489, -1 }, { 12371, 1489, -1 }, { 12372, 1489, -1 }, { 12367, 1359, -1 }, { 12368, 1359, -1 }, { 12369, 1359, -1 }, { 12370, 1359, -1 }, { 12371, 1359, -1 }, { 12372, 1359, -1 }, { 12367, 1297, -1 }, { 12368, 1297, -1 }, { 12369, 1297, -1 }, { 12370, 1297, -1 }, { 12371, 1297, -1 }, { 12372, 1297, -1 }, { 12367, 1306, -1 }, { 12368, 1306, -1 }, { 12369, 1306, -1 }, { 12370, 1306, -1 }, { 12371, 1306, -1 }, { 12372, 1306, -1 }, { 12367, 905, -1 }, { 12368, 905, -1 }, { 12369, 905, -1 }, { 12370, 905, -1 }, { 12371, 905, -1 }, { 12372, 905, -1 }, { 12367, 1796, -1 }, { 12368, 1796, -1 }, { 12369, 1796, -1 }, { 12370, 1796, -1 }, { 12371, 1796, -1 }, { 12372, 1796, -1 }, { 12367, 1659, -1 }, { 12368, 1659, -1 }, { 12369, 1659, -1 }, { 12370, 1659, -1 }, { 12371, 1659, -1 }, { 12372, 1659, -1 }, { 12367, 1525, -1 }, { 12368, 1525, -1 }, { 12369, 1525, -1 }, { 12370, 1525, -1 }, { 12371, 1525, -1 }, { 12372, 1525, -1 }, { 12367, 1481, -1 }, { 12368, 1481, -1 }, { 12369, 1481, -1 }, { 12370, 1481, -1 }, { 12371, 1481, -1 }, { 12372, 1481, -1 }, { 12367, 1503, -1 }, { 12368, 1503, -1 }, { 12369, 1503, -1 }, { 12370, 1503, -1 }, { 12371, 1503, -1 }, { 12372, 1503, -1 }, { 12367, 1507, -1 }, { 12368, 1507, -1 }, { 12369, 1507, -1 }, { 12370, 1507, -1 }, { 12371, 1507, -1 }, { 12372, 1507, -1 }, { 12367, 1511, -1 }, { 12368, 1511, -1 }, { 12369, 1511, -1 }, { 12370, 1511, -1 }, { 12371, 1511, -1 }, { 12372, 1511, -1 }, { 12373, 1775, -1 }, { 12374, 1775, -1 }, { 12375, 1775, -1 }, { 12376, 1775, -1 }, { 12377, 1775, -1 }, { 12378, 1775, -1 }, { 12379, 1775, -1 }, { 12380, 1775, -1 }, { 12381, 1775, -1 }, { 12382, 1775, -1 }, { 12373, 1982, -1 }, { 12374, 1982, -1 }, { 12375, 1982, -1 }, { 12376, 1982, -1 }, { 12377, 1982, -1 }, { 12378, 1982, -1 }, { 12379, 1982, -1 }, { 12380, 1982, -1 }, { 12381, 1982, -1 }, { 12382, 1982, -1 }, { 12373, 575, -1 }, { 12374, 575, -1 }, { 12375, 575, -1 }, { 12376, 575, -1 }, { 12377, 575, -1 }, { 12378, 575, -1 }, { 12379, 575, -1 }, { 12380, 575, -1 }, { 12381, 575, -1 }, { 12382, 575, -1 }, { 12373, 1061, -1 }, { 12374, 1061, -1 }, { 12375, 1061, -1 }, { 12376, 1061, -1 }, { 12377, 1061, -1 }, { 12378, 1061, -1 }, { 12379, 1061, -1 }, { 12380, 1061, -1 }, { 12381, 1061, -1 }, { 12382, 1061, -1 }, { 12373, 1040, -1 }, { 12374, 1040, -1 }, { 12375, 1040, -1 }, { 12376, 1040, -1 }, { 12377, 1040, -1 }, { 12378, 1040, -1 }, { 12379, 1040, -1 }, { 12380, 1040, -1 }, { 12381, 1040, -1 }, { 12382, 1040, -1 }, { 12373, 984, -1 }, { 12374, 984, -1 }, { 12375, 984, -1 }, { 12376, 984, -1 }, { 12377, 984, -1 }, { 12378, 984, -1 }, { 12379, 984, -1 }, { 12380, 984, -1 }, { 12381, 984, -1 }, { 12382, 984, -1 }, { 12373, 97, -1 }, { 12374, 97, -1 }, { 12375, 97, -1 }, { 12376, 97, -1 }, { 12377, 97, -1 }, { 12378, 97, -1 }, { 12379, 97, -1 }, { 12380, 97, -1 }, { 12381, 97, -1 }, { 12382, 97, -1 }, { 12373, 1329, -1 }, { 12374, 1329, -1 }, { 12375, 1329, -1 }, { 12376, 1329, -1 }, { 12377, 1329, -1 }, { 12378, 1329, -1 }, { 12379, 1329, -1 }, { 12380, 1329, -1 }, { 12381, 1329, -1 }, { 12382, 1329, -1 }, { 12373, 190, -1 }, { 12374, 190, -1 }, { 12375, 190, -1 }, { 12376, 190, -1 }, { 12377, 190, -1 }, { 12378, 190, -1 }, { 12379, 190, -1 }, { 12380, 190, -1 }, { 12381, 190, -1 }, { 12382, 190, -1 }, { 12373, 1352, -1 }, { 12374, 1352, -1 }, { 12375, 1352, -1 }, { 12376, 1352, -1 }, { 12377, 1352, -1 }, { 12378, 1352, -1 }, { 12379, 1352, -1 }, { 12380, 1352, -1 }, { 12381, 1352, -1 }, { 12382, 1352, -1 }, { 12373, 1595, -1 }, { 12374, 1595, -1 }, { 12375, 1595, -1 }, { 12376, 1595, -1 }, { 12377, 1595, -1 }, { 12378, 1595, -1 }, { 12379, 1595, -1 }, { 12380, 1595, -1 }, { 12381, 1595, -1 }, { 12382, 1595, -1 }, { 12373, 1598, -1 }, { 12374, 1598, -1 }, { 12375, 1598, -1 }, { 12376, 1598, -1 }, { 12377, 1598, -1 }, { 12378, 1598, -1 }, { 12379, 1598, -1 }, { 12380, 1598, -1 }, { 12381, 1598, -1 }, { 12382, 1598, -1 }, { 12373, 1694, -1 }, { 12374, 1694, -1 }, { 12375, 1694, -1 }, { 12376, 1694, -1 }, { 12377, 1694, -1 }, { 12378, 1694, -1 }, { 12379, 1694, -1 }, { 12380, 1694, -1 }, { 12381, 1694, -1 }, { 12382, 1694, -1 }, { 12373, 807, -1 }, { 12374, 807, -1 }, { 12375, 807, -1 }, { 12376, 807, -1 }, { 12377, 807, -1 }, { 12378, 807, -1 }, { 12379, 807, -1 }, { 12380, 807, -1 }, { 12381, 807, -1 }, { 12382, 807, -1 }, { 12373, 687, -1 }, { 12374, 687, -1 }, { 12375, 687, -1 }, { 12376, 687, -1 }, { 12377, 687, -1 }, { 12378, 687, -1 }, { 12379, 687, -1 }, { 12380, 687, -1 }, { 12381, 687, -1 }, { 12382, 687, -1 }, { 12373, 692, -1 }, { 12374, 692, -1 }, { 12375, 692, -1 }, { 12376, 692, -1 }, { 12377, 692, -1 }, { 12378, 692, -1 }, { 12379, 692, -1 }, { 12380, 692, -1 }, { 12381, 692, -1 }, { 12382, 692, -1 }, { 12373, 1081, -1 }, { 12374, 1081, -1 }, { 12375, 1081, -1 }, { 12376, 1081, -1 }, { 12377, 1081, -1 }, { 12378, 1081, -1 }, { 12379, 1081, -1 }, { 12380, 1081, -1 }, { 12381, 1081, -1 }, { 12382, 1081, -1 }, { 12373, 977, -1 }, { 12374, 977, -1 }, { 12375, 977, -1 }, { 12376, 977, -1 }, { 12377, 977, -1 }, { 12378, 977, -1 }, { 12379, 977, -1 }, { 12380, 977, -1 }, { 12381, 977, -1 }, { 12382, 977, -1 }, { 12373, 139, -1 }, { 12374, 139, -1 }, { 12375, 139, -1 }, { 12376, 139, -1 }, { 12377, 139, -1 }, { 12378, 139, -1 }, { 12379, 139, -1 }, { 12380, 139, -1 }, { 12381, 139, -1 }, { 12382, 139, -1 }, { 12373, 169, -1 }, { 12374, 169, -1 }, { 12375, 169, -1 }, { 12376, 169, -1 }, { 12377, 169, -1 }, { 12378, 169, -1 }, { 12379, 169, -1 }, { 12380, 169, -1 }, { 12381, 169, -1 }, { 12382, 169, -1 }, { 12373, 854, -1 }, { 12374, 854, -1 }, { 12375, 854, -1 }, { 12376, 854, -1 }, { 12377, 854, -1 }, { 12378, 854, -1 }, { 12379, 854, -1 }, { 12380, 854, -1 }, { 12381, 854, -1 }, { 12382, 854, -1 }, { 12373, 182, -1 }, { 12374, 182, -1 }, { 12375, 182, -1 }, { 12376, 182, -1 }, { 12377, 182, -1 }, { 12378, 182, -1 }, { 12379, 182, -1 }, { 12380, 182, -1 }, { 12381, 182, -1 }, { 12382, 182, -1 }, { 12373, 896, -1 }, { 12374, 896, -1 }, { 12375, 896, -1 }, { 12376, 896, -1 }, { 12377, 896, -1 }, { 12378, 896, -1 }, { 12379, 896, -1 }, { 12380, 896, -1 }, { 12381, 896, -1 }, { 12382, 896, -1 }, { 12373, 698, -1 }, { 12374, 698, -1 }, { 12375, 698, -1 }, { 12376, 698, -1 }, { 12377, 698, -1 }, { 12378, 698, -1 }, { 12379, 698, -1 }, { 12380, 698, -1 }, { 12381, 698, -1 }, { 12382, 698, -1 }, { 12373, 298, -1 }, { 12374, 298, -1 }, { 12375, 298, -1 }, { 12376, 298, -1 }, { 12377, 298, -1 }, { 12378, 298, -1 }, { 12379, 298, -1 }, { 12380, 298, -1 }, { 12381, 298, -1 }, { 12382, 298, -1 }, { 12373, 278, -1 }, { 12374, 278, -1 }, { 12375, 278, -1 }, { 12376, 278, -1 }, { 12377, 278, -1 }, { 12378, 278, -1 }, { 12379, 278, -1 }, { 12380, 278, -1 }, { 12381, 278, -1 }, { 12382, 278, -1 }, { 12373, 1567, -1 }, { 12374, 1567, -1 }, { 12375, 1567, -1 }, { 12376, 1567, -1 }, { 12377, 1567, -1 }, { 12378, 1567, -1 }, { 12379, 1567, -1 }, { 12380, 1567, -1 }, { 12381, 1567, -1 }, { 12382, 1567, -1 }, { 12373, 1340, -1 }, { 12374, 1340, -1 }, { 12375, 1340, -1 }, { 12376, 1340, -1 }, { 12377, 1340, -1 }, { 12378, 1340, -1 }, { 12379, 1340, -1 }, { 12380, 1340, -1 }, { 12381, 1340, -1 }, { 12382, 1340, -1 }, { 12373, 883, -1 }, { 12374, 883, -1 }, { 12375, 883, -1 }, { 12376, 883, -1 }, { 12377, 883, -1 }, { 12378, 883, -1 }, { 12379, 883, -1 }, { 12380, 883, -1 }, { 12381, 883, -1 }, { 12382, 883, -1 }, { 12373, 1607, -1 }, { 12374, 1607, -1 }, { 12375, 1607, -1 }, { 12376, 1607, -1 }, { 12377, 1607, -1 }, { 12378, 1607, -1 }, { 12379, 1607, -1 }, { 12380, 1607, -1 }, { 12381, 1607, -1 }, { 12382, 1607, -1 }, { 12373, 288, -1 }, { 12374, 288, -1 }, { 12375, 288, -1 }, { 12376, 288, -1 }, { 12377, 288, -1 }, { 12378, 288, -1 }, { 12379, 288, -1 }, { 12380, 288, -1 }, { 12381, 288, -1 }, { 12382, 288, -1 }, { 12373, 1949, -1 }, { 12374, 1949, -1 }, { 12375, 1949, -1 }, { 12376, 1949, -1 }, { 12377, 1949, -1 }, { 12378, 1949, -1 }, { 12379, 1949, -1 }, { 12380, 1949, -1 }, { 12381, 1949, -1 }, { 12382, 1949, -1 }, { 12373, 1822, -1 }, { 12374, 1822, -1 }, { 12375, 1822, -1 }, { 12376, 1822, -1 }, { 12377, 1822, -1 }, { 12378, 1822, -1 }, { 12379, 1822, -1 }, { 12380, 1822, -1 }, { 12381, 1822, -1 }, { 12382, 1822, -1 }, { 12373, 1995, -1 }, { 12374, 1995, -1 }, { 12375, 1995, -1 }, { 12376, 1995, -1 }, { 12377, 1995, -1 }, { 12378, 1995, -1 }, { 12379, 1995, -1 }, { 12380, 1995, -1 }, { 12381, 1995, -1 }, { 12382, 1995, -1 }, { 12373, 1496, -1 }, { 12374, 1496, -1 }, { 12375, 1496, -1 }, { 12376, 1496, -1 }, { 12377, 1496, -1 }, { 12378, 1496, -1 }, { 12379, 1496, -1 }, { 12380, 1496, -1 }, { 12381, 1496, -1 }, { 12382, 1496, -1 }, { 12373, 1493, -1 }, { 12374, 1493, -1 }, { 12375, 1493, -1 }, { 12376, 1493, -1 }, { 12377, 1493, -1 }, { 12378, 1493, -1 }, { 12379, 1493, -1 }, { 12380, 1493, -1 }, { 12381, 1493, -1 }, { 12382, 1493, -1 }, { 12373, 1489, -1 }, { 12374, 1489, -1 }, { 12375, 1489, -1 }, { 12376, 1489, -1 }, { 12377, 1489, -1 }, { 12378, 1489, -1 }, { 12379, 1489, -1 }, { 12380, 1489, -1 }, { 12381, 1489, -1 }, { 12382, 1489, -1 }, { 12373, 1359, -1 }, { 12374, 1359, -1 }, { 12375, 1359, -1 }, { 12376, 1359, -1 }, { 12377, 1359, -1 }, { 12378, 1359, -1 }, { 12379, 1359, -1 }, { 12380, 1359, -1 }, { 12381, 1359, -1 }, { 12382, 1359, -1 }, { 12373, 1297, -1 }, { 12374, 1297, -1 }, { 12375, 1297, -1 }, { 12376, 1297, -1 }, { 12377, 1297, -1 }, { 12378, 1297, -1 }, { 12379, 1297, -1 }, { 12380, 1297, -1 }, { 12381, 1297, -1 }, { 12382, 1297, -1 }, { 12373, 1306, -1 }, { 12374, 1306, -1 }, { 12375, 1306, -1 }, { 12376, 1306, -1 }, { 12377, 1306, -1 }, { 12378, 1306, -1 }, { 12379, 1306, -1 }, { 12380, 1306, -1 }, { 12381, 1306, -1 }, { 12382, 1306, -1 }, { 12373, 905, -1 }, { 12374, 905, -1 }, { 12375, 905, -1 }, { 12376, 905, -1 }, { 12377, 905, -1 }, { 12378, 905, -1 }, { 12379, 905, -1 }, { 12380, 905, -1 }, { 12381, 905, -1 }, { 12382, 905, -1 }, { 12373, 1796, -1 }, { 12374, 1796, -1 }, { 12375, 1796, -1 }, { 12376, 1796, -1 }, { 12377, 1796, -1 }, { 12378, 1796, -1 }, { 12379, 1796, -1 }, { 12380, 1796, -1 }, { 12381, 1796, -1 }, { 12382, 1796, -1 }, { 12373, 1659, -1 }, { 12374, 1659, -1 }, { 12375, 1659, -1 }, { 12376, 1659, -1 }, { 12377, 1659, -1 }, { 12378, 1659, -1 }, { 12379, 1659, -1 }, { 12380, 1659, -1 }, { 12381, 1659, -1 }, { 12382, 1659, -1 }, { 12373, 1525, -1 }, { 12374, 1525, -1 }, { 12375, 1525, -1 }, { 12376, 1525, -1 }, { 12377, 1525, -1 }, { 12378, 1525, -1 }, { 12379, 1525, -1 }, { 12380, 1525, -1 }, { 12381, 1525, -1 }, { 12382, 1525, -1 }, { 12373, 1481, -1 }, { 12374, 1481, -1 }, { 12375, 1481, -1 }, { 12376, 1481, -1 }, { 12377, 1481, -1 }, { 12378, 1481, -1 }, { 12379, 1481, -1 }, { 12380, 1481, -1 }, { 12381, 1481, -1 }, { 12382, 1481, -1 }, { 12373, 1503, -1 }, { 12374, 1503, -1 }, { 12375, 1503, -1 }, { 12376, 1503, -1 }, { 12377, 1503, -1 }, { 12378, 1503, -1 }, { 12379, 1503, -1 }, { 12380, 1503, -1 }, { 12381, 1503, -1 }, { 12382, 1503, -1 }, { 12373, 1507, -1 }, { 12374, 1507, -1 }, { 12375, 1507, -1 }, { 12376, 1507, -1 }, { 12377, 1507, -1 }, { 12378, 1507, -1 }, { 12379, 1507, -1 }, { 12380, 1507, -1 }, { 12381, 1507, -1 }, { 12382, 1507, -1 }, { 12373, 1511, -1 }, { 12374, 1511, -1 }, { 12375, 1511, -1 }, { 12376, 1511, -1 }, { 12377, 1511, -1 }, { 12378, 1511, -1 }, { 12379, 1511, -1 }, { 12380, 1511, -1 }, { 12381, 1511, -1 }, { 12382, 1511, -1 }, { 12383, 1775, -1 }, { 12384, 1775, -1 }, { 12385, 1775, -1 }, { 12386, 1775, -1 }, { 12387, 1775, -1 }, { 12388, 1775, -1 }, { 12383, 1982, -1 }, { 12384, 1982, -1 }, { 12385, 1982, -1 }, { 12386, 1982, -1 }, { 12387, 1982, -1 }, { 12388, 1982, -1 }, { 12383, 575, -1 }, { 12384, 575, -1 }, { 12385, 575, -1 }, { 12386, 575, -1 }, { 12387, 575, -1 }, { 12388, 575, -1 }, { 12383, 1061, -1 }, { 12384, 1061, -1 }, { 12385, 1061, -1 }, { 12386, 1061, -1 }, { 12387, 1061, -1 }, { 12388, 1061, -1 }, { 12383, 1040, -1 }, { 12384, 1040, -1 }, { 12385, 1040, -1 }, { 12386, 1040, -1 }, { 12387, 1040, -1 }, { 12388, 1040, -1 }, { 12383, 984, -1 }, { 12384, 984, -1 }, { 12385, 984, -1 }, { 12386, 984, -1 }, { 12387, 984, -1 }, { 12388, 984, -1 }, { 12383, 97, -1 }, { 12384, 97, -1 }, { 12385, 97, -1 }, { 12386, 97, -1 }, { 12387, 97, -1 }, { 12388, 97, -1 }, { 12383, 1329, -1 }, { 12384, 1329, -1 }, { 12385, 1329, -1 }, { 12386, 1329, -1 }, { 12387, 1329, -1 }, { 12388, 1329, -1 }, { 12383, 190, -1 }, { 12384, 190, -1 }, { 12385, 190, -1 }, { 12386, 190, -1 }, { 12387, 190, -1 }, { 12388, 190, -1 }, { 12383, 1352, -1 }, { 12384, 1352, -1 }, { 12385, 1352, -1 }, { 12386, 1352, -1 }, { 12387, 1352, -1 }, { 12388, 1352, -1 }, { 12383, 1595, -1 }, { 12384, 1595, -1 }, { 12385, 1595, -1 }, { 12386, 1595, -1 }, { 12387, 1595, -1 }, { 12388, 1595, -1 }, { 12383, 1598, -1 }, { 12384, 1598, -1 }, { 12385, 1598, -1 }, { 12386, 1598, -1 }, { 12387, 1598, -1 }, { 12388, 1598, -1 }, { 12383, 1694, -1 }, { 12384, 1694, -1 }, { 12385, 1694, -1 }, { 12386, 1694, -1 }, { 12387, 1694, -1 }, { 12388, 1694, -1 }, { 12383, 807, -1 }, { 12384, 807, -1 }, { 12385, 807, -1 }, { 12386, 807, -1 }, { 12387, 807, -1 }, { 12388, 807, -1 }, { 12383, 687, -1 }, { 12384, 687, -1 }, { 12385, 687, -1 }, { 12386, 687, -1 }, { 12387, 687, -1 }, { 12388, 687, -1 }, { 12383, 692, -1 }, { 12384, 692, -1 }, { 12385, 692, -1 }, { 12386, 692, -1 }, { 12387, 692, -1 }, { 12388, 692, -1 }, { 12383, 1081, -1 }, { 12384, 1081, -1 }, { 12385, 1081, -1 }, { 12386, 1081, -1 }, { 12387, 1081, -1 }, { 12388, 1081, -1 }, { 12383, 977, -1 }, { 12384, 977, -1 }, { 12385, 977, -1 }, { 12386, 977, -1 }, { 12387, 977, -1 }, { 12388, 977, -1 }, { 12383, 139, -1 }, { 12384, 139, -1 }, { 12385, 139, -1 }, { 12386, 139, -1 }, { 12387, 139, -1 }, { 12388, 139, -1 }, { 12383, 169, -1 }, { 12384, 169, -1 }, { 12385, 169, -1 }, { 12386, 169, -1 }, { 12387, 169, -1 }, { 12388, 169, -1 }, { 12383, 854, -1 }, { 12384, 854, -1 }, { 12385, 854, -1 }, { 12386, 854, -1 }, { 12387, 854, -1 }, { 12388, 854, -1 }, { 12383, 182, -1 }, { 12384, 182, -1 }, { 12385, 182, -1 }, { 12386, 182, -1 }, { 12387, 182, -1 }, { 12388, 182, -1 }, { 12383, 896, -1 }, { 12384, 896, -1 }, { 12385, 896, -1 }, { 12386, 896, -1 }, { 12387, 896, -1 }, { 12388, 896, -1 }, { 12383, 698, -1 }, { 12384, 698, -1 }, { 12385, 698, -1 }, { 12386, 698, -1 }, { 12387, 698, -1 }, { 12388, 698, -1 }, { 12383, 298, -1 }, { 12384, 298, -1 }, { 12385, 298, -1 }, { 12386, 298, -1 }, { 12387, 298, -1 }, { 12388, 298, -1 }, { 12383, 278, -1 }, { 12384, 278, -1 }, { 12385, 278, -1 }, { 12386, 278, -1 }, { 12387, 278, -1 }, { 12388, 278, -1 }, { 12383, 1567, -1 }, { 12384, 1567, -1 }, { 12385, 1567, -1 }, { 12386, 1567, -1 }, { 12387, 1567, -1 }, { 12388, 1567, -1 }, { 12383, 1340, -1 }, { 12384, 1340, -1 }, { 12385, 1340, -1 }, { 12386, 1340, -1 }, { 12387, 1340, -1 }, { 12388, 1340, -1 }, { 12383, 883, -1 }, { 12384, 883, -1 }, { 12385, 883, -1 }, { 12386, 883, -1 }, { 12387, 883, -1 }, { 12388, 883, -1 }, { 12383, 1607, -1 }, { 12384, 1607, -1 }, { 12385, 1607, -1 }, { 12386, 1607, -1 }, { 12387, 1607, -1 }, { 12388, 1607, -1 }, { 12383, 288, -1 }, { 12384, 288, -1 }, { 12385, 288, -1 }, { 12386, 288, -1 }, { 12387, 288, -1 }, { 12388, 288, -1 }, { 12383, 1949, -1 }, { 12384, 1949, -1 }, { 12385, 1949, -1 }, { 12386, 1949, -1 }, { 12387, 1949, -1 }, { 12388, 1949, -1 }, { 12383, 1822, -1 }, { 12384, 1822, -1 }, { 12385, 1822, -1 }, { 12386, 1822, -1 }, { 12387, 1822, -1 }, { 12388, 1822, -1 }, { 12383, 1995, -1 }, { 12384, 1995, -1 }, { 12385, 1995, -1 }, { 12386, 1995, -1 }, { 12387, 1995, -1 }, { 12388, 1995, -1 }, { 12383, 1496, -1 }, { 12384, 1496, -1 }, { 12385, 1496, -1 }, { 12386, 1496, -1 }, { 12387, 1496, -1 }, { 12388, 1496, -1 }, { 12383, 1493, -1 }, { 12384, 1493, -1 }, { 12385, 1493, -1 }, { 12386, 1493, -1 }, { 12387, 1493, -1 }, { 12388, 1493, -1 }, { 12383, 1489, -1 }, { 12384, 1489, -1 }, { 12385, 1489, -1 }, { 12386, 1489, -1 }, { 12387, 1489, -1 }, { 12388, 1489, -1 }, { 12383, 1359, -1 }, { 12384, 1359, -1 }, { 12385, 1359, -1 }, { 12386, 1359, -1 }, { 12387, 1359, -1 }, { 12388, 1359, -1 }, { 12383, 1297, -1 }, { 12384, 1297, -1 }, { 12385, 1297, -1 }, { 12386, 1297, -1 }, { 12387, 1297, -1 }, { 12388, 1297, -1 }, { 12383, 1306, -1 }, { 12384, 1306, -1 }, { 12385, 1306, -1 }, { 12386, 1306, -1 }, { 12387, 1306, -1 }, { 12388, 1306, -1 }, { 12383, 905, -1 }, { 12384, 905, -1 }, { 12385, 905, -1 }, { 12386, 905, -1 }, { 12387, 905, -1 }, { 12388, 905, -1 }, { 12383, 1796, -1 }, { 12384, 1796, -1 }, { 12385, 1796, -1 }, { 12386, 1796, -1 }, { 12387, 1796, -1 }, { 12388, 1796, -1 }, { 12383, 1659, -1 }, { 12384, 1659, -1 }, { 12385, 1659, -1 }, { 12386, 1659, -1 }, { 12387, 1659, -1 }, { 12388, 1659, -1 }, { 12383, 1525, -1 }, { 12384, 1525, -1 }, { 12385, 1525, -1 }, { 12386, 1525, -1 }, { 12387, 1525, -1 }, { 12388, 1525, -1 }, { 12383, 1481, -1 }, { 12384, 1481, -1 }, { 12385, 1481, -1 }, { 12386, 1481, -1 }, { 12387, 1481, -1 }, { 12388, 1481, -1 }, { 12383, 1503, -1 }, { 12384, 1503, -1 }, { 12385, 1503, -1 }, { 12386, 1503, -1 }, { 12387, 1503, -1 }, { 12388, 1503, -1 }, { 12383, 1507, -1 }, { 12384, 1507, -1 }, { 12385, 1507, -1 }, { 12386, 1507, -1 }, { 12387, 1507, -1 }, { 12388, 1507, -1 }, { 12383, 1511, -1 }, { 12384, 1511, -1 }, { 12385, 1511, -1 }, { 12386, 1511, -1 }, { 12387, 1511, -1 }, { 12388, 1511, -1 }, { 12442, 1258, -1 }, { 12443, 1258, -1 }, { 12444, 1258, -1 }, { 12445, 1258, -1 }, { 12446, 1258, -1 }, { 12447, 1258, -1 }, { 12448, 1258, -1 }, { 12449, 1258, -1 }, { 12450, 1258, -1 }, { 12451, 1258, -1 }, { 12452, 1258, -1 }, { 12453, 1258, -1 }, { 12442, 1257, -1 }, { 12443, 1257, -1 }, { 12444, 1257, -1 }, { 12445, 1257, -1 }, { 12446, 1257, -1 }, { 12447, 1257, -1 }, { 12448, 1257, -1 }, { 12449, 1257, -1 }, { 12450, 1257, -1 }, { 12451, 1257, -1 }, { 12452, 1257, -1 }, { 12453, 1257, -1 }, { 12442, 1256, -1 }, { 12443, 1256, -1 }, { 12444, 1256, -1 }, { 12445, 1256, -1 }, { 12446, 1256, -1 }, { 12447, 1256, -1 }, { 12448, 1256, -1 }, { 12449, 1256, -1 }, { 12450, 1256, -1 }, { 12451, 1256, -1 }, { 12452, 1256, -1 }, { 12453, 1256, -1 }, { 12442, 1259, -1 }, { 12443, 1259, -1 }, { 12444, 1259, -1 }, { 12445, 1259, -1 }, { 12446, 1259, -1 }, { 12447, 1259, -1 }, { 12448, 1259, -1 }, { 12449, 1259, -1 }, { 12450, 1259, -1 }, { 12451, 1259, -1 }, { 12452, 1259, -1 }, { 12453, 1259, -1 }, { 12442, 1737, -1 }, { 12443, 1737, -1 }, { 12444, 1737, -1 }, { 12445, 1737, -1 }, { 12446, 1737, -1 }, { 12447, 1737, -1 }, { 12448, 1737, -1 }, { 12449, 1737, -1 }, { 12450, 1737, -1 }, { 12451, 1737, -1 }, { 12452, 1737, -1 }, { 12453, 1737, -1 }, { 12442, 1778, -1 }, { 12443, 1778, -1 }, { 12444, 1778, -1 }, { 12445, 1778, -1 }, { 12446, 1778, -1 }, { 12447, 1778, -1 }, { 12448, 1778, -1 }, { 12449, 1778, -1 }, { 12450, 1778, -1 }, { 12451, 1778, -1 }, { 12452, 1778, -1 }, { 12453, 1778, -1 }, { 12442, 1777, -1 }, { 12443, 1777, -1 }, { 12444, 1777, -1 }, { 12445, 1777, -1 }, { 12446, 1777, -1 }, { 12447, 1777, -1 }, { 12448, 1777, -1 }, { 12449, 1777, -1 }, { 12450, 1777, -1 }, { 12451, 1777, -1 }, { 12452, 1777, -1 }, { 12453, 1777, -1 }, { 12442, 2004, -1 }, { 12443, 2004, -1 }, { 12444, 2004, -1 }, { 12445, 2004, -1 }, { 12446, 2004, -1 }, { 12447, 2004, -1 }, { 12448, 2004, -1 }, { 12449, 2004, -1 }, { 12450, 2004, -1 }, { 12451, 2004, -1 }, { 12452, 2004, -1 }, { 12453, 2004, -1 }, { 12442, 1867, -1 }, { 12443, 1867, -1 }, { 12444, 1867, -1 }, { 12445, 1867, -1 }, { 12446, 1867, -1 }, { 12447, 1867, -1 }, { 12448, 1867, -1 }, { 12449, 1867, -1 }, { 12450, 1867, -1 }, { 12451, 1867, -1 }, { 12452, 1867, -1 }, { 12453, 1867, -1 }, { 12442, 1923, -1 }, { 12443, 1923, -1 }, { 12444, 1923, -1 }, { 12445, 1923, -1 }, { 12446, 1923, -1 }, { 12447, 1923, -1 }, { 12448, 1923, -1 }, { 12449, 1923, -1 }, { 12450, 1923, -1 }, { 12451, 1923, -1 }, { 12452, 1923, -1 }, { 12453, 1923, -1 }, { 12442, 1922, -1 }, { 12443, 1922, -1 }, { 12444, 1922, -1 }, { 12445, 1922, -1 }, { 12446, 1922, -1 }, { 12447, 1922, -1 }, { 12448, 1922, -1 }, { 12449, 1922, -1 }, { 12450, 1922, -1 }, { 12451, 1922, -1 }, { 12452, 1922, -1 }, { 12453, 1922, -1 }, { 12442, 1868, -1 }, { 12443, 1868, -1 }, { 12444, 1868, -1 }, { 12445, 1868, -1 }, { 12446, 1868, -1 }, { 12447, 1868, -1 }, { 12448, 1868, -1 }, { 12449, 1868, -1 }, { 12450, 1868, -1 }, { 12451, 1868, -1 }, { 12452, 1868, -1 }, { 12453, 1868, -1 }, { 12442, 1984, -1 }, { 12443, 1984, -1 }, { 12444, 1984, -1 }, { 12445, 1984, -1 }, { 12446, 1984, -1 }, { 12447, 1984, -1 }, { 12448, 1984, -1 }, { 12449, 1984, -1 }, { 12450, 1984, -1 }, { 12451, 1984, -1 }, { 12452, 1984, -1 }, { 12453, 1984, -1 }, { 12442, 1947, -1 }, { 12443, 1947, -1 }, { 12444, 1947, -1 }, { 12445, 1947, -1 }, { 12446, 1947, -1 }, { 12447, 1947, -1 }, { 12448, 1947, -1 }, { 12449, 1947, -1 }, { 12450, 1947, -1 }, { 12451, 1947, -1 }, { 12452, 1947, -1 }, { 12453, 1947, -1 }, { 12442, 1924, -1 }, { 12443, 1924, -1 }, { 12444, 1924, -1 }, { 12445, 1924, -1 }, { 12446, 1924, -1 }, { 12447, 1924, -1 }, { 12448, 1924, -1 }, { 12449, 1924, -1 }, { 12450, 1924, -1 }, { 12451, 1924, -1 }, { 12452, 1924, -1 }, { 12453, 1924, -1 }, { 12442, 1925, -1 }, { 12443, 1925, -1 }, { 12444, 1925, -1 }, { 12445, 1925, -1 }, { 12446, 1925, -1 }, { 12447, 1925, -1 }, { 12448, 1925, -1 }, { 12449, 1925, -1 }, { 12450, 1925, -1 }, { 12451, 1925, -1 }, { 12452, 1925, -1 }, { 12453, 1925, -1 }, { 12442, 1957, -1 }, { 12443, 1957, -1 }, { 12444, 1957, -1 }, { 12445, 1957, -1 }, { 12446, 1957, -1 }, { 12447, 1957, -1 }, { 12448, 1957, -1 }, { 12449, 1957, -1 }, { 12450, 1957, -1 }, { 12451, 1957, -1 }, { 12452, 1957, -1 }, { 12453, 1957, -1 }, { 12442, 1926, -1 }, { 12443, 1926, -1 }, { 12444, 1926, -1 }, { 12445, 1926, -1 }, { 12446, 1926, -1 }, { 12447, 1926, -1 }, { 12448, 1926, -1 }, { 12449, 1926, -1 }, { 12450, 1926, -1 }, { 12451, 1926, -1 }, { 12452, 1926, -1 }, { 12453, 1926, -1 }, { 12442, 1951, -1 }, { 12443, 1951, -1 }, { 12444, 1951, -1 }, { 12445, 1951, -1 }, { 12446, 1951, -1 }, { 12447, 1951, -1 }, { 12448, 1951, -1 }, { 12449, 1951, -1 }, { 12450, 1951, -1 }, { 12451, 1951, -1 }, { 12452, 1951, -1 }, { 12453, 1951, -1 }, { 12442, 1831, -1 }, { 12443, 1831, -1 }, { 12444, 1831, -1 }, { 12445, 1831, -1 }, { 12446, 1831, -1 }, { 12447, 1831, -1 }, { 12448, 1831, -1 }, { 12449, 1831, -1 }, { 12450, 1831, -1 }, { 12451, 1831, -1 }, { 12452, 1831, -1 }, { 12453, 1831, -1 }, { 12442, 1768, -1 }, { 12443, 1768, -1 }, { 12444, 1768, -1 }, { 12445, 1768, -1 }, { 12446, 1768, -1 }, { 12447, 1768, -1 }, { 12448, 1768, -1 }, { 12449, 1768, -1 }, { 12450, 1768, -1 }, { 12451, 1768, -1 }, { 12452, 1768, -1 }, { 12453, 1768, -1 }, { 12442, 1913, -1 }, { 12443, 1913, -1 }, { 12444, 1913, -1 }, { 12445, 1913, -1 }, { 12446, 1913, -1 }, { 12447, 1913, -1 }, { 12448, 1913, -1 }, { 12449, 1913, -1 }, { 12450, 1913, -1 }, { 12451, 1913, -1 }, { 12452, 1913, -1 }, { 12453, 1913, -1 }, { 12442, 1912, -1 }, { 12443, 1912, -1 }, { 12444, 1912, -1 }, { 12445, 1912, -1 }, { 12446, 1912, -1 }, { 12447, 1912, -1 }, { 12448, 1912, -1 }, { 12449, 1912, -1 }, { 12450, 1912, -1 }, { 12451, 1912, -1 }, { 12452, 1912, -1 }, { 12453, 1912, -1 }, { 12442, 1914, -1 }, { 12443, 1914, -1 }, { 12444, 1914, -1 }, { 12445, 1914, -1 }, { 12446, 1914, -1 }, { 12447, 1914, -1 }, { 12448, 1914, -1 }, { 12449, 1914, -1 }, { 12450, 1914, -1 }, { 12451, 1914, -1 }, { 12452, 1914, -1 }, { 12453, 1914, -1 }, { 12442, 1794, -1 }, { 12443, 1794, -1 }, { 12444, 1794, -1 }, { 12445, 1794, -1 }, { 12446, 1794, -1 }, { 12447, 1794, -1 }, { 12448, 1794, -1 }, { 12449, 1794, -1 }, { 12450, 1794, -1 }, { 12451, 1794, -1 }, { 12452, 1794, -1 }, { 12453, 1794, -1 }, { 12442, 1802, -1 }, { 12443, 1802, -1 }, { 12444, 1802, -1 }, { 12445, 1802, -1 }, { 12446, 1802, -1 }, { 12447, 1802, -1 }, { 12448, 1802, -1 }, { 12449, 1802, -1 }, { 12450, 1802, -1 }, { 12451, 1802, -1 }, { 12452, 1802, -1 }, { 12453, 1802, -1 }, { 12442, 1803, -1 }, { 12443, 1803, -1 }, { 12444, 1803, -1 }, { 12445, 1803, -1 }, { 12446, 1803, -1 }, { 12447, 1803, -1 }, { 12448, 1803, -1 }, { 12449, 1803, -1 }, { 12450, 1803, -1 }, { 12451, 1803, -1 }, { 12452, 1803, -1 }, { 12453, 1803, -1 }, { 12442, 1804, -1 }, { 12443, 1804, -1 }, { 12444, 1804, -1 }, { 12445, 1804, -1 }, { 12446, 1804, -1 }, { 12447, 1804, -1 }, { 12448, 1804, -1 }, { 12449, 1804, -1 }, { 12450, 1804, -1 }, { 12451, 1804, -1 }, { 12452, 1804, -1 }, { 12453, 1804, -1 }, { 12442, 1850, -1 }, { 12443, 1850, -1 }, { 12444, 1850, -1 }, { 12445, 1850, -1 }, { 12446, 1850, -1 }, { 12447, 1850, -1 }, { 12448, 1850, -1 }, { 12449, 1850, -1 }, { 12450, 1850, -1 }, { 12451, 1850, -1 }, { 12452, 1850, -1 }, { 12453, 1850, -1 }, { 12442, 1852, -1 }, { 12443, 1852, -1 }, { 12444, 1852, -1 }, { 12445, 1852, -1 }, { 12446, 1852, -1 }, { 12447, 1852, -1 }, { 12448, 1852, -1 }, { 12449, 1852, -1 }, { 12450, 1852, -1 }, { 12451, 1852, -1 }, { 12452, 1852, -1 }, { 12453, 1852, -1 }, { 12442, 1881, -1 }, { 12443, 1881, -1 }, { 12444, 1881, -1 }, { 12445, 1881, -1 }, { 12446, 1881, -1 }, { 12447, 1881, -1 }, { 12448, 1881, -1 }, { 12449, 1881, -1 }, { 12450, 1881, -1 }, { 12451, 1881, -1 }, { 12452, 1881, -1 }, { 12453, 1881, -1 }, { 12442, 1891, -1 }, { 12443, 1891, -1 }, { 12444, 1891, -1 }, { 12445, 1891, -1 }, { 12446, 1891, -1 }, { 12447, 1891, -1 }, { 12448, 1891, -1 }, { 12449, 1891, -1 }, { 12450, 1891, -1 }, { 12451, 1891, -1 }, { 12452, 1891, -1 }, { 12453, 1891, -1 }, { 12442, 1716, -1 }, { 12443, 1716, -1 }, { 12444, 1716, -1 }, { 12445, 1716, -1 }, { 12446, 1716, -1 }, { 12447, 1716, -1 }, { 12448, 1716, -1 }, { 12449, 1716, -1 }, { 12450, 1716, -1 }, { 12451, 1716, -1 }, { 12452, 1716, -1 }, { 12453, 1716, -1 }, { 12442, 1682, -1 }, { 12443, 1682, -1 }, { 12444, 1682, -1 }, { 12445, 1682, -1 }, { 12446, 1682, -1 }, { 12447, 1682, -1 }, { 12448, 1682, -1 }, { 12449, 1682, -1 }, { 12450, 1682, -1 }, { 12451, 1682, -1 }, { 12452, 1682, -1 }, { 12453, 1682, -1 }, { 12442, 419, -1 }, { 12443, 419, -1 }, { 12444, 419, -1 }, { 12445, 419, -1 }, { 12446, 419, -1 }, { 12447, 419, -1 }, { 12448, 419, -1 }, { 12449, 419, -1 }, { 12450, 419, -1 }, { 12451, 419, -1 }, { 12452, 419, -1 }, { 12453, 419, -1 }, { 12442, 632, -1 }, { 12443, 632, -1 }, { 12444, 632, -1 }, { 12445, 632, -1 }, { 12446, 632, -1 }, { 12447, 632, -1 }, { 12448, 632, -1 }, { 12449, 632, -1 }, { 12450, 632, -1 }, { 12451, 632, -1 }, { 12452, 632, -1 }, { 12453, 632, -1 }, { 12442, 634, -1 }, { 12443, 634, -1 }, { 12444, 634, -1 }, { 12445, 634, -1 }, { 12446, 634, -1 }, { 12447, 634, -1 }, { 12448, 634, -1 }, { 12449, 634, -1 }, { 12450, 634, -1 }, { 12451, 634, -1 }, { 12452, 634, -1 }, { 12453, 634, -1 }, { 12442, 417, -1 }, { 12443, 417, -1 }, { 12444, 417, -1 }, { 12445, 417, -1 }, { 12446, 417, -1 }, { 12447, 417, -1 }, { 12448, 417, -1 }, { 12449, 417, -1 }, { 12450, 417, -1 }, { 12451, 417, -1 }, { 12452, 417, -1 }, { 12453, 417, -1 }, { 12442, 506, -1 }, { 12443, 506, -1 }, { 12444, 506, -1 }, { 12445, 506, -1 }, { 12446, 506, -1 }, { 12447, 506, -1 }, { 12448, 506, -1 }, { 12449, 506, -1 }, { 12450, 506, -1 }, { 12451, 506, -1 }, { 12452, 506, -1 }, { 12453, 506, -1 }, { 12442, 577, -1 }, { 12443, 577, -1 }, { 12444, 577, -1 }, { 12445, 577, -1 }, { 12446, 577, -1 }, { 12447, 577, -1 }, { 12448, 577, -1 }, { 12449, 577, -1 }, { 12450, 577, -1 }, { 12451, 577, -1 }, { 12452, 577, -1 }, { 12453, 577, -1 }, { 12442, 505, -1 }, { 12443, 505, -1 }, { 12444, 505, -1 }, { 12445, 505, -1 }, { 12446, 505, -1 }, { 12447, 505, -1 }, { 12448, 505, -1 }, { 12449, 505, -1 }, { 12450, 505, -1 }, { 12451, 505, -1 }, { 12452, 505, -1 }, { 12453, 505, -1 }, { 12442, 950, -1 }, { 12443, 950, -1 }, { 12444, 950, -1 }, { 12445, 950, -1 }, { 12446, 950, -1 }, { 12447, 950, -1 }, { 12448, 950, -1 }, { 12449, 950, -1 }, { 12450, 950, -1 }, { 12451, 950, -1 }, { 12452, 950, -1 }, { 12453, 950, -1 }, { 12442, 971, -1 }, { 12443, 971, -1 }, { 12444, 971, -1 }, { 12445, 971, -1 }, { 12446, 971, -1 }, { 12447, 971, -1 }, { 12448, 971, -1 }, { 12449, 971, -1 }, { 12450, 971, -1 }, { 12451, 971, -1 }, { 12452, 971, -1 }, { 12453, 971, -1 }, { 12442, 1119, -1 }, { 12443, 1119, -1 }, { 12444, 1119, -1 }, { 12445, 1119, -1 }, { 12446, 1119, -1 }, { 12447, 1119, -1 }, { 12448, 1119, -1 }, { 12449, 1119, -1 }, { 12450, 1119, -1 }, { 12451, 1119, -1 }, { 12452, 1119, -1 }, { 12453, 1119, -1 }, { 12442, 1083, -1 }, { 12443, 1083, -1 }, { 12444, 1083, -1 }, { 12445, 1083, -1 }, { 12446, 1083, -1 }, { 12447, 1083, -1 }, { 12448, 1083, -1 }, { 12449, 1083, -1 }, { 12450, 1083, -1 }, { 12451, 1083, -1 }, { 12452, 1083, -1 }, { 12453, 1083, -1 }, { 12442, 1063, -1 }, { 12443, 1063, -1 }, { 12444, 1063, -1 }, { 12445, 1063, -1 }, { 12446, 1063, -1 }, { 12447, 1063, -1 }, { 12448, 1063, -1 }, { 12449, 1063, -1 }, { 12450, 1063, -1 }, { 12451, 1063, -1 }, { 12452, 1063, -1 }, { 12453, 1063, -1 }, { 12442, 1038, -1 }, { 12443, 1038, -1 }, { 12444, 1038, -1 }, { 12445, 1038, -1 }, { 12446, 1038, -1 }, { 12447, 1038, -1 }, { 12448, 1038, -1 }, { 12449, 1038, -1 }, { 12450, 1038, -1 }, { 12451, 1038, -1 }, { 12452, 1038, -1 }, { 12453, 1038, -1 }, { 12442, 986, -1 }, { 12443, 986, -1 }, { 12444, 986, -1 }, { 12445, 986, -1 }, { 12446, 986, -1 }, { 12447, 986, -1 }, { 12448, 986, -1 }, { 12449, 986, -1 }, { 12450, 986, -1 }, { 12451, 986, -1 }, { 12452, 986, -1 }, { 12453, 986, -1 }, { 12442, 979, -1 }, { 12443, 979, -1 }, { 12444, 979, -1 }, { 12445, 979, -1 }, { 12446, 979, -1 }, { 12447, 979, -1 }, { 12448, 979, -1 }, { 12449, 979, -1 }, { 12450, 979, -1 }, { 12451, 979, -1 }, { 12452, 979, -1 }, { 12453, 979, -1 }, { 12442, 141, -1 }, { 12443, 141, -1 }, { 12444, 141, -1 }, { 12445, 141, -1 }, { 12446, 141, -1 }, { 12447, 141, -1 }, { 12448, 141, -1 }, { 12449, 141, -1 }, { 12450, 141, -1 }, { 12451, 141, -1 }, { 12452, 141, -1 }, { 12453, 141, -1 }, { 12442, 471, -1 }, { 12443, 471, -1 }, { 12444, 471, -1 }, { 12445, 471, -1 }, { 12446, 471, -1 }, { 12447, 471, -1 }, { 12448, 471, -1 }, { 12449, 471, -1 }, { 12450, 471, -1 }, { 12451, 471, -1 }, { 12452, 471, -1 }, { 12453, 471, -1 }, { 12442, 63, -1 }, { 12443, 63, -1 }, { 12444, 63, -1 }, { 12445, 63, -1 }, { 12446, 63, -1 }, { 12447, 63, -1 }, { 12448, 63, -1 }, { 12449, 63, -1 }, { 12450, 63, -1 }, { 12451, 63, -1 }, { 12452, 63, -1 }, { 12453, 63, -1 }, { 12442, 7, -1 }, { 12443, 7, -1 }, { 12444, 7, -1 }, { 12445, 7, -1 }, { 12446, 7, -1 }, { 12447, 7, -1 }, { 12448, 7, -1 }, { 12449, 7, -1 }, { 12450, 7, -1 }, { 12451, 7, -1 }, { 12452, 7, -1 }, { 12453, 7, -1 }, { 12442, 13, -1 }, { 12443, 13, -1 }, { 12444, 13, -1 }, { 12445, 13, -1 }, { 12446, 13, -1 }, { 12447, 13, -1 }, { 12448, 13, -1 }, { 12449, 13, -1 }, { 12450, 13, -1 }, { 12451, 13, -1 }, { 12452, 13, -1 }, { 12453, 13, -1 }, { 12442, 23, -1 }, { 12443, 23, -1 }, { 12444, 23, -1 }, { 12445, 23, -1 }, { 12446, 23, -1 }, { 12447, 23, -1 }, { 12448, 23, -1 }, { 12449, 23, -1 }, { 12450, 23, -1 }, { 12451, 23, -1 }, { 12452, 23, -1 }, { 12453, 23, -1 }, { 12442, 1779, -1 }, { 12443, 1779, -1 }, { 12444, 1779, -1 }, { 12445, 1779, -1 }, { 12446, 1779, -1 }, { 12447, 1779, -1 }, { 12448, 1779, -1 }, { 12449, 1779, -1 }, { 12450, 1779, -1 }, { 12451, 1779, -1 }, { 12452, 1779, -1 }, { 12453, 1779, -1 }, { 12442, 1985, -1 }, { 12443, 1985, -1 }, { 12444, 1985, -1 }, { 12445, 1985, -1 }, { 12446, 1985, -1 }, { 12447, 1985, -1 }, { 12448, 1985, -1 }, { 12449, 1985, -1 }, { 12450, 1985, -1 }, { 12451, 1985, -1 }, { 12452, 1985, -1 }, { 12453, 1985, -1 }, { 12442, 578, -1 }, { 12443, 578, -1 }, { 12444, 578, -1 }, { 12445, 578, -1 }, { 12446, 578, -1 }, { 12447, 578, -1 }, { 12448, 578, -1 }, { 12449, 578, -1 }, { 12450, 578, -1 }, { 12451, 578, -1 }, { 12452, 578, -1 }, { 12453, 578, -1 }, { 12442, 1064, -1 }, { 12443, 1064, -1 }, { 12444, 1064, -1 }, { 12445, 1064, -1 }, { 12446, 1064, -1 }, { 12447, 1064, -1 }, { 12448, 1064, -1 }, { 12449, 1064, -1 }, { 12450, 1064, -1 }, { 12451, 1064, -1 }, { 12452, 1064, -1 }, { 12453, 1064, -1 }, { 12442, 1042, -1 }, { 12443, 1042, -1 }, { 12444, 1042, -1 }, { 12445, 1042, -1 }, { 12446, 1042, -1 }, { 12447, 1042, -1 }, { 12448, 1042, -1 }, { 12449, 1042, -1 }, { 12450, 1042, -1 }, { 12451, 1042, -1 }, { 12452, 1042, -1 }, { 12453, 1042, -1 }, { 12442, 987, -1 }, { 12443, 987, -1 }, { 12444, 987, -1 }, { 12445, 987, -1 }, { 12446, 987, -1 }, { 12447, 987, -1 }, { 12448, 987, -1 }, { 12449, 987, -1 }, { 12450, 987, -1 }, { 12451, 987, -1 }, { 12452, 987, -1 }, { 12453, 987, -1 }, { 12442, 100, -1 }, { 12443, 100, -1 }, { 12444, 100, -1 }, { 12445, 100, -1 }, { 12446, 100, -1 }, { 12447, 100, -1 }, { 12448, 100, -1 }, { 12449, 100, -1 }, { 12450, 100, -1 }, { 12451, 100, -1 }, { 12452, 100, -1 }, { 12453, 100, -1 }, { 12442, 1331, -1 }, { 12443, 1331, -1 }, { 12444, 1331, -1 }, { 12445, 1331, -1 }, { 12446, 1331, -1 }, { 12447, 1331, -1 }, { 12448, 1331, -1 }, { 12449, 1331, -1 }, { 12450, 1331, -1 }, { 12451, 1331, -1 }, { 12452, 1331, -1 }, { 12453, 1331, -1 }, { 12442, 192, -1 }, { 12443, 192, -1 }, { 12444, 192, -1 }, { 12445, 192, -1 }, { 12446, 192, -1 }, { 12447, 192, -1 }, { 12448, 192, -1 }, { 12449, 192, -1 }, { 12450, 192, -1 }, { 12451, 192, -1 }, { 12452, 192, -1 }, { 12453, 192, -1 }, { 12442, 1355, -1 }, { 12443, 1355, -1 }, { 12444, 1355, -1 }, { 12445, 1355, -1 }, { 12446, 1355, -1 }, { 12447, 1355, -1 }, { 12448, 1355, -1 }, { 12449, 1355, -1 }, { 12450, 1355, -1 }, { 12451, 1355, -1 }, { 12452, 1355, -1 }, { 12453, 1355, -1 }, { 12442, 1597, -1 }, { 12443, 1597, -1 }, { 12444, 1597, -1 }, { 12445, 1597, -1 }, { 12446, 1597, -1 }, { 12447, 1597, -1 }, { 12448, 1597, -1 }, { 12449, 1597, -1 }, { 12450, 1597, -1 }, { 12451, 1597, -1 }, { 12452, 1597, -1 }, { 12453, 1597, -1 }, { 12442, 1601, -1 }, { 12443, 1601, -1 }, { 12444, 1601, -1 }, { 12445, 1601, -1 }, { 12446, 1601, -1 }, { 12447, 1601, -1 }, { 12448, 1601, -1 }, { 12449, 1601, -1 }, { 12450, 1601, -1 }, { 12451, 1601, -1 }, { 12452, 1601, -1 }, { 12453, 1601, -1 }, { 12442, 1725, -1 }, { 12443, 1725, -1 }, { 12444, 1725, -1 }, { 12445, 1725, -1 }, { 12446, 1725, -1 }, { 12447, 1725, -1 }, { 12448, 1725, -1 }, { 12449, 1725, -1 }, { 12450, 1725, -1 }, { 12451, 1725, -1 }, { 12452, 1725, -1 }, { 12453, 1725, -1 }, { 12442, 809, -1 }, { 12443, 809, -1 }, { 12444, 809, -1 }, { 12445, 809, -1 }, { 12446, 809, -1 }, { 12447, 809, -1 }, { 12448, 809, -1 }, { 12449, 809, -1 }, { 12450, 809, -1 }, { 12451, 809, -1 }, { 12452, 809, -1 }, { 12453, 809, -1 }, { 12442, 690, -1 }, { 12443, 690, -1 }, { 12444, 690, -1 }, { 12445, 690, -1 }, { 12446, 690, -1 }, { 12447, 690, -1 }, { 12448, 690, -1 }, { 12449, 690, -1 }, { 12450, 690, -1 }, { 12451, 690, -1 }, { 12452, 690, -1 }, { 12453, 690, -1 }, { 12442, 694, -1 }, { 12443, 694, -1 }, { 12444, 694, -1 }, { 12445, 694, -1 }, { 12446, 694, -1 }, { 12447, 694, -1 }, { 12448, 694, -1 }, { 12449, 694, -1 }, { 12450, 694, -1 }, { 12451, 694, -1 }, { 12452, 694, -1 }, { 12453, 694, -1 }, { 12442, 1084, -1 }, { 12443, 1084, -1 }, { 12444, 1084, -1 }, { 12445, 1084, -1 }, { 12446, 1084, -1 }, { 12447, 1084, -1 }, { 12448, 1084, -1 }, { 12449, 1084, -1 }, { 12450, 1084, -1 }, { 12451, 1084, -1 }, { 12452, 1084, -1 }, { 12453, 1084, -1 }, { 12442, 980, -1 }, { 12443, 980, -1 }, { 12444, 980, -1 }, { 12445, 980, -1 }, { 12446, 980, -1 }, { 12447, 980, -1 }, { 12448, 980, -1 }, { 12449, 980, -1 }, { 12450, 980, -1 }, { 12451, 980, -1 }, { 12452, 980, -1 }, { 12453, 980, -1 }, { 12442, 142, -1 }, { 12443, 142, -1 }, { 12444, 142, -1 }, { 12445, 142, -1 }, { 12446, 142, -1 }, { 12447, 142, -1 }, { 12448, 142, -1 }, { 12449, 142, -1 }, { 12450, 142, -1 }, { 12451, 142, -1 }, { 12452, 142, -1 }, { 12453, 142, -1 }, { 12442, 607, -1 }, { 12443, 607, -1 }, { 12444, 607, -1 }, { 12445, 607, -1 }, { 12446, 607, -1 }, { 12447, 607, -1 }, { 12448, 607, -1 }, { 12449, 607, -1 }, { 12450, 607, -1 }, { 12451, 607, -1 }, { 12452, 607, -1 }, { 12453, 607, -1 }, { 12442, 861, -1 }, { 12443, 861, -1 }, { 12444, 861, -1 }, { 12445, 861, -1 }, { 12446, 861, -1 }, { 12447, 861, -1 }, { 12448, 861, -1 }, { 12449, 861, -1 }, { 12450, 861, -1 }, { 12451, 861, -1 }, { 12452, 861, -1 }, { 12453, 861, -1 }, { 12442, 260, -1 }, { 12443, 260, -1 }, { 12444, 260, -1 }, { 12445, 260, -1 }, { 12446, 260, -1 }, { 12447, 260, -1 }, { 12448, 260, -1 }, { 12449, 260, -1 }, { 12450, 260, -1 }, { 12451, 260, -1 }, { 12452, 260, -1 }, { 12453, 260, -1 }, { 12442, 899, -1 }, { 12443, 899, -1 }, { 12444, 899, -1 }, { 12445, 899, -1 }, { 12446, 899, -1 }, { 12447, 899, -1 }, { 12448, 899, -1 }, { 12449, 899, -1 }, { 12450, 899, -1 }, { 12451, 899, -1 }, { 12452, 899, -1 }, { 12453, 899, -1 }, { 12442, 701, -1 }, { 12443, 701, -1 }, { 12444, 701, -1 }, { 12445, 701, -1 }, { 12446, 701, -1 }, { 12447, 701, -1 }, { 12448, 701, -1 }, { 12449, 701, -1 }, { 12450, 701, -1 }, { 12451, 701, -1 }, { 12452, 701, -1 }, { 12453, 701, -1 }, { 12442, 33, -1 }, { 12443, 33, -1 }, { 12444, 33, -1 }, { 12445, 33, -1 }, { 12446, 33, -1 }, { 12447, 33, -1 }, { 12448, 33, -1 }, { 12449, 33, -1 }, { 12450, 33, -1 }, { 12451, 33, -1 }, { 12452, 33, -1 }, { 12453, 33, -1 }, { 12442, 301, -1 }, { 12443, 301, -1 }, { 12444, 301, -1 }, { 12445, 301, -1 }, { 12446, 301, -1 }, { 12447, 301, -1 }, { 12448, 301, -1 }, { 12449, 301, -1 }, { 12450, 301, -1 }, { 12451, 301, -1 }, { 12452, 301, -1 }, { 12453, 301, -1 }, { 12442, 281, -1 }, { 12443, 281, -1 }, { 12444, 281, -1 }, { 12445, 281, -1 }, { 12446, 281, -1 }, { 12447, 281, -1 }, { 12448, 281, -1 }, { 12449, 281, -1 }, { 12450, 281, -1 }, { 12451, 281, -1 }, { 12452, 281, -1 }, { 12453, 281, -1 }, { 12442, 1570, -1 }, { 12443, 1570, -1 }, { 12444, 1570, -1 }, { 12445, 1570, -1 }, { 12446, 1570, -1 }, { 12447, 1570, -1 }, { 12448, 1570, -1 }, { 12449, 1570, -1 }, { 12450, 1570, -1 }, { 12451, 1570, -1 }, { 12452, 1570, -1 }, { 12453, 1570, -1 }, { 12442, 1343, -1 }, { 12443, 1343, -1 }, { 12444, 1343, -1 }, { 12445, 1343, -1 }, { 12446, 1343, -1 }, { 12447, 1343, -1 }, { 12448, 1343, -1 }, { 12449, 1343, -1 }, { 12450, 1343, -1 }, { 12451, 1343, -1 }, { 12452, 1343, -1 }, { 12453, 1343, -1 }, { 12442, 886, -1 }, { 12443, 886, -1 }, { 12444, 886, -1 }, { 12445, 886, -1 }, { 12446, 886, -1 }, { 12447, 886, -1 }, { 12448, 886, -1 }, { 12449, 886, -1 }, { 12450, 886, -1 }, { 12451, 886, -1 }, { 12452, 886, -1 }, { 12453, 886, -1 }, { 12442, 1610, -1 }, { 12443, 1610, -1 }, { 12444, 1610, -1 }, { 12445, 1610, -1 }, { 12446, 1610, -1 }, { 12447, 1610, -1 }, { 12448, 1610, -1 }, { 12449, 1610, -1 }, { 12450, 1610, -1 }, { 12451, 1610, -1 }, { 12452, 1610, -1 }, { 12453, 1610, -1 }, { 12442, 292, -1 }, { 12443, 292, -1 }, { 12444, 292, -1 }, { 12445, 292, -1 }, { 12446, 292, -1 }, { 12447, 292, -1 }, { 12448, 292, -1 }, { 12449, 292, -1 }, { 12450, 292, -1 }, { 12451, 292, -1 }, { 12452, 292, -1 }, { 12453, 292, -1 }, { 12442, 1952, -1 }, { 12443, 1952, -1 }, { 12444, 1952, -1 }, { 12445, 1952, -1 }, { 12446, 1952, -1 }, { 12447, 1952, -1 }, { 12448, 1952, -1 }, { 12449, 1952, -1 }, { 12450, 1952, -1 }, { 12451, 1952, -1 }, { 12452, 1952, -1 }, { 12453, 1952, -1 }, { 12442, 1824, -1 }, { 12443, 1824, -1 }, { 12444, 1824, -1 }, { 12445, 1824, -1 }, { 12446, 1824, -1 }, { 12447, 1824, -1 }, { 12448, 1824, -1 }, { 12449, 1824, -1 }, { 12450, 1824, -1 }, { 12451, 1824, -1 }, { 12452, 1824, -1 }, { 12453, 1824, -1 }, { 12442, 1997, -1 }, { 12443, 1997, -1 }, { 12444, 1997, -1 }, { 12445, 1997, -1 }, { 12446, 1997, -1 }, { 12447, 1997, -1 }, { 12448, 1997, -1 }, { 12449, 1997, -1 }, { 12450, 1997, -1 }, { 12451, 1997, -1 }, { 12452, 1997, -1 }, { 12453, 1997, -1 }, { 12442, 1498, -1 }, { 12443, 1498, -1 }, { 12444, 1498, -1 }, { 12445, 1498, -1 }, { 12446, 1498, -1 }, { 12447, 1498, -1 }, { 12448, 1498, -1 }, { 12449, 1498, -1 }, { 12450, 1498, -1 }, { 12451, 1498, -1 }, { 12452, 1498, -1 }, { 12453, 1498, -1 }, { 12442, 1495, -1 }, { 12443, 1495, -1 }, { 12444, 1495, -1 }, { 12445, 1495, -1 }, { 12446, 1495, -1 }, { 12447, 1495, -1 }, { 12448, 1495, -1 }, { 12449, 1495, -1 }, { 12450, 1495, -1 }, { 12451, 1495, -1 }, { 12452, 1495, -1 }, { 12453, 1495, -1 }, { 12442, 1492, -1 }, { 12443, 1492, -1 }, { 12444, 1492, -1 }, { 12445, 1492, -1 }, { 12446, 1492, -1 }, { 12447, 1492, -1 }, { 12448, 1492, -1 }, { 12449, 1492, -1 }, { 12450, 1492, -1 }, { 12451, 1492, -1 }, { 12452, 1492, -1 }, { 12453, 1492, -1 }, { 12442, 1362, -1 }, { 12443, 1362, -1 }, { 12444, 1362, -1 }, { 12445, 1362, -1 }, { 12446, 1362, -1 }, { 12447, 1362, -1 }, { 12448, 1362, -1 }, { 12449, 1362, -1 }, { 12450, 1362, -1 }, { 12451, 1362, -1 }, { 12452, 1362, -1 }, { 12453, 1362, -1 }, { 12442, 1300, -1 }, { 12443, 1300, -1 }, { 12444, 1300, -1 }, { 12445, 1300, -1 }, { 12446, 1300, -1 }, { 12447, 1300, -1 }, { 12448, 1300, -1 }, { 12449, 1300, -1 }, { 12450, 1300, -1 }, { 12451, 1300, -1 }, { 12452, 1300, -1 }, { 12453, 1300, -1 }, { 12442, 1309, -1 }, { 12443, 1309, -1 }, { 12444, 1309, -1 }, { 12445, 1309, -1 }, { 12446, 1309, -1 }, { 12447, 1309, -1 }, { 12448, 1309, -1 }, { 12449, 1309, -1 }, { 12450, 1309, -1 }, { 12451, 1309, -1 }, { 12452, 1309, -1 }, { 12453, 1309, -1 }, { 12442, 908, -1 }, { 12443, 908, -1 }, { 12444, 908, -1 }, { 12445, 908, -1 }, { 12446, 908, -1 }, { 12447, 908, -1 }, { 12448, 908, -1 }, { 12449, 908, -1 }, { 12450, 908, -1 }, { 12451, 908, -1 }, { 12452, 908, -1 }, { 12453, 908, -1 }, { 12442, 1798, -1 }, { 12443, 1798, -1 }, { 12444, 1798, -1 }, { 12445, 1798, -1 }, { 12446, 1798, -1 }, { 12447, 1798, -1 }, { 12448, 1798, -1 }, { 12449, 1798, -1 }, { 12450, 1798, -1 }, { 12451, 1798, -1 }, { 12452, 1798, -1 }, { 12453, 1798, -1 }, { 12442, 1662, -1 }, { 12443, 1662, -1 }, { 12444, 1662, -1 }, { 12445, 1662, -1 }, { 12446, 1662, -1 }, { 12447, 1662, -1 }, { 12448, 1662, -1 }, { 12449, 1662, -1 }, { 12450, 1662, -1 }, { 12451, 1662, -1 }, { 12452, 1662, -1 }, { 12453, 1662, -1 }, { 12442, 1528, -1 }, { 12443, 1528, -1 }, { 12444, 1528, -1 }, { 12445, 1528, -1 }, { 12446, 1528, -1 }, { 12447, 1528, -1 }, { 12448, 1528, -1 }, { 12449, 1528, -1 }, { 12450, 1528, -1 }, { 12451, 1528, -1 }, { 12452, 1528, -1 }, { 12453, 1528, -1 }, { 12442, 1484, -1 }, { 12443, 1484, -1 }, { 12444, 1484, -1 }, { 12445, 1484, -1 }, { 12446, 1484, -1 }, { 12447, 1484, -1 }, { 12448, 1484, -1 }, { 12449, 1484, -1 }, { 12450, 1484, -1 }, { 12451, 1484, -1 }, { 12452, 1484, -1 }, { 12453, 1484, -1 }, { 12442, 1506, -1 }, { 12443, 1506, -1 }, { 12444, 1506, -1 }, { 12445, 1506, -1 }, { 12446, 1506, -1 }, { 12447, 1506, -1 }, { 12448, 1506, -1 }, { 12449, 1506, -1 }, { 12450, 1506, -1 }, { 12451, 1506, -1 }, { 12452, 1506, -1 }, { 12453, 1506, -1 }, { 12442, 1510, -1 }, { 12443, 1510, -1 }, { 12444, 1510, -1 }, { 12445, 1510, -1 }, { 12446, 1510, -1 }, { 12447, 1510, -1 }, { 12448, 1510, -1 }, { 12449, 1510, -1 }, { 12450, 1510, -1 }, { 12451, 1510, -1 }, { 12452, 1510, -1 }, { 12453, 1510, -1 }, { 12442, 1514, -1 }, { 12443, 1514, -1 }, { 12444, 1514, -1 }, { 12445, 1514, -1 }, { 12446, 1514, -1 }, { 12447, 1514, -1 }, { 12448, 1514, -1 }, { 12449, 1514, -1 }, { 12450, 1514, -1 }, { 12451, 1514, -1 }, { 12452, 1514, -1 }, { 12453, 1514, -1 }, { 12442, 743, -1 }, { 12443, 743, -1 }, { 12444, 743, -1 }, { 12445, 743, -1 }, { 12446, 743, -1 }, { 12447, 743, -1 }, { 12448, 743, -1 }, { 12449, 743, -1 }, { 12450, 743, -1 }, { 12451, 743, -1 }, { 12452, 743, -1 }, { 12453, 743, -1 }, { 12442, 1347, -1 }, { 12443, 1347, -1 }, { 12444, 1347, -1 }, { 12445, 1347, -1 }, { 12446, 1347, -1 }, { 12447, 1347, -1 }, { 12448, 1347, -1 }, { 12449, 1347, -1 }, { 12450, 1347, -1 }, { 12451, 1347, -1 }, { 12452, 1347, -1 }, { 12453, 1347, -1 }, { 12442, 662, -1 }, { 12443, 662, -1 }, { 12444, 662, -1 }, { 12445, 662, -1 }, { 12446, 662, -1 }, { 12447, 662, -1 }, { 12448, 662, -1 }, { 12449, 662, -1 }, { 12450, 662, -1 }, { 12451, 662, -1 }, { 12452, 662, -1 }, { 12453, 662, -1 }, { 12442, 1946, -1 }, { 12443, 1946, -1 }, { 12444, 1946, -1 }, { 12445, 1946, -1 }, { 12446, 1946, -1 }, { 12447, 1946, -1 }, { 12448, 1946, -1 }, { 12449, 1946, -1 }, { 12450, 1946, -1 }, { 12451, 1946, -1 }, { 12452, 1946, -1 }, { 12453, 1946, -1 }, { 12442, 1325, -1 }, { 12443, 1325, -1 }, { 12444, 1325, -1 }, { 12445, 1325, -1 }, { 12446, 1325, -1 }, { 12447, 1325, -1 }, { 12448, 1325, -1 }, { 12449, 1325, -1 }, { 12450, 1325, -1 }, { 12451, 1325, -1 }, { 12452, 1325, -1 }, { 12453, 1325, -1 }, { 12442, 1776, -1 }, { 12443, 1776, -1 }, { 12444, 1776, -1 }, { 12445, 1776, -1 }, { 12446, 1776, -1 }, { 12447, 1776, -1 }, { 12448, 1776, -1 }, { 12449, 1776, -1 }, { 12450, 1776, -1 }, { 12451, 1776, -1 }, { 12452, 1776, -1 }, { 12453, 1776, -1 }, { 12442, 1983, -1 }, { 12443, 1983, -1 }, { 12444, 1983, -1 }, { 12445, 1983, -1 }, { 12446, 1983, -1 }, { 12447, 1983, -1 }, { 12448, 1983, -1 }, { 12449, 1983, -1 }, { 12450, 1983, -1 }, { 12451, 1983, -1 }, { 12452, 1983, -1 }, { 12453, 1983, -1 }, { 12442, 576, -1 }, { 12443, 576, -1 }, { 12444, 576, -1 }, { 12445, 576, -1 }, { 12446, 576, -1 }, { 12447, 576, -1 }, { 12448, 576, -1 }, { 12449, 576, -1 }, { 12450, 576, -1 }, { 12451, 576, -1 }, { 12452, 576, -1 }, { 12453, 576, -1 }, { 12442, 1062, -1 }, { 12443, 1062, -1 }, { 12444, 1062, -1 }, { 12445, 1062, -1 }, { 12446, 1062, -1 }, { 12447, 1062, -1 }, { 12448, 1062, -1 }, { 12449, 1062, -1 }, { 12450, 1062, -1 }, { 12451, 1062, -1 }, { 12452, 1062, -1 }, { 12453, 1062, -1 }, { 12442, 1041, -1 }, { 12443, 1041, -1 }, { 12444, 1041, -1 }, { 12445, 1041, -1 }, { 12446, 1041, -1 }, { 12447, 1041, -1 }, { 12448, 1041, -1 }, { 12449, 1041, -1 }, { 12450, 1041, -1 }, { 12451, 1041, -1 }, { 12452, 1041, -1 }, { 12453, 1041, -1 }, { 12442, 985, -1 }, { 12443, 985, -1 }, { 12444, 985, -1 }, { 12445, 985, -1 }, { 12446, 985, -1 }, { 12447, 985, -1 }, { 12448, 985, -1 }, { 12449, 985, -1 }, { 12450, 985, -1 }, { 12451, 985, -1 }, { 12452, 985, -1 }, { 12453, 985, -1 }, { 12442, 98, -1 }, { 12443, 98, -1 }, { 12444, 98, -1 }, { 12445, 98, -1 }, { 12446, 98, -1 }, { 12447, 98, -1 }, { 12448, 98, -1 }, { 12449, 98, -1 }, { 12450, 98, -1 }, { 12451, 98, -1 }, { 12452, 98, -1 }, { 12453, 98, -1 }, { 12442, 1330, -1 }, { 12443, 1330, -1 }, { 12444, 1330, -1 }, { 12445, 1330, -1 }, { 12446, 1330, -1 }, { 12447, 1330, -1 }, { 12448, 1330, -1 }, { 12449, 1330, -1 }, { 12450, 1330, -1 }, { 12451, 1330, -1 }, { 12452, 1330, -1 }, { 12453, 1330, -1 }, { 12442, 1849, -1 }, { 12443, 1849, -1 }, { 12444, 1849, -1 }, { 12445, 1849, -1 }, { 12446, 1849, -1 }, { 12447, 1849, -1 }, { 12448, 1849, -1 }, { 12449, 1849, -1 }, { 12450, 1849, -1 }, { 12451, 1849, -1 }, { 12452, 1849, -1 }, { 12453, 1849, -1 }, { 12442, 191, -1 }, { 12443, 191, -1 }, { 12444, 191, -1 }, { 12445, 191, -1 }, { 12446, 191, -1 }, { 12447, 191, -1 }, { 12448, 191, -1 }, { 12449, 191, -1 }, { 12450, 191, -1 }, { 12451, 191, -1 }, { 12452, 191, -1 }, { 12453, 191, -1 }, { 12442, 1353, -1 }, { 12443, 1353, -1 }, { 12444, 1353, -1 }, { 12445, 1353, -1 }, { 12446, 1353, -1 }, { 12447, 1353, -1 }, { 12448, 1353, -1 }, { 12449, 1353, -1 }, { 12450, 1353, -1 }, { 12451, 1353, -1 }, { 12452, 1353, -1 }, { 12453, 1353, -1 }, { 12442, 1596, -1 }, { 12443, 1596, -1 }, { 12444, 1596, -1 }, { 12445, 1596, -1 }, { 12446, 1596, -1 }, { 12447, 1596, -1 }, { 12448, 1596, -1 }, { 12449, 1596, -1 }, { 12450, 1596, -1 }, { 12451, 1596, -1 }, { 12452, 1596, -1 }, { 12453, 1596, -1 }, { 12442, 1599, -1 }, { 12443, 1599, -1 }, { 12444, 1599, -1 }, { 12445, 1599, -1 }, { 12446, 1599, -1 }, { 12447, 1599, -1 }, { 12448, 1599, -1 }, { 12449, 1599, -1 }, { 12450, 1599, -1 }, { 12451, 1599, -1 }, { 12452, 1599, -1 }, { 12453, 1599, -1 }, { 12442, 1724, -1 }, { 12443, 1724, -1 }, { 12444, 1724, -1 }, { 12445, 1724, -1 }, { 12446, 1724, -1 }, { 12447, 1724, -1 }, { 12448, 1724, -1 }, { 12449, 1724, -1 }, { 12450, 1724, -1 }, { 12451, 1724, -1 }, { 12452, 1724, -1 }, { 12453, 1724, -1 }, { 12442, 808, -1 }, { 12443, 808, -1 }, { 12444, 808, -1 }, { 12445, 808, -1 }, { 12446, 808, -1 }, { 12447, 808, -1 }, { 12448, 808, -1 }, { 12449, 808, -1 }, { 12450, 808, -1 }, { 12451, 808, -1 }, { 12452, 808, -1 }, { 12453, 808, -1 }, { 12442, 688, -1 }, { 12443, 688, -1 }, { 12444, 688, -1 }, { 12445, 688, -1 }, { 12446, 688, -1 }, { 12447, 688, -1 }, { 12448, 688, -1 }, { 12449, 688, -1 }, { 12450, 688, -1 }, { 12451, 688, -1 }, { 12452, 688, -1 }, { 12453, 688, -1 }, { 12442, 693, -1 }, { 12443, 693, -1 }, { 12444, 693, -1 }, { 12445, 693, -1 }, { 12446, 693, -1 }, { 12447, 693, -1 }, { 12448, 693, -1 }, { 12449, 693, -1 }, { 12450, 693, -1 }, { 12451, 693, -1 }, { 12452, 693, -1 }, { 12453, 693, -1 }, { 12442, 1082, -1 }, { 12443, 1082, -1 }, { 12444, 1082, -1 }, { 12445, 1082, -1 }, { 12446, 1082, -1 }, { 12447, 1082, -1 }, { 12448, 1082, -1 }, { 12449, 1082, -1 }, { 12450, 1082, -1 }, { 12451, 1082, -1 }, { 12452, 1082, -1 }, { 12453, 1082, -1 }, { 12442, 978, -1 }, { 12443, 978, -1 }, { 12444, 978, -1 }, { 12445, 978, -1 }, { 12446, 978, -1 }, { 12447, 978, -1 }, { 12448, 978, -1 }, { 12449, 978, -1 }, { 12450, 978, -1 }, { 12451, 978, -1 }, { 12452, 978, -1 }, { 12453, 978, -1 }, { 12442, 140, -1 }, { 12443, 140, -1 }, { 12444, 140, -1 }, { 12445, 140, -1 }, { 12446, 140, -1 }, { 12447, 140, -1 }, { 12448, 140, -1 }, { 12449, 140, -1 }, { 12450, 140, -1 }, { 12451, 140, -1 }, { 12452, 140, -1 }, { 12453, 140, -1 }, { 12442, 605, -1 }, { 12443, 605, -1 }, { 12444, 605, -1 }, { 12445, 605, -1 }, { 12446, 605, -1 }, { 12447, 605, -1 }, { 12448, 605, -1 }, { 12449, 605, -1 }, { 12450, 605, -1 }, { 12451, 605, -1 }, { 12452, 605, -1 }, { 12453, 605, -1 }, { 12442, 855, -1 }, { 12443, 855, -1 }, { 12444, 855, -1 }, { 12445, 855, -1 }, { 12446, 855, -1 }, { 12447, 855, -1 }, { 12448, 855, -1 }, { 12449, 855, -1 }, { 12450, 855, -1 }, { 12451, 855, -1 }, { 12452, 855, -1 }, { 12453, 855, -1 }, { 12442, 258, -1 }, { 12443, 258, -1 }, { 12444, 258, -1 }, { 12445, 258, -1 }, { 12446, 258, -1 }, { 12447, 258, -1 }, { 12448, 258, -1 }, { 12449, 258, -1 }, { 12450, 258, -1 }, { 12451, 258, -1 }, { 12452, 258, -1 }, { 12453, 258, -1 }, { 12442, 897, -1 }, { 12443, 897, -1 }, { 12444, 897, -1 }, { 12445, 897, -1 }, { 12446, 897, -1 }, { 12447, 897, -1 }, { 12448, 897, -1 }, { 12449, 897, -1 }, { 12450, 897, -1 }, { 12451, 897, -1 }, { 12452, 897, -1 }, { 12453, 897, -1 }, { 12442, 699, -1 }, { 12443, 699, -1 }, { 12444, 699, -1 }, { 12445, 699, -1 }, { 12446, 699, -1 }, { 12447, 699, -1 }, { 12448, 699, -1 }, { 12449, 699, -1 }, { 12450, 699, -1 }, { 12451, 699, -1 }, { 12452, 699, -1 }, { 12453, 699, -1 }, { 12442, 10, -1 }, { 12443, 10, -1 }, { 12444, 10, -1 }, { 12445, 10, -1 }, { 12446, 10, -1 }, { 12447, 10, -1 }, { 12448, 10, -1 }, { 12449, 10, -1 }, { 12450, 10, -1 }, { 12451, 10, -1 }, { 12452, 10, -1 }, { 12453, 10, -1 }, { 12442, 299, -1 }, { 12443, 299, -1 }, { 12444, 299, -1 }, { 12445, 299, -1 }, { 12446, 299, -1 }, { 12447, 299, -1 }, { 12448, 299, -1 }, { 12449, 299, -1 }, { 12450, 299, -1 }, { 12451, 299, -1 }, { 12452, 299, -1 }, { 12453, 299, -1 }, { 12442, 279, -1 }, { 12443, 279, -1 }, { 12444, 279, -1 }, { 12445, 279, -1 }, { 12446, 279, -1 }, { 12447, 279, -1 }, { 12448, 279, -1 }, { 12449, 279, -1 }, { 12450, 279, -1 }, { 12451, 279, -1 }, { 12452, 279, -1 }, { 12453, 279, -1 }, { 12442, 1568, -1 }, { 12443, 1568, -1 }, { 12444, 1568, -1 }, { 12445, 1568, -1 }, { 12446, 1568, -1 }, { 12447, 1568, -1 }, { 12448, 1568, -1 }, { 12449, 1568, -1 }, { 12450, 1568, -1 }, { 12451, 1568, -1 }, { 12452, 1568, -1 }, { 12453, 1568, -1 }, { 12442, 1341, -1 }, { 12443, 1341, -1 }, { 12444, 1341, -1 }, { 12445, 1341, -1 }, { 12446, 1341, -1 }, { 12447, 1341, -1 }, { 12448, 1341, -1 }, { 12449, 1341, -1 }, { 12450, 1341, -1 }, { 12451, 1341, -1 }, { 12452, 1341, -1 }, { 12453, 1341, -1 }, { 12442, 884, -1 }, { 12443, 884, -1 }, { 12444, 884, -1 }, { 12445, 884, -1 }, { 12446, 884, -1 }, { 12447, 884, -1 }, { 12448, 884, -1 }, { 12449, 884, -1 }, { 12450, 884, -1 }, { 12451, 884, -1 }, { 12452, 884, -1 }, { 12453, 884, -1 }, { 12442, 1608, -1 }, { 12443, 1608, -1 }, { 12444, 1608, -1 }, { 12445, 1608, -1 }, { 12446, 1608, -1 }, { 12447, 1608, -1 }, { 12448, 1608, -1 }, { 12449, 1608, -1 }, { 12450, 1608, -1 }, { 12451, 1608, -1 }, { 12452, 1608, -1 }, { 12453, 1608, -1 }, { 12442, 289, -1 }, { 12443, 289, -1 }, { 12444, 289, -1 }, { 12445, 289, -1 }, { 12446, 289, -1 }, { 12447, 289, -1 }, { 12448, 289, -1 }, { 12449, 289, -1 }, { 12450, 289, -1 }, { 12451, 289, -1 }, { 12452, 289, -1 }, { 12453, 289, -1 }, { 12442, 1950, -1 }, { 12443, 1950, -1 }, { 12444, 1950, -1 }, { 12445, 1950, -1 }, { 12446, 1950, -1 }, { 12447, 1950, -1 }, { 12448, 1950, -1 }, { 12449, 1950, -1 }, { 12450, 1950, -1 }, { 12451, 1950, -1 }, { 12452, 1950, -1 }, { 12453, 1950, -1 }, { 12442, 1823, -1 }, { 12443, 1823, -1 }, { 12444, 1823, -1 }, { 12445, 1823, -1 }, { 12446, 1823, -1 }, { 12447, 1823, -1 }, { 12448, 1823, -1 }, { 12449, 1823, -1 }, { 12450, 1823, -1 }, { 12451, 1823, -1 }, { 12452, 1823, -1 }, { 12453, 1823, -1 }, { 12442, 1996, -1 }, { 12443, 1996, -1 }, { 12444, 1996, -1 }, { 12445, 1996, -1 }, { 12446, 1996, -1 }, { 12447, 1996, -1 }, { 12448, 1996, -1 }, { 12449, 1996, -1 }, { 12450, 1996, -1 }, { 12451, 1996, -1 }, { 12452, 1996, -1 }, { 12453, 1996, -1 }, { 12442, 1497, -1 }, { 12443, 1497, -1 }, { 12444, 1497, -1 }, { 12445, 1497, -1 }, { 12446, 1497, -1 }, { 12447, 1497, -1 }, { 12448, 1497, -1 }, { 12449, 1497, -1 }, { 12450, 1497, -1 }, { 12451, 1497, -1 }, { 12452, 1497, -1 }, { 12453, 1497, -1 }, { 12442, 1494, -1 }, { 12443, 1494, -1 }, { 12444, 1494, -1 }, { 12445, 1494, -1 }, { 12446, 1494, -1 }, { 12447, 1494, -1 }, { 12448, 1494, -1 }, { 12449, 1494, -1 }, { 12450, 1494, -1 }, { 12451, 1494, -1 }, { 12452, 1494, -1 }, { 12453, 1494, -1 }, { 12442, 1490, -1 }, { 12443, 1490, -1 }, { 12444, 1490, -1 }, { 12445, 1490, -1 }, { 12446, 1490, -1 }, { 12447, 1490, -1 }, { 12448, 1490, -1 }, { 12449, 1490, -1 }, { 12450, 1490, -1 }, { 12451, 1490, -1 }, { 12452, 1490, -1 }, { 12453, 1490, -1 }, { 12442, 1360, -1 }, { 12443, 1360, -1 }, { 12444, 1360, -1 }, { 12445, 1360, -1 }, { 12446, 1360, -1 }, { 12447, 1360, -1 }, { 12448, 1360, -1 }, { 12449, 1360, -1 }, { 12450, 1360, -1 }, { 12451, 1360, -1 }, { 12452, 1360, -1 }, { 12453, 1360, -1 }, { 12442, 1298, -1 }, { 12443, 1298, -1 }, { 12444, 1298, -1 }, { 12445, 1298, -1 }, { 12446, 1298, -1 }, { 12447, 1298, -1 }, { 12448, 1298, -1 }, { 12449, 1298, -1 }, { 12450, 1298, -1 }, { 12451, 1298, -1 }, { 12452, 1298, -1 }, { 12453, 1298, -1 }, { 12442, 1307, -1 }, { 12443, 1307, -1 }, { 12444, 1307, -1 }, { 12445, 1307, -1 }, { 12446, 1307, -1 }, { 12447, 1307, -1 }, { 12448, 1307, -1 }, { 12449, 1307, -1 }, { 12450, 1307, -1 }, { 12451, 1307, -1 }, { 12452, 1307, -1 }, { 12453, 1307, -1 }, { 12442, 906, -1 }, { 12443, 906, -1 }, { 12444, 906, -1 }, { 12445, 906, -1 }, { 12446, 906, -1 }, { 12447, 906, -1 }, { 12448, 906, -1 }, { 12449, 906, -1 }, { 12450, 906, -1 }, { 12451, 906, -1 }, { 12452, 906, -1 }, { 12453, 906, -1 }, { 12442, 1797, -1 }, { 12443, 1797, -1 }, { 12444, 1797, -1 }, { 12445, 1797, -1 }, { 12446, 1797, -1 }, { 12447, 1797, -1 }, { 12448, 1797, -1 }, { 12449, 1797, -1 }, { 12450, 1797, -1 }, { 12451, 1797, -1 }, { 12452, 1797, -1 }, { 12453, 1797, -1 }, { 12442, 1660, -1 }, { 12443, 1660, -1 }, { 12444, 1660, -1 }, { 12445, 1660, -1 }, { 12446, 1660, -1 }, { 12447, 1660, -1 }, { 12448, 1660, -1 }, { 12449, 1660, -1 }, { 12450, 1660, -1 }, { 12451, 1660, -1 }, { 12452, 1660, -1 }, { 12453, 1660, -1 }, { 12442, 1526, -1 }, { 12443, 1526, -1 }, { 12444, 1526, -1 }, { 12445, 1526, -1 }, { 12446, 1526, -1 }, { 12447, 1526, -1 }, { 12448, 1526, -1 }, { 12449, 1526, -1 }, { 12450, 1526, -1 }, { 12451, 1526, -1 }, { 12452, 1526, -1 }, { 12453, 1526, -1 }, { 12442, 1482, -1 }, { 12443, 1482, -1 }, { 12444, 1482, -1 }, { 12445, 1482, -1 }, { 12446, 1482, -1 }, { 12447, 1482, -1 }, { 12448, 1482, -1 }, { 12449, 1482, -1 }, { 12450, 1482, -1 }, { 12451, 1482, -1 }, { 12452, 1482, -1 }, { 12453, 1482, -1 }, { 12442, 1504, -1 }, { 12443, 1504, -1 }, { 12444, 1504, -1 }, { 12445, 1504, -1 }, { 12446, 1504, -1 }, { 12447, 1504, -1 }, { 12448, 1504, -1 }, { 12449, 1504, -1 }, { 12450, 1504, -1 }, { 12451, 1504, -1 }, { 12452, 1504, -1 }, { 12453, 1504, -1 }, { 12442, 1508, -1 }, { 12443, 1508, -1 }, { 12444, 1508, -1 }, { 12445, 1508, -1 }, { 12446, 1508, -1 }, { 12447, 1508, -1 }, { 12448, 1508, -1 }, { 12449, 1508, -1 }, { 12450, 1508, -1 }, { 12451, 1508, -1 }, { 12452, 1508, -1 }, { 12453, 1508, -1 }, { 12442, 1512, -1 }, { 12443, 1512, -1 }, { 12444, 1512, -1 }, { 12445, 1512, -1 }, { 12446, 1512, -1 }, { 12447, 1512, -1 }, { 12448, 1512, -1 }, { 12449, 1512, -1 }, { 12450, 1512, -1 }, { 12451, 1512, -1 }, { 12452, 1512, -1 }, { 12453, 1512, -1 }, { 12442, 652, -1 }, { 12443, 652, -1 }, { 12444, 652, -1 }, { 12445, 652, -1 }, { 12446, 652, -1 }, { 12447, 652, -1 }, { 12448, 652, -1 }, { 12449, 652, -1 }, { 12450, 652, -1 }, { 12451, 652, -1 }, { 12452, 652, -1 }, { 12453, 652, -1 }, { 12442, 152, -1 }, { 12443, 152, -1 }, { 12444, 152, -1 }, { 12445, 152, -1 }, { 12446, 152, -1 }, { 12447, 152, -1 }, { 12448, 152, -1 }, { 12449, 152, -1 }, { 12450, 152, -1 }, { 12451, 152, -1 }, { 12452, 152, -1 }, { 12453, 152, -1 }, { 12442, 494, -1 }, { 12443, 494, -1 }, { 12444, 494, -1 }, { 12445, 494, -1 }, { 12446, 494, -1 }, { 12447, 494, -1 }, { 12448, 494, -1 }, { 12449, 494, -1 }, { 12450, 494, -1 }, { 12451, 494, -1 }, { 12452, 494, -1 }, { 12453, 494, -1 }, { 12442, 14, -1 }, { 12443, 14, -1 }, { 12444, 14, -1 }, { 12445, 14, -1 }, { 12446, 14, -1 }, { 12447, 14, -1 }, { 12448, 14, -1 }, { 12449, 14, -1 }, { 12450, 14, -1 }, { 12451, 14, -1 }, { 12452, 14, -1 }, { 12453, 14, -1 }, { 12442, 134, -1 }, { 12443, 134, -1 }, { 12444, 134, -1 }, { 12445, 134, -1 }, { 12446, 134, -1 }, { 12447, 134, -1 }, { 12448, 134, -1 }, { 12449, 134, -1 }, { 12450, 134, -1 }, { 12451, 134, -1 }, { 12452, 134, -1 }, { 12453, 134, -1 }, { 12442, 147, -1 }, { 12443, 147, -1 }, { 12444, 147, -1 }, { 12445, 147, -1 }, { 12446, 147, -1 }, { 12447, 147, -1 }, { 12448, 147, -1 }, { 12449, 147, -1 }, { 12450, 147, -1 }, { 12451, 147, -1 }, { 12452, 147, -1 }, { 12453, 147, -1 }, { 12442, 15, -1 }, { 12443, 15, -1 }, { 12444, 15, -1 }, { 12445, 15, -1 }, { 12446, 15, -1 }, { 12447, 15, -1 }, { 12448, 15, -1 }, { 12449, 15, -1 }, { 12450, 15, -1 }, { 12451, 15, -1 }, { 12452, 15, -1 }, { 12453, 15, -1 }, { 12442, 16, -1 }, { 12443, 16, -1 }, { 12444, 16, -1 }, { 12445, 16, -1 }, { 12446, 16, -1 }, { 12447, 16, -1 }, { 12448, 16, -1 }, { 12449, 16, -1 }, { 12450, 16, -1 }, { 12451, 16, -1 }, { 12452, 16, -1 }, { 12453, 16, -1 }, { 12442, 410, -1 }, { 12443, 410, -1 }, { 12444, 410, -1 }, { 12445, 410, -1 }, { 12446, 410, -1 }, { 12447, 410, -1 }, { 12448, 410, -1 }, { 12449, 410, -1 }, { 12450, 410, -1 }, { 12451, 410, -1 }, { 12452, 410, -1 }, { 12453, 410, -1 }, { 12442, 399, -1 }, { 12443, 399, -1 }, { 12444, 399, -1 }, { 12445, 399, -1 }, { 12446, 399, -1 }, { 12447, 399, -1 }, { 12448, 399, -1 }, { 12449, 399, -1 }, { 12450, 399, -1 }, { 12451, 399, -1 }, { 12452, 399, -1 }, { 12453, 399, -1 }, { 12442, 400, -1 }, { 12443, 400, -1 }, { 12444, 400, -1 }, { 12445, 400, -1 }, { 12446, 400, -1 }, { 12447, 400, -1 }, { 12448, 400, -1 }, { 12449, 400, -1 }, { 12450, 400, -1 }, { 12451, 400, -1 }, { 12452, 400, -1 }, { 12453, 400, -1 }, { 12442, 416, -1 }, { 12443, 416, -1 }, { 12444, 416, -1 }, { 12445, 416, -1 }, { 12446, 416, -1 }, { 12447, 416, -1 }, { 12448, 416, -1 }, { 12449, 416, -1 }, { 12450, 416, -1 }, { 12451, 416, -1 }, { 12452, 416, -1 }, { 12453, 416, -1 }, { 12442, 44, -1 }, { 12443, 44, -1 }, { 12444, 44, -1 }, { 12445, 44, -1 }, { 12446, 44, -1 }, { 12447, 44, -1 }, { 12448, 44, -1 }, { 12449, 44, -1 }, { 12450, 44, -1 }, { 12451, 44, -1 }, { 12452, 44, -1 }, { 12453, 44, -1 }, { 12442, 17, -1 }, { 12443, 17, -1 }, { 12444, 17, -1 }, { 12445, 17, -1 }, { 12446, 17, -1 }, { 12447, 17, -1 }, { 12448, 17, -1 }, { 12449, 17, -1 }, { 12450, 17, -1 }, { 12451, 17, -1 }, { 12452, 17, -1 }, { 12453, 17, -1 }, { 12442, 11, -1 }, { 12443, 11, -1 }, { 12444, 11, -1 }, { 12445, 11, -1 }, { 12446, 11, -1 }, { 12447, 11, -1 }, { 12448, 11, -1 }, { 12449, 11, -1 }, { 12450, 11, -1 }, { 12451, 11, -1 }, { 12452, 11, -1 }, { 12453, 11, -1 }, { 12442, 12, -1 }, { 12443, 12, -1 }, { 12444, 12, -1 }, { 12445, 12, -1 }, { 12446, 12, -1 }, { 12447, 12, -1 }, { 12448, 12, -1 }, { 12449, 12, -1 }, { 12450, 12, -1 }, { 12451, 12, -1 }, { 12452, 12, -1 }, { 12453, 12, -1 }, { 12442, 136, -1 }, { 12443, 136, -1 }, { 12444, 136, -1 }, { 12445, 136, -1 }, { 12446, 136, -1 }, { 12447, 136, -1 }, { 12448, 136, -1 }, { 12449, 136, -1 }, { 12450, 136, -1 }, { 12451, 136, -1 }, { 12452, 136, -1 }, { 12453, 136, -1 }, { 12442, 689, -1 }, { 12443, 689, -1 }, { 12444, 689, -1 }, { 12445, 689, -1 }, { 12446, 689, -1 }, { 12447, 689, -1 }, { 12448, 689, -1 }, { 12449, 689, -1 }, { 12450, 689, -1 }, { 12451, 689, -1 }, { 12452, 689, -1 }, { 12453, 689, -1 }, { 12442, 700, -1 }, { 12443, 700, -1 }, { 12444, 700, -1 }, { 12445, 700, -1 }, { 12446, 700, -1 }, { 12447, 700, -1 }, { 12448, 700, -1 }, { 12449, 700, -1 }, { 12450, 700, -1 }, { 12451, 700, -1 }, { 12452, 700, -1 }, { 12453, 700, -1 }, { 12442, 1023, -1 }, { 12443, 1023, -1 }, { 12444, 1023, -1 }, { 12445, 1023, -1 }, { 12446, 1023, -1 }, { 12447, 1023, -1 }, { 12448, 1023, -1 }, { 12449, 1023, -1 }, { 12450, 1023, -1 }, { 12451, 1023, -1 }, { 12452, 1023, -1 }, { 12453, 1023, -1 }, { 12442, 653, -1 }, { 12443, 653, -1 }, { 12444, 653, -1 }, { 12445, 653, -1 }, { 12446, 653, -1 }, { 12447, 653, -1 }, { 12448, 653, -1 }, { 12449, 653, -1 }, { 12450, 653, -1 }, { 12451, 653, -1 }, { 12452, 653, -1 }, { 12453, 653, -1 }, { 12442, 458, -1 }, { 12443, 458, -1 }, { 12444, 458, -1 }, { 12445, 458, -1 }, { 12446, 458, -1 }, { 12447, 458, -1 }, { 12448, 458, -1 }, { 12449, 458, -1 }, { 12450, 458, -1 }, { 12451, 458, -1 }, { 12452, 458, -1 }, { 12453, 458, -1 }, { 12442, 459, -1 }, { 12443, 459, -1 }, { 12444, 459, -1 }, { 12445, 459, -1 }, { 12446, 459, -1 }, { 12447, 459, -1 }, { 12448, 459, -1 }, { 12449, 459, -1 }, { 12450, 459, -1 }, { 12451, 459, -1 }, { 12452, 459, -1 }, { 12453, 459, -1 }, { 12442, 493, -1 }, { 12443, 493, -1 }, { 12444, 493, -1 }, { 12445, 493, -1 }, { 12446, 493, -1 }, { 12447, 493, -1 }, { 12448, 493, -1 }, { 12449, 493, -1 }, { 12450, 493, -1 }, { 12451, 493, -1 }, { 12452, 493, -1 }, { 12453, 493, -1 }, { 12442, 475, -1 }, { 12443, 475, -1 }, { 12444, 475, -1 }, { 12445, 475, -1 }, { 12446, 475, -1 }, { 12447, 475, -1 }, { 12448, 475, -1 }, { 12449, 475, -1 }, { 12450, 475, -1 }, { 12451, 475, -1 }, { 12452, 475, -1 }, { 12453, 475, -1 }, { 12442, 455, -1 }, { 12443, 455, -1 }, { 12444, 455, -1 }, { 12445, 455, -1 }, { 12446, 455, -1 }, { 12447, 455, -1 }, { 12448, 455, -1 }, { 12449, 455, -1 }, { 12450, 455, -1 }, { 12451, 455, -1 }, { 12452, 455, -1 }, { 12453, 455, -1 }, { 12442, 56, -1 }, { 12443, 56, -1 }, { 12444, 56, -1 }, { 12445, 56, -1 }, { 12446, 56, -1 }, { 12447, 56, -1 }, { 12448, 56, -1 }, { 12449, 56, -1 }, { 12450, 56, -1 }, { 12451, 56, -1 }, { 12452, 56, -1 }, { 12453, 56, -1 }, { 12442, 307, -1 }, { 12443, 307, -1 }, { 12444, 307, -1 }, { 12445, 307, -1 }, { 12446, 307, -1 }, { 12447, 307, -1 }, { 12448, 307, -1 }, { 12449, 307, -1 }, { 12450, 307, -1 }, { 12451, 307, -1 }, { 12452, 307, -1 }, { 12453, 307, -1 }, { 12442, 306, -1 }, { 12443, 306, -1 }, { 12444, 306, -1 }, { 12445, 306, -1 }, { 12446, 306, -1 }, { 12447, 306, -1 }, { 12448, 306, -1 }, { 12449, 306, -1 }, { 12450, 306, -1 }, { 12451, 306, -1 }, { 12452, 306, -1 }, { 12453, 306, -1 }, { 12442, 338, -1 }, { 12443, 338, -1 }, { 12444, 338, -1 }, { 12445, 338, -1 }, { 12446, 338, -1 }, { 12447, 338, -1 }, { 12448, 338, -1 }, { 12449, 338, -1 }, { 12450, 338, -1 }, { 12451, 338, -1 }, { 12452, 338, -1 }, { 12453, 338, -1 }, { 12442, 342, -1 }, { 12443, 342, -1 }, { 12444, 342, -1 }, { 12445, 342, -1 }, { 12446, 342, -1 }, { 12447, 342, -1 }, { 12448, 342, -1 }, { 12449, 342, -1 }, { 12450, 342, -1 }, { 12451, 342, -1 }, { 12452, 342, -1 }, { 12453, 342, -1 }, { 12442, 344, -1 }, { 12443, 344, -1 }, { 12444, 344, -1 }, { 12445, 344, -1 }, { 12446, 344, -1 }, { 12447, 344, -1 }, { 12448, 344, -1 }, { 12449, 344, -1 }, { 12450, 344, -1 }, { 12451, 344, -1 }, { 12452, 344, -1 }, { 12453, 344, -1 }, { 12442, 345, -1 }, { 12443, 345, -1 }, { 12444, 345, -1 }, { 12445, 345, -1 }, { 12446, 345, -1 }, { 12447, 345, -1 }, { 12448, 345, -1 }, { 12449, 345, -1 }, { 12450, 345, -1 }, { 12451, 345, -1 }, { 12452, 345, -1 }, { 12453, 345, -1 }, { 12442, 343, -1 }, { 12443, 343, -1 }, { 12444, 343, -1 }, { 12445, 343, -1 }, { 12446, 343, -1 }, { 12447, 343, -1 }, { 12448, 343, -1 }, { 12449, 343, -1 }, { 12450, 343, -1 }, { 12451, 343, -1 }, { 12452, 343, -1 }, { 12453, 343, -1 }, { 12442, 346, -1 }, { 12443, 346, -1 }, { 12444, 346, -1 }, { 12445, 346, -1 }, { 12446, 346, -1 }, { 12447, 346, -1 }, { 12448, 346, -1 }, { 12449, 346, -1 }, { 12450, 346, -1 }, { 12451, 346, -1 }, { 12452, 346, -1 }, { 12453, 346, -1 }, { 12442, 315, -1 }, { 12443, 315, -1 }, { 12444, 315, -1 }, { 12445, 315, -1 }, { 12446, 315, -1 }, { 12447, 315, -1 }, { 12448, 315, -1 }, { 12449, 315, -1 }, { 12450, 315, -1 }, { 12451, 315, -1 }, { 12452, 315, -1 }, { 12453, 315, -1 }, { 12442, 316, -1 }, { 12443, 316, -1 }, { 12444, 316, -1 }, { 12445, 316, -1 }, { 12446, 316, -1 }, { 12447, 316, -1 }, { 12448, 316, -1 }, { 12449, 316, -1 }, { 12450, 316, -1 }, { 12451, 316, -1 }, { 12452, 316, -1 }, { 12453, 316, -1 }, { 12442, 317, -1 }, { 12443, 317, -1 }, { 12444, 317, -1 }, { 12445, 317, -1 }, { 12446, 317, -1 }, { 12447, 317, -1 }, { 12448, 317, -1 }, { 12449, 317, -1 }, { 12450, 317, -1 }, { 12451, 317, -1 }, { 12452, 317, -1 }, { 12453, 317, -1 }, { 12442, 43, -1 }, { 12443, 43, -1 }, { 12444, 43, -1 }, { 12445, 43, -1 }, { 12446, 43, -1 }, { 12447, 43, -1 }, { 12448, 43, -1 }, { 12449, 43, -1 }, { 12450, 43, -1 }, { 12451, 43, -1 }, { 12452, 43, -1 }, { 12453, 43, -1 }, { 12442, 300, -1 }, { 12443, 300, -1 }, { 12444, 300, -1 }, { 12445, 300, -1 }, { 12446, 300, -1 }, { 12447, 300, -1 }, { 12448, 300, -1 }, { 12449, 300, -1 }, { 12450, 300, -1 }, { 12451, 300, -1 }, { 12452, 300, -1 }, { 12453, 300, -1 }, { 12442, 35, -1 }, { 12443, 35, -1 }, { 12444, 35, -1 }, { 12445, 35, -1 }, { 12446, 35, -1 }, { 12447, 35, -1 }, { 12448, 35, -1 }, { 12449, 35, -1 }, { 12450, 35, -1 }, { 12451, 35, -1 }, { 12452, 35, -1 }, { 12453, 35, -1 }, { 12442, 476, -1 }, { 12443, 476, -1 }, { 12444, 476, -1 }, { 12445, 476, -1 }, { 12446, 476, -1 }, { 12447, 476, -1 }, { 12448, 476, -1 }, { 12449, 476, -1 }, { 12450, 476, -1 }, { 12451, 476, -1 }, { 12452, 476, -1 }, { 12453, 476, -1 }, { 12442, 275, -1 }, { 12443, 275, -1 }, { 12444, 275, -1 }, { 12445, 275, -1 }, { 12446, 275, -1 }, { 12447, 275, -1 }, { 12448, 275, -1 }, { 12449, 275, -1 }, { 12450, 275, -1 }, { 12451, 275, -1 }, { 12452, 275, -1 }, { 12453, 275, -1 }, { 12442, 280, -1 }, { 12443, 280, -1 }, { 12444, 280, -1 }, { 12445, 280, -1 }, { 12446, 280, -1 }, { 12447, 280, -1 }, { 12448, 280, -1 }, { 12449, 280, -1 }, { 12450, 280, -1 }, { 12451, 280, -1 }, { 12452, 280, -1 }, { 12453, 280, -1 }, { 12442, 291, -1 }, { 12443, 291, -1 }, { 12444, 291, -1 }, { 12445, 291, -1 }, { 12446, 291, -1 }, { 12447, 291, -1 }, { 12448, 291, -1 }, { 12449, 291, -1 }, { 12450, 291, -1 }, { 12451, 291, -1 }, { 12452, 291, -1 }, { 12453, 291, -1 }, { 12442, 290, -1 }, { 12443, 290, -1 }, { 12444, 290, -1 }, { 12445, 290, -1 }, { 12446, 290, -1 }, { 12447, 290, -1 }, { 12448, 290, -1 }, { 12449, 290, -1 }, { 12450, 290, -1 }, { 12451, 290, -1 }, { 12452, 290, -1 }, { 12453, 290, -1 }, { 12442, 262, -1 }, { 12443, 262, -1 }, { 12444, 262, -1 }, { 12445, 262, -1 }, { 12446, 262, -1 }, { 12447, 262, -1 }, { 12448, 262, -1 }, { 12449, 262, -1 }, { 12450, 262, -1 }, { 12451, 262, -1 }, { 12452, 262, -1 }, { 12453, 262, -1 }, { 12442, 264, -1 }, { 12443, 264, -1 }, { 12444, 264, -1 }, { 12445, 264, -1 }, { 12446, 264, -1 }, { 12447, 264, -1 }, { 12448, 264, -1 }, { 12449, 264, -1 }, { 12450, 264, -1 }, { 12451, 264, -1 }, { 12452, 264, -1 }, { 12453, 264, -1 }, { 12442, 18, -1 }, { 12443, 18, -1 }, { 12444, 18, -1 }, { 12445, 18, -1 }, { 12446, 18, -1 }, { 12447, 18, -1 }, { 12448, 18, -1 }, { 12449, 18, -1 }, { 12450, 18, -1 }, { 12451, 18, -1 }, { 12452, 18, -1 }, { 12453, 18, -1 }, { 12442, 426, -1 }, { 12443, 426, -1 }, { 12444, 426, -1 }, { 12445, 426, -1 }, { 12446, 426, -1 }, { 12447, 426, -1 }, { 12448, 426, -1 }, { 12449, 426, -1 }, { 12450, 426, -1 }, { 12451, 426, -1 }, { 12452, 426, -1 }, { 12453, 426, -1 }, { 12442, 19, -1 }, { 12443, 19, -1 }, { 12444, 19, -1 }, { 12445, 19, -1 }, { 12446, 19, -1 }, { 12447, 19, -1 }, { 12448, 19, -1 }, { 12449, 19, -1 }, { 12450, 19, -1 }, { 12451, 19, -1 }, { 12452, 19, -1 }, { 12453, 19, -1 }, { 12442, 57, -1 }, { 12443, 57, -1 }, { 12444, 57, -1 }, { 12445, 57, -1 }, { 12446, 57, -1 }, { 12447, 57, -1 }, { 12448, 57, -1 }, { 12449, 57, -1 }, { 12450, 57, -1 }, { 12451, 57, -1 }, { 12452, 57, -1 }, { 12453, 57, -1 }, { 12442, 447, -1 }, { 12443, 447, -1 }, { 12444, 447, -1 }, { 12445, 447, -1 }, { 12446, 447, -1 }, { 12447, 447, -1 }, { 12448, 447, -1 }, { 12449, 447, -1 }, { 12450, 447, -1 }, { 12451, 447, -1 }, { 12452, 447, -1 }, { 12453, 447, -1 }, { 12442, 453, -1 }, { 12443, 453, -1 }, { 12444, 453, -1 }, { 12445, 453, -1 }, { 12446, 453, -1 }, { 12447, 453, -1 }, { 12448, 453, -1 }, { 12449, 453, -1 }, { 12450, 453, -1 }, { 12451, 453, -1 }, { 12452, 453, -1 }, { 12453, 453, -1 }, { 12442, 161, -1 }, { 12443, 161, -1 }, { 12444, 161, -1 }, { 12445, 161, -1 }, { 12446, 161, -1 }, { 12447, 161, -1 }, { 12448, 161, -1 }, { 12449, 161, -1 }, { 12450, 161, -1 }, { 12451, 161, -1 }, { 12452, 161, -1 }, { 12453, 161, -1 }, { 12442, 68, -1 }, { 12443, 68, -1 }, { 12444, 68, -1 }, { 12445, 68, -1 }, { 12446, 68, -1 }, { 12447, 68, -1 }, { 12448, 68, -1 }, { 12449, 68, -1 }, { 12450, 68, -1 }, { 12451, 68, -1 }, { 12452, 68, -1 }, { 12453, 68, -1 }, { 12442, 62, -1 }, { 12443, 62, -1 }, { 12444, 62, -1 }, { 12445, 62, -1 }, { 12446, 62, -1 }, { 12447, 62, -1 }, { 12448, 62, -1 }, { 12449, 62, -1 }, { 12450, 62, -1 }, { 12451, 62, -1 }, { 12452, 62, -1 }, { 12453, 62, -1 }, { 12442, 263, -1 }, { 12443, 263, -1 }, { 12444, 263, -1 }, { 12445, 263, -1 }, { 12446, 263, -1 }, { 12447, 263, -1 }, { 12448, 263, -1 }, { 12449, 263, -1 }, { 12450, 263, -1 }, { 12451, 263, -1 }, { 12452, 263, -1 }, { 12453, 263, -1 }, { 12442, 20, -1 }, { 12443, 20, -1 }, { 12444, 20, -1 }, { 12445, 20, -1 }, { 12446, 20, -1 }, { 12447, 20, -1 }, { 12448, 20, -1 }, { 12449, 20, -1 }, { 12450, 20, -1 }, { 12451, 20, -1 }, { 12452, 20, -1 }, { 12453, 20, -1 }, { 12442, 21, -1 }, { 12443, 21, -1 }, { 12444, 21, -1 }, { 12445, 21, -1 }, { 12446, 21, -1 }, { 12447, 21, -1 }, { 12448, 21, -1 }, { 12449, 21, -1 }, { 12450, 21, -1 }, { 12451, 21, -1 }, { 12452, 21, -1 }, { 12453, 21, -1 }, { 12442, 22, -1 }, { 12443, 22, -1 }, { 12444, 22, -1 }, { 12445, 22, -1 }, { 12446, 22, -1 }, { 12447, 22, -1 }, { 12448, 22, -1 }, { 12449, 22, -1 }, { 12450, 22, -1 }, { 12451, 22, -1 }, { 12452, 22, -1 }, { 12453, 22, -1 }, { 12442, 820, -1 }, { 12443, 820, -1 }, { 12444, 820, -1 }, { 12445, 820, -1 }, { 12446, 820, -1 }, { 12447, 820, -1 }, { 12448, 820, -1 }, { 12449, 820, -1 }, { 12450, 820, -1 }, { 12451, 820, -1 }, { 12452, 820, -1 }, { 12453, 820, -1 }, { 12442, 601, -1 }, { 12443, 601, -1 }, { 12444, 601, -1 }, { 12445, 601, -1 }, { 12446, 601, -1 }, { 12447, 601, -1 }, { 12448, 601, -1 }, { 12449, 601, -1 }, { 12450, 601, -1 }, { 12451, 601, -1 }, { 12452, 601, -1 }, { 12453, 601, -1 }, { 12442, 589, -1 }, { 12443, 589, -1 }, { 12444, 589, -1 }, { 12445, 589, -1 }, { 12446, 589, -1 }, { 12447, 589, -1 }, { 12448, 589, -1 }, { 12449, 589, -1 }, { 12450, 589, -1 }, { 12451, 589, -1 }, { 12452, 589, -1 }, { 12453, 589, -1 }, { 12442, 588, -1 }, { 12443, 588, -1 }, { 12444, 588, -1 }, { 12445, 588, -1 }, { 12446, 588, -1 }, { 12447, 588, -1 }, { 12448, 588, -1 }, { 12449, 588, -1 }, { 12450, 588, -1 }, { 12451, 588, -1 }, { 12452, 588, -1 }, { 12453, 588, -1 }, { 12442, 620, -1 }, { 12443, 620, -1 }, { 12444, 620, -1 }, { 12445, 620, -1 }, { 12446, 620, -1 }, { 12447, 620, -1 }, { 12448, 620, -1 }, { 12449, 620, -1 }, { 12450, 620, -1 }, { 12451, 620, -1 }, { 12452, 620, -1 }, { 12453, 620, -1 }, { 12442, 629, -1 }, { 12443, 629, -1 }, { 12444, 629, -1 }, { 12445, 629, -1 }, { 12446, 629, -1 }, { 12447, 629, -1 }, { 12448, 629, -1 }, { 12449, 629, -1 }, { 12450, 629, -1 }, { 12451, 629, -1 }, { 12452, 629, -1 }, { 12453, 629, -1 }, { 12442, 626, -1 }, { 12443, 626, -1 }, { 12444, 626, -1 }, { 12445, 626, -1 }, { 12446, 626, -1 }, { 12447, 626, -1 }, { 12448, 626, -1 }, { 12449, 626, -1 }, { 12450, 626, -1 }, { 12451, 626, -1 }, { 12452, 626, -1 }, { 12453, 626, -1 }, { 12442, 534, -1 }, { 12443, 534, -1 }, { 12444, 534, -1 }, { 12445, 534, -1 }, { 12446, 534, -1 }, { 12447, 534, -1 }, { 12448, 534, -1 }, { 12449, 534, -1 }, { 12450, 534, -1 }, { 12451, 534, -1 }, { 12452, 534, -1 }, { 12453, 534, -1 }, { 12442, 515, -1 }, { 12443, 515, -1 }, { 12444, 515, -1 }, { 12445, 515, -1 }, { 12446, 515, -1 }, { 12447, 515, -1 }, { 12448, 515, -1 }, { 12449, 515, -1 }, { 12450, 515, -1 }, { 12451, 515, -1 }, { 12452, 515, -1 }, { 12453, 515, -1 }, { 12442, 574, -1 }, { 12443, 574, -1 }, { 12444, 574, -1 }, { 12445, 574, -1 }, { 12446, 574, -1 }, { 12447, 574, -1 }, { 12448, 574, -1 }, { 12449, 574, -1 }, { 12450, 574, -1 }, { 12451, 574, -1 }, { 12452, 574, -1 }, { 12453, 574, -1 }, { 12442, 560, -1 }, { 12443, 560, -1 }, { 12444, 560, -1 }, { 12445, 560, -1 }, { 12446, 560, -1 }, { 12447, 560, -1 }, { 12448, 560, -1 }, { 12449, 560, -1 }, { 12450, 560, -1 }, { 12451, 560, -1 }, { 12452, 560, -1 }, { 12453, 560, -1 }, { 12442, 520, -1 }, { 12443, 520, -1 }, { 12444, 520, -1 }, { 12445, 520, -1 }, { 12446, 520, -1 }, { 12447, 520, -1 }, { 12448, 520, -1 }, { 12449, 520, -1 }, { 12450, 520, -1 }, { 12451, 520, -1 }, { 12452, 520, -1 }, { 12453, 520, -1 }, { 12442, 533, -1 }, { 12443, 533, -1 }, { 12444, 533, -1 }, { 12445, 533, -1 }, { 12446, 533, -1 }, { 12447, 533, -1 }, { 12448, 533, -1 }, { 12449, 533, -1 }, { 12450, 533, -1 }, { 12451, 533, -1 }, { 12452, 533, -1 }, { 12453, 533, -1 }, { 12442, 532, -1 }, { 12443, 532, -1 }, { 12444, 532, -1 }, { 12445, 532, -1 }, { 12446, 532, -1 }, { 12447, 532, -1 }, { 12448, 532, -1 }, { 12449, 532, -1 }, { 12450, 532, -1 }, { 12451, 532, -1 }, { 12452, 532, -1 }, { 12453, 532, -1 }, { 12442, 531, -1 }, { 12443, 531, -1 }, { 12444, 531, -1 }, { 12445, 531, -1 }, { 12446, 531, -1 }, { 12447, 531, -1 }, { 12448, 531, -1 }, { 12449, 531, -1 }, { 12450, 531, -1 }, { 12451, 531, -1 }, { 12452, 531, -1 }, { 12453, 531, -1 }, { 12442, 537, -1 }, { 12443, 537, -1 }, { 12444, 537, -1 }, { 12445, 537, -1 }, { 12446, 537, -1 }, { 12447, 537, -1 }, { 12448, 537, -1 }, { 12449, 537, -1 }, { 12450, 537, -1 }, { 12451, 537, -1 }, { 12452, 537, -1 }, { 12453, 537, -1 }, { 12442, 536, -1 }, { 12443, 536, -1 }, { 12444, 536, -1 }, { 12445, 536, -1 }, { 12446, 536, -1 }, { 12447, 536, -1 }, { 12448, 536, -1 }, { 12449, 536, -1 }, { 12450, 536, -1 }, { 12451, 536, -1 }, { 12452, 536, -1 }, { 12453, 536, -1 }, { 12442, 535, -1 }, { 12443, 535, -1 }, { 12444, 535, -1 }, { 12445, 535, -1 }, { 12446, 535, -1 }, { 12447, 535, -1 }, { 12448, 535, -1 }, { 12449, 535, -1 }, { 12450, 535, -1 }, { 12451, 535, -1 }, { 12452, 535, -1 }, { 12453, 535, -1 }, { 12442, 538, -1 }, { 12443, 538, -1 }, { 12444, 538, -1 }, { 12445, 538, -1 }, { 12446, 538, -1 }, { 12447, 538, -1 }, { 12448, 538, -1 }, { 12449, 538, -1 }, { 12450, 538, -1 }, { 12451, 538, -1 }, { 12452, 538, -1 }, { 12453, 538, -1 }, { 12442, 504, -1 }, { 12443, 504, -1 }, { 12444, 504, -1 }, { 12445, 504, -1 }, { 12446, 504, -1 }, { 12447, 504, -1 }, { 12448, 504, -1 }, { 12449, 504, -1 }, { 12450, 504, -1 }, { 12451, 504, -1 }, { 12452, 504, -1 }, { 12453, 504, -1 }, { 12442, 1916, -1 }, { 12443, 1916, -1 }, { 12444, 1916, -1 }, { 12445, 1916, -1 }, { 12446, 1916, -1 }, { 12447, 1916, -1 }, { 12448, 1916, -1 }, { 12449, 1916, -1 }, { 12450, 1916, -1 }, { 12451, 1916, -1 }, { 12452, 1916, -1 }, { 12453, 1916, -1 }, { 12442, 1491, -1 }, { 12443, 1491, -1 }, { 12444, 1491, -1 }, { 12445, 1491, -1 }, { 12446, 1491, -1 }, { 12447, 1491, -1 }, { 12448, 1491, -1 }, { 12449, 1491, -1 }, { 12450, 1491, -1 }, { 12451, 1491, -1 }, { 12452, 1491, -1 }, { 12453, 1491, -1 }, { 12442, 784, -1 }, { 12443, 784, -1 }, { 12444, 784, -1 }, { 12445, 784, -1 }, { 12446, 784, -1 }, { 12447, 784, -1 }, { 12448, 784, -1 }, { 12449, 784, -1 }, { 12450, 784, -1 }, { 12451, 784, -1 }, { 12452, 784, -1 }, { 12453, 784, -1 }, { 12442, 785, -1 }, { 12443, 785, -1 }, { 12444, 785, -1 }, { 12445, 785, -1 }, { 12446, 785, -1 }, { 12447, 785, -1 }, { 12448, 785, -1 }, { 12449, 785, -1 }, { 12450, 785, -1 }, { 12451, 785, -1 }, { 12452, 785, -1 }, { 12453, 785, -1 }, { 12442, 834, -1 }, { 12443, 834, -1 }, { 12444, 834, -1 }, { 12445, 834, -1 }, { 12446, 834, -1 }, { 12447, 834, -1 }, { 12448, 834, -1 }, { 12449, 834, -1 }, { 12450, 834, -1 }, { 12451, 834, -1 }, { 12452, 834, -1 }, { 12453, 834, -1 }, { 12442, 831, -1 }, { 12443, 831, -1 }, { 12444, 831, -1 }, { 12445, 831, -1 }, { 12446, 831, -1 }, { 12447, 831, -1 }, { 12448, 831, -1 }, { 12449, 831, -1 }, { 12450, 831, -1 }, { 12451, 831, -1 }, { 12452, 831, -1 }, { 12453, 831, -1 }, { 12442, 1377, -1 }, { 12443, 1377, -1 }, { 12444, 1377, -1 }, { 12445, 1377, -1 }, { 12446, 1377, -1 }, { 12447, 1377, -1 }, { 12448, 1377, -1 }, { 12449, 1377, -1 }, { 12450, 1377, -1 }, { 12451, 1377, -1 }, { 12452, 1377, -1 }, { 12453, 1377, -1 }, { 12442, 776, -1 }, { 12443, 776, -1 }, { 12444, 776, -1 }, { 12445, 776, -1 }, { 12446, 776, -1 }, { 12447, 776, -1 }, { 12448, 776, -1 }, { 12449, 776, -1 }, { 12450, 776, -1 }, { 12451, 776, -1 }, { 12452, 776, -1 }, { 12453, 776, -1 }, { 12442, 775, -1 }, { 12443, 775, -1 }, { 12444, 775, -1 }, { 12445, 775, -1 }, { 12446, 775, -1 }, { 12447, 775, -1 }, { 12448, 775, -1 }, { 12449, 775, -1 }, { 12450, 775, -1 }, { 12451, 775, -1 }, { 12452, 775, -1 }, { 12453, 775, -1 }, { 12442, 1501, -1 }, { 12443, 1501, -1 }, { 12444, 1501, -1 }, { 12445, 1501, -1 }, { 12446, 1501, -1 }, { 12447, 1501, -1 }, { 12448, 1501, -1 }, { 12449, 1501, -1 }, { 12450, 1501, -1 }, { 12451, 1501, -1 }, { 12452, 1501, -1 }, { 12453, 1501, -1 }, { 12442, 782, -1 }, { 12443, 782, -1 }, { 12444, 782, -1 }, { 12445, 782, -1 }, { 12446, 782, -1 }, { 12447, 782, -1 }, { 12448, 782, -1 }, { 12449, 782, -1 }, { 12450, 782, -1 }, { 12451, 782, -1 }, { 12452, 782, -1 }, { 12453, 782, -1 }, { 12442, 1739, -1 }, { 12443, 1739, -1 }, { 12444, 1739, -1 }, { 12445, 1739, -1 }, { 12446, 1739, -1 }, { 12447, 1739, -1 }, { 12448, 1739, -1 }, { 12449, 1739, -1 }, { 12450, 1739, -1 }, { 12451, 1739, -1 }, { 12452, 1739, -1 }, { 12453, 1739, -1 }, { 12442, 786, -1 }, { 12443, 786, -1 }, { 12444, 786, -1 }, { 12445, 786, -1 }, { 12446, 786, -1 }, { 12447, 786, -1 }, { 12448, 786, -1 }, { 12449, 786, -1 }, { 12450, 786, -1 }, { 12451, 786, -1 }, { 12452, 786, -1 }, { 12453, 786, -1 }, { 12442, 1294, -1 }, { 12443, 1294, -1 }, { 12444, 1294, -1 }, { 12445, 1294, -1 }, { 12446, 1294, -1 }, { 12447, 1294, -1 }, { 12448, 1294, -1 }, { 12449, 1294, -1 }, { 12450, 1294, -1 }, { 12451, 1294, -1 }, { 12452, 1294, -1 }, { 12453, 1294, -1 }, { 12442, 1314, -1 }, { 12443, 1314, -1 }, { 12444, 1314, -1 }, { 12445, 1314, -1 }, { 12446, 1314, -1 }, { 12447, 1314, -1 }, { 12448, 1314, -1 }, { 12449, 1314, -1 }, { 12450, 1314, -1 }, { 12451, 1314, -1 }, { 12452, 1314, -1 }, { 12453, 1314, -1 }, { 12442, 1316, -1 }, { 12443, 1316, -1 }, { 12444, 1316, -1 }, { 12445, 1316, -1 }, { 12446, 1316, -1 }, { 12447, 1316, -1 }, { 12448, 1316, -1 }, { 12449, 1316, -1 }, { 12450, 1316, -1 }, { 12451, 1316, -1 }, { 12452, 1316, -1 }, { 12453, 1316, -1 }, { 12442, 1342, -1 }, { 12443, 1342, -1 }, { 12444, 1342, -1 }, { 12445, 1342, -1 }, { 12446, 1342, -1 }, { 12447, 1342, -1 }, { 12448, 1342, -1 }, { 12449, 1342, -1 }, { 12450, 1342, -1 }, { 12451, 1342, -1 }, { 12452, 1342, -1 }, { 12453, 1342, -1 }, { 12442, 1361, -1 }, { 12443, 1361, -1 }, { 12444, 1361, -1 }, { 12445, 1361, -1 }, { 12446, 1361, -1 }, { 12447, 1361, -1 }, { 12448, 1361, -1 }, { 12449, 1361, -1 }, { 12450, 1361, -1 }, { 12451, 1361, -1 }, { 12452, 1361, -1 }, { 12453, 1361, -1 }, { 12442, 1299, -1 }, { 12443, 1299, -1 }, { 12444, 1299, -1 }, { 12445, 1299, -1 }, { 12446, 1299, -1 }, { 12447, 1299, -1 }, { 12448, 1299, -1 }, { 12449, 1299, -1 }, { 12450, 1299, -1 }, { 12451, 1299, -1 }, { 12452, 1299, -1 }, { 12453, 1299, -1 }, { 12442, 1348, -1 }, { 12443, 1348, -1 }, { 12444, 1348, -1 }, { 12445, 1348, -1 }, { 12446, 1348, -1 }, { 12447, 1348, -1 }, { 12448, 1348, -1 }, { 12449, 1348, -1 }, { 12450, 1348, -1 }, { 12451, 1348, -1 }, { 12452, 1348, -1 }, { 12453, 1348, -1 }, { 12442, 1354, -1 }, { 12443, 1354, -1 }, { 12444, 1354, -1 }, { 12445, 1354, -1 }, { 12446, 1354, -1 }, { 12447, 1354, -1 }, { 12448, 1354, -1 }, { 12449, 1354, -1 }, { 12450, 1354, -1 }, { 12451, 1354, -1 }, { 12452, 1354, -1 }, { 12453, 1354, -1 }, { 12442, 1356, -1 }, { 12443, 1356, -1 }, { 12444, 1356, -1 }, { 12445, 1356, -1 }, { 12446, 1356, -1 }, { 12447, 1356, -1 }, { 12448, 1356, -1 }, { 12449, 1356, -1 }, { 12450, 1356, -1 }, { 12451, 1356, -1 }, { 12452, 1356, -1 }, { 12453, 1356, -1 }, { 12442, 1308, -1 }, { 12443, 1308, -1 }, { 12444, 1308, -1 }, { 12445, 1308, -1 }, { 12446, 1308, -1 }, { 12447, 1308, -1 }, { 12448, 1308, -1 }, { 12449, 1308, -1 }, { 12450, 1308, -1 }, { 12451, 1308, -1 }, { 12452, 1308, -1 }, { 12453, 1308, -1 }, { 12442, 1317, -1 }, { 12443, 1317, -1 }, { 12444, 1317, -1 }, { 12445, 1317, -1 }, { 12446, 1317, -1 }, { 12447, 1317, -1 }, { 12448, 1317, -1 }, { 12449, 1317, -1 }, { 12450, 1317, -1 }, { 12451, 1317, -1 }, { 12452, 1317, -1 }, { 12453, 1317, -1 }, { 12442, 1315, -1 }, { 12443, 1315, -1 }, { 12444, 1315, -1 }, { 12445, 1315, -1 }, { 12446, 1315, -1 }, { 12447, 1315, -1 }, { 12448, 1315, -1 }, { 12449, 1315, -1 }, { 12450, 1315, -1 }, { 12451, 1315, -1 }, { 12452, 1315, -1 }, { 12453, 1315, -1 }, { 12442, 1351, -1 }, { 12443, 1351, -1 }, { 12444, 1351, -1 }, { 12445, 1351, -1 }, { 12446, 1351, -1 }, { 12447, 1351, -1 }, { 12448, 1351, -1 }, { 12449, 1351, -1 }, { 12450, 1351, -1 }, { 12451, 1351, -1 }, { 12452, 1351, -1 }, { 12453, 1351, -1 }, { 12442, 907, -1 }, { 12443, 907, -1 }, { 12444, 907, -1 }, { 12445, 907, -1 }, { 12446, 907, -1 }, { 12447, 907, -1 }, { 12448, 907, -1 }, { 12449, 907, -1 }, { 12450, 907, -1 }, { 12451, 907, -1 }, { 12452, 907, -1 }, { 12453, 907, -1 }, { 12442, 890, -1 }, { 12443, 890, -1 }, { 12444, 890, -1 }, { 12445, 890, -1 }, { 12446, 890, -1 }, { 12447, 890, -1 }, { 12448, 890, -1 }, { 12449, 890, -1 }, { 12450, 890, -1 }, { 12451, 890, -1 }, { 12452, 890, -1 }, { 12453, 890, -1 }, { 12442, 780, -1 }, { 12443, 780, -1 }, { 12444, 780, -1 }, { 12445, 780, -1 }, { 12446, 780, -1 }, { 12447, 780, -1 }, { 12448, 780, -1 }, { 12449, 780, -1 }, { 12450, 780, -1 }, { 12451, 780, -1 }, { 12452, 780, -1 }, { 12453, 780, -1 }, { 12442, 802, -1 }, { 12443, 802, -1 }, { 12444, 802, -1 }, { 12445, 802, -1 }, { 12446, 802, -1 }, { 12447, 802, -1 }, { 12448, 802, -1 }, { 12449, 802, -1 }, { 12450, 802, -1 }, { 12451, 802, -1 }, { 12452, 802, -1 }, { 12453, 802, -1 }, { 12442, 1751, -1 }, { 12443, 1751, -1 }, { 12444, 1751, -1 }, { 12445, 1751, -1 }, { 12446, 1751, -1 }, { 12447, 1751, -1 }, { 12448, 1751, -1 }, { 12449, 1751, -1 }, { 12450, 1751, -1 }, { 12451, 1751, -1 }, { 12452, 1751, -1 }, { 12453, 1751, -1 }, { 12442, 1756, -1 }, { 12443, 1756, -1 }, { 12444, 1756, -1 }, { 12445, 1756, -1 }, { 12446, 1756, -1 }, { 12447, 1756, -1 }, { 12448, 1756, -1 }, { 12449, 1756, -1 }, { 12450, 1756, -1 }, { 12451, 1756, -1 }, { 12452, 1756, -1 }, { 12453, 1756, -1 }, { 12442, 832, -1 }, { 12443, 832, -1 }, { 12444, 832, -1 }, { 12445, 832, -1 }, { 12446, 832, -1 }, { 12447, 832, -1 }, { 12448, 832, -1 }, { 12449, 832, -1 }, { 12450, 832, -1 }, { 12451, 832, -1 }, { 12452, 832, -1 }, { 12453, 832, -1 }, { 12442, 829, -1 }, { 12443, 829, -1 }, { 12444, 829, -1 }, { 12445, 829, -1 }, { 12446, 829, -1 }, { 12447, 829, -1 }, { 12448, 829, -1 }, { 12449, 829, -1 }, { 12450, 829, -1 }, { 12451, 829, -1 }, { 12452, 829, -1 }, { 12453, 829, -1 }, { 12442, 943, -1 }, { 12443, 943, -1 }, { 12444, 943, -1 }, { 12445, 943, -1 }, { 12446, 943, -1 }, { 12447, 943, -1 }, { 12448, 943, -1 }, { 12449, 943, -1 }, { 12450, 943, -1 }, { 12451, 943, -1 }, { 12452, 943, -1 }, { 12453, 943, -1 }, { 12442, 798, -1 }, { 12443, 798, -1 }, { 12444, 798, -1 }, { 12445, 798, -1 }, { 12446, 798, -1 }, { 12447, 798, -1 }, { 12448, 798, -1 }, { 12449, 798, -1 }, { 12450, 798, -1 }, { 12451, 798, -1 }, { 12452, 798, -1 }, { 12453, 798, -1 }, { 12442, 787, -1 }, { 12443, 787, -1 }, { 12444, 787, -1 }, { 12445, 787, -1 }, { 12446, 787, -1 }, { 12447, 787, -1 }, { 12448, 787, -1 }, { 12449, 787, -1 }, { 12450, 787, -1 }, { 12451, 787, -1 }, { 12452, 787, -1 }, { 12453, 787, -1 }, { 12442, 885, -1 }, { 12443, 885, -1 }, { 12444, 885, -1 }, { 12445, 885, -1 }, { 12446, 885, -1 }, { 12447, 885, -1 }, { 12448, 885, -1 }, { 12449, 885, -1 }, { 12450, 885, -1 }, { 12451, 885, -1 }, { 12452, 885, -1 }, { 12453, 885, -1 }, { 12442, 781, -1 }, { 12443, 781, -1 }, { 12444, 781, -1 }, { 12445, 781, -1 }, { 12446, 781, -1 }, { 12447, 781, -1 }, { 12448, 781, -1 }, { 12449, 781, -1 }, { 12450, 781, -1 }, { 12451, 781, -1 }, { 12452, 781, -1 }, { 12453, 781, -1 }, { 12442, 1449, -1 }, { 12443, 1449, -1 }, { 12444, 1449, -1 }, { 12445, 1449, -1 }, { 12446, 1449, -1 }, { 12447, 1449, -1 }, { 12448, 1449, -1 }, { 12449, 1449, -1 }, { 12450, 1449, -1 }, { 12451, 1449, -1 }, { 12452, 1449, -1 }, { 12453, 1449, -1 }, { 12442, 1467, -1 }, { 12443, 1467, -1 }, { 12444, 1467, -1 }, { 12445, 1467, -1 }, { 12446, 1467, -1 }, { 12447, 1467, -1 }, { 12448, 1467, -1 }, { 12449, 1467, -1 }, { 12450, 1467, -1 }, { 12451, 1467, -1 }, { 12452, 1467, -1 }, { 12453, 1467, -1 }, { 12442, 1413, -1 }, { 12443, 1413, -1 }, { 12444, 1413, -1 }, { 12445, 1413, -1 }, { 12446, 1413, -1 }, { 12447, 1413, -1 }, { 12448, 1413, -1 }, { 12449, 1413, -1 }, { 12450, 1413, -1 }, { 12451, 1413, -1 }, { 12452, 1413, -1 }, { 12453, 1413, -1 }, { 12442, 1468, -1 }, { 12443, 1468, -1 }, { 12444, 1468, -1 }, { 12445, 1468, -1 }, { 12446, 1468, -1 }, { 12447, 1468, -1 }, { 12448, 1468, -1 }, { 12449, 1468, -1 }, { 12450, 1468, -1 }, { 12451, 1468, -1 }, { 12452, 1468, -1 }, { 12453, 1468, -1 }, { 12442, 1445, -1 }, { 12443, 1445, -1 }, { 12444, 1445, -1 }, { 12445, 1445, -1 }, { 12446, 1445, -1 }, { 12447, 1445, -1 }, { 12448, 1445, -1 }, { 12449, 1445, -1 }, { 12450, 1445, -1 }, { 12451, 1445, -1 }, { 12452, 1445, -1 }, { 12453, 1445, -1 }, { 12442, 1444, -1 }, { 12443, 1444, -1 }, { 12444, 1444, -1 }, { 12445, 1444, -1 }, { 12446, 1444, -1 }, { 12447, 1444, -1 }, { 12448, 1444, -1 }, { 12449, 1444, -1 }, { 12450, 1444, -1 }, { 12451, 1444, -1 }, { 12452, 1444, -1 }, { 12453, 1444, -1 }, { 12442, 1450, -1 }, { 12443, 1450, -1 }, { 12444, 1450, -1 }, { 12445, 1450, -1 }, { 12446, 1450, -1 }, { 12447, 1450, -1 }, { 12448, 1450, -1 }, { 12449, 1450, -1 }, { 12450, 1450, -1 }, { 12451, 1450, -1 }, { 12452, 1450, -1 }, { 12453, 1450, -1 }, { 12442, 1446, -1 }, { 12443, 1446, -1 }, { 12444, 1446, -1 }, { 12445, 1446, -1 }, { 12446, 1446, -1 }, { 12447, 1446, -1 }, { 12448, 1446, -1 }, { 12449, 1446, -1 }, { 12450, 1446, -1 }, { 12451, 1446, -1 }, { 12452, 1446, -1 }, { 12453, 1446, -1 }, { 12442, 1448, -1 }, { 12443, 1448, -1 }, { 12444, 1448, -1 }, { 12445, 1448, -1 }, { 12446, 1448, -1 }, { 12447, 1448, -1 }, { 12448, 1448, -1 }, { 12449, 1448, -1 }, { 12450, 1448, -1 }, { 12451, 1448, -1 }, { 12452, 1448, -1 }, { 12453, 1448, -1 }, { 12442, 1447, -1 }, { 12443, 1447, -1 }, { 12444, 1447, -1 }, { 12445, 1447, -1 }, { 12446, 1447, -1 }, { 12447, 1447, -1 }, { 12448, 1447, -1 }, { 12449, 1447, -1 }, { 12450, 1447, -1 }, { 12451, 1447, -1 }, { 12452, 1447, -1 }, { 12453, 1447, -1 }, { 12442, 1456, -1 }, { 12443, 1456, -1 }, { 12444, 1456, -1 }, { 12445, 1456, -1 }, { 12446, 1456, -1 }, { 12447, 1456, -1 }, { 12448, 1456, -1 }, { 12449, 1456, -1 }, { 12450, 1456, -1 }, { 12451, 1456, -1 }, { 12452, 1456, -1 }, { 12453, 1456, -1 }, { 12442, 1458, -1 }, { 12443, 1458, -1 }, { 12444, 1458, -1 }, { 12445, 1458, -1 }, { 12446, 1458, -1 }, { 12447, 1458, -1 }, { 12448, 1458, -1 }, { 12449, 1458, -1 }, { 12450, 1458, -1 }, { 12451, 1458, -1 }, { 12452, 1458, -1 }, { 12453, 1458, -1 }, { 12442, 1460, -1 }, { 12443, 1460, -1 }, { 12444, 1460, -1 }, { 12445, 1460, -1 }, { 12446, 1460, -1 }, { 12447, 1460, -1 }, { 12448, 1460, -1 }, { 12449, 1460, -1 }, { 12450, 1460, -1 }, { 12451, 1460, -1 }, { 12452, 1460, -1 }, { 12453, 1460, -1 }, { 12442, 1463, -1 }, { 12443, 1463, -1 }, { 12444, 1463, -1 }, { 12445, 1463, -1 }, { 12446, 1463, -1 }, { 12447, 1463, -1 }, { 12448, 1463, -1 }, { 12449, 1463, -1 }, { 12450, 1463, -1 }, { 12451, 1463, -1 }, { 12452, 1463, -1 }, { 12453, 1463, -1 }, { 12442, 1461, -1 }, { 12443, 1461, -1 }, { 12444, 1461, -1 }, { 12445, 1461, -1 }, { 12446, 1461, -1 }, { 12447, 1461, -1 }, { 12448, 1461, -1 }, { 12449, 1461, -1 }, { 12450, 1461, -1 }, { 12451, 1461, -1 }, { 12452, 1461, -1 }, { 12453, 1461, -1 }, { 12442, 837, -1 }, { 12443, 837, -1 }, { 12444, 837, -1 }, { 12445, 837, -1 }, { 12446, 837, -1 }, { 12447, 837, -1 }, { 12448, 837, -1 }, { 12449, 837, -1 }, { 12450, 837, -1 }, { 12451, 837, -1 }, { 12452, 837, -1 }, { 12453, 837, -1 }, { 12442, 838, -1 }, { 12443, 838, -1 }, { 12444, 838, -1 }, { 12445, 838, -1 }, { 12446, 838, -1 }, { 12447, 838, -1 }, { 12448, 838, -1 }, { 12449, 838, -1 }, { 12450, 838, -1 }, { 12451, 838, -1 }, { 12452, 838, -1 }, { 12453, 838, -1 }, { 12442, 836, -1 }, { 12443, 836, -1 }, { 12444, 836, -1 }, { 12445, 836, -1 }, { 12446, 836, -1 }, { 12447, 836, -1 }, { 12448, 836, -1 }, { 12449, 836, -1 }, { 12450, 836, -1 }, { 12451, 836, -1 }, { 12452, 836, -1 }, { 12453, 836, -1 }, { 12442, 801, -1 }, { 12443, 801, -1 }, { 12444, 801, -1 }, { 12445, 801, -1 }, { 12446, 801, -1 }, { 12447, 801, -1 }, { 12448, 801, -1 }, { 12449, 801, -1 }, { 12450, 801, -1 }, { 12451, 801, -1 }, { 12452, 801, -1 }, { 12453, 801, -1 }, { 12442, 783, -1 }, { 12443, 783, -1 }, { 12444, 783, -1 }, { 12445, 783, -1 }, { 12446, 783, -1 }, { 12447, 783, -1 }, { 12448, 783, -1 }, { 12449, 783, -1 }, { 12450, 783, -1 }, { 12451, 783, -1 }, { 12452, 783, -1 }, { 12453, 783, -1 }, { 12442, 778, -1 }, { 12443, 778, -1 }, { 12444, 778, -1 }, { 12445, 778, -1 }, { 12446, 778, -1 }, { 12447, 778, -1 }, { 12448, 778, -1 }, { 12449, 778, -1 }, { 12450, 778, -1 }, { 12451, 778, -1 }, { 12452, 778, -1 }, { 12453, 778, -1 }, { 12442, 779, -1 }, { 12443, 779, -1 }, { 12444, 779, -1 }, { 12445, 779, -1 }, { 12446, 779, -1 }, { 12447, 779, -1 }, { 12448, 779, -1 }, { 12449, 779, -1 }, { 12450, 779, -1 }, { 12451, 779, -1 }, { 12452, 779, -1 }, { 12453, 779, -1 }, { 12442, 818, -1 }, { 12443, 818, -1 }, { 12444, 818, -1 }, { 12445, 818, -1 }, { 12446, 818, -1 }, { 12447, 818, -1 }, { 12448, 818, -1 }, { 12449, 818, -1 }, { 12450, 818, -1 }, { 12451, 818, -1 }, { 12452, 818, -1 }, { 12453, 818, -1 }, { 12442, 793, -1 }, { 12443, 793, -1 }, { 12444, 793, -1 }, { 12445, 793, -1 }, { 12446, 793, -1 }, { 12447, 793, -1 }, { 12448, 793, -1 }, { 12449, 793, -1 }, { 12450, 793, -1 }, { 12451, 793, -1 }, { 12452, 793, -1 }, { 12453, 793, -1 }, { 12442, 942, -1 }, { 12443, 942, -1 }, { 12444, 942, -1 }, { 12445, 942, -1 }, { 12446, 942, -1 }, { 12447, 942, -1 }, { 12448, 942, -1 }, { 12449, 942, -1 }, { 12450, 942, -1 }, { 12451, 942, -1 }, { 12452, 942, -1 }, { 12453, 942, -1 }, { 12442, 1911, -1 }, { 12443, 1911, -1 }, { 12444, 1911, -1 }, { 12445, 1911, -1 }, { 12446, 1911, -1 }, { 12447, 1911, -1 }, { 12448, 1911, -1 }, { 12449, 1911, -1 }, { 12450, 1911, -1 }, { 12451, 1911, -1 }, { 12452, 1911, -1 }, { 12453, 1911, -1 }, { 12442, 1661, -1 }, { 12443, 1661, -1 }, { 12444, 1661, -1 }, { 12445, 1661, -1 }, { 12446, 1661, -1 }, { 12447, 1661, -1 }, { 12448, 1661, -1 }, { 12449, 1661, -1 }, { 12450, 1661, -1 }, { 12451, 1661, -1 }, { 12452, 1661, -1 }, { 12453, 1661, -1 }, { 12442, 1532, -1 }, { 12443, 1532, -1 }, { 12444, 1532, -1 }, { 12445, 1532, -1 }, { 12446, 1532, -1 }, { 12447, 1532, -1 }, { 12448, 1532, -1 }, { 12449, 1532, -1 }, { 12450, 1532, -1 }, { 12451, 1532, -1 }, { 12452, 1532, -1 }, { 12453, 1532, -1 }, { 12442, 1502, -1 }, { 12443, 1502, -1 }, { 12444, 1502, -1 }, { 12445, 1502, -1 }, { 12446, 1502, -1 }, { 12447, 1502, -1 }, { 12448, 1502, -1 }, { 12449, 1502, -1 }, { 12450, 1502, -1 }, { 12451, 1502, -1 }, { 12452, 1502, -1 }, { 12453, 1502, -1 }, { 12442, 1522, -1 }, { 12443, 1522, -1 }, { 12444, 1522, -1 }, { 12445, 1522, -1 }, { 12446, 1522, -1 }, { 12447, 1522, -1 }, { 12448, 1522, -1 }, { 12449, 1522, -1 }, { 12450, 1522, -1 }, { 12451, 1522, -1 }, { 12452, 1522, -1 }, { 12453, 1522, -1 }, { 12442, 1505, -1 }, { 12443, 1505, -1 }, { 12444, 1505, -1 }, { 12445, 1505, -1 }, { 12446, 1505, -1 }, { 12447, 1505, -1 }, { 12448, 1505, -1 }, { 12449, 1505, -1 }, { 12450, 1505, -1 }, { 12451, 1505, -1 }, { 12452, 1505, -1 }, { 12453, 1505, -1 }, { 12442, 1509, -1 }, { 12443, 1509, -1 }, { 12444, 1509, -1 }, { 12445, 1509, -1 }, { 12446, 1509, -1 }, { 12447, 1509, -1 }, { 12448, 1509, -1 }, { 12449, 1509, -1 }, { 12450, 1509, -1 }, { 12451, 1509, -1 }, { 12452, 1509, -1 }, { 12453, 1509, -1 }, { 12442, 1527, -1 }, { 12443, 1527, -1 }, { 12444, 1527, -1 }, { 12445, 1527, -1 }, { 12446, 1527, -1 }, { 12447, 1527, -1 }, { 12448, 1527, -1 }, { 12449, 1527, -1 }, { 12450, 1527, -1 }, { 12451, 1527, -1 }, { 12452, 1527, -1 }, { 12453, 1527, -1 }, { 12442, 1572, -1 }, { 12443, 1572, -1 }, { 12444, 1572, -1 }, { 12445, 1572, -1 }, { 12446, 1572, -1 }, { 12447, 1572, -1 }, { 12448, 1572, -1 }, { 12449, 1572, -1 }, { 12450, 1572, -1 }, { 12451, 1572, -1 }, { 12452, 1572, -1 }, { 12453, 1572, -1 }, { 12442, 1534, -1 }, { 12443, 1534, -1 }, { 12444, 1534, -1 }, { 12445, 1534, -1 }, { 12446, 1534, -1 }, { 12447, 1534, -1 }, { 12448, 1534, -1 }, { 12449, 1534, -1 }, { 12450, 1534, -1 }, { 12451, 1534, -1 }, { 12452, 1534, -1 }, { 12453, 1534, -1 }, { 12442, 1513, -1 }, { 12443, 1513, -1 }, { 12444, 1513, -1 }, { 12445, 1513, -1 }, { 12446, 1513, -1 }, { 12447, 1513, -1 }, { 12448, 1513, -1 }, { 12449, 1513, -1 }, { 12450, 1513, -1 }, { 12451, 1513, -1 }, { 12452, 1513, -1 }, { 12453, 1513, -1 }, { 12442, 1556, -1 }, { 12443, 1556, -1 }, { 12444, 1556, -1 }, { 12445, 1556, -1 }, { 12446, 1556, -1 }, { 12447, 1556, -1 }, { 12448, 1556, -1 }, { 12449, 1556, -1 }, { 12450, 1556, -1 }, { 12451, 1556, -1 }, { 12452, 1556, -1 }, { 12453, 1556, -1 }, { 12442, 1554, -1 }, { 12443, 1554, -1 }, { 12444, 1554, -1 }, { 12445, 1554, -1 }, { 12446, 1554, -1 }, { 12447, 1554, -1 }, { 12448, 1554, -1 }, { 12449, 1554, -1 }, { 12450, 1554, -1 }, { 12451, 1554, -1 }, { 12452, 1554, -1 }, { 12453, 1554, -1 }, { 12442, 1555, -1 }, { 12443, 1555, -1 }, { 12444, 1555, -1 }, { 12445, 1555, -1 }, { 12446, 1555, -1 }, { 12447, 1555, -1 }, { 12448, 1555, -1 }, { 12449, 1555, -1 }, { 12450, 1555, -1 }, { 12451, 1555, -1 }, { 12452, 1555, -1 }, { 12453, 1555, -1 }, { 12442, 1521, -1 }, { 12443, 1521, -1 }, { 12444, 1521, -1 }, { 12445, 1521, -1 }, { 12446, 1521, -1 }, { 12447, 1521, -1 }, { 12448, 1521, -1 }, { 12449, 1521, -1 }, { 12450, 1521, -1 }, { 12451, 1521, -1 }, { 12452, 1521, -1 }, { 12453, 1521, -1 }, { 12442, 1600, -1 }, { 12443, 1600, -1 }, { 12444, 1600, -1 }, { 12445, 1600, -1 }, { 12446, 1600, -1 }, { 12447, 1600, -1 }, { 12448, 1600, -1 }, { 12449, 1600, -1 }, { 12450, 1600, -1 }, { 12451, 1600, -1 }, { 12452, 1600, -1 }, { 12453, 1600, -1 }, { 12442, 1549, -1 }, { 12443, 1549, -1 }, { 12444, 1549, -1 }, { 12445, 1549, -1 }, { 12446, 1549, -1 }, { 12447, 1549, -1 }, { 12448, 1549, -1 }, { 12449, 1549, -1 }, { 12450, 1549, -1 }, { 12451, 1549, -1 }, { 12452, 1549, -1 }, { 12453, 1549, -1 }, { 12442, 1536, -1 }, { 12443, 1536, -1 }, { 12444, 1536, -1 }, { 12445, 1536, -1 }, { 12446, 1536, -1 }, { 12447, 1536, -1 }, { 12448, 1536, -1 }, { 12449, 1536, -1 }, { 12450, 1536, -1 }, { 12451, 1536, -1 }, { 12452, 1536, -1 }, { 12453, 1536, -1 }, { 12442, 1602, -1 }, { 12443, 1602, -1 }, { 12444, 1602, -1 }, { 12445, 1602, -1 }, { 12446, 1602, -1 }, { 12447, 1602, -1 }, { 12448, 1602, -1 }, { 12449, 1602, -1 }, { 12450, 1602, -1 }, { 12451, 1602, -1 }, { 12452, 1602, -1 }, { 12453, 1602, -1 }, { 12442, 1603, -1 }, { 12443, 1603, -1 }, { 12444, 1603, -1 }, { 12445, 1603, -1 }, { 12446, 1603, -1 }, { 12447, 1603, -1 }, { 12448, 1603, -1 }, { 12449, 1603, -1 }, { 12450, 1603, -1 }, { 12451, 1603, -1 }, { 12452, 1603, -1 }, { 12453, 1603, -1 }, { 12442, 1483, -1 }, { 12443, 1483, -1 }, { 12444, 1483, -1 }, { 12445, 1483, -1 }, { 12446, 1483, -1 }, { 12447, 1483, -1 }, { 12448, 1483, -1 }, { 12449, 1483, -1 }, { 12450, 1483, -1 }, { 12451, 1483, -1 }, { 12452, 1483, -1 }, { 12453, 1483, -1 }, { 12442, 1609, -1 }, { 12443, 1609, -1 }, { 12444, 1609, -1 }, { 12445, 1609, -1 }, { 12446, 1609, -1 }, { 12447, 1609, -1 }, { 12448, 1609, -1 }, { 12449, 1609, -1 }, { 12450, 1609, -1 }, { 12451, 1609, -1 }, { 12452, 1609, -1 }, { 12453, 1609, -1 }, { 12442, 1146, -1 }, { 12443, 1146, -1 }, { 12444, 1146, -1 }, { 12445, 1146, -1 }, { 12446, 1146, -1 }, { 12447, 1146, -1 }, { 12448, 1146, -1 }, { 12449, 1146, -1 }, { 12450, 1146, -1 }, { 12451, 1146, -1 }, { 12452, 1146, -1 }, { 12453, 1146, -1 }, { 12442, 1147, -1 }, { 12443, 1147, -1 }, { 12444, 1147, -1 }, { 12445, 1147, -1 }, { 12446, 1147, -1 }, { 12447, 1147, -1 }, { 12448, 1147, -1 }, { 12449, 1147, -1 }, { 12450, 1147, -1 }, { 12451, 1147, -1 }, { 12452, 1147, -1 }, { 12453, 1147, -1 }, { 12442, 1148, -1 }, { 12443, 1148, -1 }, { 12444, 1148, -1 }, { 12445, 1148, -1 }, { 12446, 1148, -1 }, { 12447, 1148, -1 }, { 12448, 1148, -1 }, { 12449, 1148, -1 }, { 12450, 1148, -1 }, { 12451, 1148, -1 }, { 12452, 1148, -1 }, { 12453, 1148, -1 }, { 12456, 1258, -1 }, { 12457, 1258, -1 }, { 12456, 1257, -1 }, { 12457, 1257, -1 }, { 12456, 1256, -1 }, { 12457, 1256, -1 }, { 12456, 1259, -1 }, { 12457, 1259, -1 }, { 12456, 1737, -1 }, { 12457, 1737, -1 }, { 12456, 1778, -1 }, { 12457, 1778, -1 }, { 12456, 1777, -1 }, { 12457, 1777, -1 }, { 12456, 2004, -1 }, { 12457, 2004, -1 }, { 12456, 1867, -1 }, { 12457, 1867, -1 }, { 12456, 1923, -1 }, { 12457, 1923, -1 }, { 12456, 1922, -1 }, { 12457, 1922, -1 }, { 12456, 1868, -1 }, { 12457, 1868, -1 }, { 12456, 1984, -1 }, { 12457, 1984, -1 }, { 12456, 1947, -1 }, { 12457, 1947, -1 }, { 12456, 1924, -1 }, { 12457, 1924, -1 }, { 12456, 1925, -1 }, { 12457, 1925, -1 }, { 12456, 1957, -1 }, { 12457, 1957, -1 }, { 12456, 1926, -1 }, { 12457, 1926, -1 }, { 12456, 1951, -1 }, { 12457, 1951, -1 }, { 12456, 1831, -1 }, { 12457, 1831, -1 }, { 12456, 1768, -1 }, { 12457, 1768, -1 }, { 12456, 1913, -1 }, { 12457, 1913, -1 }, { 12456, 1912, -1 }, { 12457, 1912, -1 }, { 12456, 1914, -1 }, { 12457, 1914, -1 }, { 12456, 1794, -1 }, { 12457, 1794, -1 }, { 12456, 1802, -1 }, { 12457, 1802, -1 }, { 12456, 1803, -1 }, { 12457, 1803, -1 }, { 12456, 1804, -1 }, { 12457, 1804, -1 }, { 12456, 1850, -1 }, { 12457, 1850, -1 }, { 12456, 1852, -1 }, { 12457, 1852, -1 }, { 12456, 1881, -1 }, { 12457, 1881, -1 }, { 12456, 1891, -1 }, { 12457, 1891, -1 }, { 12456, 1716, -1 }, { 12457, 1716, -1 }, { 12456, 1682, -1 }, { 12457, 1682, -1 }, { 12456, 419, -1 }, { 12457, 419, -1 }, { 12456, 632, -1 }, { 12457, 632, -1 }, { 12456, 634, -1 }, { 12457, 634, -1 }, { 12456, 417, -1 }, { 12457, 417, -1 }, { 12456, 506, -1 }, { 12457, 506, -1 }, { 12456, 577, -1 }, { 12457, 577, -1 }, { 12456, 505, -1 }, { 12457, 505, -1 }, { 12456, 950, -1 }, { 12457, 950, -1 }, { 12456, 971, -1 }, { 12457, 971, -1 }, { 12456, 1119, -1 }, { 12457, 1119, -1 }, { 12456, 1083, -1 }, { 12457, 1083, -1 }, { 12456, 1063, -1 }, { 12457, 1063, -1 }, { 12456, 1038, -1 }, { 12457, 1038, -1 }, { 12456, 986, -1 }, { 12457, 986, -1 }, { 12456, 979, -1 }, { 12457, 979, -1 }, { 12456, 141, -1 }, { 12457, 141, -1 }, { 12456, 471, -1 }, { 12457, 471, -1 }, { 12456, 63, -1 }, { 12457, 63, -1 }, { 12456, 7, -1 }, { 12457, 7, -1 }, { 12456, 13, -1 }, { 12457, 13, -1 }, { 12456, 23, -1 }, { 12457, 23, -1 }, { 12456, 1779, -1 }, { 12457, 1779, -1 }, { 12456, 1985, -1 }, { 12457, 1985, -1 }, { 12456, 578, -1 }, { 12457, 578, -1 }, { 12456, 1064, -1 }, { 12457, 1064, -1 }, { 12456, 1042, -1 }, { 12457, 1042, -1 }, { 12456, 987, -1 }, { 12457, 987, -1 }, { 12456, 100, -1 }, { 12457, 100, -1 }, { 12456, 1331, -1 }, { 12457, 1331, -1 }, { 12456, 192, -1 }, { 12457, 192, -1 }, { 12456, 1355, -1 }, { 12457, 1355, -1 }, { 12456, 1597, -1 }, { 12457, 1597, -1 }, { 12456, 1601, -1 }, { 12457, 1601, -1 }, { 12456, 1725, -1 }, { 12457, 1725, -1 }, { 12456, 809, -1 }, { 12457, 809, -1 }, { 12456, 690, -1 }, { 12457, 690, -1 }, { 12456, 694, -1 }, { 12457, 694, -1 }, { 12456, 1084, -1 }, { 12457, 1084, -1 }, { 12456, 980, -1 }, { 12457, 980, -1 }, { 12456, 142, -1 }, { 12457, 142, -1 }, { 12456, 607, -1 }, { 12457, 607, -1 }, { 12456, 861, -1 }, { 12457, 861, -1 }, { 12456, 260, -1 }, { 12457, 260, -1 }, { 12456, 899, -1 }, { 12457, 899, -1 }, { 12456, 701, -1 }, { 12457, 701, -1 }, { 12456, 33, -1 }, { 12457, 33, -1 }, { 12456, 301, -1 }, { 12457, 301, -1 }, { 12456, 281, -1 }, { 12457, 281, -1 }, { 12456, 1570, -1 }, { 12457, 1570, -1 }, { 12456, 1343, -1 }, { 12457, 1343, -1 }, { 12456, 886, -1 }, { 12457, 886, -1 }, { 12456, 1610, -1 }, { 12457, 1610, -1 }, { 12456, 292, -1 }, { 12457, 292, -1 }, { 12456, 1952, -1 }, { 12457, 1952, -1 }, { 12456, 1824, -1 }, { 12457, 1824, -1 }, { 12456, 1997, -1 }, { 12457, 1997, -1 }, { 12456, 1498, -1 }, { 12457, 1498, -1 }, { 12456, 1495, -1 }, { 12457, 1495, -1 }, { 12456, 1492, -1 }, { 12457, 1492, -1 }, { 12456, 1362, -1 }, { 12457, 1362, -1 }, { 12456, 1300, -1 }, { 12457, 1300, -1 }, { 12456, 1309, -1 }, { 12457, 1309, -1 }, { 12456, 908, -1 }, { 12457, 908, -1 }, { 12456, 1798, -1 }, { 12457, 1798, -1 }, { 12456, 1662, -1 }, { 12457, 1662, -1 }, { 12456, 1528, -1 }, { 12457, 1528, -1 }, { 12456, 1484, -1 }, { 12457, 1484, -1 }, { 12456, 1506, -1 }, { 12457, 1506, -1 }, { 12456, 1510, -1 }, { 12457, 1510, -1 }, { 12456, 1514, -1 }, { 12457, 1514, -1 }, { 12456, 743, -1 }, { 12457, 743, -1 }, { 12456, 1347, -1 }, { 12457, 1347, -1 }, { 12456, 662, -1 }, { 12457, 662, -1 }, { 12456, 1946, -1 }, { 12457, 1946, -1 }, { 12456, 1325, -1 }, { 12457, 1325, -1 }, { 12456, 1776, -1 }, { 12457, 1776, -1 }, { 12456, 1983, -1 }, { 12457, 1983, -1 }, { 12456, 576, -1 }, { 12457, 576, -1 }, { 12456, 1062, -1 }, { 12457, 1062, -1 }, { 12456, 1041, -1 }, { 12457, 1041, -1 }, { 12456, 985, -1 }, { 12457, 985, -1 }, { 12456, 98, -1 }, { 12457, 98, -1 }, { 12456, 1330, -1 }, { 12457, 1330, -1 }, { 12456, 1849, -1 }, { 12457, 1849, -1 }, { 12456, 191, -1 }, { 12457, 191, -1 }, { 12456, 1353, -1 }, { 12457, 1353, -1 }, { 12456, 1596, -1 }, { 12457, 1596, -1 }, { 12456, 1599, -1 }, { 12457, 1599, -1 }, { 12456, 1724, -1 }, { 12457, 1724, -1 }, { 12456, 808, -1 }, { 12457, 808, -1 }, { 12456, 688, -1 }, { 12457, 688, -1 }, { 12456, 693, -1 }, { 12457, 693, -1 }, { 12456, 1082, -1 }, { 12457, 1082, -1 }, { 12456, 978, -1 }, { 12457, 978, -1 }, { 12456, 140, -1 }, { 12457, 140, -1 }, { 12456, 605, -1 }, { 12457, 605, -1 }, { 12456, 855, -1 }, { 12457, 855, -1 }, { 12456, 258, -1 }, { 12457, 258, -1 }, { 12456, 897, -1 }, { 12457, 897, -1 }, { 12456, 699, -1 }, { 12457, 699, -1 }, { 12456, 10, -1 }, { 12457, 10, -1 }, { 12456, 299, -1 }, { 12457, 299, -1 }, { 12456, 279, -1 }, { 12457, 279, -1 }, { 12456, 1568, -1 }, { 12457, 1568, -1 }, { 12456, 1341, -1 }, { 12457, 1341, -1 }, { 12456, 884, -1 }, { 12457, 884, -1 }, { 12456, 1608, -1 }, { 12457, 1608, -1 }, { 12456, 289, -1 }, { 12457, 289, -1 }, { 12456, 1950, -1 }, { 12457, 1950, -1 }, { 12456, 1823, -1 }, { 12457, 1823, -1 }, { 12456, 1996, -1 }, { 12457, 1996, -1 }, { 12456, 1497, -1 }, { 12457, 1497, -1 }, { 12456, 1494, -1 }, { 12457, 1494, -1 }, { 12456, 1490, -1 }, { 12457, 1490, -1 }, { 12456, 1360, -1 }, { 12457, 1360, -1 }, { 12456, 1298, -1 }, { 12457, 1298, -1 }, { 12456, 1307, -1 }, { 12457, 1307, -1 }, { 12456, 906, -1 }, { 12457, 906, -1 }, { 12456, 1797, -1 }, { 12457, 1797, -1 }, { 12456, 1660, -1 }, { 12457, 1660, -1 }, { 12456, 1526, -1 }, { 12457, 1526, -1 }, { 12456, 1482, -1 }, { 12457, 1482, -1 }, { 12456, 1504, -1 }, { 12457, 1504, -1 }, { 12456, 1508, -1 }, { 12457, 1508, -1 }, { 12456, 1512, -1 }, { 12457, 1512, -1 }, { 12456, 652, -1 }, { 12457, 652, -1 }, { 12456, 152, -1 }, { 12457, 152, -1 }, { 12456, 494, -1 }, { 12457, 494, -1 }, { 12456, 14, -1 }, { 12457, 14, -1 }, { 12456, 134, -1 }, { 12457, 134, -1 }, { 12456, 147, -1 }, { 12457, 147, -1 }, { 12456, 15, -1 }, { 12457, 15, -1 }, { 12456, 16, -1 }, { 12457, 16, -1 }, { 12456, 410, -1 }, { 12457, 410, -1 }, { 12456, 399, -1 }, { 12457, 399, -1 }, { 12456, 400, -1 }, { 12457, 400, -1 }, { 12456, 416, -1 }, { 12457, 416, -1 }, { 12456, 44, -1 }, { 12457, 44, -1 }, { 12456, 17, -1 }, { 12457, 17, -1 }, { 12456, 11, -1 }, { 12457, 11, -1 }, { 12456, 12, -1 }, { 12457, 12, -1 }, { 12456, 136, -1 }, { 12457, 136, -1 }, { 12456, 689, -1 }, { 12457, 689, -1 }, { 12456, 700, -1 }, { 12457, 700, -1 }, { 12456, 1023, -1 }, { 12457, 1023, -1 }, { 12456, 653, -1 }, { 12457, 653, -1 }, { 12456, 458, -1 }, { 12457, 458, -1 }, { 12456, 459, -1 }, { 12457, 459, -1 }, { 12456, 493, -1 }, { 12457, 493, -1 }, { 12456, 475, -1 }, { 12457, 475, -1 }, { 12456, 455, -1 }, { 12457, 455, -1 }, { 12456, 56, -1 }, { 12457, 56, -1 }, { 12456, 307, -1 }, { 12457, 307, -1 }, { 12456, 306, -1 }, { 12457, 306, -1 }, { 12456, 338, -1 }, { 12457, 338, -1 }, { 12456, 342, -1 }, { 12457, 342, -1 }, { 12456, 344, -1 }, { 12457, 344, -1 }, { 12456, 345, -1 }, { 12457, 345, -1 }, { 12456, 343, -1 }, { 12457, 343, -1 }, { 12456, 346, -1 }, { 12457, 346, -1 }, { 12456, 315, -1 }, { 12457, 315, -1 }, { 12456, 316, -1 }, { 12457, 316, -1 }, { 12456, 317, -1 }, { 12457, 317, -1 }, { 12456, 43, -1 }, { 12457, 43, -1 }, { 12456, 300, -1 }, { 12457, 300, -1 }, { 12456, 35, -1 }, { 12457, 35, -1 }, { 12456, 476, -1 }, { 12457, 476, -1 }, { 12456, 275, -1 }, { 12457, 275, -1 }, { 12456, 280, -1 }, { 12457, 280, -1 }, { 12456, 291, -1 }, { 12457, 291, -1 }, { 12456, 290, -1 }, { 12457, 290, -1 }, { 12456, 262, -1 }, { 12457, 262, -1 }, { 12456, 264, -1 }, { 12457, 264, -1 }, { 12456, 18, -1 }, { 12457, 18, -1 }, { 12456, 426, -1 }, { 12457, 426, -1 }, { 12456, 19, -1 }, { 12457, 19, -1 }, { 12456, 57, -1 }, { 12457, 57, -1 }, { 12456, 447, -1 }, { 12457, 447, -1 }, { 12456, 453, -1 }, { 12457, 453, -1 }, { 12456, 161, -1 }, { 12457, 161, -1 }, { 12456, 68, -1 }, { 12457, 68, -1 }, { 12456, 62, -1 }, { 12457, 62, -1 }, { 12456, 263, -1 }, { 12457, 263, -1 }, { 12456, 20, -1 }, { 12457, 20, -1 }, { 12456, 21, -1 }, { 12457, 21, -1 }, { 12456, 22, -1 }, { 12457, 22, -1 }, { 12456, 820, -1 }, { 12457, 820, -1 }, { 12456, 601, -1 }, { 12457, 601, -1 }, { 12456, 589, -1 }, { 12457, 589, -1 }, { 12456, 588, -1 }, { 12457, 588, -1 }, { 12456, 620, -1 }, { 12457, 620, -1 }, { 12456, 629, -1 }, { 12457, 629, -1 }, { 12456, 626, -1 }, { 12457, 626, -1 }, { 12456, 534, -1 }, { 12457, 534, -1 }, { 12456, 515, -1 }, { 12457, 515, -1 }, { 12456, 574, -1 }, { 12457, 574, -1 }, { 12456, 560, -1 }, { 12457, 560, -1 }, { 12456, 520, -1 }, { 12457, 520, -1 }, { 12456, 533, -1 }, { 12457, 533, -1 }, { 12456, 532, -1 }, { 12457, 532, -1 }, { 12456, 531, -1 }, { 12457, 531, -1 }, { 12456, 537, -1 }, { 12457, 537, -1 }, { 12456, 536, -1 }, { 12457, 536, -1 }, { 12456, 535, -1 }, { 12457, 535, -1 }, { 12456, 538, -1 }, { 12457, 538, -1 }, { 12456, 504, -1 }, { 12457, 504, -1 }, { 12456, 1916, -1 }, { 12457, 1916, -1 }, { 12456, 1491, -1 }, { 12457, 1491, -1 }, { 12456, 784, -1 }, { 12457, 784, -1 }, { 12456, 785, -1 }, { 12457, 785, -1 }, { 12456, 834, -1 }, { 12457, 834, -1 }, { 12456, 831, -1 }, { 12457, 831, -1 }, { 12456, 1377, -1 }, { 12457, 1377, -1 }, { 12456, 776, -1 }, { 12457, 776, -1 }, { 12456, 775, -1 }, { 12457, 775, -1 }, { 12456, 1501, -1 }, { 12457, 1501, -1 }, { 12456, 782, -1 }, { 12457, 782, -1 }, { 12456, 1739, -1 }, { 12457, 1739, -1 }, { 12456, 786, -1 }, { 12457, 786, -1 }, { 12456, 1294, -1 }, { 12457, 1294, -1 }, { 12456, 1314, -1 }, { 12457, 1314, -1 }, { 12456, 1316, -1 }, { 12457, 1316, -1 }, { 12456, 1342, -1 }, { 12457, 1342, -1 }, { 12456, 1361, -1 }, { 12457, 1361, -1 }, { 12456, 1299, -1 }, { 12457, 1299, -1 }, { 12456, 1348, -1 }, { 12457, 1348, -1 }, { 12456, 1354, -1 }, { 12457, 1354, -1 }, { 12456, 1356, -1 }, { 12457, 1356, -1 }, { 12456, 1308, -1 }, { 12457, 1308, -1 }, { 12456, 1317, -1 }, { 12457, 1317, -1 }, { 12456, 1315, -1 }, { 12457, 1315, -1 }, { 12456, 1351, -1 }, { 12457, 1351, -1 }, { 12456, 907, -1 }, { 12457, 907, -1 }, { 12456, 890, -1 }, { 12457, 890, -1 }, { 12456, 780, -1 }, { 12457, 780, -1 }, { 12456, 802, -1 }, { 12457, 802, -1 }, { 12456, 1751, -1 }, { 12457, 1751, -1 }, { 12456, 1756, -1 }, { 12457, 1756, -1 }, { 12456, 832, -1 }, { 12457, 832, -1 }, { 12456, 829, -1 }, { 12457, 829, -1 }, { 12456, 943, -1 }, { 12457, 943, -1 }, { 12456, 798, -1 }, { 12457, 798, -1 }, { 12456, 787, -1 }, { 12457, 787, -1 }, { 12456, 885, -1 }, { 12457, 885, -1 }, { 12456, 781, -1 }, { 12457, 781, -1 }, { 12456, 1449, -1 }, { 12457, 1449, -1 }, { 12456, 1467, -1 }, { 12457, 1467, -1 }, { 12456, 1413, -1 }, { 12457, 1413, -1 }, { 12456, 1468, -1 }, { 12457, 1468, -1 }, { 12456, 1445, -1 }, { 12457, 1445, -1 }, { 12456, 1444, -1 }, { 12457, 1444, -1 }, { 12456, 1450, -1 }, { 12457, 1450, -1 }, { 12456, 1446, -1 }, { 12457, 1446, -1 }, { 12456, 1448, -1 }, { 12457, 1448, -1 }, { 12456, 1447, -1 }, { 12457, 1447, -1 }, { 12456, 1456, -1 }, { 12457, 1456, -1 }, { 12456, 1458, -1 }, { 12457, 1458, -1 }, { 12456, 1460, -1 }, { 12457, 1460, -1 }, { 12456, 1463, -1 }, { 12457, 1463, -1 }, { 12456, 1461, -1 }, { 12457, 1461, -1 }, { 12456, 837, -1 }, { 12457, 837, -1 }, { 12456, 838, -1 }, { 12457, 838, -1 }, { 12456, 836, -1 }, { 12457, 836, -1 }, { 12456, 801, -1 }, { 12457, 801, -1 }, { 12456, 783, -1 }, { 12457, 783, -1 }, { 12456, 778, -1 }, { 12457, 778, -1 }, { 12456, 779, -1 }, { 12457, 779, -1 }, { 12456, 818, -1 }, { 12457, 818, -1 }, { 12456, 793, -1 }, { 12457, 793, -1 }, { 12456, 942, -1 }, { 12457, 942, -1 }, { 12456, 1911, -1 }, { 12457, 1911, -1 }, { 12456, 1661, -1 }, { 12457, 1661, -1 }, { 12456, 1532, -1 }, { 12457, 1532, -1 }, { 12456, 1502, -1 }, { 12457, 1502, -1 }, { 12456, 1522, -1 }, { 12457, 1522, -1 }, { 12456, 1505, -1 }, { 12457, 1505, -1 }, { 12456, 1509, -1 }, { 12457, 1509, -1 }, { 12456, 1527, -1 }, { 12457, 1527, -1 }, { 12456, 1572, -1 }, { 12457, 1572, -1 }, { 12456, 1534, -1 }, { 12457, 1534, -1 }, { 12456, 1513, -1 }, { 12457, 1513, -1 }, { 12456, 1556, -1 }, { 12457, 1556, -1 }, { 12456, 1554, -1 }, { 12457, 1554, -1 }, { 12456, 1555, -1 }, { 12457, 1555, -1 }, { 12456, 1521, -1 }, { 12457, 1521, -1 }, { 12456, 1600, -1 }, { 12457, 1600, -1 }, { 12456, 1549, -1 }, { 12457, 1549, -1 }, { 12456, 1536, -1 }, { 12457, 1536, -1 }, { 12456, 1602, -1 }, { 12457, 1602, -1 }, { 12456, 1603, -1 }, { 12457, 1603, -1 }, { 12456, 1483, -1 }, { 12457, 1483, -1 }, { 12456, 1609, -1 }, { 12457, 1609, -1 }, { 12456, 1146, -1 }, { 12457, 1146, -1 }, { 12456, 1147, -1 }, { 12457, 1147, -1 }, { 12456, 1148, -1 }, { 12457, 1148, -1 }, { 12390, 1258, -1 }, { 12390, 1257, -1 }, { 12390, 1256, -1 }, { 12390, 1259, -1 }, { 12390, 1737, -1 }, { 12390, 1778, -1 }, { 12390, 1777, -1 }, { 12390, 2004, -1 }, { 12390, 1867, -1 }, { 12390, 1923, -1 }, { 12390, 1922, -1 }, { 12390, 1868, -1 }, { 12390, 1984, -1 }, { 12390, 1947, -1 }, { 12390, 1924, -1 }, { 12390, 1925, -1 }, { 12390, 1957, -1 }, { 12390, 1926, -1 }, { 12390, 1951, -1 }, { 12390, 1831, -1 }, { 12390, 1768, -1 }, { 12390, 1913, -1 }, { 12390, 1912, -1 }, { 12390, 1914, -1 }, { 12390, 1794, -1 }, { 12390, 1802, -1 }, { 12390, 1803, -1 }, { 12390, 1804, -1 }, { 12390, 1850, -1 }, { 12390, 1852, -1 }, { 12390, 1881, -1 }, { 12390, 1891, -1 }, { 12390, 1716, -1 }, { 12390, 1682, -1 }, { 12390, 419, -1 }, { 12390, 632, -1 }, { 12390, 634, -1 }, { 12390, 417, -1 }, { 12390, 506, -1 }, { 12390, 577, -1 }, { 12390, 505, -1 }, { 12390, 950, -1 }, { 12390, 971, -1 }, { 12390, 1119, -1 }, { 12390, 1083, -1 }, { 12390, 1063, -1 }, { 12390, 1038, -1 }, { 12390, 986, -1 }, { 12390, 979, -1 }, { 12390, 141, -1 }, { 12390, 471, -1 }, { 12390, 63, -1 }, { 12390, 7, -1 }, { 12390, 13, -1 }, { 12390, 23, -1 }, { 12390, 1779, -1 }, { 12390, 1985, -1 }, { 12390, 578, -1 }, { 12390, 1064, -1 }, { 12390, 1042, -1 }, { 12390, 987, -1 }, { 12390, 100, -1 }, { 12390, 1331, -1 }, { 12390, 192, -1 }, { 12390, 1355, -1 }, { 12390, 1597, -1 }, { 12390, 1601, -1 }, { 12390, 1725, -1 }, { 12390, 809, -1 }, { 12390, 690, -1 }, { 12390, 694, -1 }, { 12390, 1084, -1 }, { 12390, 980, -1 }, { 12390, 142, -1 }, { 12390, 607, -1 }, { 12390, 861, -1 }, { 12390, 260, -1 }, { 12390, 899, -1 }, { 12390, 701, -1 }, { 12390, 33, -1 }, { 12390, 301, -1 }, { 12390, 281, -1 }, { 12390, 1570, -1 }, { 12390, 1343, -1 }, { 12390, 886, -1 }, { 12390, 1610, -1 }, { 12390, 292, -1 }, { 12390, 1952, -1 }, { 12390, 1824, -1 }, { 12390, 1997, -1 }, { 12390, 1498, -1 }, { 12390, 1495, -1 }, { 12390, 1492, -1 }, { 12390, 1362, -1 }, { 12390, 1300, -1 }, { 12390, 1309, -1 }, { 12390, 908, -1 }, { 12390, 1798, -1 }, { 12390, 1662, -1 }, { 12390, 1528, -1 }, { 12390, 1484, -1 }, { 12390, 1506, -1 }, { 12390, 1510, -1 }, { 12390, 1514, -1 }, { 12390, 743, -1 }, { 12390, 1347, -1 }, { 12390, 662, -1 }, { 12390, 1946, -1 }, { 12390, 1325, -1 }, { 12390, 1776, -1 }, { 12390, 1983, -1 }, { 12390, 576, -1 }, { 12390, 1062, -1 }, { 12390, 1041, -1 }, { 12390, 985, -1 }, { 12390, 98, -1 }, { 12390, 1330, -1 }, { 12390, 1849, -1 }, { 12390, 191, -1 }, { 12390, 1353, -1 }, { 12390, 1596, -1 }, { 12390, 1599, -1 }, { 12390, 1724, -1 }, { 12390, 808, -1 }, { 12390, 688, -1 }, { 12390, 693, -1 }, { 12390, 1082, -1 }, { 12390, 978, -1 }, { 12390, 140, -1 }, { 12390, 605, -1 }, { 12390, 855, -1 }, { 12390, 258, -1 }, { 12390, 897, -1 }, { 12390, 699, -1 }, { 12390, 10, -1 }, { 12390, 299, -1 }, { 12390, 279, -1 }, { 12390, 1568, -1 }, { 12390, 1341, -1 }, { 12390, 884, -1 }, { 12390, 1608, -1 }, { 12390, 289, -1 }, { 12390, 1950, -1 }, { 12390, 1823, -1 }, { 12390, 1996, -1 }, { 12390, 1497, -1 }, { 12390, 1494, -1 }, { 12390, 1490, -1 }, { 12390, 1360, -1 }, { 12390, 1298, -1 }, { 12390, 1307, -1 }, { 12390, 906, -1 }, { 12390, 1797, -1 }, { 12390, 1660, -1 }, { 12390, 1526, -1 }, { 12390, 1482, -1 }, { 12390, 1504, -1 }, { 12390, 1508, -1 }, { 12390, 1512, -1 }, { 12390, 652, -1 }, { 12390, 152, -1 }, { 12390, 494, -1 }, { 12390, 14, -1 }, { 12390, 134, -1 }, { 12390, 147, -1 }, { 12390, 15, -1 }, { 12390, 16, -1 }, { 12390, 410, -1 }, { 12390, 399, -1 }, { 12390, 400, -1 }, { 12390, 416, -1 }, { 12390, 44, -1 }, { 12390, 17, -1 }, { 12390, 11, -1 }, { 12390, 12, -1 }, { 12390, 136, -1 }, { 12390, 689, -1 }, { 12390, 700, -1 }, { 12390, 1023, -1 }, { 12390, 653, -1 }, { 12390, 458, -1 }, { 12390, 459, -1 }, { 12390, 493, -1 }, { 12390, 475, -1 }, { 12390, 455, -1 }, { 12390, 56, -1 }, { 12390, 307, -1 }, { 12390, 306, -1 }, { 12390, 338, -1 }, { 12390, 342, -1 }, { 12390, 344, -1 }, { 12390, 345, -1 }, { 12390, 343, -1 }, { 12390, 346, -1 }, { 12390, 315, -1 }, { 12390, 316, -1 }, { 12390, 317, -1 }, { 12390, 43, -1 }, { 12390, 300, -1 }, { 12390, 35, -1 }, { 12390, 476, -1 }, { 12390, 275, -1 }, { 12390, 280, -1 }, { 12390, 291, -1 }, { 12390, 290, -1 }, { 12390, 262, -1 }, { 12390, 264, -1 }, { 12390, 18, -1 }, { 12390, 426, -1 }, { 12390, 19, -1 }, { 12390, 57, -1 }, { 12390, 447, -1 }, { 12390, 453, -1 }, { 12390, 161, -1 }, { 12390, 68, -1 }, { 12390, 62, -1 }, { 12390, 263, -1 }, { 12390, 20, -1 }, { 12390, 21, -1 }, { 12390, 22, -1 }, { 12390, 820, -1 }, { 12390, 601, -1 }, { 12390, 589, -1 }, { 12390, 588, -1 }, { 12390, 620, -1 }, { 12390, 629, -1 }, { 12390, 626, -1 }, { 12390, 534, -1 }, { 12390, 515, -1 }, { 12390, 574, -1 }, { 12390, 560, -1 }, { 12390, 520, -1 }, { 12390, 533, -1 }, { 12390, 532, -1 }, { 12390, 531, -1 }, { 12390, 537, -1 }, { 12390, 536, -1 }, { 12390, 535, -1 }, { 12390, 538, -1 }, { 12390, 504, -1 }, { 12390, 1916, -1 }, { 12390, 1491, -1 }, { 12390, 784, -1 }, { 12390, 785, -1 }, { 12390, 834, -1 }, { 12390, 831, -1 }, { 12390, 1377, -1 }, { 12390, 776, -1 }, { 12390, 775, -1 }, { 12390, 1501, -1 }, { 12390, 782, -1 }, { 12390, 1739, -1 }, { 12390, 786, -1 }, { 12390, 1294, -1 }, { 12390, 1314, -1 }, { 12390, 1316, -1 }, { 12390, 1342, -1 }, { 12390, 1361, -1 }, { 12390, 1299, -1 }, { 12390, 1348, -1 }, { 12390, 1354, -1 }, { 12390, 1356, -1 }, { 12390, 1308, -1 }, { 12390, 1317, -1 }, { 12390, 1315, -1 }, { 12390, 1351, -1 }, { 12390, 907, -1 }, { 12390, 890, -1 }, { 12390, 780, -1 }, { 12390, 802, -1 }, { 12390, 1751, -1 }, { 12390, 1756, -1 }, { 12390, 832, -1 }, { 12390, 829, -1 }, { 12390, 943, -1 }, { 12390, 798, -1 }, { 12390, 787, -1 }, { 12390, 885, -1 }, { 12390, 781, -1 }, { 12390, 1449, -1 }, { 12390, 1467, -1 }, { 12390, 1413, -1 }, { 12390, 1468, -1 }, { 12390, 1445, -1 }, { 12390, 1444, -1 }, { 12390, 1450, -1 }, { 12390, 1446, -1 }, { 12390, 1448, -1 }, { 12390, 1447, -1 }, { 12390, 1456, -1 }, { 12390, 1458, -1 }, { 12390, 1460, -1 }, { 12390, 1463, -1 }, { 12390, 1461, -1 }, { 12390, 837, -1 }, { 12390, 838, -1 }, { 12390, 836, -1 }, { 12390, 801, -1 }, { 12390, 783, -1 }, { 12390, 778, -1 }, { 12390, 779, -1 }, { 12390, 818, -1 }, { 12390, 793, -1 }, { 12390, 942, -1 }, { 12390, 1911, -1 }, { 12390, 1661, -1 }, { 12390, 1532, -1 }, { 12390, 1502, -1 }, { 12390, 1522, -1 }, { 12390, 1505, -1 }, { 12390, 1509, -1 }, { 12390, 1527, -1 }, { 12390, 1572, -1 }, { 12390, 1534, -1 }, { 12390, 1513, -1 }, { 12390, 1556, -1 }, { 12390, 1554, -1 }, { 12390, 1555, -1 }, { 12390, 1521, -1 }, { 12390, 1600, -1 }, { 12390, 1549, -1 }, { 12390, 1536, -1 }, { 12390, 1602, -1 }, { 12390, 1603, -1 }, { 12390, 1483, -1 }, { 12390, 1609, -1 }, { 12390, 1146, -1 }, { 12390, 1147, -1 }, { 12390, 1148, -1 }, { 12314, 1258, -1 }, { 12315, 1258, -1 }, { 12316, 1258, -1 }, { 12317, 1258, -1 }, { 12318, 1258, -1 }, { 12319, 1258, -1 }, { 12314, 1257, -1 }, { 12315, 1257, -1 }, { 12316, 1257, -1 }, { 12317, 1257, -1 }, { 12318, 1257, -1 }, { 12319, 1257, -1 }, { 12314, 1256, -1 }, { 12315, 1256, -1 }, { 12316, 1256, -1 }, { 12317, 1256, -1 }, { 12318, 1256, -1 }, { 12319, 1256, -1 }, { 12314, 1259, -1 }, { 12315, 1259, -1 }, { 12316, 1259, -1 }, { 12317, 1259, -1 }, { 12318, 1259, -1 }, { 12319, 1259, -1 }, { 12314, 1737, -1 }, { 12315, 1737, -1 }, { 12316, 1737, -1 }, { 12317, 1737, -1 }, { 12318, 1737, -1 }, { 12319, 1737, -1 }, { 12314, 1778, -1 }, { 12315, 1778, -1 }, { 12316, 1778, -1 }, { 12317, 1778, -1 }, { 12318, 1778, -1 }, { 12319, 1778, -1 }, { 12314, 1777, -1 }, { 12315, 1777, -1 }, { 12316, 1777, -1 }, { 12317, 1777, -1 }, { 12318, 1777, -1 }, { 12319, 1777, -1 }, { 12314, 2004, -1 }, { 12315, 2004, -1 }, { 12316, 2004, -1 }, { 12317, 2004, -1 }, { 12318, 2004, -1 }, { 12319, 2004, -1 }, { 12314, 1867, -1 }, { 12315, 1867, -1 }, { 12316, 1867, -1 }, { 12317, 1867, -1 }, { 12318, 1867, -1 }, { 12319, 1867, -1 }, { 12314, 1923, -1 }, { 12315, 1923, -1 }, { 12316, 1923, -1 }, { 12317, 1923, -1 }, { 12318, 1923, -1 }, { 12319, 1923, -1 }, { 12314, 1922, -1 }, { 12315, 1922, -1 }, { 12316, 1922, -1 }, { 12317, 1922, -1 }, { 12318, 1922, -1 }, { 12319, 1922, -1 }, { 12314, 1868, -1 }, { 12315, 1868, -1 }, { 12316, 1868, -1 }, { 12317, 1868, -1 }, { 12318, 1868, -1 }, { 12319, 1868, -1 }, { 12314, 1984, -1 }, { 12315, 1984, -1 }, { 12316, 1984, -1 }, { 12317, 1984, -1 }, { 12318, 1984, -1 }, { 12319, 1984, -1 }, { 12314, 1947, -1 }, { 12315, 1947, -1 }, { 12316, 1947, -1 }, { 12317, 1947, -1 }, { 12318, 1947, -1 }, { 12319, 1947, -1 }, { 12314, 1924, -1 }, { 12315, 1924, -1 }, { 12316, 1924, -1 }, { 12317, 1924, -1 }, { 12318, 1924, -1 }, { 12319, 1924, -1 }, { 12314, 1925, -1 }, { 12315, 1925, -1 }, { 12316, 1925, -1 }, { 12317, 1925, -1 }, { 12318, 1925, -1 }, { 12319, 1925, -1 }, { 12314, 1957, -1 }, { 12315, 1957, -1 }, { 12316, 1957, -1 }, { 12317, 1957, -1 }, { 12318, 1957, -1 }, { 12319, 1957, -1 }, { 12314, 1926, -1 }, { 12315, 1926, -1 }, { 12316, 1926, -1 }, { 12317, 1926, -1 }, { 12318, 1926, -1 }, { 12319, 1926, -1 }, { 12314, 1951, -1 }, { 12315, 1951, -1 }, { 12316, 1951, -1 }, { 12317, 1951, -1 }, { 12318, 1951, -1 }, { 12319, 1951, -1 }, { 12314, 1831, -1 }, { 12315, 1831, -1 }, { 12316, 1831, -1 }, { 12317, 1831, -1 }, { 12318, 1831, -1 }, { 12319, 1831, -1 }, { 12314, 1768, -1 }, { 12315, 1768, -1 }, { 12316, 1768, -1 }, { 12317, 1768, -1 }, { 12318, 1768, -1 }, { 12319, 1768, -1 }, { 12314, 1913, -1 }, { 12315, 1913, -1 }, { 12316, 1913, -1 }, { 12317, 1913, -1 }, { 12318, 1913, -1 }, { 12319, 1913, -1 }, { 12314, 1912, -1 }, { 12315, 1912, -1 }, { 12316, 1912, -1 }, { 12317, 1912, -1 }, { 12318, 1912, -1 }, { 12319, 1912, -1 }, { 12314, 1914, -1 }, { 12315, 1914, -1 }, { 12316, 1914, -1 }, { 12317, 1914, -1 }, { 12318, 1914, -1 }, { 12319, 1914, -1 }, { 12314, 1794, -1 }, { 12315, 1794, -1 }, { 12316, 1794, -1 }, { 12317, 1794, -1 }, { 12318, 1794, -1 }, { 12319, 1794, -1 }, { 12314, 1802, -1 }, { 12315, 1802, -1 }, { 12316, 1802, -1 }, { 12317, 1802, -1 }, { 12318, 1802, -1 }, { 12319, 1802, -1 }, { 12314, 1803, -1 }, { 12315, 1803, -1 }, { 12316, 1803, -1 }, { 12317, 1803, -1 }, { 12318, 1803, -1 }, { 12319, 1803, -1 }, { 12314, 1804, -1 }, { 12315, 1804, -1 }, { 12316, 1804, -1 }, { 12317, 1804, -1 }, { 12318, 1804, -1 }, { 12319, 1804, -1 }, { 12314, 1850, -1 }, { 12315, 1850, -1 }, { 12316, 1850, -1 }, { 12317, 1850, -1 }, { 12318, 1850, -1 }, { 12319, 1850, -1 }, { 12314, 1852, -1 }, { 12315, 1852, -1 }, { 12316, 1852, -1 }, { 12317, 1852, -1 }, { 12318, 1852, -1 }, { 12319, 1852, -1 }, { 12314, 1881, -1 }, { 12315, 1881, -1 }, { 12316, 1881, -1 }, { 12317, 1881, -1 }, { 12318, 1881, -1 }, { 12319, 1881, -1 }, { 12314, 1891, -1 }, { 12315, 1891, -1 }, { 12316, 1891, -1 }, { 12317, 1891, -1 }, { 12318, 1891, -1 }, { 12319, 1891, -1 }, { 12314, 1716, -1 }, { 12315, 1716, -1 }, { 12316, 1716, -1 }, { 12317, 1716, -1 }, { 12318, 1716, -1 }, { 12319, 1716, -1 }, { 12314, 1682, -1 }, { 12315, 1682, -1 }, { 12316, 1682, -1 }, { 12317, 1682, -1 }, { 12318, 1682, -1 }, { 12319, 1682, -1 }, { 12314, 419, -1 }, { 12315, 419, -1 }, { 12316, 419, -1 }, { 12317, 419, -1 }, { 12318, 419, -1 }, { 12319, 419, -1 }, { 12314, 632, -1 }, { 12315, 632, -1 }, { 12316, 632, -1 }, { 12317, 632, -1 }, { 12318, 632, -1 }, { 12319, 632, -1 }, { 12314, 634, -1 }, { 12315, 634, -1 }, { 12316, 634, -1 }, { 12317, 634, -1 }, { 12318, 634, -1 }, { 12319, 634, -1 }, { 12314, 417, -1 }, { 12315, 417, -1 }, { 12316, 417, -1 }, { 12317, 417, -1 }, { 12318, 417, -1 }, { 12319, 417, -1 }, { 12314, 506, -1 }, { 12315, 506, -1 }, { 12316, 506, -1 }, { 12317, 506, -1 }, { 12318, 506, -1 }, { 12319, 506, -1 }, { 12314, 577, -1 }, { 12315, 577, -1 }, { 12316, 577, -1 }, { 12317, 577, -1 }, { 12318, 577, -1 }, { 12319, 577, -1 }, { 12314, 505, -1 }, { 12315, 505, -1 }, { 12316, 505, -1 }, { 12317, 505, -1 }, { 12318, 505, -1 }, { 12319, 505, -1 }, { 12314, 950, -1 }, { 12315, 950, -1 }, { 12316, 950, -1 }, { 12317, 950, -1 }, { 12318, 950, -1 }, { 12319, 950, -1 }, { 12314, 971, -1 }, { 12315, 971, -1 }, { 12316, 971, -1 }, { 12317, 971, -1 }, { 12318, 971, -1 }, { 12319, 971, -1 }, { 12314, 1119, -1 }, { 12315, 1119, -1 }, { 12316, 1119, -1 }, { 12317, 1119, -1 }, { 12318, 1119, -1 }, { 12319, 1119, -1 }, { 12314, 1083, -1 }, { 12315, 1083, -1 }, { 12316, 1083, -1 }, { 12317, 1083, -1 }, { 12318, 1083, -1 }, { 12319, 1083, -1 }, { 12314, 1063, -1 }, { 12315, 1063, -1 }, { 12316, 1063, -1 }, { 12317, 1063, -1 }, { 12318, 1063, -1 }, { 12319, 1063, -1 }, { 12314, 1038, -1 }, { 12315, 1038, -1 }, { 12316, 1038, -1 }, { 12317, 1038, -1 }, { 12318, 1038, -1 }, { 12319, 1038, -1 }, { 12314, 986, -1 }, { 12315, 986, -1 }, { 12316, 986, -1 }, { 12317, 986, -1 }, { 12318, 986, -1 }, { 12319, 986, -1 }, { 12314, 979, -1 }, { 12315, 979, -1 }, { 12316, 979, -1 }, { 12317, 979, -1 }, { 12318, 979, -1 }, { 12319, 979, -1 }, { 12314, 141, -1 }, { 12315, 141, -1 }, { 12316, 141, -1 }, { 12317, 141, -1 }, { 12318, 141, -1 }, { 12319, 141, -1 }, { 12314, 471, -1 }, { 12315, 471, -1 }, { 12316, 471, -1 }, { 12317, 471, -1 }, { 12318, 471, -1 }, { 12319, 471, -1 }, { 12314, 63, -1 }, { 12315, 63, -1 }, { 12316, 63, -1 }, { 12317, 63, -1 }, { 12318, 63, -1 }, { 12319, 63, -1 }, { 12314, 7, -1 }, { 12315, 7, -1 }, { 12316, 7, -1 }, { 12317, 7, -1 }, { 12318, 7, -1 }, { 12319, 7, -1 }, { 12314, 13, -1 }, { 12315, 13, -1 }, { 12316, 13, -1 }, { 12317, 13, -1 }, { 12318, 13, -1 }, { 12319, 13, -1 }, { 12314, 23, -1 }, { 12315, 23, -1 }, { 12316, 23, -1 }, { 12317, 23, -1 }, { 12318, 23, -1 }, { 12319, 23, -1 }, { 12314, 1779, -1 }, { 12315, 1779, -1 }, { 12316, 1779, -1 }, { 12317, 1779, -1 }, { 12318, 1779, -1 }, { 12319, 1779, -1 }, { 12314, 1985, -1 }, { 12315, 1985, -1 }, { 12316, 1985, -1 }, { 12317, 1985, -1 }, { 12318, 1985, -1 }, { 12319, 1985, -1 }, { 12314, 578, -1 }, { 12315, 578, -1 }, { 12316, 578, -1 }, { 12317, 578, -1 }, { 12318, 578, -1 }, { 12319, 578, -1 }, { 12314, 1064, -1 }, { 12315, 1064, -1 }, { 12316, 1064, -1 }, { 12317, 1064, -1 }, { 12318, 1064, -1 }, { 12319, 1064, -1 }, { 12314, 1042, -1 }, { 12315, 1042, -1 }, { 12316, 1042, -1 }, { 12317, 1042, -1 }, { 12318, 1042, -1 }, { 12319, 1042, -1 }, { 12314, 987, -1 }, { 12315, 987, -1 }, { 12316, 987, -1 }, { 12317, 987, -1 }, { 12318, 987, -1 }, { 12319, 987, -1 }, { 12314, 100, -1 }, { 12315, 100, -1 }, { 12316, 100, -1 }, { 12317, 100, -1 }, { 12318, 100, -1 }, { 12319, 100, -1 }, { 12314, 1331, -1 }, { 12315, 1331, -1 }, { 12316, 1331, -1 }, { 12317, 1331, -1 }, { 12318, 1331, -1 }, { 12319, 1331, -1 }, { 12314, 192, -1 }, { 12315, 192, -1 }, { 12316, 192, -1 }, { 12317, 192, -1 }, { 12318, 192, -1 }, { 12319, 192, -1 }, { 12314, 1355, -1 }, { 12315, 1355, -1 }, { 12316, 1355, -1 }, { 12317, 1355, -1 }, { 12318, 1355, -1 }, { 12319, 1355, -1 }, { 12314, 1597, -1 }, { 12315, 1597, -1 }, { 12316, 1597, -1 }, { 12317, 1597, -1 }, { 12318, 1597, -1 }, { 12319, 1597, -1 }, { 12314, 1601, -1 }, { 12315, 1601, -1 }, { 12316, 1601, -1 }, { 12317, 1601, -1 }, { 12318, 1601, -1 }, { 12319, 1601, -1 }, { 12314, 1725, -1 }, { 12315, 1725, -1 }, { 12316, 1725, -1 }, { 12317, 1725, -1 }, { 12318, 1725, -1 }, { 12319, 1725, -1 }, { 12314, 809, -1 }, { 12315, 809, -1 }, { 12316, 809, -1 }, { 12317, 809, -1 }, { 12318, 809, -1 }, { 12319, 809, -1 }, { 12314, 690, -1 }, { 12315, 690, -1 }, { 12316, 690, -1 }, { 12317, 690, -1 }, { 12318, 690, -1 }, { 12319, 690, -1 }, { 12314, 694, -1 }, { 12315, 694, -1 }, { 12316, 694, -1 }, { 12317, 694, -1 }, { 12318, 694, -1 }, { 12319, 694, -1 }, { 12314, 1084, -1 }, { 12315, 1084, -1 }, { 12316, 1084, -1 }, { 12317, 1084, -1 }, { 12318, 1084, -1 }, { 12319, 1084, -1 }, { 12314, 980, -1 }, { 12315, 980, -1 }, { 12316, 980, -1 }, { 12317, 980, -1 }, { 12318, 980, -1 }, { 12319, 980, -1 }, { 12314, 142, -1 }, { 12315, 142, -1 }, { 12316, 142, -1 }, { 12317, 142, -1 }, { 12318, 142, -1 }, { 12319, 142, -1 }, { 12314, 607, -1 }, { 12315, 607, -1 }, { 12316, 607, -1 }, { 12317, 607, -1 }, { 12318, 607, -1 }, { 12319, 607, -1 }, { 12314, 861, -1 }, { 12315, 861, -1 }, { 12316, 861, -1 }, { 12317, 861, -1 }, { 12318, 861, -1 }, { 12319, 861, -1 }, { 12314, 260, -1 }, { 12315, 260, -1 }, { 12316, 260, -1 }, { 12317, 260, -1 }, { 12318, 260, -1 }, { 12319, 260, -1 }, { 12314, 899, -1 }, { 12315, 899, -1 }, { 12316, 899, -1 }, { 12317, 899, -1 }, { 12318, 899, -1 }, { 12319, 899, -1 }, { 12314, 701, -1 }, { 12315, 701, -1 }, { 12316, 701, -1 }, { 12317, 701, -1 }, { 12318, 701, -1 }, { 12319, 701, -1 }, { 12314, 33, -1 }, { 12315, 33, -1 }, { 12316, 33, -1 }, { 12317, 33, -1 }, { 12318, 33, -1 }, { 12319, 33, -1 }, { 12314, 301, -1 }, { 12315, 301, -1 }, { 12316, 301, -1 }, { 12317, 301, -1 }, { 12318, 301, -1 }, { 12319, 301, -1 }, { 12314, 281, -1 }, { 12315, 281, -1 }, { 12316, 281, -1 }, { 12317, 281, -1 }, { 12318, 281, -1 }, { 12319, 281, -1 }, { 12314, 1570, -1 }, { 12315, 1570, -1 }, { 12316, 1570, -1 }, { 12317, 1570, -1 }, { 12318, 1570, -1 }, { 12319, 1570, -1 }, { 12314, 1343, -1 }, { 12315, 1343, -1 }, { 12316, 1343, -1 }, { 12317, 1343, -1 }, { 12318, 1343, -1 }, { 12319, 1343, -1 }, { 12314, 886, -1 }, { 12315, 886, -1 }, { 12316, 886, -1 }, { 12317, 886, -1 }, { 12318, 886, -1 }, { 12319, 886, -1 }, { 12314, 1610, -1 }, { 12315, 1610, -1 }, { 12316, 1610, -1 }, { 12317, 1610, -1 }, { 12318, 1610, -1 }, { 12319, 1610, -1 }, { 12314, 292, -1 }, { 12315, 292, -1 }, { 12316, 292, -1 }, { 12317, 292, -1 }, { 12318, 292, -1 }, { 12319, 292, -1 }, { 12314, 1952, -1 }, { 12315, 1952, -1 }, { 12316, 1952, -1 }, { 12317, 1952, -1 }, { 12318, 1952, -1 }, { 12319, 1952, -1 }, { 12314, 1824, -1 }, { 12315, 1824, -1 }, { 12316, 1824, -1 }, { 12317, 1824, -1 }, { 12318, 1824, -1 }, { 12319, 1824, -1 }, { 12314, 1997, -1 }, { 12315, 1997, -1 }, { 12316, 1997, -1 }, { 12317, 1997, -1 }, { 12318, 1997, -1 }, { 12319, 1997, -1 }, { 12314, 1498, -1 }, { 12315, 1498, -1 }, { 12316, 1498, -1 }, { 12317, 1498, -1 }, { 12318, 1498, -1 }, { 12319, 1498, -1 }, { 12314, 1495, -1 }, { 12315, 1495, -1 }, { 12316, 1495, -1 }, { 12317, 1495, -1 }, { 12318, 1495, -1 }, { 12319, 1495, -1 }, { 12314, 1492, -1 }, { 12315, 1492, -1 }, { 12316, 1492, -1 }, { 12317, 1492, -1 }, { 12318, 1492, -1 }, { 12319, 1492, -1 }, { 12314, 1362, -1 }, { 12315, 1362, -1 }, { 12316, 1362, -1 }, { 12317, 1362, -1 }, { 12318, 1362, -1 }, { 12319, 1362, -1 }, { 12314, 1300, -1 }, { 12315, 1300, -1 }, { 12316, 1300, -1 }, { 12317, 1300, -1 }, { 12318, 1300, -1 }, { 12319, 1300, -1 }, { 12314, 1309, -1 }, { 12315, 1309, -1 }, { 12316, 1309, -1 }, { 12317, 1309, -1 }, { 12318, 1309, -1 }, { 12319, 1309, -1 }, { 12314, 908, -1 }, { 12315, 908, -1 }, { 12316, 908, -1 }, { 12317, 908, -1 }, { 12318, 908, -1 }, { 12319, 908, -1 }, { 12314, 1798, -1 }, { 12315, 1798, -1 }, { 12316, 1798, -1 }, { 12317, 1798, -1 }, { 12318, 1798, -1 }, { 12319, 1798, -1 }, { 12314, 1662, -1 }, { 12315, 1662, -1 }, { 12316, 1662, -1 }, { 12317, 1662, -1 }, { 12318, 1662, -1 }, { 12319, 1662, -1 }, { 12314, 1528, -1 }, { 12315, 1528, -1 }, { 12316, 1528, -1 }, { 12317, 1528, -1 }, { 12318, 1528, -1 }, { 12319, 1528, -1 }, { 12314, 1484, -1 }, { 12315, 1484, -1 }, { 12316, 1484, -1 }, { 12317, 1484, -1 }, { 12318, 1484, -1 }, { 12319, 1484, -1 }, { 12314, 1506, -1 }, { 12315, 1506, -1 }, { 12316, 1506, -1 }, { 12317, 1506, -1 }, { 12318, 1506, -1 }, { 12319, 1506, -1 }, { 12314, 1510, -1 }, { 12315, 1510, -1 }, { 12316, 1510, -1 }, { 12317, 1510, -1 }, { 12318, 1510, -1 }, { 12319, 1510, -1 }, { 12314, 1514, -1 }, { 12315, 1514, -1 }, { 12316, 1514, -1 }, { 12317, 1514, -1 }, { 12318, 1514, -1 }, { 12319, 1514, -1 }, { 12314, 743, -1 }, { 12315, 743, -1 }, { 12316, 743, -1 }, { 12317, 743, -1 }, { 12318, 743, -1 }, { 12319, 743, -1 }, { 12314, 1347, -1 }, { 12315, 1347, -1 }, { 12316, 1347, -1 }, { 12317, 1347, -1 }, { 12318, 1347, -1 }, { 12319, 1347, -1 }, { 12314, 662, -1 }, { 12315, 662, -1 }, { 12316, 662, -1 }, { 12317, 662, -1 }, { 12318, 662, -1 }, { 12319, 662, -1 }, { 12314, 1946, -1 }, { 12315, 1946, -1 }, { 12316, 1946, -1 }, { 12317, 1946, -1 }, { 12318, 1946, -1 }, { 12319, 1946, -1 }, { 12314, 1325, -1 }, { 12315, 1325, -1 }, { 12316, 1325, -1 }, { 12317, 1325, -1 }, { 12318, 1325, -1 }, { 12319, 1325, -1 }, { 12314, 1776, -1 }, { 12315, 1776, -1 }, { 12316, 1776, -1 }, { 12317, 1776, -1 }, { 12318, 1776, -1 }, { 12319, 1776, -1 }, { 12314, 1983, -1 }, { 12315, 1983, -1 }, { 12316, 1983, -1 }, { 12317, 1983, -1 }, { 12318, 1983, -1 }, { 12319, 1983, -1 }, { 12314, 576, -1 }, { 12315, 576, -1 }, { 12316, 576, -1 }, { 12317, 576, -1 }, { 12318, 576, -1 }, { 12319, 576, -1 }, { 12314, 1062, -1 }, { 12315, 1062, -1 }, { 12316, 1062, -1 }, { 12317, 1062, -1 }, { 12318, 1062, -1 }, { 12319, 1062, -1 }, { 12314, 1041, -1 }, { 12315, 1041, -1 }, { 12316, 1041, -1 }, { 12317, 1041, -1 }, { 12318, 1041, -1 }, { 12319, 1041, -1 }, { 12314, 985, -1 }, { 12315, 985, -1 }, { 12316, 985, -1 }, { 12317, 985, -1 }, { 12318, 985, -1 }, { 12319, 985, -1 }, { 12314, 98, -1 }, { 12315, 98, -1 }, { 12316, 98, -1 }, { 12317, 98, -1 }, { 12318, 98, -1 }, { 12319, 98, -1 }, { 12314, 1330, -1 }, { 12315, 1330, -1 }, { 12316, 1330, -1 }, { 12317, 1330, -1 }, { 12318, 1330, -1 }, { 12319, 1330, -1 }, { 12314, 1849, -1 }, { 12315, 1849, -1 }, { 12316, 1849, -1 }, { 12317, 1849, -1 }, { 12318, 1849, -1 }, { 12319, 1849, -1 }, { 12314, 191, -1 }, { 12315, 191, -1 }, { 12316, 191, -1 }, { 12317, 191, -1 }, { 12318, 191, -1 }, { 12319, 191, -1 }, { 12314, 1353, -1 }, { 12315, 1353, -1 }, { 12316, 1353, -1 }, { 12317, 1353, -1 }, { 12318, 1353, -1 }, { 12319, 1353, -1 }, { 12314, 1596, -1 }, { 12315, 1596, -1 }, { 12316, 1596, -1 }, { 12317, 1596, -1 }, { 12318, 1596, -1 }, { 12319, 1596, -1 }, { 12314, 1599, -1 }, { 12315, 1599, -1 }, { 12316, 1599, -1 }, { 12317, 1599, -1 }, { 12318, 1599, -1 }, { 12319, 1599, -1 }, { 12314, 1724, -1 }, { 12315, 1724, -1 }, { 12316, 1724, -1 }, { 12317, 1724, -1 }, { 12318, 1724, -1 }, { 12319, 1724, -1 }, { 12314, 808, -1 }, { 12315, 808, -1 }, { 12316, 808, -1 }, { 12317, 808, -1 }, { 12318, 808, -1 }, { 12319, 808, -1 }, { 12314, 688, -1 }, { 12315, 688, -1 }, { 12316, 688, -1 }, { 12317, 688, -1 }, { 12318, 688, -1 }, { 12319, 688, -1 }, { 12314, 693, -1 }, { 12315, 693, -1 }, { 12316, 693, -1 }, { 12317, 693, -1 }, { 12318, 693, -1 }, { 12319, 693, -1 }, { 12314, 1082, -1 }, { 12315, 1082, -1 }, { 12316, 1082, -1 }, { 12317, 1082, -1 }, { 12318, 1082, -1 }, { 12319, 1082, -1 }, { 12314, 978, -1 }, { 12315, 978, -1 }, { 12316, 978, -1 }, { 12317, 978, -1 }, { 12318, 978, -1 }, { 12319, 978, -1 }, { 12314, 140, -1 }, { 12315, 140, -1 }, { 12316, 140, -1 }, { 12317, 140, -1 }, { 12318, 140, -1 }, { 12319, 140, -1 }, { 12314, 605, -1 }, { 12315, 605, -1 }, { 12316, 605, -1 }, { 12317, 605, -1 }, { 12318, 605, -1 }, { 12319, 605, -1 }, { 12314, 855, -1 }, { 12315, 855, -1 }, { 12316, 855, -1 }, { 12317, 855, -1 }, { 12318, 855, -1 }, { 12319, 855, -1 }, { 12314, 258, -1 }, { 12315, 258, -1 }, { 12316, 258, -1 }, { 12317, 258, -1 }, { 12318, 258, -1 }, { 12319, 258, -1 }, { 12314, 897, -1 }, { 12315, 897, -1 }, { 12316, 897, -1 }, { 12317, 897, -1 }, { 12318, 897, -1 }, { 12319, 897, -1 }, { 12314, 699, -1 }, { 12315, 699, -1 }, { 12316, 699, -1 }, { 12317, 699, -1 }, { 12318, 699, -1 }, { 12319, 699, -1 }, { 12314, 10, -1 }, { 12315, 10, -1 }, { 12316, 10, -1 }, { 12317, 10, -1 }, { 12318, 10, -1 }, { 12319, 10, -1 }, { 12314, 299, -1 }, { 12315, 299, -1 }, { 12316, 299, -1 }, { 12317, 299, -1 }, { 12318, 299, -1 }, { 12319, 299, -1 }, { 12314, 279, -1 }, { 12315, 279, -1 }, { 12316, 279, -1 }, { 12317, 279, -1 }, { 12318, 279, -1 }, { 12319, 279, -1 }, { 12314, 1568, -1 }, { 12315, 1568, -1 }, { 12316, 1568, -1 }, { 12317, 1568, -1 }, { 12318, 1568, -1 }, { 12319, 1568, -1 }, { 12314, 1341, -1 }, { 12315, 1341, -1 }, { 12316, 1341, -1 }, { 12317, 1341, -1 }, { 12318, 1341, -1 }, { 12319, 1341, -1 }, { 12314, 884, -1 }, { 12315, 884, -1 }, { 12316, 884, -1 }, { 12317, 884, -1 }, { 12318, 884, -1 }, { 12319, 884, -1 }, { 12314, 1608, -1 }, { 12315, 1608, -1 }, { 12316, 1608, -1 }, { 12317, 1608, -1 }, { 12318, 1608, -1 }, { 12319, 1608, -1 }, { 12314, 289, -1 }, { 12315, 289, -1 }, { 12316, 289, -1 }, { 12317, 289, -1 }, { 12318, 289, -1 }, { 12319, 289, -1 }, { 12314, 1950, -1 }, { 12315, 1950, -1 }, { 12316, 1950, -1 }, { 12317, 1950, -1 }, { 12318, 1950, -1 }, { 12319, 1950, -1 }, { 12314, 1823, -1 }, { 12315, 1823, -1 }, { 12316, 1823, -1 }, { 12317, 1823, -1 }, { 12318, 1823, -1 }, { 12319, 1823, -1 }, { 12314, 1996, -1 }, { 12315, 1996, -1 }, { 12316, 1996, -1 }, { 12317, 1996, -1 }, { 12318, 1996, -1 }, { 12319, 1996, -1 }, { 12314, 1497, -1 }, { 12315, 1497, -1 }, { 12316, 1497, -1 }, { 12317, 1497, -1 }, { 12318, 1497, -1 }, { 12319, 1497, -1 }, { 12314, 1494, -1 }, { 12315, 1494, -1 }, { 12316, 1494, -1 }, { 12317, 1494, -1 }, { 12318, 1494, -1 }, { 12319, 1494, -1 }, { 12314, 1490, -1 }, { 12315, 1490, -1 }, { 12316, 1490, -1 }, { 12317, 1490, -1 }, { 12318, 1490, -1 }, { 12319, 1490, -1 }, { 12314, 1360, -1 }, { 12315, 1360, -1 }, { 12316, 1360, -1 }, { 12317, 1360, -1 }, { 12318, 1360, -1 }, { 12319, 1360, -1 }, { 12314, 1298, -1 }, { 12315, 1298, -1 }, { 12316, 1298, -1 }, { 12317, 1298, -1 }, { 12318, 1298, -1 }, { 12319, 1298, -1 }, { 12314, 1307, -1 }, { 12315, 1307, -1 }, { 12316, 1307, -1 }, { 12317, 1307, -1 }, { 12318, 1307, -1 }, { 12319, 1307, -1 }, { 12314, 906, -1 }, { 12315, 906, -1 }, { 12316, 906, -1 }, { 12317, 906, -1 }, { 12318, 906, -1 }, { 12319, 906, -1 }, { 12314, 1797, -1 }, { 12315, 1797, -1 }, { 12316, 1797, -1 }, { 12317, 1797, -1 }, { 12318, 1797, -1 }, { 12319, 1797, -1 }, { 12314, 1660, -1 }, { 12315, 1660, -1 }, { 12316, 1660, -1 }, { 12317, 1660, -1 }, { 12318, 1660, -1 }, { 12319, 1660, -1 }, { 12314, 1526, -1 }, { 12315, 1526, -1 }, { 12316, 1526, -1 }, { 12317, 1526, -1 }, { 12318, 1526, -1 }, { 12319, 1526, -1 }, { 12314, 1482, -1 }, { 12315, 1482, -1 }, { 12316, 1482, -1 }, { 12317, 1482, -1 }, { 12318, 1482, -1 }, { 12319, 1482, -1 }, { 12314, 1504, -1 }, { 12315, 1504, -1 }, { 12316, 1504, -1 }, { 12317, 1504, -1 }, { 12318, 1504, -1 }, { 12319, 1504, -1 }, { 12314, 1508, -1 }, { 12315, 1508, -1 }, { 12316, 1508, -1 }, { 12317, 1508, -1 }, { 12318, 1508, -1 }, { 12319, 1508, -1 }, { 12314, 1512, -1 }, { 12315, 1512, -1 }, { 12316, 1512, -1 }, { 12317, 1512, -1 }, { 12318, 1512, -1 }, { 12319, 1512, -1 }, { 12314, 652, -1 }, { 12315, 652, -1 }, { 12316, 652, -1 }, { 12317, 652, -1 }, { 12318, 652, -1 }, { 12319, 652, -1 }, { 12314, 152, -1 }, { 12315, 152, -1 }, { 12316, 152, -1 }, { 12317, 152, -1 }, { 12318, 152, -1 }, { 12319, 152, -1 }, { 12314, 494, -1 }, { 12315, 494, -1 }, { 12316, 494, -1 }, { 12317, 494, -1 }, { 12318, 494, -1 }, { 12319, 494, -1 }, { 12314, 14, -1 }, { 12315, 14, -1 }, { 12316, 14, -1 }, { 12317, 14, -1 }, { 12318, 14, -1 }, { 12319, 14, -1 }, { 12314, 134, -1 }, { 12315, 134, -1 }, { 12316, 134, -1 }, { 12317, 134, -1 }, { 12318, 134, -1 }, { 12319, 134, -1 }, { 12314, 147, -1 }, { 12315, 147, -1 }, { 12316, 147, -1 }, { 12317, 147, -1 }, { 12318, 147, -1 }, { 12319, 147, -1 }, { 12314, 15, -1 }, { 12315, 15, -1 }, { 12316, 15, -1 }, { 12317, 15, -1 }, { 12318, 15, -1 }, { 12319, 15, -1 }, { 12314, 16, -1 }, { 12315, 16, -1 }, { 12316, 16, -1 }, { 12317, 16, -1 }, { 12318, 16, -1 }, { 12319, 16, -1 }, { 12314, 410, -1 }, { 12315, 410, -1 }, { 12316, 410, -1 }, { 12317, 410, -1 }, { 12318, 410, -1 }, { 12319, 410, -1 }, { 12314, 399, -1 }, { 12315, 399, -1 }, { 12316, 399, -1 }, { 12317, 399, -1 }, { 12318, 399, -1 }, { 12319, 399, -1 }, { 12314, 400, -1 }, { 12315, 400, -1 }, { 12316, 400, -1 }, { 12317, 400, -1 }, { 12318, 400, -1 }, { 12319, 400, -1 }, { 12314, 416, -1 }, { 12315, 416, -1 }, { 12316, 416, -1 }, { 12317, 416, -1 }, { 12318, 416, -1 }, { 12319, 416, -1 }, { 12314, 44, -1 }, { 12315, 44, -1 }, { 12316, 44, -1 }, { 12317, 44, -1 }, { 12318, 44, -1 }, { 12319, 44, -1 }, { 12314, 17, -1 }, { 12315, 17, -1 }, { 12316, 17, -1 }, { 12317, 17, -1 }, { 12318, 17, -1 }, { 12319, 17, -1 }, { 12314, 11, -1 }, { 12315, 11, -1 }, { 12316, 11, -1 }, { 12317, 11, -1 }, { 12318, 11, -1 }, { 12319, 11, -1 }, { 12314, 12, -1 }, { 12315, 12, -1 }, { 12316, 12, -1 }, { 12317, 12, -1 }, { 12318, 12, -1 }, { 12319, 12, -1 }, { 12314, 136, -1 }, { 12315, 136, -1 }, { 12316, 136, -1 }, { 12317, 136, -1 }, { 12318, 136, -1 }, { 12319, 136, -1 }, { 12314, 689, -1 }, { 12315, 689, -1 }, { 12316, 689, -1 }, { 12317, 689, -1 }, { 12318, 689, -1 }, { 12319, 689, -1 }, { 12314, 700, -1 }, { 12315, 700, -1 }, { 12316, 700, -1 }, { 12317, 700, -1 }, { 12318, 700, -1 }, { 12319, 700, -1 }, { 12314, 1023, -1 }, { 12315, 1023, -1 }, { 12316, 1023, -1 }, { 12317, 1023, -1 }, { 12318, 1023, -1 }, { 12319, 1023, -1 }, { 12314, 653, -1 }, { 12315, 653, -1 }, { 12316, 653, -1 }, { 12317, 653, -1 }, { 12318, 653, -1 }, { 12319, 653, -1 }, { 12314, 458, -1 }, { 12315, 458, -1 }, { 12316, 458, -1 }, { 12317, 458, -1 }, { 12318, 458, -1 }, { 12319, 458, -1 }, { 12314, 459, -1 }, { 12315, 459, -1 }, { 12316, 459, -1 }, { 12317, 459, -1 }, { 12318, 459, -1 }, { 12319, 459, -1 }, { 12314, 493, -1 }, { 12315, 493, -1 }, { 12316, 493, -1 }, { 12317, 493, -1 }, { 12318, 493, -1 }, { 12319, 493, -1 }, { 12314, 475, -1 }, { 12315, 475, -1 }, { 12316, 475, -1 }, { 12317, 475, -1 }, { 12318, 475, -1 }, { 12319, 475, -1 }, { 12314, 455, -1 }, { 12315, 455, -1 }, { 12316, 455, -1 }, { 12317, 455, -1 }, { 12318, 455, -1 }, { 12319, 455, -1 }, { 12314, 56, -1 }, { 12315, 56, -1 }, { 12316, 56, -1 }, { 12317, 56, -1 }, { 12318, 56, -1 }, { 12319, 56, -1 }, { 12314, 307, -1 }, { 12315, 307, -1 }, { 12316, 307, -1 }, { 12317, 307, -1 }, { 12318, 307, -1 }, { 12319, 307, -1 }, { 12314, 306, -1 }, { 12315, 306, -1 }, { 12316, 306, -1 }, { 12317, 306, -1 }, { 12318, 306, -1 }, { 12319, 306, -1 }, { 12314, 338, -1 }, { 12315, 338, -1 }, { 12316, 338, -1 }, { 12317, 338, -1 }, { 12318, 338, -1 }, { 12319, 338, -1 }, { 12314, 342, -1 }, { 12315, 342, -1 }, { 12316, 342, -1 }, { 12317, 342, -1 }, { 12318, 342, -1 }, { 12319, 342, -1 }, { 12314, 344, -1 }, { 12315, 344, -1 }, { 12316, 344, -1 }, { 12317, 344, -1 }, { 12318, 344, -1 }, { 12319, 344, -1 }, { 12314, 345, -1 }, { 12315, 345, -1 }, { 12316, 345, -1 }, { 12317, 345, -1 }, { 12318, 345, -1 }, { 12319, 345, -1 }, { 12314, 343, -1 }, { 12315, 343, -1 }, { 12316, 343, -1 }, { 12317, 343, -1 }, { 12318, 343, -1 }, { 12319, 343, -1 }, { 12314, 346, -1 }, { 12315, 346, -1 }, { 12316, 346, -1 }, { 12317, 346, -1 }, { 12318, 346, -1 }, { 12319, 346, -1 }, { 12314, 315, -1 }, { 12315, 315, -1 }, { 12316, 315, -1 }, { 12317, 315, -1 }, { 12318, 315, -1 }, { 12319, 315, -1 }, { 12314, 316, -1 }, { 12315, 316, -1 }, { 12316, 316, -1 }, { 12317, 316, -1 }, { 12318, 316, -1 }, { 12319, 316, -1 }, { 12314, 317, -1 }, { 12315, 317, -1 }, { 12316, 317, -1 }, { 12317, 317, -1 }, { 12318, 317, -1 }, { 12319, 317, -1 }, { 12314, 43, -1 }, { 12315, 43, -1 }, { 12316, 43, -1 }, { 12317, 43, -1 }, { 12318, 43, -1 }, { 12319, 43, -1 }, { 12314, 300, -1 }, { 12315, 300, -1 }, { 12316, 300, -1 }, { 12317, 300, -1 }, { 12318, 300, -1 }, { 12319, 300, -1 }, { 12314, 35, -1 }, { 12315, 35, -1 }, { 12316, 35, -1 }, { 12317, 35, -1 }, { 12318, 35, -1 }, { 12319, 35, -1 }, { 12314, 476, -1 }, { 12315, 476, -1 }, { 12316, 476, -1 }, { 12317, 476, -1 }, { 12318, 476, -1 }, { 12319, 476, -1 }, { 12314, 275, -1 }, { 12315, 275, -1 }, { 12316, 275, -1 }, { 12317, 275, -1 }, { 12318, 275, -1 }, { 12319, 275, -1 }, { 12314, 280, -1 }, { 12315, 280, -1 }, { 12316, 280, -1 }, { 12317, 280, -1 }, { 12318, 280, -1 }, { 12319, 280, -1 }, { 12314, 291, -1 }, { 12315, 291, -1 }, { 12316, 291, -1 }, { 12317, 291, -1 }, { 12318, 291, -1 }, { 12319, 291, -1 }, { 12314, 290, -1 }, { 12315, 290, -1 }, { 12316, 290, -1 }, { 12317, 290, -1 }, { 12318, 290, -1 }, { 12319, 290, -1 }, { 12314, 262, -1 }, { 12315, 262, -1 }, { 12316, 262, -1 }, { 12317, 262, -1 }, { 12318, 262, -1 }, { 12319, 262, -1 }, { 12314, 264, -1 }, { 12315, 264, -1 }, { 12316, 264, -1 }, { 12317, 264, -1 }, { 12318, 264, -1 }, { 12319, 264, -1 }, { 12314, 18, -1 }, { 12315, 18, -1 }, { 12316, 18, -1 }, { 12317, 18, -1 }, { 12318, 18, -1 }, { 12319, 18, -1 }, { 12314, 426, -1 }, { 12315, 426, -1 }, { 12316, 426, -1 }, { 12317, 426, -1 }, { 12318, 426, -1 }, { 12319, 426, -1 }, { 12314, 19, -1 }, { 12315, 19, -1 }, { 12316, 19, -1 }, { 12317, 19, -1 }, { 12318, 19, -1 }, { 12319, 19, -1 }, { 12314, 57, -1 }, { 12315, 57, -1 }, { 12316, 57, -1 }, { 12317, 57, -1 }, { 12318, 57, -1 }, { 12319, 57, -1 }, { 12314, 447, -1 }, { 12315, 447, -1 }, { 12316, 447, -1 }, { 12317, 447, -1 }, { 12318, 447, -1 }, { 12319, 447, -1 }, { 12314, 453, -1 }, { 12315, 453, -1 }, { 12316, 453, -1 }, { 12317, 453, -1 }, { 12318, 453, -1 }, { 12319, 453, -1 }, { 12314, 161, -1 }, { 12315, 161, -1 }, { 12316, 161, -1 }, { 12317, 161, -1 }, { 12318, 161, -1 }, { 12319, 161, -1 }, { 12314, 68, -1 }, { 12315, 68, -1 }, { 12316, 68, -1 }, { 12317, 68, -1 }, { 12318, 68, -1 }, { 12319, 68, -1 }, { 12314, 62, -1 }, { 12315, 62, -1 }, { 12316, 62, -1 }, { 12317, 62, -1 }, { 12318, 62, -1 }, { 12319, 62, -1 }, { 12314, 263, -1 }, { 12315, 263, -1 }, { 12316, 263, -1 }, { 12317, 263, -1 }, { 12318, 263, -1 }, { 12319, 263, -1 }, { 12314, 20, -1 }, { 12315, 20, -1 }, { 12316, 20, -1 }, { 12317, 20, -1 }, { 12318, 20, -1 }, { 12319, 20, -1 }, { 12314, 21, -1 }, { 12315, 21, -1 }, { 12316, 21, -1 }, { 12317, 21, -1 }, { 12318, 21, -1 }, { 12319, 21, -1 }, { 12314, 22, -1 }, { 12315, 22, -1 }, { 12316, 22, -1 }, { 12317, 22, -1 }, { 12318, 22, -1 }, { 12319, 22, -1 }, { 12314, 820, -1 }, { 12315, 820, -1 }, { 12316, 820, -1 }, { 12317, 820, -1 }, { 12318, 820, -1 }, { 12319, 820, -1 }, { 12314, 601, -1 }, { 12315, 601, -1 }, { 12316, 601, -1 }, { 12317, 601, -1 }, { 12318, 601, -1 }, { 12319, 601, -1 }, { 12314, 589, -1 }, { 12315, 589, -1 }, { 12316, 589, -1 }, { 12317, 589, -1 }, { 12318, 589, -1 }, { 12319, 589, -1 }, { 12314, 588, -1 }, { 12315, 588, -1 }, { 12316, 588, -1 }, { 12317, 588, -1 }, { 12318, 588, -1 }, { 12319, 588, -1 }, { 12314, 620, -1 }, { 12315, 620, -1 }, { 12316, 620, -1 }, { 12317, 620, -1 }, { 12318, 620, -1 }, { 12319, 620, -1 }, { 12314, 629, -1 }, { 12315, 629, -1 }, { 12316, 629, -1 }, { 12317, 629, -1 }, { 12318, 629, -1 }, { 12319, 629, -1 }, { 12314, 626, -1 }, { 12315, 626, -1 }, { 12316, 626, -1 }, { 12317, 626, -1 }, { 12318, 626, -1 }, { 12319, 626, -1 }, { 12314, 534, -1 }, { 12315, 534, -1 }, { 12316, 534, -1 }, { 12317, 534, -1 }, { 12318, 534, -1 }, { 12319, 534, -1 }, { 12314, 515, -1 }, { 12315, 515, -1 }, { 12316, 515, -1 }, { 12317, 515, -1 }, { 12318, 515, -1 }, { 12319, 515, -1 }, { 12314, 574, -1 }, { 12315, 574, -1 }, { 12316, 574, -1 }, { 12317, 574, -1 }, { 12318, 574, -1 }, { 12319, 574, -1 }, { 12314, 560, -1 }, { 12315, 560, -1 }, { 12316, 560, -1 }, { 12317, 560, -1 }, { 12318, 560, -1 }, { 12319, 560, -1 }, { 12314, 520, -1 }, { 12315, 520, -1 }, { 12316, 520, -1 }, { 12317, 520, -1 }, { 12318, 520, -1 }, { 12319, 520, -1 }, { 12314, 533, -1 }, { 12315, 533, -1 }, { 12316, 533, -1 }, { 12317, 533, -1 }, { 12318, 533, -1 }, { 12319, 533, -1 }, { 12314, 532, -1 }, { 12315, 532, -1 }, { 12316, 532, -1 }, { 12317, 532, -1 }, { 12318, 532, -1 }, { 12319, 532, -1 }, { 12314, 531, -1 }, { 12315, 531, -1 }, { 12316, 531, -1 }, { 12317, 531, -1 }, { 12318, 531, -1 }, { 12319, 531, -1 }, { 12314, 537, -1 }, { 12315, 537, -1 }, { 12316, 537, -1 }, { 12317, 537, -1 }, { 12318, 537, -1 }, { 12319, 537, -1 }, { 12314, 536, -1 }, { 12315, 536, -1 }, { 12316, 536, -1 }, { 12317, 536, -1 }, { 12318, 536, -1 }, { 12319, 536, -1 }, { 12314, 535, -1 }, { 12315, 535, -1 }, { 12316, 535, -1 }, { 12317, 535, -1 }, { 12318, 535, -1 }, { 12319, 535, -1 }, { 12314, 538, -1 }, { 12315, 538, -1 }, { 12316, 538, -1 }, { 12317, 538, -1 }, { 12318, 538, -1 }, { 12319, 538, -1 }, { 12314, 504, -1 }, { 12315, 504, -1 }, { 12316, 504, -1 }, { 12317, 504, -1 }, { 12318, 504, -1 }, { 12319, 504, -1 }, { 12314, 1916, -1 }, { 12315, 1916, -1 }, { 12316, 1916, -1 }, { 12317, 1916, -1 }, { 12318, 1916, -1 }, { 12319, 1916, -1 }, { 12314, 1491, -1 }, { 12315, 1491, -1 }, { 12316, 1491, -1 }, { 12317, 1491, -1 }, { 12318, 1491, -1 }, { 12319, 1491, -1 }, { 12314, 784, -1 }, { 12315, 784, -1 }, { 12316, 784, -1 }, { 12317, 784, -1 }, { 12318, 784, -1 }, { 12319, 784, -1 }, { 12314, 785, -1 }, { 12315, 785, -1 }, { 12316, 785, -1 }, { 12317, 785, -1 }, { 12318, 785, -1 }, { 12319, 785, -1 }, { 12314, 834, -1 }, { 12315, 834, -1 }, { 12316, 834, -1 }, { 12317, 834, -1 }, { 12318, 834, -1 }, { 12319, 834, -1 }, { 12314, 831, -1 }, { 12315, 831, -1 }, { 12316, 831, -1 }, { 12317, 831, -1 }, { 12318, 831, -1 }, { 12319, 831, -1 }, { 12314, 1377, -1 }, { 12315, 1377, -1 }, { 12316, 1377, -1 }, { 12317, 1377, -1 }, { 12318, 1377, -1 }, { 12319, 1377, -1 }, { 12314, 776, -1 }, { 12315, 776, -1 }, { 12316, 776, -1 }, { 12317, 776, -1 }, { 12318, 776, -1 }, { 12319, 776, -1 }, { 12314, 775, -1 }, { 12315, 775, -1 }, { 12316, 775, -1 }, { 12317, 775, -1 }, { 12318, 775, -1 }, { 12319, 775, -1 }, { 12314, 1501, -1 }, { 12315, 1501, -1 }, { 12316, 1501, -1 }, { 12317, 1501, -1 }, { 12318, 1501, -1 }, { 12319, 1501, -1 }, { 12314, 782, -1 }, { 12315, 782, -1 }, { 12316, 782, -1 }, { 12317, 782, -1 }, { 12318, 782, -1 }, { 12319, 782, -1 }, { 12314, 1739, -1 }, { 12315, 1739, -1 }, { 12316, 1739, -1 }, { 12317, 1739, -1 }, { 12318, 1739, -1 }, { 12319, 1739, -1 }, { 12314, 786, -1 }, { 12315, 786, -1 }, { 12316, 786, -1 }, { 12317, 786, -1 }, { 12318, 786, -1 }, { 12319, 786, -1 }, { 12314, 1294, -1 }, { 12315, 1294, -1 }, { 12316, 1294, -1 }, { 12317, 1294, -1 }, { 12318, 1294, -1 }, { 12319, 1294, -1 }, { 12314, 1314, -1 }, { 12315, 1314, -1 }, { 12316, 1314, -1 }, { 12317, 1314, -1 }, { 12318, 1314, -1 }, { 12319, 1314, -1 }, { 12314, 1316, -1 }, { 12315, 1316, -1 }, { 12316, 1316, -1 }, { 12317, 1316, -1 }, { 12318, 1316, -1 }, { 12319, 1316, -1 }, { 12314, 1342, -1 }, { 12315, 1342, -1 }, { 12316, 1342, -1 }, { 12317, 1342, -1 }, { 12318, 1342, -1 }, { 12319, 1342, -1 }, { 12314, 1361, -1 }, { 12315, 1361, -1 }, { 12316, 1361, -1 }, { 12317, 1361, -1 }, { 12318, 1361, -1 }, { 12319, 1361, -1 }, { 12314, 1299, -1 }, { 12315, 1299, -1 }, { 12316, 1299, -1 }, { 12317, 1299, -1 }, { 12318, 1299, -1 }, { 12319, 1299, -1 }, { 12314, 1348, -1 }, { 12315, 1348, -1 }, { 12316, 1348, -1 }, { 12317, 1348, -1 }, { 12318, 1348, -1 }, { 12319, 1348, -1 }, { 12314, 1354, -1 }, { 12315, 1354, -1 }, { 12316, 1354, -1 }, { 12317, 1354, -1 }, { 12318, 1354, -1 }, { 12319, 1354, -1 }, { 12314, 1356, -1 }, { 12315, 1356, -1 }, { 12316, 1356, -1 }, { 12317, 1356, -1 }, { 12318, 1356, -1 }, { 12319, 1356, -1 }, { 12314, 1308, -1 }, { 12315, 1308, -1 }, { 12316, 1308, -1 }, { 12317, 1308, -1 }, { 12318, 1308, -1 }, { 12319, 1308, -1 }, { 12314, 1317, -1 }, { 12315, 1317, -1 }, { 12316, 1317, -1 }, { 12317, 1317, -1 }, { 12318, 1317, -1 }, { 12319, 1317, -1 }, { 12314, 1315, -1 }, { 12315, 1315, -1 }, { 12316, 1315, -1 }, { 12317, 1315, -1 }, { 12318, 1315, -1 }, { 12319, 1315, -1 }, { 12314, 1351, -1 }, { 12315, 1351, -1 }, { 12316, 1351, -1 }, { 12317, 1351, -1 }, { 12318, 1351, -1 }, { 12319, 1351, -1 }, { 12314, 907, -1 }, { 12315, 907, -1 }, { 12316, 907, -1 }, { 12317, 907, -1 }, { 12318, 907, -1 }, { 12319, 907, -1 }, { 12314, 890, -1 }, { 12315, 890, -1 }, { 12316, 890, -1 }, { 12317, 890, -1 }, { 12318, 890, -1 }, { 12319, 890, -1 }, { 12314, 780, -1 }, { 12315, 780, -1 }, { 12316, 780, -1 }, { 12317, 780, -1 }, { 12318, 780, -1 }, { 12319, 780, -1 }, { 12314, 802, -1 }, { 12315, 802, -1 }, { 12316, 802, -1 }, { 12317, 802, -1 }, { 12318, 802, -1 }, { 12319, 802, -1 }, { 12314, 1751, -1 }, { 12315, 1751, -1 }, { 12316, 1751, -1 }, { 12317, 1751, -1 }, { 12318, 1751, -1 }, { 12319, 1751, -1 }, { 12314, 1756, -1 }, { 12315, 1756, -1 }, { 12316, 1756, -1 }, { 12317, 1756, -1 }, { 12318, 1756, -1 }, { 12319, 1756, -1 }, { 12314, 832, -1 }, { 12315, 832, -1 }, { 12316, 832, -1 }, { 12317, 832, -1 }, { 12318, 832, -1 }, { 12319, 832, -1 }, { 12314, 829, -1 }, { 12315, 829, -1 }, { 12316, 829, -1 }, { 12317, 829, -1 }, { 12318, 829, -1 }, { 12319, 829, -1 }, { 12314, 943, -1 }, { 12315, 943, -1 }, { 12316, 943, -1 }, { 12317, 943, -1 }, { 12318, 943, -1 }, { 12319, 943, -1 }, { 12314, 798, -1 }, { 12315, 798, -1 }, { 12316, 798, -1 }, { 12317, 798, -1 }, { 12318, 798, -1 }, { 12319, 798, -1 }, { 12314, 787, -1 }, { 12315, 787, -1 }, { 12316, 787, -1 }, { 12317, 787, -1 }, { 12318, 787, -1 }, { 12319, 787, -1 }, { 12314, 885, -1 }, { 12315, 885, -1 }, { 12316, 885, -1 }, { 12317, 885, -1 }, { 12318, 885, -1 }, { 12319, 885, -1 }, { 12314, 781, -1 }, { 12315, 781, -1 }, { 12316, 781, -1 }, { 12317, 781, -1 }, { 12318, 781, -1 }, { 12319, 781, -1 }, { 12314, 1449, -1 }, { 12315, 1449, -1 }, { 12316, 1449, -1 }, { 12317, 1449, -1 }, { 12318, 1449, -1 }, { 12319, 1449, -1 }, { 12314, 1467, -1 }, { 12315, 1467, -1 }, { 12316, 1467, -1 }, { 12317, 1467, -1 }, { 12318, 1467, -1 }, { 12319, 1467, -1 }, { 12314, 1413, -1 }, { 12315, 1413, -1 }, { 12316, 1413, -1 }, { 12317, 1413, -1 }, { 12318, 1413, -1 }, { 12319, 1413, -1 }, { 12314, 1468, -1 }, { 12315, 1468, -1 }, { 12316, 1468, -1 }, { 12317, 1468, -1 }, { 12318, 1468, -1 }, { 12319, 1468, -1 }, { 12314, 1445, -1 }, { 12315, 1445, -1 }, { 12316, 1445, -1 }, { 12317, 1445, -1 }, { 12318, 1445, -1 }, { 12319, 1445, -1 }, { 12314, 1444, -1 }, { 12315, 1444, -1 }, { 12316, 1444, -1 }, { 12317, 1444, -1 }, { 12318, 1444, -1 }, { 12319, 1444, -1 }, { 12314, 1450, -1 }, { 12315, 1450, -1 }, { 12316, 1450, -1 }, { 12317, 1450, -1 }, { 12318, 1450, -1 }, { 12319, 1450, -1 }, { 12314, 1446, -1 }, { 12315, 1446, -1 }, { 12316, 1446, -1 }, { 12317, 1446, -1 }, { 12318, 1446, -1 }, { 12319, 1446, -1 }, { 12314, 1448, -1 }, { 12315, 1448, -1 }, { 12316, 1448, -1 }, { 12317, 1448, -1 }, { 12318, 1448, -1 }, { 12319, 1448, -1 }, { 12314, 1447, -1 }, { 12315, 1447, -1 }, { 12316, 1447, -1 }, { 12317, 1447, -1 }, { 12318, 1447, -1 }, { 12319, 1447, -1 }, { 12314, 1456, -1 }, { 12315, 1456, -1 }, { 12316, 1456, -1 }, { 12317, 1456, -1 }, { 12318, 1456, -1 }, { 12319, 1456, -1 }, { 12314, 1458, -1 }, { 12315, 1458, -1 }, { 12316, 1458, -1 }, { 12317, 1458, -1 }, { 12318, 1458, -1 }, { 12319, 1458, -1 }, { 12314, 1460, -1 }, { 12315, 1460, -1 }, { 12316, 1460, -1 }, { 12317, 1460, -1 }, { 12318, 1460, -1 }, { 12319, 1460, -1 }, { 12314, 1463, -1 }, { 12315, 1463, -1 }, { 12316, 1463, -1 }, { 12317, 1463, -1 }, { 12318, 1463, -1 }, { 12319, 1463, -1 }, { 12314, 1461, -1 }, { 12315, 1461, -1 }, { 12316, 1461, -1 }, { 12317, 1461, -1 }, { 12318, 1461, -1 }, { 12319, 1461, -1 }, { 12314, 837, -1 }, { 12315, 837, -1 }, { 12316, 837, -1 }, { 12317, 837, -1 }, { 12318, 837, -1 }, { 12319, 837, -1 }, { 12314, 838, -1 }, { 12315, 838, -1 }, { 12316, 838, -1 }, { 12317, 838, -1 }, { 12318, 838, -1 }, { 12319, 838, -1 }, { 12314, 836, -1 }, { 12315, 836, -1 }, { 12316, 836, -1 }, { 12317, 836, -1 }, { 12318, 836, -1 }, { 12319, 836, -1 }, { 12314, 801, -1 }, { 12315, 801, -1 }, { 12316, 801, -1 }, { 12317, 801, -1 }, { 12318, 801, -1 }, { 12319, 801, -1 }, { 12314, 783, -1 }, { 12315, 783, -1 }, { 12316, 783, -1 }, { 12317, 783, -1 }, { 12318, 783, -1 }, { 12319, 783, -1 }, { 12314, 778, -1 }, { 12315, 778, -1 }, { 12316, 778, -1 }, { 12317, 778, -1 }, { 12318, 778, -1 }, { 12319, 778, -1 }, { 12314, 779, -1 }, { 12315, 779, -1 }, { 12316, 779, -1 }, { 12317, 779, -1 }, { 12318, 779, -1 }, { 12319, 779, -1 }, { 12314, 818, -1 }, { 12315, 818, -1 }, { 12316, 818, -1 }, { 12317, 818, -1 }, { 12318, 818, -1 }, { 12319, 818, -1 }, { 12314, 793, -1 }, { 12315, 793, -1 }, { 12316, 793, -1 }, { 12317, 793, -1 }, { 12318, 793, -1 }, { 12319, 793, -1 }, { 12314, 942, -1 }, { 12315, 942, -1 }, { 12316, 942, -1 }, { 12317, 942, -1 }, { 12318, 942, -1 }, { 12319, 942, -1 }, { 12314, 1911, -1 }, { 12315, 1911, -1 }, { 12316, 1911, -1 }, { 12317, 1911, -1 }, { 12318, 1911, -1 }, { 12319, 1911, -1 }, { 12314, 1661, -1 }, { 12315, 1661, -1 }, { 12316, 1661, -1 }, { 12317, 1661, -1 }, { 12318, 1661, -1 }, { 12319, 1661, -1 }, { 12314, 1532, -1 }, { 12315, 1532, -1 }, { 12316, 1532, -1 }, { 12317, 1532, -1 }, { 12318, 1532, -1 }, { 12319, 1532, -1 }, { 12314, 1502, -1 }, { 12315, 1502, -1 }, { 12316, 1502, -1 }, { 12317, 1502, -1 }, { 12318, 1502, -1 }, { 12319, 1502, -1 }, { 12314, 1522, -1 }, { 12315, 1522, -1 }, { 12316, 1522, -1 }, { 12317, 1522, -1 }, { 12318, 1522, -1 }, { 12319, 1522, -1 }, { 12314, 1505, -1 }, { 12315, 1505, -1 }, { 12316, 1505, -1 }, { 12317, 1505, -1 }, { 12318, 1505, -1 }, { 12319, 1505, -1 }, { 12314, 1509, -1 }, { 12315, 1509, -1 }, { 12316, 1509, -1 }, { 12317, 1509, -1 }, { 12318, 1509, -1 }, { 12319, 1509, -1 }, { 12314, 1527, -1 }, { 12315, 1527, -1 }, { 12316, 1527, -1 }, { 12317, 1527, -1 }, { 12318, 1527, -1 }, { 12319, 1527, -1 }, { 12314, 1572, -1 }, { 12315, 1572, -1 }, { 12316, 1572, -1 }, { 12317, 1572, -1 }, { 12318, 1572, -1 }, { 12319, 1572, -1 }, { 12314, 1534, -1 }, { 12315, 1534, -1 }, { 12316, 1534, -1 }, { 12317, 1534, -1 }, { 12318, 1534, -1 }, { 12319, 1534, -1 }, { 12314, 1513, -1 }, { 12315, 1513, -1 }, { 12316, 1513, -1 }, { 12317, 1513, -1 }, { 12318, 1513, -1 }, { 12319, 1513, -1 }, { 12314, 1556, -1 }, { 12315, 1556, -1 }, { 12316, 1556, -1 }, { 12317, 1556, -1 }, { 12318, 1556, -1 }, { 12319, 1556, -1 }, { 12314, 1554, -1 }, { 12315, 1554, -1 }, { 12316, 1554, -1 }, { 12317, 1554, -1 }, { 12318, 1554, -1 }, { 12319, 1554, -1 }, { 12314, 1555, -1 }, { 12315, 1555, -1 }, { 12316, 1555, -1 }, { 12317, 1555, -1 }, { 12318, 1555, -1 }, { 12319, 1555, -1 }, { 12314, 1521, -1 }, { 12315, 1521, -1 }, { 12316, 1521, -1 }, { 12317, 1521, -1 }, { 12318, 1521, -1 }, { 12319, 1521, -1 }, { 12314, 1600, -1 }, { 12315, 1600, -1 }, { 12316, 1600, -1 }, { 12317, 1600, -1 }, { 12318, 1600, -1 }, { 12319, 1600, -1 }, { 12314, 1549, -1 }, { 12315, 1549, -1 }, { 12316, 1549, -1 }, { 12317, 1549, -1 }, { 12318, 1549, -1 }, { 12319, 1549, -1 }, { 12314, 1536, -1 }, { 12315, 1536, -1 }, { 12316, 1536, -1 }, { 12317, 1536, -1 }, { 12318, 1536, -1 }, { 12319, 1536, -1 }, { 12314, 1602, -1 }, { 12315, 1602, -1 }, { 12316, 1602, -1 }, { 12317, 1602, -1 }, { 12318, 1602, -1 }, { 12319, 1602, -1 }, { 12314, 1603, -1 }, { 12315, 1603, -1 }, { 12316, 1603, -1 }, { 12317, 1603, -1 }, { 12318, 1603, -1 }, { 12319, 1603, -1 }, { 12314, 1483, -1 }, { 12315, 1483, -1 }, { 12316, 1483, -1 }, { 12317, 1483, -1 }, { 12318, 1483, -1 }, { 12319, 1483, -1 }, { 12314, 1609, -1 }, { 12315, 1609, -1 }, { 12316, 1609, -1 }, { 12317, 1609, -1 }, { 12318, 1609, -1 }, { 12319, 1609, -1 }, { 12314, 1146, -1 }, { 12315, 1146, -1 }, { 12316, 1146, -1 }, { 12317, 1146, -1 }, { 12318, 1146, -1 }, { 12319, 1146, -1 }, { 12314, 1147, -1 }, { 12315, 1147, -1 }, { 12316, 1147, -1 }, { 12317, 1147, -1 }, { 12318, 1147, -1 }, { 12319, 1147, -1 }, { 12314, 1148, -1 }, { 12315, 1148, -1 }, { 12316, 1148, -1 }, { 12317, 1148, -1 }, { 12318, 1148, -1 }, { 12319, 1148, -1 }, { 12349, 1775, -1 }, { 12350, 1775, -1 }, { 12351, 1775, -1 }, { 12352, 1775, -1 }, { 12353, 1775, -1 }, { 12354, 1775, -1 }, { 12355, 1775, -1 }, { 12356, 1775, -1 }, { 12349, 1982, -1 }, { 12350, 1982, -1 }, { 12351, 1982, -1 }, { 12352, 1982, -1 }, { 12353, 1982, -1 }, { 12354, 1982, -1 }, { 12355, 1982, -1 }, { 12356, 1982, -1 }, { 12349, 575, -1 }, { 12350, 575, -1 }, { 12351, 575, -1 }, { 12352, 575, -1 }, { 12353, 575, -1 }, { 12354, 575, -1 }, { 12355, 575, -1 }, { 12356, 575, -1 }, { 12349, 1061, -1 }, { 12350, 1061, -1 }, { 12351, 1061, -1 }, { 12352, 1061, -1 }, { 12353, 1061, -1 }, { 12354, 1061, -1 }, { 12355, 1061, -1 }, { 12356, 1061, -1 }, { 12349, 1040, -1 }, { 12350, 1040, -1 }, { 12351, 1040, -1 }, { 12352, 1040, -1 }, { 12353, 1040, -1 }, { 12354, 1040, -1 }, { 12355, 1040, -1 }, { 12356, 1040, -1 }, { 12349, 984, -1 }, { 12350, 984, -1 }, { 12351, 984, -1 }, { 12352, 984, -1 }, { 12353, 984, -1 }, { 12354, 984, -1 }, { 12355, 984, -1 }, { 12356, 984, -1 }, { 12349, 97, -1 }, { 12350, 97, -1 }, { 12351, 97, -1 }, { 12352, 97, -1 }, { 12353, 97, -1 }, { 12354, 97, -1 }, { 12355, 97, -1 }, { 12356, 97, -1 }, { 12349, 1329, -1 }, { 12350, 1329, -1 }, { 12351, 1329, -1 }, { 12352, 1329, -1 }, { 12353, 1329, -1 }, { 12354, 1329, -1 }, { 12355, 1329, -1 }, { 12356, 1329, -1 }, { 12349, 190, -1 }, { 12350, 190, -1 }, { 12351, 190, -1 }, { 12352, 190, -1 }, { 12353, 190, -1 }, { 12354, 190, -1 }, { 12355, 190, -1 }, { 12356, 190, -1 }, { 12349, 1352, -1 }, { 12350, 1352, -1 }, { 12351, 1352, -1 }, { 12352, 1352, -1 }, { 12353, 1352, -1 }, { 12354, 1352, -1 }, { 12355, 1352, -1 }, { 12356, 1352, -1 }, { 12349, 1595, -1 }, { 12350, 1595, -1 }, { 12351, 1595, -1 }, { 12352, 1595, -1 }, { 12353, 1595, -1 }, { 12354, 1595, -1 }, { 12355, 1595, -1 }, { 12356, 1595, -1 }, { 12349, 1598, -1 }, { 12350, 1598, -1 }, { 12351, 1598, -1 }, { 12352, 1598, -1 }, { 12353, 1598, -1 }, { 12354, 1598, -1 }, { 12355, 1598, -1 }, { 12356, 1598, -1 }, { 12349, 1694, -1 }, { 12350, 1694, -1 }, { 12351, 1694, -1 }, { 12352, 1694, -1 }, { 12353, 1694, -1 }, { 12354, 1694, -1 }, { 12355, 1694, -1 }, { 12356, 1694, -1 }, { 12349, 807, -1 }, { 12350, 807, -1 }, { 12351, 807, -1 }, { 12352, 807, -1 }, { 12353, 807, -1 }, { 12354, 807, -1 }, { 12355, 807, -1 }, { 12356, 807, -1 }, { 12349, 687, -1 }, { 12350, 687, -1 }, { 12351, 687, -1 }, { 12352, 687, -1 }, { 12353, 687, -1 }, { 12354, 687, -1 }, { 12355, 687, -1 }, { 12356, 687, -1 }, { 12349, 692, -1 }, { 12350, 692, -1 }, { 12351, 692, -1 }, { 12352, 692, -1 }, { 12353, 692, -1 }, { 12354, 692, -1 }, { 12355, 692, -1 }, { 12356, 692, -1 }, { 12349, 1081, -1 }, { 12350, 1081, -1 }, { 12351, 1081, -1 }, { 12352, 1081, -1 }, { 12353, 1081, -1 }, { 12354, 1081, -1 }, { 12355, 1081, -1 }, { 12356, 1081, -1 }, { 12349, 977, -1 }, { 12350, 977, -1 }, { 12351, 977, -1 }, { 12352, 977, -1 }, { 12353, 977, -1 }, { 12354, 977, -1 }, { 12355, 977, -1 }, { 12356, 977, -1 }, { 12349, 139, -1 }, { 12350, 139, -1 }, { 12351, 139, -1 }, { 12352, 139, -1 }, { 12353, 139, -1 }, { 12354, 139, -1 }, { 12355, 139, -1 }, { 12356, 139, -1 }, { 12349, 169, -1 }, { 12350, 169, -1 }, { 12351, 169, -1 }, { 12352, 169, -1 }, { 12353, 169, -1 }, { 12354, 169, -1 }, { 12355, 169, -1 }, { 12356, 169, -1 }, { 12349, 854, -1 }, { 12350, 854, -1 }, { 12351, 854, -1 }, { 12352, 854, -1 }, { 12353, 854, -1 }, { 12354, 854, -1 }, { 12355, 854, -1 }, { 12356, 854, -1 }, { 12349, 182, -1 }, { 12350, 182, -1 }, { 12351, 182, -1 }, { 12352, 182, -1 }, { 12353, 182, -1 }, { 12354, 182, -1 }, { 12355, 182, -1 }, { 12356, 182, -1 }, { 12349, 896, -1 }, { 12350, 896, -1 }, { 12351, 896, -1 }, { 12352, 896, -1 }, { 12353, 896, -1 }, { 12354, 896, -1 }, { 12355, 896, -1 }, { 12356, 896, -1 }, { 12349, 698, -1 }, { 12350, 698, -1 }, { 12351, 698, -1 }, { 12352, 698, -1 }, { 12353, 698, -1 }, { 12354, 698, -1 }, { 12355, 698, -1 }, { 12356, 698, -1 }, { 12349, 298, -1 }, { 12350, 298, -1 }, { 12351, 298, -1 }, { 12352, 298, -1 }, { 12353, 298, -1 }, { 12354, 298, -1 }, { 12355, 298, -1 }, { 12356, 298, -1 }, { 12349, 278, -1 }, { 12350, 278, -1 }, { 12351, 278, -1 }, { 12352, 278, -1 }, { 12353, 278, -1 }, { 12354, 278, -1 }, { 12355, 278, -1 }, { 12356, 278, -1 }, { 12349, 1567, -1 }, { 12350, 1567, -1 }, { 12351, 1567, -1 }, { 12352, 1567, -1 }, { 12353, 1567, -1 }, { 12354, 1567, -1 }, { 12355, 1567, -1 }, { 12356, 1567, -1 }, { 12349, 1340, -1 }, { 12350, 1340, -1 }, { 12351, 1340, -1 }, { 12352, 1340, -1 }, { 12353, 1340, -1 }, { 12354, 1340, -1 }, { 12355, 1340, -1 }, { 12356, 1340, -1 }, { 12349, 883, -1 }, { 12350, 883, -1 }, { 12351, 883, -1 }, { 12352, 883, -1 }, { 12353, 883, -1 }, { 12354, 883, -1 }, { 12355, 883, -1 }, { 12356, 883, -1 }, { 12349, 1607, -1 }, { 12350, 1607, -1 }, { 12351, 1607, -1 }, { 12352, 1607, -1 }, { 12353, 1607, -1 }, { 12354, 1607, -1 }, { 12355, 1607, -1 }, { 12356, 1607, -1 }, { 12349, 288, -1 }, { 12350, 288, -1 }, { 12351, 288, -1 }, { 12352, 288, -1 }, { 12353, 288, -1 }, { 12354, 288, -1 }, { 12355, 288, -1 }, { 12356, 288, -1 }, { 12349, 1949, -1 }, { 12350, 1949, -1 }, { 12351, 1949, -1 }, { 12352, 1949, -1 }, { 12353, 1949, -1 }, { 12354, 1949, -1 }, { 12355, 1949, -1 }, { 12356, 1949, -1 }, { 12349, 1822, -1 }, { 12350, 1822, -1 }, { 12351, 1822, -1 }, { 12352, 1822, -1 }, { 12353, 1822, -1 }, { 12354, 1822, -1 }, { 12355, 1822, -1 }, { 12356, 1822, -1 }, { 12349, 1995, -1 }, { 12350, 1995, -1 }, { 12351, 1995, -1 }, { 12352, 1995, -1 }, { 12353, 1995, -1 }, { 12354, 1995, -1 }, { 12355, 1995, -1 }, { 12356, 1995, -1 }, { 12349, 1496, -1 }, { 12350, 1496, -1 }, { 12351, 1496, -1 }, { 12352, 1496, -1 }, { 12353, 1496, -1 }, { 12354, 1496, -1 }, { 12355, 1496, -1 }, { 12356, 1496, -1 }, { 12349, 1493, -1 }, { 12350, 1493, -1 }, { 12351, 1493, -1 }, { 12352, 1493, -1 }, { 12353, 1493, -1 }, { 12354, 1493, -1 }, { 12355, 1493, -1 }, { 12356, 1493, -1 }, { 12349, 1489, -1 }, { 12350, 1489, -1 }, { 12351, 1489, -1 }, { 12352, 1489, -1 }, { 12353, 1489, -1 }, { 12354, 1489, -1 }, { 12355, 1489, -1 }, { 12356, 1489, -1 }, { 12349, 1359, -1 }, { 12350, 1359, -1 }, { 12351, 1359, -1 }, { 12352, 1359, -1 }, { 12353, 1359, -1 }, { 12354, 1359, -1 }, { 12355, 1359, -1 }, { 12356, 1359, -1 }, { 12349, 1297, -1 }, { 12350, 1297, -1 }, { 12351, 1297, -1 }, { 12352, 1297, -1 }, { 12353, 1297, -1 }, { 12354, 1297, -1 }, { 12355, 1297, -1 }, { 12356, 1297, -1 }, { 12349, 1306, -1 }, { 12350, 1306, -1 }, { 12351, 1306, -1 }, { 12352, 1306, -1 }, { 12353, 1306, -1 }, { 12354, 1306, -1 }, { 12355, 1306, -1 }, { 12356, 1306, -1 }, { 12349, 905, -1 }, { 12350, 905, -1 }, { 12351, 905, -1 }, { 12352, 905, -1 }, { 12353, 905, -1 }, { 12354, 905, -1 }, { 12355, 905, -1 }, { 12356, 905, -1 }, { 12349, 1796, -1 }, { 12350, 1796, -1 }, { 12351, 1796, -1 }, { 12352, 1796, -1 }, { 12353, 1796, -1 }, { 12354, 1796, -1 }, { 12355, 1796, -1 }, { 12356, 1796, -1 }, { 12349, 1659, -1 }, { 12350, 1659, -1 }, { 12351, 1659, -1 }, { 12352, 1659, -1 }, { 12353, 1659, -1 }, { 12354, 1659, -1 }, { 12355, 1659, -1 }, { 12356, 1659, -1 }, { 12349, 1525, -1 }, { 12350, 1525, -1 }, { 12351, 1525, -1 }, { 12352, 1525, -1 }, { 12353, 1525, -1 }, { 12354, 1525, -1 }, { 12355, 1525, -1 }, { 12356, 1525, -1 }, { 12349, 1481, -1 }, { 12350, 1481, -1 }, { 12351, 1481, -1 }, { 12352, 1481, -1 }, { 12353, 1481, -1 }, { 12354, 1481, -1 }, { 12355, 1481, -1 }, { 12356, 1481, -1 }, { 12349, 1503, -1 }, { 12350, 1503, -1 }, { 12351, 1503, -1 }, { 12352, 1503, -1 }, { 12353, 1503, -1 }, { 12354, 1503, -1 }, { 12355, 1503, -1 }, { 12356, 1503, -1 }, { 12349, 1507, -1 }, { 12350, 1507, -1 }, { 12351, 1507, -1 }, { 12352, 1507, -1 }, { 12353, 1507, -1 }, { 12354, 1507, -1 }, { 12355, 1507, -1 }, { 12356, 1507, -1 }, { 12349, 1511, -1 }, { 12350, 1511, -1 }, { 12351, 1511, -1 }, { 12352, 1511, -1 }, { 12353, 1511, -1 }, { 12354, 1511, -1 }, { 12355, 1511, -1 }, { 12356, 1511, -1 }, { 12408, 1775, -1 }, { 12409, 1775, -1 }, { 12410, 1775, -1 }, { 12411, 1775, -1 }, { 12412, 1775, -1 }, { 12408, 1982, -1 }, { 12409, 1982, -1 }, { 12410, 1982, -1 }, { 12411, 1982, -1 }, { 12412, 1982, -1 }, { 12408, 575, -1 }, { 12409, 575, -1 }, { 12410, 575, -1 }, { 12411, 575, -1 }, { 12412, 575, -1 }, { 12408, 1061, -1 }, { 12409, 1061, -1 }, { 12410, 1061, -1 }, { 12411, 1061, -1 }, { 12412, 1061, -1 }, { 12408, 1040, -1 }, { 12409, 1040, -1 }, { 12410, 1040, -1 }, { 12411, 1040, -1 }, { 12412, 1040, -1 }, { 12408, 984, -1 }, { 12409, 984, -1 }, { 12410, 984, -1 }, { 12411, 984, -1 }, { 12412, 984, -1 }, { 12408, 97, -1 }, { 12409, 97, -1 }, { 12410, 97, -1 }, { 12411, 97, -1 }, { 12412, 97, -1 }, { 12408, 1329, -1 }, { 12409, 1329, -1 }, { 12410, 1329, -1 }, { 12411, 1329, -1 }, { 12412, 1329, -1 }, { 12408, 190, -1 }, { 12409, 190, -1 }, { 12410, 190, -1 }, { 12411, 190, -1 }, { 12412, 190, -1 }, { 12408, 1352, -1 }, { 12409, 1352, -1 }, { 12410, 1352, -1 }, { 12411, 1352, -1 }, { 12412, 1352, -1 }, { 12408, 1595, -1 }, { 12409, 1595, -1 }, { 12410, 1595, -1 }, { 12411, 1595, -1 }, { 12412, 1595, -1 }, { 12408, 1598, -1 }, { 12409, 1598, -1 }, { 12410, 1598, -1 }, { 12411, 1598, -1 }, { 12412, 1598, -1 }, { 12408, 1694, -1 }, { 12409, 1694, -1 }, { 12410, 1694, -1 }, { 12411, 1694, -1 }, { 12412, 1694, -1 }, { 12408, 807, -1 }, { 12409, 807, -1 }, { 12410, 807, -1 }, { 12411, 807, -1 }, { 12412, 807, -1 }, { 12408, 687, -1 }, { 12409, 687, -1 }, { 12410, 687, -1 }, { 12411, 687, -1 }, { 12412, 687, -1 }, { 12408, 692, -1 }, { 12409, 692, -1 }, { 12410, 692, -1 }, { 12411, 692, -1 }, { 12412, 692, -1 }, { 12408, 1081, -1 }, { 12409, 1081, -1 }, { 12410, 1081, -1 }, { 12411, 1081, -1 }, { 12412, 1081, -1 }, { 12408, 977, -1 }, { 12409, 977, -1 }, { 12410, 977, -1 }, { 12411, 977, -1 }, { 12412, 977, -1 }, { 12408, 139, -1 }, { 12409, 139, -1 }, { 12410, 139, -1 }, { 12411, 139, -1 }, { 12412, 139, -1 }, { 12408, 169, -1 }, { 12409, 169, -1 }, { 12410, 169, -1 }, { 12411, 169, -1 }, { 12412, 169, -1 }, { 12408, 854, -1 }, { 12409, 854, -1 }, { 12410, 854, -1 }, { 12411, 854, -1 }, { 12412, 854, -1 }, { 12408, 182, -1 }, { 12409, 182, -1 }, { 12410, 182, -1 }, { 12411, 182, -1 }, { 12412, 182, -1 }, { 12408, 896, -1 }, { 12409, 896, -1 }, { 12410, 896, -1 }, { 12411, 896, -1 }, { 12412, 896, -1 }, { 12408, 698, -1 }, { 12409, 698, -1 }, { 12410, 698, -1 }, { 12411, 698, -1 }, { 12412, 698, -1 }, { 12408, 298, -1 }, { 12409, 298, -1 }, { 12410, 298, -1 }, { 12411, 298, -1 }, { 12412, 298, -1 }, { 12408, 278, -1 }, { 12409, 278, -1 }, { 12410, 278, -1 }, { 12411, 278, -1 }, { 12412, 278, -1 }, { 12408, 1567, -1 }, { 12409, 1567, -1 }, { 12410, 1567, -1 }, { 12411, 1567, -1 }, { 12412, 1567, -1 }, { 12408, 1340, -1 }, { 12409, 1340, -1 }, { 12410, 1340, -1 }, { 12411, 1340, -1 }, { 12412, 1340, -1 }, { 12408, 883, -1 }, { 12409, 883, -1 }, { 12410, 883, -1 }, { 12411, 883, -1 }, { 12412, 883, -1 }, { 12408, 1607, -1 }, { 12409, 1607, -1 }, { 12410, 1607, -1 }, { 12411, 1607, -1 }, { 12412, 1607, -1 }, { 12408, 288, -1 }, { 12409, 288, -1 }, { 12410, 288, -1 }, { 12411, 288, -1 }, { 12412, 288, -1 }, { 12408, 1949, -1 }, { 12409, 1949, -1 }, { 12410, 1949, -1 }, { 12411, 1949, -1 }, { 12412, 1949, -1 }, { 12408, 1822, -1 }, { 12409, 1822, -1 }, { 12410, 1822, -1 }, { 12411, 1822, -1 }, { 12412, 1822, -1 }, { 12408, 1995, -1 }, { 12409, 1995, -1 }, { 12410, 1995, -1 }, { 12411, 1995, -1 }, { 12412, 1995, -1 }, { 12408, 1496, -1 }, { 12409, 1496, -1 }, { 12410, 1496, -1 }, { 12411, 1496, -1 }, { 12412, 1496, -1 }, { 12408, 1493, -1 }, { 12409, 1493, -1 }, { 12410, 1493, -1 }, { 12411, 1493, -1 }, { 12412, 1493, -1 }, { 12408, 1489, -1 }, { 12409, 1489, -1 }, { 12410, 1489, -1 }, { 12411, 1489, -1 }, { 12412, 1489, -1 }, { 12408, 1359, -1 }, { 12409, 1359, -1 }, { 12410, 1359, -1 }, { 12411, 1359, -1 }, { 12412, 1359, -1 }, { 12408, 1297, -1 }, { 12409, 1297, -1 }, { 12410, 1297, -1 }, { 12411, 1297, -1 }, { 12412, 1297, -1 }, { 12408, 1306, -1 }, { 12409, 1306, -1 }, { 12410, 1306, -1 }, { 12411, 1306, -1 }, { 12412, 1306, -1 }, { 12408, 905, -1 }, { 12409, 905, -1 }, { 12410, 905, -1 }, { 12411, 905, -1 }, { 12412, 905, -1 }, { 12408, 1796, -1 }, { 12409, 1796, -1 }, { 12410, 1796, -1 }, { 12411, 1796, -1 }, { 12412, 1796, -1 }, { 12408, 1659, -1 }, { 12409, 1659, -1 }, { 12410, 1659, -1 }, { 12411, 1659, -1 }, { 12412, 1659, -1 }, { 12408, 1525, -1 }, { 12409, 1525, -1 }, { 12410, 1525, -1 }, { 12411, 1525, -1 }, { 12412, 1525, -1 }, { 12408, 1481, -1 }, { 12409, 1481, -1 }, { 12410, 1481, -1 }, { 12411, 1481, -1 }, { 12412, 1481, -1 }, { 12408, 1503, -1 }, { 12409, 1503, -1 }, { 12410, 1503, -1 }, { 12411, 1503, -1 }, { 12412, 1503, -1 }, { 12408, 1507, -1 }, { 12409, 1507, -1 }, { 12410, 1507, -1 }, { 12411, 1507, -1 }, { 12412, 1507, -1 }, { 12408, 1511, -1 }, { 12409, 1511, -1 }, { 12410, 1511, -1 }, { 12411, 1511, -1 }, { 12412, 1511, -1 }, { 12400, 1258, -1 }, { 12401, 1258, -1 }, { 12402, 1258, -1 }, { 12403, 1258, -1 }, { 12404, 1258, -1 }, { 12400, 1257, -1 }, { 12401, 1257, -1 }, { 12402, 1257, -1 }, { 12403, 1257, -1 }, { 12404, 1257, -1 }, { 12400, 1256, -1 }, { 12401, 1256, -1 }, { 12402, 1256, -1 }, { 12403, 1256, -1 }, { 12404, 1256, -1 }, { 12400, 1259, -1 }, { 12401, 1259, -1 }, { 12402, 1259, -1 }, { 12403, 1259, -1 }, { 12404, 1259, -1 }, { 12400, 1737, -1 }, { 12401, 1737, -1 }, { 12402, 1737, -1 }, { 12403, 1737, -1 }, { 12404, 1737, -1 }, { 12400, 1778, -1 }, { 12401, 1778, -1 }, { 12402, 1778, -1 }, { 12403, 1778, -1 }, { 12404, 1778, -1 }, { 12400, 1777, -1 }, { 12401, 1777, -1 }, { 12402, 1777, -1 }, { 12403, 1777, -1 }, { 12404, 1777, -1 }, { 12400, 2004, -1 }, { 12401, 2004, -1 }, { 12402, 2004, -1 }, { 12403, 2004, -1 }, { 12404, 2004, -1 }, { 12400, 1867, -1 }, { 12401, 1867, -1 }, { 12402, 1867, -1 }, { 12403, 1867, -1 }, { 12404, 1867, -1 }, { 12400, 1923, -1 }, { 12401, 1923, -1 }, { 12402, 1923, -1 }, { 12403, 1923, -1 }, { 12404, 1923, -1 }, { 12400, 1922, -1 }, { 12401, 1922, -1 }, { 12402, 1922, -1 }, { 12403, 1922, -1 }, { 12404, 1922, -1 }, { 12400, 1868, -1 }, { 12401, 1868, -1 }, { 12402, 1868, -1 }, { 12403, 1868, -1 }, { 12404, 1868, -1 }, { 12400, 1984, -1 }, { 12401, 1984, -1 }, { 12402, 1984, -1 }, { 12403, 1984, -1 }, { 12404, 1984, -1 }, { 12400, 1947, -1 }, { 12401, 1947, -1 }, { 12402, 1947, -1 }, { 12403, 1947, -1 }, { 12404, 1947, -1 }, { 12400, 1924, -1 }, { 12401, 1924, -1 }, { 12402, 1924, -1 }, { 12403, 1924, -1 }, { 12404, 1924, -1 }, { 12400, 1925, -1 }, { 12401, 1925, -1 }, { 12402, 1925, -1 }, { 12403, 1925, -1 }, { 12404, 1925, -1 }, { 12400, 1957, -1 }, { 12401, 1957, -1 }, { 12402, 1957, -1 }, { 12403, 1957, -1 }, { 12404, 1957, -1 }, { 12400, 1926, -1 }, { 12401, 1926, -1 }, { 12402, 1926, -1 }, { 12403, 1926, -1 }, { 12404, 1926, -1 }, { 12400, 1951, -1 }, { 12401, 1951, -1 }, { 12402, 1951, -1 }, { 12403, 1951, -1 }, { 12404, 1951, -1 }, { 12400, 1831, -1 }, { 12401, 1831, -1 }, { 12402, 1831, -1 }, { 12403, 1831, -1 }, { 12404, 1831, -1 }, { 12400, 1768, -1 }, { 12401, 1768, -1 }, { 12402, 1768, -1 }, { 12403, 1768, -1 }, { 12404, 1768, -1 }, { 12400, 1913, -1 }, { 12401, 1913, -1 }, { 12402, 1913, -1 }, { 12403, 1913, -1 }, { 12404, 1913, -1 }, { 12400, 1912, -1 }, { 12401, 1912, -1 }, { 12402, 1912, -1 }, { 12403, 1912, -1 }, { 12404, 1912, -1 }, { 12400, 1914, -1 }, { 12401, 1914, -1 }, { 12402, 1914, -1 }, { 12403, 1914, -1 }, { 12404, 1914, -1 }, { 12400, 1794, -1 }, { 12401, 1794, -1 }, { 12402, 1794, -1 }, { 12403, 1794, -1 }, { 12404, 1794, -1 }, { 12400, 1802, -1 }, { 12401, 1802, -1 }, { 12402, 1802, -1 }, { 12403, 1802, -1 }, { 12404, 1802, -1 }, { 12400, 1803, -1 }, { 12401, 1803, -1 }, { 12402, 1803, -1 }, { 12403, 1803, -1 }, { 12404, 1803, -1 }, { 12400, 1804, -1 }, { 12401, 1804, -1 }, { 12402, 1804, -1 }, { 12403, 1804, -1 }, { 12404, 1804, -1 }, { 12400, 1850, -1 }, { 12401, 1850, -1 }, { 12402, 1850, -1 }, { 12403, 1850, -1 }, { 12404, 1850, -1 }, { 12400, 1852, -1 }, { 12401, 1852, -1 }, { 12402, 1852, -1 }, { 12403, 1852, -1 }, { 12404, 1852, -1 }, { 12400, 1881, -1 }, { 12401, 1881, -1 }, { 12402, 1881, -1 }, { 12403, 1881, -1 }, { 12404, 1881, -1 }, { 12400, 1891, -1 }, { 12401, 1891, -1 }, { 12402, 1891, -1 }, { 12403, 1891, -1 }, { 12404, 1891, -1 }, { 12400, 1716, -1 }, { 12401, 1716, -1 }, { 12402, 1716, -1 }, { 12403, 1716, -1 }, { 12404, 1716, -1 }, { 12400, 1682, -1 }, { 12401, 1682, -1 }, { 12402, 1682, -1 }, { 12403, 1682, -1 }, { 12404, 1682, -1 }, { 12400, 419, -1 }, { 12401, 419, -1 }, { 12402, 419, -1 }, { 12403, 419, -1 }, { 12404, 419, -1 }, { 12400, 632, -1 }, { 12401, 632, -1 }, { 12402, 632, -1 }, { 12403, 632, -1 }, { 12404, 632, -1 }, { 12400, 634, -1 }, { 12401, 634, -1 }, { 12402, 634, -1 }, { 12403, 634, -1 }, { 12404, 634, -1 }, { 12400, 417, -1 }, { 12401, 417, -1 }, { 12402, 417, -1 }, { 12403, 417, -1 }, { 12404, 417, -1 }, { 12400, 506, -1 }, { 12401, 506, -1 }, { 12402, 506, -1 }, { 12403, 506, -1 }, { 12404, 506, -1 }, { 12400, 577, -1 }, { 12401, 577, -1 }, { 12402, 577, -1 }, { 12403, 577, -1 }, { 12404, 577, -1 }, { 12400, 505, -1 }, { 12401, 505, -1 }, { 12402, 505, -1 }, { 12403, 505, -1 }, { 12404, 505, -1 }, { 12400, 950, -1 }, { 12401, 950, -1 }, { 12402, 950, -1 }, { 12403, 950, -1 }, { 12404, 950, -1 }, { 12400, 971, -1 }, { 12401, 971, -1 }, { 12402, 971, -1 }, { 12403, 971, -1 }, { 12404, 971, -1 }, { 12400, 1119, -1 }, { 12401, 1119, -1 }, { 12402, 1119, -1 }, { 12403, 1119, -1 }, { 12404, 1119, -1 }, { 12400, 1083, -1 }, { 12401, 1083, -1 }, { 12402, 1083, -1 }, { 12403, 1083, -1 }, { 12404, 1083, -1 }, { 12400, 1063, -1 }, { 12401, 1063, -1 }, { 12402, 1063, -1 }, { 12403, 1063, -1 }, { 12404, 1063, -1 }, { 12400, 1038, -1 }, { 12401, 1038, -1 }, { 12402, 1038, -1 }, { 12403, 1038, -1 }, { 12404, 1038, -1 }, { 12400, 986, -1 }, { 12401, 986, -1 }, { 12402, 986, -1 }, { 12403, 986, -1 }, { 12404, 986, -1 }, { 12400, 979, -1 }, { 12401, 979, -1 }, { 12402, 979, -1 }, { 12403, 979, -1 }, { 12404, 979, -1 }, { 12400, 141, -1 }, { 12401, 141, -1 }, { 12402, 141, -1 }, { 12403, 141, -1 }, { 12404, 141, -1 }, { 12400, 471, -1 }, { 12401, 471, -1 }, { 12402, 471, -1 }, { 12403, 471, -1 }, { 12404, 471, -1 }, { 12400, 63, -1 }, { 12401, 63, -1 }, { 12402, 63, -1 }, { 12403, 63, -1 }, { 12404, 63, -1 }, { 12400, 7, -1 }, { 12401, 7, -1 }, { 12402, 7, -1 }, { 12403, 7, -1 }, { 12404, 7, -1 }, { 12400, 13, -1 }, { 12401, 13, -1 }, { 12402, 13, -1 }, { 12403, 13, -1 }, { 12404, 13, -1 }, { 12400, 23, -1 }, { 12401, 23, -1 }, { 12402, 23, -1 }, { 12403, 23, -1 }, { 12404, 23, -1 }, { 12400, 1779, -1 }, { 12401, 1779, -1 }, { 12402, 1779, -1 }, { 12403, 1779, -1 }, { 12404, 1779, -1 }, { 12400, 1985, -1 }, { 12401, 1985, -1 }, { 12402, 1985, -1 }, { 12403, 1985, -1 }, { 12404, 1985, -1 }, { 12400, 578, -1 }, { 12401, 578, -1 }, { 12402, 578, -1 }, { 12403, 578, -1 }, { 12404, 578, -1 }, { 12400, 1064, -1 }, { 12401, 1064, -1 }, { 12402, 1064, -1 }, { 12403, 1064, -1 }, { 12404, 1064, -1 }, { 12400, 1042, -1 }, { 12401, 1042, -1 }, { 12402, 1042, -1 }, { 12403, 1042, -1 }, { 12404, 1042, -1 }, { 12400, 987, -1 }, { 12401, 987, -1 }, { 12402, 987, -1 }, { 12403, 987, -1 }, { 12404, 987, -1 }, { 12400, 100, -1 }, { 12401, 100, -1 }, { 12402, 100, -1 }, { 12403, 100, -1 }, { 12404, 100, -1 }, { 12400, 1331, -1 }, { 12401, 1331, -1 }, { 12402, 1331, -1 }, { 12403, 1331, -1 }, { 12404, 1331, -1 }, { 12400, 192, -1 }, { 12401, 192, -1 }, { 12402, 192, -1 }, { 12403, 192, -1 }, { 12404, 192, -1 }, { 12400, 1355, -1 }, { 12401, 1355, -1 }, { 12402, 1355, -1 }, { 12403, 1355, -1 }, { 12404, 1355, -1 }, { 12400, 1597, -1 }, { 12401, 1597, -1 }, { 12402, 1597, -1 }, { 12403, 1597, -1 }, { 12404, 1597, -1 }, { 12400, 1601, -1 }, { 12401, 1601, -1 }, { 12402, 1601, -1 }, { 12403, 1601, -1 }, { 12404, 1601, -1 }, { 12400, 1725, -1 }, { 12401, 1725, -1 }, { 12402, 1725, -1 }, { 12403, 1725, -1 }, { 12404, 1725, -1 }, { 12400, 809, -1 }, { 12401, 809, -1 }, { 12402, 809, -1 }, { 12403, 809, -1 }, { 12404, 809, -1 }, { 12400, 690, -1 }, { 12401, 690, -1 }, { 12402, 690, -1 }, { 12403, 690, -1 }, { 12404, 690, -1 }, { 12400, 694, -1 }, { 12401, 694, -1 }, { 12402, 694, -1 }, { 12403, 694, -1 }, { 12404, 694, -1 }, { 12400, 1084, -1 }, { 12401, 1084, -1 }, { 12402, 1084, -1 }, { 12403, 1084, -1 }, { 12404, 1084, -1 }, { 12400, 980, -1 }, { 12401, 980, -1 }, { 12402, 980, -1 }, { 12403, 980, -1 }, { 12404, 980, -1 }, { 12400, 142, -1 }, { 12401, 142, -1 }, { 12402, 142, -1 }, { 12403, 142, -1 }, { 12404, 142, -1 }, { 12400, 607, -1 }, { 12401, 607, -1 }, { 12402, 607, -1 }, { 12403, 607, -1 }, { 12404, 607, -1 }, { 12400, 861, -1 }, { 12401, 861, -1 }, { 12402, 861, -1 }, { 12403, 861, -1 }, { 12404, 861, -1 }, { 12400, 260, -1 }, { 12401, 260, -1 }, { 12402, 260, -1 }, { 12403, 260, -1 }, { 12404, 260, -1 }, { 12400, 899, -1 }, { 12401, 899, -1 }, { 12402, 899, -1 }, { 12403, 899, -1 }, { 12404, 899, -1 }, { 12400, 701, -1 }, { 12401, 701, -1 }, { 12402, 701, -1 }, { 12403, 701, -1 }, { 12404, 701, -1 }, { 12400, 33, -1 }, { 12401, 33, -1 }, { 12402, 33, -1 }, { 12403, 33, -1 }, { 12404, 33, -1 }, { 12400, 301, -1 }, { 12401, 301, -1 }, { 12402, 301, -1 }, { 12403, 301, -1 }, { 12404, 301, -1 }, { 12400, 281, -1 }, { 12401, 281, -1 }, { 12402, 281, -1 }, { 12403, 281, -1 }, { 12404, 281, -1 }, { 12400, 1570, -1 }, { 12401, 1570, -1 }, { 12402, 1570, -1 }, { 12403, 1570, -1 }, { 12404, 1570, -1 }, { 12400, 1343, -1 }, { 12401, 1343, -1 }, { 12402, 1343, -1 }, { 12403, 1343, -1 }, { 12404, 1343, -1 }, { 12400, 886, -1 }, { 12401, 886, -1 }, { 12402, 886, -1 }, { 12403, 886, -1 }, { 12404, 886, -1 }, { 12400, 1610, -1 }, { 12401, 1610, -1 }, { 12402, 1610, -1 }, { 12403, 1610, -1 }, { 12404, 1610, -1 }, { 12400, 292, -1 }, { 12401, 292, -1 }, { 12402, 292, -1 }, { 12403, 292, -1 }, { 12404, 292, -1 }, { 12400, 1952, -1 }, { 12401, 1952, -1 }, { 12402, 1952, -1 }, { 12403, 1952, -1 }, { 12404, 1952, -1 }, { 12400, 1824, -1 }, { 12401, 1824, -1 }, { 12402, 1824, -1 }, { 12403, 1824, -1 }, { 12404, 1824, -1 }, { 12400, 1997, -1 }, { 12401, 1997, -1 }, { 12402, 1997, -1 }, { 12403, 1997, -1 }, { 12404, 1997, -1 }, { 12400, 1498, -1 }, { 12401, 1498, -1 }, { 12402, 1498, -1 }, { 12403, 1498, -1 }, { 12404, 1498, -1 }, { 12400, 1495, -1 }, { 12401, 1495, -1 }, { 12402, 1495, -1 }, { 12403, 1495, -1 }, { 12404, 1495, -1 }, { 12400, 1492, -1 }, { 12401, 1492, -1 }, { 12402, 1492, -1 }, { 12403, 1492, -1 }, { 12404, 1492, -1 }, { 12400, 1362, -1 }, { 12401, 1362, -1 }, { 12402, 1362, -1 }, { 12403, 1362, -1 }, { 12404, 1362, -1 }, { 12400, 1300, -1 }, { 12401, 1300, -1 }, { 12402, 1300, -1 }, { 12403, 1300, -1 }, { 12404, 1300, -1 }, { 12400, 1309, -1 }, { 12401, 1309, -1 }, { 12402, 1309, -1 }, { 12403, 1309, -1 }, { 12404, 1309, -1 }, { 12400, 908, -1 }, { 12401, 908, -1 }, { 12402, 908, -1 }, { 12403, 908, -1 }, { 12404, 908, -1 }, { 12400, 1798, -1 }, { 12401, 1798, -1 }, { 12402, 1798, -1 }, { 12403, 1798, -1 }, { 12404, 1798, -1 }, { 12400, 1662, -1 }, { 12401, 1662, -1 }, { 12402, 1662, -1 }, { 12403, 1662, -1 }, { 12404, 1662, -1 }, { 12400, 1528, -1 }, { 12401, 1528, -1 }, { 12402, 1528, -1 }, { 12403, 1528, -1 }, { 12404, 1528, -1 }, { 12400, 1484, -1 }, { 12401, 1484, -1 }, { 12402, 1484, -1 }, { 12403, 1484, -1 }, { 12404, 1484, -1 }, { 12400, 1506, -1 }, { 12401, 1506, -1 }, { 12402, 1506, -1 }, { 12403, 1506, -1 }, { 12404, 1506, -1 }, { 12400, 1510, -1 }, { 12401, 1510, -1 }, { 12402, 1510, -1 }, { 12403, 1510, -1 }, { 12404, 1510, -1 }, { 12400, 1514, -1 }, { 12401, 1514, -1 }, { 12402, 1514, -1 }, { 12403, 1514, -1 }, { 12404, 1514, -1 }, { 12400, 743, -1 }, { 12401, 743, -1 }, { 12402, 743, -1 }, { 12403, 743, -1 }, { 12404, 743, -1 }, { 12400, 1347, -1 }, { 12401, 1347, -1 }, { 12402, 1347, -1 }, { 12403, 1347, -1 }, { 12404, 1347, -1 }, { 12400, 662, -1 }, { 12401, 662, -1 }, { 12402, 662, -1 }, { 12403, 662, -1 }, { 12404, 662, -1 }, { 12400, 1946, -1 }, { 12401, 1946, -1 }, { 12402, 1946, -1 }, { 12403, 1946, -1 }, { 12404, 1946, -1 }, { 12400, 1325, -1 }, { 12401, 1325, -1 }, { 12402, 1325, -1 }, { 12403, 1325, -1 }, { 12404, 1325, -1 }, { 12400, 1776, -1 }, { 12401, 1776, -1 }, { 12402, 1776, -1 }, { 12403, 1776, -1 }, { 12404, 1776, -1 }, { 12400, 1983, -1 }, { 12401, 1983, -1 }, { 12402, 1983, -1 }, { 12403, 1983, -1 }, { 12404, 1983, -1 }, { 12400, 576, -1 }, { 12401, 576, -1 }, { 12402, 576, -1 }, { 12403, 576, -1 }, { 12404, 576, -1 }, { 12400, 1062, -1 }, { 12401, 1062, -1 }, { 12402, 1062, -1 }, { 12403, 1062, -1 }, { 12404, 1062, -1 }, { 12400, 1041, -1 }, { 12401, 1041, -1 }, { 12402, 1041, -1 }, { 12403, 1041, -1 }, { 12404, 1041, -1 }, { 12400, 985, -1 }, { 12401, 985, -1 }, { 12402, 985, -1 }, { 12403, 985, -1 }, { 12404, 985, -1 }, { 12400, 98, -1 }, { 12401, 98, -1 }, { 12402, 98, -1 }, { 12403, 98, -1 }, { 12404, 98, -1 }, { 12400, 1330, -1 }, { 12401, 1330, -1 }, { 12402, 1330, -1 }, { 12403, 1330, -1 }, { 12404, 1330, -1 }, { 12400, 1849, -1 }, { 12401, 1849, -1 }, { 12402, 1849, -1 }, { 12403, 1849, -1 }, { 12404, 1849, -1 }, { 12400, 191, -1 }, { 12401, 191, -1 }, { 12402, 191, -1 }, { 12403, 191, -1 }, { 12404, 191, -1 }, { 12400, 1353, -1 }, { 12401, 1353, -1 }, { 12402, 1353, -1 }, { 12403, 1353, -1 }, { 12404, 1353, -1 }, { 12400, 1596, -1 }, { 12401, 1596, -1 }, { 12402, 1596, -1 }, { 12403, 1596, -1 }, { 12404, 1596, -1 }, { 12400, 1599, -1 }, { 12401, 1599, -1 }, { 12402, 1599, -1 }, { 12403, 1599, -1 }, { 12404, 1599, -1 }, { 12400, 1724, -1 }, { 12401, 1724, -1 }, { 12402, 1724, -1 }, { 12403, 1724, -1 }, { 12404, 1724, -1 }, { 12400, 808, -1 }, { 12401, 808, -1 }, { 12402, 808, -1 }, { 12403, 808, -1 }, { 12404, 808, -1 }, { 12400, 688, -1 }, { 12401, 688, -1 }, { 12402, 688, -1 }, { 12403, 688, -1 }, { 12404, 688, -1 }, { 12400, 693, -1 }, { 12401, 693, -1 }, { 12402, 693, -1 }, { 12403, 693, -1 }, { 12404, 693, -1 }, { 12400, 1082, -1 }, { 12401, 1082, -1 }, { 12402, 1082, -1 }, { 12403, 1082, -1 }, { 12404, 1082, -1 }, { 12400, 978, -1 }, { 12401, 978, -1 }, { 12402, 978, -1 }, { 12403, 978, -1 }, { 12404, 978, -1 }, { 12400, 140, -1 }, { 12401, 140, -1 }, { 12402, 140, -1 }, { 12403, 140, -1 }, { 12404, 140, -1 }, { 12400, 605, -1 }, { 12401, 605, -1 }, { 12402, 605, -1 }, { 12403, 605, -1 }, { 12404, 605, -1 }, { 12400, 855, -1 }, { 12401, 855, -1 }, { 12402, 855, -1 }, { 12403, 855, -1 }, { 12404, 855, -1 }, { 12400, 258, -1 }, { 12401, 258, -1 }, { 12402, 258, -1 }, { 12403, 258, -1 }, { 12404, 258, -1 }, { 12400, 897, -1 }, { 12401, 897, -1 }, { 12402, 897, -1 }, { 12403, 897, -1 }, { 12404, 897, -1 }, { 12400, 699, -1 }, { 12401, 699, -1 }, { 12402, 699, -1 }, { 12403, 699, -1 }, { 12404, 699, -1 }, { 12400, 10, -1 }, { 12401, 10, -1 }, { 12402, 10, -1 }, { 12403, 10, -1 }, { 12404, 10, -1 }, { 12400, 299, -1 }, { 12401, 299, -1 }, { 12402, 299, -1 }, { 12403, 299, -1 }, { 12404, 299, -1 }, { 12400, 279, -1 }, { 12401, 279, -1 }, { 12402, 279, -1 }, { 12403, 279, -1 }, { 12404, 279, -1 }, { 12400, 1568, -1 }, { 12401, 1568, -1 }, { 12402, 1568, -1 }, { 12403, 1568, -1 }, { 12404, 1568, -1 }, { 12400, 1341, -1 }, { 12401, 1341, -1 }, { 12402, 1341, -1 }, { 12403, 1341, -1 }, { 12404, 1341, -1 }, { 12400, 884, -1 }, { 12401, 884, -1 }, { 12402, 884, -1 }, { 12403, 884, -1 }, { 12404, 884, -1 }, { 12400, 1608, -1 }, { 12401, 1608, -1 }, { 12402, 1608, -1 }, { 12403, 1608, -1 }, { 12404, 1608, -1 }, { 12400, 289, -1 }, { 12401, 289, -1 }, { 12402, 289, -1 }, { 12403, 289, -1 }, { 12404, 289, -1 }, { 12400, 1950, -1 }, { 12401, 1950, -1 }, { 12402, 1950, -1 }, { 12403, 1950, -1 }, { 12404, 1950, -1 }, { 12400, 1823, -1 }, { 12401, 1823, -1 }, { 12402, 1823, -1 }, { 12403, 1823, -1 }, { 12404, 1823, -1 }, { 12400, 1996, -1 }, { 12401, 1996, -1 }, { 12402, 1996, -1 }, { 12403, 1996, -1 }, { 12404, 1996, -1 }, { 12400, 1497, -1 }, { 12401, 1497, -1 }, { 12402, 1497, -1 }, { 12403, 1497, -1 }, { 12404, 1497, -1 }, { 12400, 1494, -1 }, { 12401, 1494, -1 }, { 12402, 1494, -1 }, { 12403, 1494, -1 }, { 12404, 1494, -1 }, { 12400, 1490, -1 }, { 12401, 1490, -1 }, { 12402, 1490, -1 }, { 12403, 1490, -1 }, { 12404, 1490, -1 }, { 12400, 1360, -1 }, { 12401, 1360, -1 }, { 12402, 1360, -1 }, { 12403, 1360, -1 }, { 12404, 1360, -1 }, { 12400, 1298, -1 }, { 12401, 1298, -1 }, { 12402, 1298, -1 }, { 12403, 1298, -1 }, { 12404, 1298, -1 }, { 12400, 1307, -1 }, { 12401, 1307, -1 }, { 12402, 1307, -1 }, { 12403, 1307, -1 }, { 12404, 1307, -1 }, { 12400, 906, -1 }, { 12401, 906, -1 }, { 12402, 906, -1 }, { 12403, 906, -1 }, { 12404, 906, -1 }, { 12400, 1797, -1 }, { 12401, 1797, -1 }, { 12402, 1797, -1 }, { 12403, 1797, -1 }, { 12404, 1797, -1 }, { 12400, 1660, -1 }, { 12401, 1660, -1 }, { 12402, 1660, -1 }, { 12403, 1660, -1 }, { 12404, 1660, -1 }, { 12400, 1526, -1 }, { 12401, 1526, -1 }, { 12402, 1526, -1 }, { 12403, 1526, -1 }, { 12404, 1526, -1 }, { 12400, 1482, -1 }, { 12401, 1482, -1 }, { 12402, 1482, -1 }, { 12403, 1482, -1 }, { 12404, 1482, -1 }, { 12400, 1504, -1 }, { 12401, 1504, -1 }, { 12402, 1504, -1 }, { 12403, 1504, -1 }, { 12404, 1504, -1 }, { 12400, 1508, -1 }, { 12401, 1508, -1 }, { 12402, 1508, -1 }, { 12403, 1508, -1 }, { 12404, 1508, -1 }, { 12400, 1512, -1 }, { 12401, 1512, -1 }, { 12402, 1512, -1 }, { 12403, 1512, -1 }, { 12404, 1512, -1 }, { 12400, 652, -1 }, { 12401, 652, -1 }, { 12402, 652, -1 }, { 12403, 652, -1 }, { 12404, 652, -1 }, { 12400, 152, -1 }, { 12401, 152, -1 }, { 12402, 152, -1 }, { 12403, 152, -1 }, { 12404, 152, -1 }, { 12400, 494, -1 }, { 12401, 494, -1 }, { 12402, 494, -1 }, { 12403, 494, -1 }, { 12404, 494, -1 }, { 12400, 14, -1 }, { 12401, 14, -1 }, { 12402, 14, -1 }, { 12403, 14, -1 }, { 12404, 14, -1 }, { 12400, 134, -1 }, { 12401, 134, -1 }, { 12402, 134, -1 }, { 12403, 134, -1 }, { 12404, 134, -1 }, { 12400, 147, -1 }, { 12401, 147, -1 }, { 12402, 147, -1 }, { 12403, 147, -1 }, { 12404, 147, -1 }, { 12400, 15, -1 }, { 12401, 15, -1 }, { 12402, 15, -1 }, { 12403, 15, -1 }, { 12404, 15, -1 }, { 12400, 16, -1 }, { 12401, 16, -1 }, { 12402, 16, -1 }, { 12403, 16, -1 }, { 12404, 16, -1 }, { 12400, 410, -1 }, { 12401, 410, -1 }, { 12402, 410, -1 }, { 12403, 410, -1 }, { 12404, 410, -1 }, { 12400, 399, -1 }, { 12401, 399, -1 }, { 12402, 399, -1 }, { 12403, 399, -1 }, { 12404, 399, -1 }, { 12400, 400, -1 }, { 12401, 400, -1 }, { 12402, 400, -1 }, { 12403, 400, -1 }, { 12404, 400, -1 }, { 12400, 416, -1 }, { 12401, 416, -1 }, { 12402, 416, -1 }, { 12403, 416, -1 }, { 12404, 416, -1 }, { 12400, 44, -1 }, { 12401, 44, -1 }, { 12402, 44, -1 }, { 12403, 44, -1 }, { 12404, 44, -1 }, { 12400, 17, -1 }, { 12401, 17, -1 }, { 12402, 17, -1 }, { 12403, 17, -1 }, { 12404, 17, -1 }, { 12400, 11, -1 }, { 12401, 11, -1 }, { 12402, 11, -1 }, { 12403, 11, -1 }, { 12404, 11, -1 }, { 12400, 12, -1 }, { 12401, 12, -1 }, { 12402, 12, -1 }, { 12403, 12, -1 }, { 12404, 12, -1 }, { 12400, 136, -1 }, { 12401, 136, -1 }, { 12402, 136, -1 }, { 12403, 136, -1 }, { 12404, 136, -1 }, { 12400, 689, -1 }, { 12401, 689, -1 }, { 12402, 689, -1 }, { 12403, 689, -1 }, { 12404, 689, -1 }, { 12400, 700, -1 }, { 12401, 700, -1 }, { 12402, 700, -1 }, { 12403, 700, -1 }, { 12404, 700, -1 }, { 12400, 1023, -1 }, { 12401, 1023, -1 }, { 12402, 1023, -1 }, { 12403, 1023, -1 }, { 12404, 1023, -1 }, { 12400, 653, -1 }, { 12401, 653, -1 }, { 12402, 653, -1 }, { 12403, 653, -1 }, { 12404, 653, -1 }, { 12400, 458, -1 }, { 12401, 458, -1 }, { 12402, 458, -1 }, { 12403, 458, -1 }, { 12404, 458, -1 }, { 12400, 459, -1 }, { 12401, 459, -1 }, { 12402, 459, -1 }, { 12403, 459, -1 }, { 12404, 459, -1 }, { 12400, 493, -1 }, { 12401, 493, -1 }, { 12402, 493, -1 }, { 12403, 493, -1 }, { 12404, 493, -1 }, { 12400, 475, -1 }, { 12401, 475, -1 }, { 12402, 475, -1 }, { 12403, 475, -1 }, { 12404, 475, -1 }, { 12400, 455, -1 }, { 12401, 455, -1 }, { 12402, 455, -1 }, { 12403, 455, -1 }, { 12404, 455, -1 }, { 12400, 56, -1 }, { 12401, 56, -1 }, { 12402, 56, -1 }, { 12403, 56, -1 }, { 12404, 56, -1 }, { 12400, 307, -1 }, { 12401, 307, -1 }, { 12402, 307, -1 }, { 12403, 307, -1 }, { 12404, 307, -1 }, { 12400, 306, -1 }, { 12401, 306, -1 }, { 12402, 306, -1 }, { 12403, 306, -1 }, { 12404, 306, -1 }, { 12400, 338, -1 }, { 12401, 338, -1 }, { 12402, 338, -1 }, { 12403, 338, -1 }, { 12404, 338, -1 }, { 12400, 342, -1 }, { 12401, 342, -1 }, { 12402, 342, -1 }, { 12403, 342, -1 }, { 12404, 342, -1 }, { 12400, 344, -1 }, { 12401, 344, -1 }, { 12402, 344, -1 }, { 12403, 344, -1 }, { 12404, 344, -1 }, { 12400, 345, -1 }, { 12401, 345, -1 }, { 12402, 345, -1 }, { 12403, 345, -1 }, { 12404, 345, -1 }, { 12400, 343, -1 }, { 12401, 343, -1 }, { 12402, 343, -1 }, { 12403, 343, -1 }, { 12404, 343, -1 }, { 12400, 346, -1 }, { 12401, 346, -1 }, { 12402, 346, -1 }, { 12403, 346, -1 }, { 12404, 346, -1 }, { 12400, 315, -1 }, { 12401, 315, -1 }, { 12402, 315, -1 }, { 12403, 315, -1 }, { 12404, 315, -1 }, { 12400, 316, -1 }, { 12401, 316, -1 }, { 12402, 316, -1 }, { 12403, 316, -1 }, { 12404, 316, -1 }, { 12400, 317, -1 }, { 12401, 317, -1 }, { 12402, 317, -1 }, { 12403, 317, -1 }, { 12404, 317, -1 }, { 12400, 43, -1 }, { 12401, 43, -1 }, { 12402, 43, -1 }, { 12403, 43, -1 }, { 12404, 43, -1 }, { 12400, 300, -1 }, { 12401, 300, -1 }, { 12402, 300, -1 }, { 12403, 300, -1 }, { 12404, 300, -1 }, { 12400, 35, -1 }, { 12401, 35, -1 }, { 12402, 35, -1 }, { 12403, 35, -1 }, { 12404, 35, -1 }, { 12400, 476, -1 }, { 12401, 476, -1 }, { 12402, 476, -1 }, { 12403, 476, -1 }, { 12404, 476, -1 }, { 12400, 275, -1 }, { 12401, 275, -1 }, { 12402, 275, -1 }, { 12403, 275, -1 }, { 12404, 275, -1 }, { 12400, 280, -1 }, { 12401, 280, -1 }, { 12402, 280, -1 }, { 12403, 280, -1 }, { 12404, 280, -1 }, { 12400, 291, -1 }, { 12401, 291, -1 }, { 12402, 291, -1 }, { 12403, 291, -1 }, { 12404, 291, -1 }, { 12400, 290, -1 }, { 12401, 290, -1 }, { 12402, 290, -1 }, { 12403, 290, -1 }, { 12404, 290, -1 }, { 12400, 262, -1 }, { 12401, 262, -1 }, { 12402, 262, -1 }, { 12403, 262, -1 }, { 12404, 262, -1 }, { 12400, 264, -1 }, { 12401, 264, -1 }, { 12402, 264, -1 }, { 12403, 264, -1 }, { 12404, 264, -1 }, { 12400, 18, -1 }, { 12401, 18, -1 }, { 12402, 18, -1 }, { 12403, 18, -1 }, { 12404, 18, -1 }, { 12400, 426, -1 }, { 12401, 426, -1 }, { 12402, 426, -1 }, { 12403, 426, -1 }, { 12404, 426, -1 }, { 12400, 19, -1 }, { 12401, 19, -1 }, { 12402, 19, -1 }, { 12403, 19, -1 }, { 12404, 19, -1 }, { 12400, 57, -1 }, { 12401, 57, -1 }, { 12402, 57, -1 }, { 12403, 57, -1 }, { 12404, 57, -1 }, { 12400, 447, -1 }, { 12401, 447, -1 }, { 12402, 447, -1 }, { 12403, 447, -1 }, { 12404, 447, -1 }, { 12400, 453, -1 }, { 12401, 453, -1 }, { 12402, 453, -1 }, { 12403, 453, -1 }, { 12404, 453, -1 }, { 12400, 161, -1 }, { 12401, 161, -1 }, { 12402, 161, -1 }, { 12403, 161, -1 }, { 12404, 161, -1 }, { 12400, 68, -1 }, { 12401, 68, -1 }, { 12402, 68, -1 }, { 12403, 68, -1 }, { 12404, 68, -1 }, { 12400, 62, -1 }, { 12401, 62, -1 }, { 12402, 62, -1 }, { 12403, 62, -1 }, { 12404, 62, -1 }, { 12400, 263, -1 }, { 12401, 263, -1 }, { 12402, 263, -1 }, { 12403, 263, -1 }, { 12404, 263, -1 }, { 12400, 20, -1 }, { 12401, 20, -1 }, { 12402, 20, -1 }, { 12403, 20, -1 }, { 12404, 20, -1 }, { 12400, 21, -1 }, { 12401, 21, -1 }, { 12402, 21, -1 }, { 12403, 21, -1 }, { 12404, 21, -1 }, { 12400, 22, -1 }, { 12401, 22, -1 }, { 12402, 22, -1 }, { 12403, 22, -1 }, { 12404, 22, -1 }, { 12400, 820, -1 }, { 12401, 820, -1 }, { 12402, 820, -1 }, { 12403, 820, -1 }, { 12404, 820, -1 }, { 12400, 601, -1 }, { 12401, 601, -1 }, { 12402, 601, -1 }, { 12403, 601, -1 }, { 12404, 601, -1 }, { 12400, 589, -1 }, { 12401, 589, -1 }, { 12402, 589, -1 }, { 12403, 589, -1 }, { 12404, 589, -1 }, { 12400, 588, -1 }, { 12401, 588, -1 }, { 12402, 588, -1 }, { 12403, 588, -1 }, { 12404, 588, -1 }, { 12400, 620, -1 }, { 12401, 620, -1 }, { 12402, 620, -1 }, { 12403, 620, -1 }, { 12404, 620, -1 }, { 12400, 629, -1 }, { 12401, 629, -1 }, { 12402, 629, -1 }, { 12403, 629, -1 }, { 12404, 629, -1 }, { 12400, 626, -1 }, { 12401, 626, -1 }, { 12402, 626, -1 }, { 12403, 626, -1 }, { 12404, 626, -1 }, { 12400, 534, -1 }, { 12401, 534, -1 }, { 12402, 534, -1 }, { 12403, 534, -1 }, { 12404, 534, -1 }, { 12400, 515, -1 }, { 12401, 515, -1 }, { 12402, 515, -1 }, { 12403, 515, -1 }, { 12404, 515, -1 }, { 12400, 574, -1 }, { 12401, 574, -1 }, { 12402, 574, -1 }, { 12403, 574, -1 }, { 12404, 574, -1 }, { 12400, 560, -1 }, { 12401, 560, -1 }, { 12402, 560, -1 }, { 12403, 560, -1 }, { 12404, 560, -1 }, { 12400, 520, -1 }, { 12401, 520, -1 }, { 12402, 520, -1 }, { 12403, 520, -1 }, { 12404, 520, -1 }, { 12400, 533, -1 }, { 12401, 533, -1 }, { 12402, 533, -1 }, { 12403, 533, -1 }, { 12404, 533, -1 }, { 12400, 532, -1 }, { 12401, 532, -1 }, { 12402, 532, -1 }, { 12403, 532, -1 }, { 12404, 532, -1 }, { 12400, 531, -1 }, { 12401, 531, -1 }, { 12402, 531, -1 }, { 12403, 531, -1 }, { 12404, 531, -1 }, { 12400, 537, -1 }, { 12401, 537, -1 }, { 12402, 537, -1 }, { 12403, 537, -1 }, { 12404, 537, -1 }, { 12400, 536, -1 }, { 12401, 536, -1 }, { 12402, 536, -1 }, { 12403, 536, -1 }, { 12404, 536, -1 }, { 12400, 535, -1 }, { 12401, 535, -1 }, { 12402, 535, -1 }, { 12403, 535, -1 }, { 12404, 535, -1 }, { 12400, 538, -1 }, { 12401, 538, -1 }, { 12402, 538, -1 }, { 12403, 538, -1 }, { 12404, 538, -1 }, { 12400, 504, -1 }, { 12401, 504, -1 }, { 12402, 504, -1 }, { 12403, 504, -1 }, { 12404, 504, -1 }, { 12400, 1916, -1 }, { 12401, 1916, -1 }, { 12402, 1916, -1 }, { 12403, 1916, -1 }, { 12404, 1916, -1 }, { 12400, 1491, -1 }, { 12401, 1491, -1 }, { 12402, 1491, -1 }, { 12403, 1491, -1 }, { 12404, 1491, -1 }, { 12400, 784, -1 }, { 12401, 784, -1 }, { 12402, 784, -1 }, { 12403, 784, -1 }, { 12404, 784, -1 }, { 12400, 785, -1 }, { 12401, 785, -1 }, { 12402, 785, -1 }, { 12403, 785, -1 }, { 12404, 785, -1 }, { 12400, 834, -1 }, { 12401, 834, -1 }, { 12402, 834, -1 }, { 12403, 834, -1 }, { 12404, 834, -1 }, { 12400, 831, -1 }, { 12401, 831, -1 }, { 12402, 831, -1 }, { 12403, 831, -1 }, { 12404, 831, -1 }, { 12400, 1377, -1 }, { 12401, 1377, -1 }, { 12402, 1377, -1 }, { 12403, 1377, -1 }, { 12404, 1377, -1 }, { 12400, 776, -1 }, { 12401, 776, -1 }, { 12402, 776, -1 }, { 12403, 776, -1 }, { 12404, 776, -1 }, { 12400, 775, -1 }, { 12401, 775, -1 }, { 12402, 775, -1 }, { 12403, 775, -1 }, { 12404, 775, -1 }, { 12400, 1501, -1 }, { 12401, 1501, -1 }, { 12402, 1501, -1 }, { 12403, 1501, -1 }, { 12404, 1501, -1 }, { 12400, 782, -1 }, { 12401, 782, -1 }, { 12402, 782, -1 }, { 12403, 782, -1 }, { 12404, 782, -1 }, { 12400, 1739, -1 }, { 12401, 1739, -1 }, { 12402, 1739, -1 }, { 12403, 1739, -1 }, { 12404, 1739, -1 }, { 12400, 786, -1 }, { 12401, 786, -1 }, { 12402, 786, -1 }, { 12403, 786, -1 }, { 12404, 786, -1 }, { 12400, 1294, -1 }, { 12401, 1294, -1 }, { 12402, 1294, -1 }, { 12403, 1294, -1 }, { 12404, 1294, -1 }, { 12400, 1314, -1 }, { 12401, 1314, -1 }, { 12402, 1314, -1 }, { 12403, 1314, -1 }, { 12404, 1314, -1 }, { 12400, 1316, -1 }, { 12401, 1316, -1 }, { 12402, 1316, -1 }, { 12403, 1316, -1 }, { 12404, 1316, -1 }, { 12400, 1342, -1 }, { 12401, 1342, -1 }, { 12402, 1342, -1 }, { 12403, 1342, -1 }, { 12404, 1342, -1 }, { 12400, 1361, -1 }, { 12401, 1361, -1 }, { 12402, 1361, -1 }, { 12403, 1361, -1 }, { 12404, 1361, -1 }, { 12400, 1299, -1 }, { 12401, 1299, -1 }, { 12402, 1299, -1 }, { 12403, 1299, -1 }, { 12404, 1299, -1 }, { 12400, 1348, -1 }, { 12401, 1348, -1 }, { 12402, 1348, -1 }, { 12403, 1348, -1 }, { 12404, 1348, -1 }, { 12400, 1354, -1 }, { 12401, 1354, -1 }, { 12402, 1354, -1 }, { 12403, 1354, -1 }, { 12404, 1354, -1 }, { 12400, 1356, -1 }, { 12401, 1356, -1 }, { 12402, 1356, -1 }, { 12403, 1356, -1 }, { 12404, 1356, -1 }, { 12400, 1308, -1 }, { 12401, 1308, -1 }, { 12402, 1308, -1 }, { 12403, 1308, -1 }, { 12404, 1308, -1 }, { 12400, 1317, -1 }, { 12401, 1317, -1 }, { 12402, 1317, -1 }, { 12403, 1317, -1 }, { 12404, 1317, -1 }, { 12400, 1315, -1 }, { 12401, 1315, -1 }, { 12402, 1315, -1 }, { 12403, 1315, -1 }, { 12404, 1315, -1 }, { 12400, 1351, -1 }, { 12401, 1351, -1 }, { 12402, 1351, -1 }, { 12403, 1351, -1 }, { 12404, 1351, -1 }, { 12400, 907, -1 }, { 12401, 907, -1 }, { 12402, 907, -1 }, { 12403, 907, -1 }, { 12404, 907, -1 }, { 12400, 890, -1 }, { 12401, 890, -1 }, { 12402, 890, -1 }, { 12403, 890, -1 }, { 12404, 890, -1 }, { 12400, 780, -1 }, { 12401, 780, -1 }, { 12402, 780, -1 }, { 12403, 780, -1 }, { 12404, 780, -1 }, { 12400, 802, -1 }, { 12401, 802, -1 }, { 12402, 802, -1 }, { 12403, 802, -1 }, { 12404, 802, -1 }, { 12400, 1751, -1 }, { 12401, 1751, -1 }, { 12402, 1751, -1 }, { 12403, 1751, -1 }, { 12404, 1751, -1 }, { 12400, 1756, -1 }, { 12401, 1756, -1 }, { 12402, 1756, -1 }, { 12403, 1756, -1 }, { 12404, 1756, -1 }, { 12400, 832, -1 }, { 12401, 832, -1 }, { 12402, 832, -1 }, { 12403, 832, -1 }, { 12404, 832, -1 }, { 12400, 829, -1 }, { 12401, 829, -1 }, { 12402, 829, -1 }, { 12403, 829, -1 }, { 12404, 829, -1 }, { 12400, 943, -1 }, { 12401, 943, -1 }, { 12402, 943, -1 }, { 12403, 943, -1 }, { 12404, 943, -1 }, { 12400, 798, -1 }, { 12401, 798, -1 }, { 12402, 798, -1 }, { 12403, 798, -1 }, { 12404, 798, -1 }, { 12400, 787, -1 }, { 12401, 787, -1 }, { 12402, 787, -1 }, { 12403, 787, -1 }, { 12404, 787, -1 }, { 12400, 885, -1 }, { 12401, 885, -1 }, { 12402, 885, -1 }, { 12403, 885, -1 }, { 12404, 885, -1 }, { 12400, 781, -1 }, { 12401, 781, -1 }, { 12402, 781, -1 }, { 12403, 781, -1 }, { 12404, 781, -1 }, { 12400, 1449, -1 }, { 12401, 1449, -1 }, { 12402, 1449, -1 }, { 12403, 1449, -1 }, { 12404, 1449, -1 }, { 12400, 1467, -1 }, { 12401, 1467, -1 }, { 12402, 1467, -1 }, { 12403, 1467, -1 }, { 12404, 1467, -1 }, { 12400, 1413, -1 }, { 12401, 1413, -1 }, { 12402, 1413, -1 }, { 12403, 1413, -1 }, { 12404, 1413, -1 }, { 12400, 1468, -1 }, { 12401, 1468, -1 }, { 12402, 1468, -1 }, { 12403, 1468, -1 }, { 12404, 1468, -1 }, { 12400, 1445, -1 }, { 12401, 1445, -1 }, { 12402, 1445, -1 }, { 12403, 1445, -1 }, { 12404, 1445, -1 }, { 12400, 1444, -1 }, { 12401, 1444, -1 }, { 12402, 1444, -1 }, { 12403, 1444, -1 }, { 12404, 1444, -1 }, { 12400, 1450, -1 }, { 12401, 1450, -1 }, { 12402, 1450, -1 }, { 12403, 1450, -1 }, { 12404, 1450, -1 }, { 12400, 1446, -1 }, { 12401, 1446, -1 }, { 12402, 1446, -1 }, { 12403, 1446, -1 }, { 12404, 1446, -1 }, { 12400, 1448, -1 }, { 12401, 1448, -1 }, { 12402, 1448, -1 }, { 12403, 1448, -1 }, { 12404, 1448, -1 }, { 12400, 1447, -1 }, { 12401, 1447, -1 }, { 12402, 1447, -1 }, { 12403, 1447, -1 }, { 12404, 1447, -1 }, { 12400, 1456, -1 }, { 12401, 1456, -1 }, { 12402, 1456, -1 }, { 12403, 1456, -1 }, { 12404, 1456, -1 }, { 12400, 1458, -1 }, { 12401, 1458, -1 }, { 12402, 1458, -1 }, { 12403, 1458, -1 }, { 12404, 1458, -1 }, { 12400, 1460, -1 }, { 12401, 1460, -1 }, { 12402, 1460, -1 }, { 12403, 1460, -1 }, { 12404, 1460, -1 }, { 12400, 1463, -1 }, { 12401, 1463, -1 }, { 12402, 1463, -1 }, { 12403, 1463, -1 }, { 12404, 1463, -1 }, { 12400, 1461, -1 }, { 12401, 1461, -1 }, { 12402, 1461, -1 }, { 12403, 1461, -1 }, { 12404, 1461, -1 }, { 12400, 837, -1 }, { 12401, 837, -1 }, { 12402, 837, -1 }, { 12403, 837, -1 }, { 12404, 837, -1 }, { 12400, 838, -1 }, { 12401, 838, -1 }, { 12402, 838, -1 }, { 12403, 838, -1 }, { 12404, 838, -1 }, { 12400, 836, -1 }, { 12401, 836, -1 }, { 12402, 836, -1 }, { 12403, 836, -1 }, { 12404, 836, -1 }, { 12400, 801, -1 }, { 12401, 801, -1 }, { 12402, 801, -1 }, { 12403, 801, -1 }, { 12404, 801, -1 }, { 12400, 783, -1 }, { 12401, 783, -1 }, { 12402, 783, -1 }, { 12403, 783, -1 }, { 12404, 783, -1 }, { 12400, 778, -1 }, { 12401, 778, -1 }, { 12402, 778, -1 }, { 12403, 778, -1 }, { 12404, 778, -1 }, { 12400, 779, -1 }, { 12401, 779, -1 }, { 12402, 779, -1 }, { 12403, 779, -1 }, { 12404, 779, -1 }, { 12400, 818, -1 }, { 12401, 818, -1 }, { 12402, 818, -1 }, { 12403, 818, -1 }, { 12404, 818, -1 }, { 12400, 793, -1 }, { 12401, 793, -1 }, { 12402, 793, -1 }, { 12403, 793, -1 }, { 12404, 793, -1 }, { 12400, 942, -1 }, { 12401, 942, -1 }, { 12402, 942, -1 }, { 12403, 942, -1 }, { 12404, 942, -1 }, { 12400, 1911, -1 }, { 12401, 1911, -1 }, { 12402, 1911, -1 }, { 12403, 1911, -1 }, { 12404, 1911, -1 }, { 12400, 1661, -1 }, { 12401, 1661, -1 }, { 12402, 1661, -1 }, { 12403, 1661, -1 }, { 12404, 1661, -1 }, { 12400, 1532, -1 }, { 12401, 1532, -1 }, { 12402, 1532, -1 }, { 12403, 1532, -1 }, { 12404, 1532, -1 }, { 12400, 1502, -1 }, { 12401, 1502, -1 }, { 12402, 1502, -1 }, { 12403, 1502, -1 }, { 12404, 1502, -1 }, { 12400, 1522, -1 }, { 12401, 1522, -1 }, { 12402, 1522, -1 }, { 12403, 1522, -1 }, { 12404, 1522, -1 }, { 12400, 1505, -1 }, { 12401, 1505, -1 }, { 12402, 1505, -1 }, { 12403, 1505, -1 }, { 12404, 1505, -1 }, { 12400, 1509, -1 }, { 12401, 1509, -1 }, { 12402, 1509, -1 }, { 12403, 1509, -1 }, { 12404, 1509, -1 }, { 12400, 1527, -1 }, { 12401, 1527, -1 }, { 12402, 1527, -1 }, { 12403, 1527, -1 }, { 12404, 1527, -1 }, { 12400, 1572, -1 }, { 12401, 1572, -1 }, { 12402, 1572, -1 }, { 12403, 1572, -1 }, { 12404, 1572, -1 }, { 12400, 1534, -1 }, { 12401, 1534, -1 }, { 12402, 1534, -1 }, { 12403, 1534, -1 }, { 12404, 1534, -1 }, { 12400, 1513, -1 }, { 12401, 1513, -1 }, { 12402, 1513, -1 }, { 12403, 1513, -1 }, { 12404, 1513, -1 }, { 12400, 1556, -1 }, { 12401, 1556, -1 }, { 12402, 1556, -1 }, { 12403, 1556, -1 }, { 12404, 1556, -1 }, { 12400, 1554, -1 }, { 12401, 1554, -1 }, { 12402, 1554, -1 }, { 12403, 1554, -1 }, { 12404, 1554, -1 }, { 12400, 1555, -1 }, { 12401, 1555, -1 }, { 12402, 1555, -1 }, { 12403, 1555, -1 }, { 12404, 1555, -1 }, { 12400, 1521, -1 }, { 12401, 1521, -1 }, { 12402, 1521, -1 }, { 12403, 1521, -1 }, { 12404, 1521, -1 }, { 12400, 1600, -1 }, { 12401, 1600, -1 }, { 12402, 1600, -1 }, { 12403, 1600, -1 }, { 12404, 1600, -1 }, { 12400, 1549, -1 }, { 12401, 1549, -1 }, { 12402, 1549, -1 }, { 12403, 1549, -1 }, { 12404, 1549, -1 }, { 12400, 1536, -1 }, { 12401, 1536, -1 }, { 12402, 1536, -1 }, { 12403, 1536, -1 }, { 12404, 1536, -1 }, { 12400, 1602, -1 }, { 12401, 1602, -1 }, { 12402, 1602, -1 }, { 12403, 1602, -1 }, { 12404, 1602, -1 }, { 12400, 1603, -1 }, { 12401, 1603, -1 }, { 12402, 1603, -1 }, { 12403, 1603, -1 }, { 12404, 1603, -1 }, { 12400, 1483, -1 }, { 12401, 1483, -1 }, { 12402, 1483, -1 }, { 12403, 1483, -1 }, { 12404, 1483, -1 }, { 12400, 1609, -1 }, { 12401, 1609, -1 }, { 12402, 1609, -1 }, { 12403, 1609, -1 }, { 12404, 1609, -1 }, { 12400, 1146, -1 }, { 12401, 1146, -1 }, { 12402, 1146, -1 }, { 12403, 1146, -1 }, { 12404, 1146, -1 }, { 12400, 1147, -1 }, { 12401, 1147, -1 }, { 12402, 1147, -1 }, { 12403, 1147, -1 }, { 12404, 1147, -1 }, { 12400, 1148, -1 }, { 12401, 1148, -1 }, { 12402, 1148, -1 }, { 12403, 1148, -1 }, { 12404, 1148, -1 }, { 12434, 1258, -1 }, { 12434, 1257, -1 }, { 12434, 1256, -1 }, { 12434, 1259, -1 }, { 12434, 1737, -1 }, { 12434, 1778, -1 }, { 12434, 1777, -1 }, { 12434, 2004, -1 }, { 12434, 1867, -1 }, { 12434, 1923, -1 }, { 12434, 1922, -1 }, { 12434, 1868, -1 }, { 12434, 1984, -1 }, { 12434, 1947, -1 }, { 12434, 1924, -1 }, { 12434, 1925, -1 }, { 12434, 1957, -1 }, { 12434, 1926, -1 }, { 12434, 1951, -1 }, { 12434, 1831, -1 }, { 12434, 1768, -1 }, { 12434, 1913, -1 }, { 12434, 1912, -1 }, { 12434, 1914, -1 }, { 12434, 1794, -1 }, { 12434, 1802, -1 }, { 12434, 1803, -1 }, { 12434, 1804, -1 }, { 12434, 1850, -1 }, { 12434, 1852, -1 }, { 12434, 1881, -1 }, { 12434, 1891, -1 }, { 12434, 1716, -1 }, { 12434, 1682, -1 }, { 12434, 419, -1 }, { 12434, 632, -1 }, { 12434, 634, -1 }, { 12434, 417, -1 }, { 12434, 506, -1 }, { 12434, 577, -1 }, { 12434, 505, -1 }, { 12434, 950, -1 }, { 12434, 971, -1 }, { 12434, 1119, -1 }, { 12434, 1083, -1 }, { 12434, 1063, -1 }, { 12434, 1038, -1 }, { 12434, 986, -1 }, { 12434, 979, -1 }, { 12434, 141, -1 }, { 12434, 471, -1 }, { 12434, 63, -1 }, { 12434, 7, -1 }, { 12434, 13, -1 }, { 12434, 23, -1 }, { 12434, 1779, -1 }, { 12434, 1985, -1 }, { 12434, 578, -1 }, { 12434, 1064, -1 }, { 12434, 1042, -1 }, { 12434, 987, -1 }, { 12434, 100, -1 }, { 12434, 1331, -1 }, { 12434, 192, -1 }, { 12434, 1355, -1 }, { 12434, 1597, -1 }, { 12434, 1601, -1 }, { 12434, 1725, -1 }, { 12434, 809, -1 }, { 12434, 690, -1 }, { 12434, 694, -1 }, { 12434, 1084, -1 }, { 12434, 980, -1 }, { 12434, 142, -1 }, { 12434, 607, -1 }, { 12434, 861, -1 }, { 12434, 260, -1 }, { 12434, 899, -1 }, { 12434, 701, -1 }, { 12434, 33, -1 }, { 12434, 301, -1 }, { 12434, 281, -1 }, { 12434, 1570, -1 }, { 12434, 1343, -1 }, { 12434, 886, -1 }, { 12434, 1610, -1 }, { 12434, 292, -1 }, { 12434, 1952, -1 }, { 12434, 1824, -1 }, { 12434, 1997, -1 }, { 12434, 1498, -1 }, { 12434, 1495, -1 }, { 12434, 1492, -1 }, { 12434, 1362, -1 }, { 12434, 1300, -1 }, { 12434, 1309, -1 }, { 12434, 908, -1 }, { 12434, 1798, -1 }, { 12434, 1662, -1 }, { 12434, 1528, -1 }, { 12434, 1484, -1 }, { 12434, 1506, -1 }, { 12434, 1510, -1 }, { 12434, 1514, -1 }, { 12434, 743, -1 }, { 12434, 1347, -1 }, { 12434, 662, -1 }, { 12434, 1946, -1 }, { 12434, 1325, -1 }, { 12434, 1776, -1 }, { 12434, 1983, -1 }, { 12434, 576, -1 }, { 12434, 1062, -1 }, { 12434, 1041, -1 }, { 12434, 985, -1 }, { 12434, 98, -1 }, { 12434, 1330, -1 }, { 12434, 1849, -1 }, { 12434, 191, -1 }, { 12434, 1353, -1 }, { 12434, 1596, -1 }, { 12434, 1599, -1 }, { 12434, 1724, -1 }, { 12434, 808, -1 }, { 12434, 688, -1 }, { 12434, 693, -1 }, { 12434, 1082, -1 }, { 12434, 978, -1 }, { 12434, 140, -1 }, { 12434, 605, -1 }, { 12434, 855, -1 }, { 12434, 258, -1 }, { 12434, 897, -1 }, { 12434, 699, -1 }, { 12434, 10, -1 }, { 12434, 299, -1 }, { 12434, 279, -1 }, { 12434, 1568, -1 }, { 12434, 1341, -1 }, { 12434, 884, -1 }, { 12434, 1608, -1 }, { 12434, 289, -1 }, { 12434, 1950, -1 }, { 12434, 1823, -1 }, { 12434, 1996, -1 }, { 12434, 1497, -1 }, { 12434, 1494, -1 }, { 12434, 1490, -1 }, { 12434, 1360, -1 }, { 12434, 1298, -1 }, { 12434, 1307, -1 }, { 12434, 906, -1 }, { 12434, 1797, -1 }, { 12434, 1660, -1 }, { 12434, 1526, -1 }, { 12434, 1482, -1 }, { 12434, 1504, -1 }, { 12434, 1508, -1 }, { 12434, 1512, -1 }, { 12434, 652, -1 }, { 12434, 152, -1 }, { 12434, 494, -1 }, { 12434, 14, -1 }, { 12434, 134, -1 }, { 12434, 147, -1 }, { 12434, 15, -1 }, { 12434, 16, -1 }, { 12434, 410, -1 }, { 12434, 399, -1 }, { 12434, 400, -1 }, { 12434, 416, -1 }, { 12434, 44, -1 }, { 12434, 17, -1 }, { 12434, 11, -1 }, { 12434, 12, -1 }, { 12434, 136, -1 }, { 12434, 689, -1 }, { 12434, 700, -1 }, { 12434, 1023, -1 }, { 12434, 653, -1 }, { 12434, 458, -1 }, { 12434, 459, -1 }, { 12434, 493, -1 }, { 12434, 475, -1 }, { 12434, 455, -1 }, { 12434, 56, -1 }, { 12434, 307, -1 }, { 12434, 306, -1 }, { 12434, 338, -1 }, { 12434, 342, -1 }, { 12434, 344, -1 }, { 12434, 345, -1 }, { 12434, 343, -1 }, { 12434, 346, -1 }, { 12434, 315, -1 }, { 12434, 316, -1 }, { 12434, 317, -1 }, { 12434, 43, -1 }, { 12434, 300, -1 }, { 12434, 35, -1 }, { 12434, 476, -1 }, { 12434, 275, -1 }, { 12434, 280, -1 }, { 12434, 291, -1 }, { 12434, 290, -1 }, { 12434, 262, -1 }, { 12434, 264, -1 }, { 12434, 18, -1 }, { 12434, 426, -1 }, { 12434, 19, -1 }, { 12434, 57, -1 }, { 12434, 447, -1 }, { 12434, 453, -1 }, { 12434, 161, -1 }, { 12434, 68, -1 }, { 12434, 62, -1 }, { 12434, 263, -1 }, { 12434, 20, -1 }, { 12434, 21, -1 }, { 12434, 22, -1 }, { 12434, 820, -1 }, { 12434, 601, -1 }, { 12434, 589, -1 }, { 12434, 588, -1 }, { 12434, 620, -1 }, { 12434, 629, -1 }, { 12434, 626, -1 }, { 12434, 534, -1 }, { 12434, 515, -1 }, { 12434, 574, -1 }, { 12434, 560, -1 }, { 12434, 520, -1 }, { 12434, 533, -1 }, { 12434, 532, -1 }, { 12434, 531, -1 }, { 12434, 537, -1 }, { 12434, 536, -1 }, { 12434, 535, -1 }, { 12434, 538, -1 }, { 12434, 504, -1 }, { 12434, 1916, -1 }, { 12434, 1491, -1 }, { 12434, 784, -1 }, { 12434, 785, -1 }, { 12434, 834, -1 }, { 12434, 831, -1 }, { 12434, 1377, -1 }, { 12434, 776, -1 }, { 12434, 775, -1 }, { 12434, 1501, -1 }, { 12434, 782, -1 }, { 12434, 1739, -1 }, { 12434, 786, -1 }, { 12434, 1294, -1 }, { 12434, 1314, -1 }, { 12434, 1316, -1 }, { 12434, 1342, -1 }, { 12434, 1361, -1 }, { 12434, 1299, -1 }, { 12434, 1348, -1 }, { 12434, 1354, -1 }, { 12434, 1356, -1 }, { 12434, 1308, -1 }, { 12434, 1317, -1 }, { 12434, 1315, -1 }, { 12434, 1351, -1 }, { 12434, 907, -1 }, { 12434, 890, -1 }, { 12434, 780, -1 }, { 12434, 802, -1 }, { 12434, 1751, -1 }, { 12434, 1756, -1 }, { 12434, 832, -1 }, { 12434, 829, -1 }, { 12434, 943, -1 }, { 12434, 798, -1 }, { 12434, 787, -1 }, { 12434, 885, -1 }, { 12434, 781, -1 }, { 12434, 1449, -1 }, { 12434, 1467, -1 }, { 12434, 1413, -1 }, { 12434, 1468, -1 }, { 12434, 1445, -1 }, { 12434, 1444, -1 }, { 12434, 1450, -1 }, { 12434, 1446, -1 }, { 12434, 1448, -1 }, { 12434, 1447, -1 }, { 12434, 1456, -1 }, { 12434, 1458, -1 }, { 12434, 1460, -1 }, { 12434, 1463, -1 }, { 12434, 1461, -1 }, { 12434, 837, -1 }, { 12434, 838, -1 }, { 12434, 836, -1 }, { 12434, 801, -1 }, { 12434, 783, -1 }, { 12434, 778, -1 }, { 12434, 779, -1 }, { 12434, 818, -1 }, { 12434, 793, -1 }, { 12434, 942, -1 }, { 12434, 1911, -1 }, { 12434, 1661, -1 }, { 12434, 1532, -1 }, { 12434, 1502, -1 }, { 12434, 1522, -1 }, { 12434, 1505, -1 }, { 12434, 1509, -1 }, { 12434, 1527, -1 }, { 12434, 1572, -1 }, { 12434, 1534, -1 }, { 12434, 1513, -1 }, { 12434, 1556, -1 }, { 12434, 1554, -1 }, { 12434, 1555, -1 }, { 12434, 1521, -1 }, { 12434, 1600, -1 }, { 12434, 1549, -1 }, { 12434, 1536, -1 }, { 12434, 1602, -1 }, { 12434, 1603, -1 }, { 12434, 1483, -1 }, { 12434, 1609, -1 }, { 12434, 1146, -1 }, { 12434, 1147, -1 }, { 12434, 1148, -1 }, { 12413, 1775, -1 }, { 12414, 1775, -1 }, { 12415, 1775, -1 }, { 12413, 1982, -1 }, { 12414, 1982, -1 }, { 12415, 1982, -1 }, { 12413, 575, -1 }, { 12414, 575, -1 }, { 12415, 575, -1 }, { 12413, 1061, -1 }, { 12414, 1061, -1 }, { 12415, 1061, -1 }, { 12413, 1040, -1 }, { 12414, 1040, -1 }, { 12415, 1040, -1 }, { 12413, 984, -1 }, { 12414, 984, -1 }, { 12415, 984, -1 }, { 12413, 97, -1 }, { 12414, 97, -1 }, { 12415, 97, -1 }, { 12413, 1329, -1 }, { 12414, 1329, -1 }, { 12415, 1329, -1 }, { 12413, 190, -1 }, { 12414, 190, -1 }, { 12415, 190, -1 }, { 12413, 1352, -1 }, { 12414, 1352, -1 }, { 12415, 1352, -1 }, { 12413, 1595, -1 }, { 12414, 1595, -1 }, { 12415, 1595, -1 }, { 12413, 1598, -1 }, { 12414, 1598, -1 }, { 12415, 1598, -1 }, { 12413, 1694, -1 }, { 12414, 1694, -1 }, { 12415, 1694, -1 }, { 12413, 807, -1 }, { 12414, 807, -1 }, { 12415, 807, -1 }, { 12413, 687, -1 }, { 12414, 687, -1 }, { 12415, 687, -1 }, { 12413, 692, -1 }, { 12414, 692, -1 }, { 12415, 692, -1 }, { 12413, 1081, -1 }, { 12414, 1081, -1 }, { 12415, 1081, -1 }, { 12413, 977, -1 }, { 12414, 977, -1 }, { 12415, 977, -1 }, { 12413, 139, -1 }, { 12414, 139, -1 }, { 12415, 139, -1 }, { 12413, 169, -1 }, { 12414, 169, -1 }, { 12415, 169, -1 }, { 12413, 854, -1 }, { 12414, 854, -1 }, { 12415, 854, -1 }, { 12413, 182, -1 }, { 12414, 182, -1 }, { 12415, 182, -1 }, { 12413, 896, -1 }, { 12414, 896, -1 }, { 12415, 896, -1 }, { 12413, 698, -1 }, { 12414, 698, -1 }, { 12415, 698, -1 }, { 12413, 298, -1 }, { 12414, 298, -1 }, { 12415, 298, -1 }, { 12413, 278, -1 }, { 12414, 278, -1 }, { 12415, 278, -1 }, { 12413, 1567, -1 }, { 12414, 1567, -1 }, { 12415, 1567, -1 }, { 12413, 1340, -1 }, { 12414, 1340, -1 }, { 12415, 1340, -1 }, { 12413, 883, -1 }, { 12414, 883, -1 }, { 12415, 883, -1 }, { 12413, 1607, -1 }, { 12414, 1607, -1 }, { 12415, 1607, -1 }, { 12413, 288, -1 }, { 12414, 288, -1 }, { 12415, 288, -1 }, { 12413, 1949, -1 }, { 12414, 1949, -1 }, { 12415, 1949, -1 }, { 12413, 1822, -1 }, { 12414, 1822, -1 }, { 12415, 1822, -1 }, { 12413, 1995, -1 }, { 12414, 1995, -1 }, { 12415, 1995, -1 }, { 12413, 1496, -1 }, { 12414, 1496, -1 }, { 12415, 1496, -1 }, { 12413, 1493, -1 }, { 12414, 1493, -1 }, { 12415, 1493, -1 }, { 12413, 1489, -1 }, { 12414, 1489, -1 }, { 12415, 1489, -1 }, { 12413, 1359, -1 }, { 12414, 1359, -1 }, { 12415, 1359, -1 }, { 12413, 1297, -1 }, { 12414, 1297, -1 }, { 12415, 1297, -1 }, { 12413, 1306, -1 }, { 12414, 1306, -1 }, { 12415, 1306, -1 }, { 12413, 905, -1 }, { 12414, 905, -1 }, { 12415, 905, -1 }, { 12413, 1796, -1 }, { 12414, 1796, -1 }, { 12415, 1796, -1 }, { 12413, 1659, -1 }, { 12414, 1659, -1 }, { 12415, 1659, -1 }, { 12413, 1525, -1 }, { 12414, 1525, -1 }, { 12415, 1525, -1 }, { 12413, 1481, -1 }, { 12414, 1481, -1 }, { 12415, 1481, -1 }, { 12413, 1503, -1 }, { 12414, 1503, -1 }, { 12415, 1503, -1 }, { 12413, 1507, -1 }, { 12414, 1507, -1 }, { 12415, 1507, -1 }, { 12413, 1511, -1 }, { 12414, 1511, -1 }, { 12415, 1511, -1 }, { 12416, 1775, -1 }, { 12417, 1775, -1 }, { 12418, 1775, -1 }, { 12419, 1775, -1 }, { 12420, 1775, -1 }, { 12421, 1775, -1 }, { 12416, 1982, -1 }, { 12417, 1982, -1 }, { 12418, 1982, -1 }, { 12419, 1982, -1 }, { 12420, 1982, -1 }, { 12421, 1982, -1 }, { 12416, 575, -1 }, { 12417, 575, -1 }, { 12418, 575, -1 }, { 12419, 575, -1 }, { 12420, 575, -1 }, { 12421, 575, -1 }, { 12416, 1061, -1 }, { 12417, 1061, -1 }, { 12418, 1061, -1 }, { 12419, 1061, -1 }, { 12420, 1061, -1 }, { 12421, 1061, -1 }, { 12416, 1040, -1 }, { 12417, 1040, -1 }, { 12418, 1040, -1 }, { 12419, 1040, -1 }, { 12420, 1040, -1 }, { 12421, 1040, -1 }, { 12416, 984, -1 }, { 12417, 984, -1 }, { 12418, 984, -1 }, { 12419, 984, -1 }, { 12420, 984, -1 }, { 12421, 984, -1 }, { 12416, 97, -1 }, { 12417, 97, -1 }, { 12418, 97, -1 }, { 12419, 97, -1 }, { 12420, 97, -1 }, { 12421, 97, -1 }, { 12416, 1329, -1 }, { 12417, 1329, -1 }, { 12418, 1329, -1 }, { 12419, 1329, -1 }, { 12420, 1329, -1 }, { 12421, 1329, -1 }, { 12416, 190, -1 }, { 12417, 190, -1 }, { 12418, 190, -1 }, { 12419, 190, -1 }, { 12420, 190, -1 }, { 12421, 190, -1 }, { 12416, 1352, -1 }, { 12417, 1352, -1 }, { 12418, 1352, -1 }, { 12419, 1352, -1 }, { 12420, 1352, -1 }, { 12421, 1352, -1 }, { 12416, 1595, -1 }, { 12417, 1595, -1 }, { 12418, 1595, -1 }, { 12419, 1595, -1 }, { 12420, 1595, -1 }, { 12421, 1595, -1 }, { 12416, 1598, -1 }, { 12417, 1598, -1 }, { 12418, 1598, -1 }, { 12419, 1598, -1 }, { 12420, 1598, -1 }, { 12421, 1598, -1 }, { 12416, 1694, -1 }, { 12417, 1694, -1 }, { 12418, 1694, -1 }, { 12419, 1694, -1 }, { 12420, 1694, -1 }, { 12421, 1694, -1 }, { 12416, 807, -1 }, { 12417, 807, -1 }, { 12418, 807, -1 }, { 12419, 807, -1 }, { 12420, 807, -1 }, { 12421, 807, -1 }, { 12416, 687, -1 }, { 12417, 687, -1 }, { 12418, 687, -1 }, { 12419, 687, -1 }, { 12420, 687, -1 }, { 12421, 687, -1 }, { 12416, 692, -1 }, { 12417, 692, -1 }, { 12418, 692, -1 }, { 12419, 692, -1 }, { 12420, 692, -1 }, { 12421, 692, -1 }, { 12416, 1081, -1 }, { 12417, 1081, -1 }, { 12418, 1081, -1 }, { 12419, 1081, -1 }, { 12420, 1081, -1 }, { 12421, 1081, -1 }, { 12416, 977, -1 }, { 12417, 977, -1 }, { 12418, 977, -1 }, { 12419, 977, -1 }, { 12420, 977, -1 }, { 12421, 977, -1 }, { 12416, 139, -1 }, { 12417, 139, -1 }, { 12418, 139, -1 }, { 12419, 139, -1 }, { 12420, 139, -1 }, { 12421, 139, -1 }, { 12416, 169, -1 }, { 12417, 169, -1 }, { 12418, 169, -1 }, { 12419, 169, -1 }, { 12420, 169, -1 }, { 12421, 169, -1 }, { 12416, 854, -1 }, { 12417, 854, -1 }, { 12418, 854, -1 }, { 12419, 854, -1 }, { 12420, 854, -1 }, { 12421, 854, -1 }, { 12416, 182, -1 }, { 12417, 182, -1 }, { 12418, 182, -1 }, { 12419, 182, -1 }, { 12420, 182, -1 }, { 12421, 182, -1 }, { 12416, 896, -1 }, { 12417, 896, -1 }, { 12418, 896, -1 }, { 12419, 896, -1 }, { 12420, 896, -1 }, { 12421, 896, -1 }, { 12416, 698, -1 }, { 12417, 698, -1 }, { 12418, 698, -1 }, { 12419, 698, -1 }, { 12420, 698, -1 }, { 12421, 698, -1 }, { 12416, 298, -1 }, { 12417, 298, -1 }, { 12418, 298, -1 }, { 12419, 298, -1 }, { 12420, 298, -1 }, { 12421, 298, -1 }, { 12416, 278, -1 }, { 12417, 278, -1 }, { 12418, 278, -1 }, { 12419, 278, -1 }, { 12420, 278, -1 }, { 12421, 278, -1 }, { 12416, 1567, -1 }, { 12417, 1567, -1 }, { 12418, 1567, -1 }, { 12419, 1567, -1 }, { 12420, 1567, -1 }, { 12421, 1567, -1 }, { 12416, 1340, -1 }, { 12417, 1340, -1 }, { 12418, 1340, -1 }, { 12419, 1340, -1 }, { 12420, 1340, -1 }, { 12421, 1340, -1 }, { 12416, 883, -1 }, { 12417, 883, -1 }, { 12418, 883, -1 }, { 12419, 883, -1 }, { 12420, 883, -1 }, { 12421, 883, -1 }, { 12416, 1607, -1 }, { 12417, 1607, -1 }, { 12418, 1607, -1 }, { 12419, 1607, -1 }, { 12420, 1607, -1 }, { 12421, 1607, -1 }, { 12416, 288, -1 }, { 12417, 288, -1 }, { 12418, 288, -1 }, { 12419, 288, -1 }, { 12420, 288, -1 }, { 12421, 288, -1 }, { 12416, 1949, -1 }, { 12417, 1949, -1 }, { 12418, 1949, -1 }, { 12419, 1949, -1 }, { 12420, 1949, -1 }, { 12421, 1949, -1 }, { 12416, 1822, -1 }, { 12417, 1822, -1 }, { 12418, 1822, -1 }, { 12419, 1822, -1 }, { 12420, 1822, -1 }, { 12421, 1822, -1 }, { 12416, 1995, -1 }, { 12417, 1995, -1 }, { 12418, 1995, -1 }, { 12419, 1995, -1 }, { 12420, 1995, -1 }, { 12421, 1995, -1 }, { 12416, 1496, -1 }, { 12417, 1496, -1 }, { 12418, 1496, -1 }, { 12419, 1496, -1 }, { 12420, 1496, -1 }, { 12421, 1496, -1 }, { 12416, 1493, -1 }, { 12417, 1493, -1 }, { 12418, 1493, -1 }, { 12419, 1493, -1 }, { 12420, 1493, -1 }, { 12421, 1493, -1 }, { 12416, 1489, -1 }, { 12417, 1489, -1 }, { 12418, 1489, -1 }, { 12419, 1489, -1 }, { 12420, 1489, -1 }, { 12421, 1489, -1 }, { 12416, 1359, -1 }, { 12417, 1359, -1 }, { 12418, 1359, -1 }, { 12419, 1359, -1 }, { 12420, 1359, -1 }, { 12421, 1359, -1 }, { 12416, 1297, -1 }, { 12417, 1297, -1 }, { 12418, 1297, -1 }, { 12419, 1297, -1 }, { 12420, 1297, -1 }, { 12421, 1297, -1 }, { 12416, 1306, -1 }, { 12417, 1306, -1 }, { 12418, 1306, -1 }, { 12419, 1306, -1 }, { 12420, 1306, -1 }, { 12421, 1306, -1 }, { 12416, 905, -1 }, { 12417, 905, -1 }, { 12418, 905, -1 }, { 12419, 905, -1 }, { 12420, 905, -1 }, { 12421, 905, -1 }, { 12416, 1796, -1 }, { 12417, 1796, -1 }, { 12418, 1796, -1 }, { 12419, 1796, -1 }, { 12420, 1796, -1 }, { 12421, 1796, -1 }, { 12416, 1659, -1 }, { 12417, 1659, -1 }, { 12418, 1659, -1 }, { 12419, 1659, -1 }, { 12420, 1659, -1 }, { 12421, 1659, -1 }, { 12416, 1525, -1 }, { 12417, 1525, -1 }, { 12418, 1525, -1 }, { 12419, 1525, -1 }, { 12420, 1525, -1 }, { 12421, 1525, -1 }, { 12416, 1481, -1 }, { 12417, 1481, -1 }, { 12418, 1481, -1 }, { 12419, 1481, -1 }, { 12420, 1481, -1 }, { 12421, 1481, -1 }, { 12416, 1503, -1 }, { 12417, 1503, -1 }, { 12418, 1503, -1 }, { 12419, 1503, -1 }, { 12420, 1503, -1 }, { 12421, 1503, -1 }, { 12416, 1507, -1 }, { 12417, 1507, -1 }, { 12418, 1507, -1 }, { 12419, 1507, -1 }, { 12420, 1507, -1 }, { 12421, 1507, -1 }, { 12416, 1511, -1 }, { 12417, 1511, -1 }, { 12418, 1511, -1 }, { 12419, 1511, -1 }, { 12420, 1511, -1 }, { 12421, 1511, -1 }, { 12422, 1775, -1 }, { 12423, 1775, -1 }, { 12424, 1775, -1 }, { 12422, 1982, -1 }, { 12423, 1982, -1 }, { 12424, 1982, -1 }, { 12422, 575, -1 }, { 12423, 575, -1 }, { 12424, 575, -1 }, { 12422, 1061, -1 }, { 12423, 1061, -1 }, { 12424, 1061, -1 }, { 12422, 1040, -1 }, { 12423, 1040, -1 }, { 12424, 1040, -1 }, { 12422, 984, -1 }, { 12423, 984, -1 }, { 12424, 984, -1 }, { 12422, 97, -1 }, { 12423, 97, -1 }, { 12424, 97, -1 }, { 12422, 1329, -1 }, { 12423, 1329, -1 }, { 12424, 1329, -1 }, { 12422, 190, -1 }, { 12423, 190, -1 }, { 12424, 190, -1 }, { 12422, 1352, -1 }, { 12423, 1352, -1 }, { 12424, 1352, -1 }, { 12422, 1595, -1 }, { 12423, 1595, -1 }, { 12424, 1595, -1 }, { 12422, 1598, -1 }, { 12423, 1598, -1 }, { 12424, 1598, -1 }, { 12422, 1694, -1 }, { 12423, 1694, -1 }, { 12424, 1694, -1 }, { 12422, 807, -1 }, { 12423, 807, -1 }, { 12424, 807, -1 }, { 12422, 687, -1 }, { 12423, 687, -1 }, { 12424, 687, -1 }, { 12422, 692, -1 }, { 12423, 692, -1 }, { 12424, 692, -1 }, { 12422, 1081, -1 }, { 12423, 1081, -1 }, { 12424, 1081, -1 }, { 12422, 977, -1 }, { 12423, 977, -1 }, { 12424, 977, -1 }, { 12422, 139, -1 }, { 12423, 139, -1 }, { 12424, 139, -1 }, { 12422, 169, -1 }, { 12423, 169, -1 }, { 12424, 169, -1 }, { 12422, 854, -1 }, { 12423, 854, -1 }, { 12424, 854, -1 }, { 12422, 182, -1 }, { 12423, 182, -1 }, { 12424, 182, -1 }, { 12422, 896, -1 }, { 12423, 896, -1 }, { 12424, 896, -1 }, { 12422, 698, -1 }, { 12423, 698, -1 }, { 12424, 698, -1 }, { 12422, 298, -1 }, { 12423, 298, -1 }, { 12424, 298, -1 }, { 12422, 278, -1 }, { 12423, 278, -1 }, { 12424, 278, -1 }, { 12422, 1567, -1 }, { 12423, 1567, -1 }, { 12424, 1567, -1 }, { 12422, 1340, -1 }, { 12423, 1340, -1 }, { 12424, 1340, -1 }, { 12422, 883, -1 }, { 12423, 883, -1 }, { 12424, 883, -1 }, { 12422, 1607, -1 }, { 12423, 1607, -1 }, { 12424, 1607, -1 }, { 12422, 288, -1 }, { 12423, 288, -1 }, { 12424, 288, -1 }, { 12422, 1949, -1 }, { 12423, 1949, -1 }, { 12424, 1949, -1 }, { 12422, 1822, -1 }, { 12423, 1822, -1 }, { 12424, 1822, -1 }, { 12422, 1995, -1 }, { 12423, 1995, -1 }, { 12424, 1995, -1 }, { 12422, 1496, -1 }, { 12423, 1496, -1 }, { 12424, 1496, -1 }, { 12422, 1493, -1 }, { 12423, 1493, -1 }, { 12424, 1493, -1 }, { 12422, 1489, -1 }, { 12423, 1489, -1 }, { 12424, 1489, -1 }, { 12422, 1359, -1 }, { 12423, 1359, -1 }, { 12424, 1359, -1 }, { 12422, 1297, -1 }, { 12423, 1297, -1 }, { 12424, 1297, -1 }, { 12422, 1306, -1 }, { 12423, 1306, -1 }, { 12424, 1306, -1 }, { 12422, 905, -1 }, { 12423, 905, -1 }, { 12424, 905, -1 }, { 12422, 1796, -1 }, { 12423, 1796, -1 }, { 12424, 1796, -1 }, { 12422, 1659, -1 }, { 12423, 1659, -1 }, { 12424, 1659, -1 }, { 12422, 1525, -1 }, { 12423, 1525, -1 }, { 12424, 1525, -1 }, { 12422, 1481, -1 }, { 12423, 1481, -1 }, { 12424, 1481, -1 }, { 12422, 1503, -1 }, { 12423, 1503, -1 }, { 12424, 1503, -1 }, { 12422, 1507, -1 }, { 12423, 1507, -1 }, { 12424, 1507, -1 }, { 12422, 1511, -1 }, { 12423, 1511, -1 }, { 12424, 1511, -1 }, { 12425, 1775, -1 }, { 12426, 1775, -1 }, { 12427, 1775, -1 }, { 12428, 1775, -1 }, { 12429, 1775, -1 }, { 12430, 1775, -1 }, { 12425, 1982, -1 }, { 12426, 1982, -1 }, { 12427, 1982, -1 }, { 12428, 1982, -1 }, { 12429, 1982, -1 }, { 12430, 1982, -1 }, { 12425, 575, -1 }, { 12426, 575, -1 }, { 12427, 575, -1 }, { 12428, 575, -1 }, { 12429, 575, -1 }, { 12430, 575, -1 }, { 12425, 1061, -1 }, { 12426, 1061, -1 }, { 12427, 1061, -1 }, { 12428, 1061, -1 }, { 12429, 1061, -1 }, { 12430, 1061, -1 }, { 12425, 1040, -1 }, { 12426, 1040, -1 }, { 12427, 1040, -1 }, { 12428, 1040, -1 }, { 12429, 1040, -1 }, { 12430, 1040, -1 }, { 12425, 984, -1 }, { 12426, 984, -1 }, { 12427, 984, -1 }, { 12428, 984, -1 }, { 12429, 984, -1 }, { 12430, 984, -1 }, { 12425, 97, -1 }, { 12426, 97, -1 }, { 12427, 97, -1 }, { 12428, 97, -1 }, { 12429, 97, -1 }, { 12430, 97, -1 }, { 12425, 1329, -1 }, { 12426, 1329, -1 }, { 12427, 1329, -1 }, { 12428, 1329, -1 }, { 12429, 1329, -1 }, { 12430, 1329, -1 }, { 12425, 190, -1 }, { 12426, 190, -1 }, { 12427, 190, -1 }, { 12428, 190, -1 }, { 12429, 190, -1 }, { 12430, 190, -1 }, { 12425, 1352, -1 }, { 12426, 1352, -1 }, { 12427, 1352, -1 }, { 12428, 1352, -1 }, { 12429, 1352, -1 }, { 12430, 1352, -1 }, { 12425, 1595, -1 }, { 12426, 1595, -1 }, { 12427, 1595, -1 }, { 12428, 1595, -1 }, { 12429, 1595, -1 }, { 12430, 1595, -1 }, { 12425, 1598, -1 }, { 12426, 1598, -1 }, { 12427, 1598, -1 }, { 12428, 1598, -1 }, { 12429, 1598, -1 }, { 12430, 1598, -1 }, { 12425, 1694, -1 }, { 12426, 1694, -1 }, { 12427, 1694, -1 }, { 12428, 1694, -1 }, { 12429, 1694, -1 }, { 12430, 1694, -1 }, { 12425, 807, -1 }, { 12426, 807, -1 }, { 12427, 807, -1 }, { 12428, 807, -1 }, { 12429, 807, -1 }, { 12430, 807, -1 }, { 12425, 687, -1 }, { 12426, 687, -1 }, { 12427, 687, -1 }, { 12428, 687, -1 }, { 12429, 687, -1 }, { 12430, 687, -1 }, { 12425, 692, -1 }, { 12426, 692, -1 }, { 12427, 692, -1 }, { 12428, 692, -1 }, { 12429, 692, -1 }, { 12430, 692, -1 }, { 12425, 1081, -1 }, { 12426, 1081, -1 }, { 12427, 1081, -1 }, { 12428, 1081, -1 }, { 12429, 1081, -1 }, { 12430, 1081, -1 }, { 12425, 977, -1 }, { 12426, 977, -1 }, { 12427, 977, -1 }, { 12428, 977, -1 }, { 12429, 977, -1 }, { 12430, 977, -1 }, { 12425, 139, -1 }, { 12426, 139, -1 }, { 12427, 139, -1 }, { 12428, 139, -1 }, { 12429, 139, -1 }, { 12430, 139, -1 }, { 12425, 169, -1 }, { 12426, 169, -1 }, { 12427, 169, -1 }, { 12428, 169, -1 }, { 12429, 169, -1 }, { 12430, 169, -1 }, { 12425, 854, -1 }, { 12426, 854, -1 }, { 12427, 854, -1 }, { 12428, 854, -1 }, { 12429, 854, -1 }, { 12430, 854, -1 }, { 12425, 182, -1 }, { 12426, 182, -1 }, { 12427, 182, -1 }, { 12428, 182, -1 }, { 12429, 182, -1 }, { 12430, 182, -1 }, { 12425, 896, -1 }, { 12426, 896, -1 }, { 12427, 896, -1 }, { 12428, 896, -1 }, { 12429, 896, -1 }, { 12430, 896, -1 }, { 12425, 698, -1 }, { 12426, 698, -1 }, { 12427, 698, -1 }, { 12428, 698, -1 }, { 12429, 698, -1 }, { 12430, 698, -1 }, { 12425, 298, -1 }, { 12426, 298, -1 }, { 12427, 298, -1 }, { 12428, 298, -1 }, { 12429, 298, -1 }, { 12430, 298, -1 }, { 12425, 278, -1 }, { 12426, 278, -1 }, { 12427, 278, -1 }, { 12428, 278, -1 }, { 12429, 278, -1 }, { 12430, 278, -1 }, { 12425, 1567, -1 }, { 12426, 1567, -1 }, { 12427, 1567, -1 }, { 12428, 1567, -1 }, { 12429, 1567, -1 }, { 12430, 1567, -1 }, { 12425, 1340, -1 }, { 12426, 1340, -1 }, { 12427, 1340, -1 }, { 12428, 1340, -1 }, { 12429, 1340, -1 }, { 12430, 1340, -1 }, { 12425, 883, -1 }, { 12426, 883, -1 }, { 12427, 883, -1 }, { 12428, 883, -1 }, { 12429, 883, -1 }, { 12430, 883, -1 }, { 12425, 1607, -1 }, { 12426, 1607, -1 }, { 12427, 1607, -1 }, { 12428, 1607, -1 }, { 12429, 1607, -1 }, { 12430, 1607, -1 }, { 12425, 288, -1 }, { 12426, 288, -1 }, { 12427, 288, -1 }, { 12428, 288, -1 }, { 12429, 288, -1 }, { 12430, 288, -1 }, { 12425, 1949, -1 }, { 12426, 1949, -1 }, { 12427, 1949, -1 }, { 12428, 1949, -1 }, { 12429, 1949, -1 }, { 12430, 1949, -1 }, { 12425, 1822, -1 }, { 12426, 1822, -1 }, { 12427, 1822, -1 }, { 12428, 1822, -1 }, { 12429, 1822, -1 }, { 12430, 1822, -1 }, { 12425, 1995, -1 }, { 12426, 1995, -1 }, { 12427, 1995, -1 }, { 12428, 1995, -1 }, { 12429, 1995, -1 }, { 12430, 1995, -1 }, { 12425, 1496, -1 }, { 12426, 1496, -1 }, { 12427, 1496, -1 }, { 12428, 1496, -1 }, { 12429, 1496, -1 }, { 12430, 1496, -1 }, { 12425, 1493, -1 }, { 12426, 1493, -1 }, { 12427, 1493, -1 }, { 12428, 1493, -1 }, { 12429, 1493, -1 }, { 12430, 1493, -1 }, { 12425, 1489, -1 }, { 12426, 1489, -1 }, { 12427, 1489, -1 }, { 12428, 1489, -1 }, { 12429, 1489, -1 }, { 12430, 1489, -1 }, { 12425, 1359, -1 }, { 12426, 1359, -1 }, { 12427, 1359, -1 }, { 12428, 1359, -1 }, { 12429, 1359, -1 }, { 12430, 1359, -1 }, { 12425, 1297, -1 }, { 12426, 1297, -1 }, { 12427, 1297, -1 }, { 12428, 1297, -1 }, { 12429, 1297, -1 }, { 12430, 1297, -1 }, { 12425, 1306, -1 }, { 12426, 1306, -1 }, { 12427, 1306, -1 }, { 12428, 1306, -1 }, { 12429, 1306, -1 }, { 12430, 1306, -1 }, { 12425, 905, -1 }, { 12426, 905, -1 }, { 12427, 905, -1 }, { 12428, 905, -1 }, { 12429, 905, -1 }, { 12430, 905, -1 }, { 12425, 1796, -1 }, { 12426, 1796, -1 }, { 12427, 1796, -1 }, { 12428, 1796, -1 }, { 12429, 1796, -1 }, { 12430, 1796, -1 }, { 12425, 1659, -1 }, { 12426, 1659, -1 }, { 12427, 1659, -1 }, { 12428, 1659, -1 }, { 12429, 1659, -1 }, { 12430, 1659, -1 }, { 12425, 1525, -1 }, { 12426, 1525, -1 }, { 12427, 1525, -1 }, { 12428, 1525, -1 }, { 12429, 1525, -1 }, { 12430, 1525, -1 }, { 12425, 1481, -1 }, { 12426, 1481, -1 }, { 12427, 1481, -1 }, { 12428, 1481, -1 }, { 12429, 1481, -1 }, { 12430, 1481, -1 }, { 12425, 1503, -1 }, { 12426, 1503, -1 }, { 12427, 1503, -1 }, { 12428, 1503, -1 }, { 12429, 1503, -1 }, { 12430, 1503, -1 }, { 12425, 1507, -1 }, { 12426, 1507, -1 }, { 12427, 1507, -1 }, { 12428, 1507, -1 }, { 12429, 1507, -1 }, { 12430, 1507, -1 }, { 12425, 1511, -1 }, { 12426, 1511, -1 }, { 12427, 1511, -1 }, { 12428, 1511, -1 }, { 12429, 1511, -1 }, { 12430, 1511, -1 }, { 31310, 1178, -1 }, { 31311, 1178, -1 }, { 31312, 1178, -1 }, { 31310, 1179, -1 }, { 31311, 1179, -1 }, { 31312, 1179, -1 }, { 31306, 63, -1 }, { 31307, 63, -1 }, { 31308, 63, -1 }, { 31309, 63, -1 }, { 31306, 21, -1 }, { 31307, 21, -1 }, { 31308, 21, -1 }, { 31309, 21, -1 }, { 31306, 1149, -1 }, { 31307, 1149, -1 }, { 31308, 1149, -1 }, { 31309, 1149, -1 }, { 31299, 63, -1 }, { 31300, 63, -1 }, { 31301, 63, -1 }, { 31302, 63, -1 }, { 31303, 63, -1 }, { 31305, 63, -1 }, { 31299, 21, -1 }, { 31300, 21, -1 }, { 31301, 21, -1 }, { 31302, 21, -1 }, { 31303, 21, -1 }, { 31305, 21, -1 }, { 31300, 1149, -1 }, { 31303, 1149, -1 }, { 31305, 1149, -1 }, { 5005, 1770, -1 }, { 5006, 1770, -1 }, { 5007, 1770, -1 }, { 5005, 63, -1 }, { 5006, 63, -1 }, { 5007, 63, -1 }, { 5005, 11, -1 }, { 5006, 11, -1 }, { 5007, 11, -1 }, { 5005, 752, -1 }, { 5006, 752, -1 }, { 5007, 752, -1 }, { 5005, 198, -1 }, { 5006, 198, -1 }, { 5007, 198, -1 }, { 5005, 21, -1 }, { 5006, 21, -1 }, { 5007, 21, -1 }, { 5005, 1149, -1 }, { 5006, 1149, -1 }, { 5007, 1149, -1 }, { 4981, 1770, -1 }, { 4982, 1770, -1 }, { 4983, 1770, -1 }, { 4984, 1770, -1 }, { 4985, 1770, -1 }, { 4986, 1770, -1 }, { 4987, 1770, -1 }, { 4988, 1770, -1 }, { 4989, 1770, -1 }, { 4990, 1770, -1 }, { 4991, 1770, -1 }, { 4992, 1770, -1 }, { 4993, 1770, -1 }, { 4994, 1770, -1 }, { 4995, 1770, -1 }, { 4996, 1770, -1 }, { 4997, 1770, -1 }, { 4998, 1770, -1 }, { 4999, 1770, -1 }, { 5000, 1770, -1 }, { 5001, 1770, -1 }, { 5003, 1770, -1 }, { 5004, 1770, -1 }, { 4982, 63, -1 }, { 4983, 63, -1 }, { 4985, 63, -1 }, { 4986, 63, -1 }, { 4987, 63, -1 }, { 4988, 63, -1 }, { 4989, 63, -1 }, { 4990, 63, -1 }, { 4991, 63, -1 }, { 4993, 63, -1 }, { 4994, 63, -1 }, { 4995, 63, -1 }, { 4996, 63, -1 }, { 4997, 63, -1 }, { 4998, 63, -1 }, { 4999, 63, -1 }, { 5000, 63, -1 }, { 5004, 63, -1 }, { 4981, 11, -1 }, { 4982, 11, -1 }, { 4983, 11, -1 }, { 4986, 11, -1 }, { 4987, 11, -1 }, { 4988, 11, -1 }, { 4989, 11, -1 }, { 4990, 11, -1 }, { 4991, 11, -1 }, { 4992, 11, -1 }, { 4993, 11, -1 }, { 4995, 11, -1 }, { 4996, 11, -1 }, { 4997, 11, -1 }, { 4998, 11, -1 }, { 4999, 11, -1 }, { 5000, 11, -1 }, { 5004, 11, -1 }, { 4981, 752, -1 }, { 4982, 752, -1 }, { 4983, 752, -1 }, { 4984, 752, -1 }, { 4985, 752, -1 }, { 4986, 752, -1 }, { 4987, 752, -1 }, { 4988, 752, -1 }, { 4989, 752, -1 }, { 4990, 752, -1 }, { 4991, 752, -1 }, { 4992, 752, -1 }, { 4993, 752, -1 }, { 4994, 752, -1 }, { 4995, 752, -1 }, { 4996, 752, -1 }, { 4997, 752, -1 }, { 4998, 752, -1 }, { 4999, 752, -1 }, { 5000, 752, -1 }, { 5001, 752, -1 }, { 5002, 752, -1 }, { 5003, 752, -1 }, { 5004, 752, -1 }, { 4982, 198, -1 }, { 4983, 198, -1 }, { 4984, 198, -1 }, { 4985, 198, -1 }, { 4986, 198, -1 }, { 4987, 198, -1 }, { 4988, 198, -1 }, { 4989, 198, -1 }, { 4990, 198, -1 }, { 4991, 198, -1 }, { 4993, 198, -1 }, { 4994, 198, -1 }, { 4995, 198, -1 }, { 4996, 198, -1 }, { 4997, 198, -1 }, { 4999, 198, -1 }, { 5000, 198, -1 }, { 5002, 198, -1 }, { 5003, 198, -1 }, { 5004, 198, -1 }, { 4981, 21, -1 }, { 4982, 21, -1 }, { 4983, 21, -1 }, { 4984, 21, -1 }, { 4985, 21, -1 }, { 4986, 21, -1 }, { 4987, 21, -1 }, { 4988, 21, -1 }, { 4989, 21, -1 }, { 4990, 21, -1 }, { 4991, 21, -1 }, { 4992, 21, -1 }, { 4993, 21, -1 }, { 4994, 21, -1 }, { 4995, 21, -1 }, { 4996, 21, -1 }, { 4997, 21, -1 }, { 4998, 21, -1 }, { 4999, 21, -1 }, { 5000, 21, -1 }, { 5001, 21, -1 }, { 5002, 21, -1 }, { 5003, 21, -1 }, { 5004, 21, -1 }, { 4981, 1149, -1 }, { 4982, 1149, -1 }, { 4983, 1149, -1 }, { 4984, 1149, -1 }, { 4985, 1149, -1 }, { 4986, 1149, -1 }, { 4987, 1149, -1 }, { 4988, 1149, -1 }, { 4989, 1149, -1 }, { 4990, 1149, -1 }, { 4991, 1149, -1 }, { 4992, 1149, -1 }, { 4993, 1149, -1 }, { 4994, 1149, -1 }, { 4995, 1149, -1 }, { 4996, 1149, -1 }, { 4997, 1149, -1 }, { 4998, 1149, -1 }, { 4999, 1149, -1 }, { 5000, 1149, -1 }, { 5001, 1149, -1 }, { 5002, 1149, -1 }, { 5003, 1149, -1 }, { 5004, 1149, -1 }, { 5008, 63, -1 }, { 5009, 63, -1 }, { 5010, 63, -1 }, { 5011, 63, -1 }, { 5012, 63, -1 }, { 5013, 63, -1 }, { 5008, 21, -1 }, { 5009, 21, -1 }, { 5010, 21, -1 }, { 5011, 21, -1 }, { 5012, 21, -1 }, { 5013, 21, -1 }, { 5008, 1149, -1 }, { 5010, 1149, -1 }, { 5011, 1149, -1 }, { 5012, 1149, -1 }, { 5013, 1149, -1 }, { 4792, 1770, -1 }, { 4793, 1770, -1 }, { 4792, 63, -1 }, { 4793, 63, -1 }, { 4792, 11, -1 }, { 4793, 11, -1 }, { 4792, 752, -1 }, { 4793, 752, -1 }, { 4792, 198, -1 }, { 4793, 198, -1 }, { 4792, 21, -1 }, { 4793, 21, -1 }, { 4792, 1149, -1 }, { 4793, 1149, -1 }, { 4794, 1770, -1 }, { 4795, 1770, -1 }, { 4794, 63, -1 }, { 4795, 63, -1 }, { 4794, 11, -1 }, { 4795, 11, -1 }, { 4794, 752, -1 }, { 4795, 752, -1 }, { 4794, 198, -1 }, { 4795, 198, -1 }, { 4794, 21, -1 }, { 4795, 21, -1 }, { 4794, 1149, -1 }, { 4795, 1149, -1 }, { 4788, 190, -1 }, { 4789, 190, -1 }, { 4790, 190, -1 }, { 4791, 190, -1 }, { 4788, 380, -1 }, { 4789, 380, -1 }, { 4790, 380, -1 }, { 4791, 380, -1 }, { 4779, 1770, -1 }, { 4780, 1770, -1 }, { 4781, 1770, -1 }, { 4782, 1770, -1 }, { 4783, 1770, -1 }, { 4784, 1770, -1 }, { 1484, 170, -1 }, { 4785, 1770, -1 }, { 4786, 1770, -1 }, { 1512, 171, -1 }, { 4779, 63, -1 }, { 4780, 63, -1 }, { 4781, 63, -1 }, { 4782, 63, -1 }, { 4783, 63, -1 }, { 4784, 63, -1 }, { 4785, 63, -1 }, { 4786, 63, -1 }, { 4779, 11, -1 }, { 4780, 11, -1 }, { 4781, 11, -1 }, { 4782, 11, -1 }, { 4783, 11, -1 }, { 4784, 11, -1 }, { 4785, 11, -1 }, { 4786, 11, -1 }, { 4779, 752, -1 }, { 4780, 752, -1 }, { 4781, 752, -1 }, { 4782, 752, -1 }, { 4783, 752, -1 }, { 4784, 752, -1 }, { 4785, 752, -1 }, { 4786, 752, -1 }, { 4779, 198, -1 }, { 4780, 198, -1 }, { 4781, 198, -1 }, { 4782, 198, -1 }, { 4783, 198, -1 }, { 4784, 198, -1 }, { 4785, 198, -1 }, { 4786, 198, -1 }, { 4779, 21, -1 }, { 4780, 21, -1 }, { 4781, 21, -1 }, { 4782, 21, -1 }, { 4783, 21, -1 }, { 4784, 21, -1 }, { 4785, 21, -1 }, { 4786, 21, -1 }, { 4779, 1149, -1 }, { 4780, 1149, -1 }, { 4781, 1149, -1 }, { 4782, 1149, -1 }, { 4783, 1149, -1 }, { 4784, 1149, -1 }, { 4785, 1149, -1 }, { 4786, 1149, -1 }, { 31357, 1203, -1 }, { 31358, 1203, -1 }, { 31359, 1203, -1 }, { 31360, 1203, -1 }, { 31361, 1203, -1 }, { 31357, 1181, -1 }, { 31358, 1181, -1 }, { 31359, 1181, -1 }, { 31360, 1181, -1 }, { 31361, 1181, -1 }, { 31357, 1166, -1 }, { 31358, 1166, -1 }, { 31359, 1166, -1 }, { 31360, 1166, -1 }, { 31361, 1166, -1 }, { 31357, 1198, -1 }, { 31358, 1198, -1 }, { 31359, 1198, -1 }, { 31360, 1198, -1 }, { 31361, 1198, -1 }, { 31357, 1844, -1 }, { 31358, 1844, -1 }, { 31359, 1844, -1 }, { 31360, 1844, -1 }, { 31361, 1844, -1 }, { 31357, 1155, -1 }, { 31358, 1155, -1 }, { 31359, 1155, -1 }, { 31360, 1155, -1 }, { 31361, 1155, -1 }, { 31321, 1203, -1 }, { 31322, 1203, -1 }, { 31323, 1203, -1 }, { 31324, 1203, -1 }, { 31325, 1203, -1 }, { 31326, 1203, -1 }, { 31327, 1203, -1 }, { 31328, 1203, -1 }, { 31329, 1203, -1 }, { 31330, 1203, -1 }, { 31331, 1203, -1 }, { 31332, 1203, -1 }, { 31333, 1203, -1 }, { 31334, 1203, -1 }, { 31335, 1203, -1 }, { 31336, 1203, -1 }, { 31337, 1203, -1 }, { 31338, 1203, -1 }, { 31339, 1203, -1 }, { 31340, 1203, -1 }, { 31341, 1203, -1 }, { 31342, 1203, -1 }, { 31343, 1203, -1 }, { 31344, 1203, -1 }, { 31345, 1203, -1 }, { 31346, 1203, -1 }, { 1504, 173, -1 }, { 1508, 1160, -1 }, { 31347, 1203, -1 }, { 31348, 1203, -1 }, { 31349, 1203, -1 }, { 31350, 1203, -1 }, { 31351, 1203, -1 }, { 31352, 1203, -1 }, { 31353, 1203, -1 }, { 31354, 1203, -1 }, { 4409, -1, 129 }, { 31355, 1203, -1 }, { 31356, 1203, -1 }, { 31321, 1181, -1 }, { 31322, 1181, -1 }, { 31323, 1181, -1 }, { 31324, 1181, -1 }, { 31325, 1181, -1 }, { 31326, 1181, -1 }, { 31327, 1181, -1 }, { 31328, 1181, -1 }, { 31329, 1181, -1 }, { 31330, 1181, -1 }, { 31331, 1181, -1 }, { 31332, 1181, -1 }, { 31333, 1181, -1 }, { 31334, 1181, -1 }, { 31335, 1181, -1 }, { 31336, 1181, -1 }, { 31337, 1181, -1 }, { 31338, 1181, -1 }, { 31339, 1181, -1 }, { 31340, 1181, -1 }, { 31341, 1181, -1 }, { 31342, 1181, -1 }, { 31343, 1181, -1 }, { 31344, 1181, -1 }, { 31345, 1181, -1 }, { 31346, 1181, -1 }, { 31347, 1181, -1 }, { 31348, 1181, -1 }, { 31349, 1181, -1 }, { 31350, 1181, -1 }, { 31351, 1181, -1 }, { 31352, 1181, -1 }, { 31353, 1181, -1 }, { 31354, 1181, -1 }, { 31355, 1181, -1 }, { 31356, 1181, -1 }, { 31321, 1166, -1 }, { 31322, 1166, -1 }, { 31323, 1166, -1 }, { 31324, 1166, -1 }, { 31325, 1166, -1 }, { 31326, 1166, -1 }, { 31327, 1166, -1 }, { 31328, 1166, -1 }, { 31329, 1166, -1 }, { 31330, 1166, -1 }, { 31331, 1166, -1 }, { 31332, 1166, -1 }, { 31333, 1166, -1 }, { 31334, 1166, -1 }, { 31335, 1166, -1 }, { 31336, 1166, -1 }, { 31337, 1166, -1 }, { 31338, 1166, -1 }, { 31339, 1166, -1 }, { 31340, 1166, -1 }, { 31341, 1166, -1 }, { 31342, 1166, -1 }, { 31343, 1166, -1 }, { 31344, 1166, -1 }, { 31345, 1166, -1 }, { 31346, 1166, -1 }, { 31347, 1166, -1 }, { 31348, 1166, -1 }, { 31349, 1166, -1 }, { 31350, 1166, -1 }, { 31351, 1166, -1 }, { 31352, 1166, -1 }, { 31353, 1166, -1 }, { 31354, 1166, -1 }, { 31355, 1166, -1 }, { 31356, 1166, -1 }, { 31321, 1198, -1 }, { 31322, 1198, -1 }, { 31323, 1198, -1 }, { 31324, 1198, -1 }, { 31325, 1198, -1 }, { 31326, 1198, -1 }, { 31327, 1198, -1 }, { 31328, 1198, -1 }, { 31329, 1198, -1 }, { 31330, 1198, -1 }, { 31331, 1198, -1 }, { 31332, 1198, -1 }, { 31333, 1198, -1 }, { 31334, 1198, -1 }, { 31335, 1198, -1 }, { 31336, 1198, -1 }, { 31337, 1198, -1 }, { 31338, 1198, -1 }, { 31339, 1198, -1 }, { 31340, 1198, -1 }, { 31341, 1198, -1 }, { 31342, 1198, -1 }, { 31343, 1198, -1 }, { 31344, 1198, -1 }, { 31345, 1198, -1 }, { 31346, 1198, -1 }, { 31347, 1198, -1 }, { 31348, 1198, -1 }, { 31349, 1198, -1 }, { 31350, 1198, -1 }, { 31351, 1198, -1 }, { 31352, 1198, -1 }, { 31353, 1198, -1 }, { 31354, 1198, -1 }, { 31355, 1198, -1 }, { 31356, 1198, -1 }, { 31321, 1844, -1 }, { 31322, 1844, -1 }, { 31323, 1844, -1 }, { 31324, 1844, -1 }, { 31325, 1844, -1 }, { 31326, 1844, -1 }, { 31327, 1844, -1 }, { 31328, 1844, -1 }, { 31329, 1844, -1 }, { 31330, 1844, -1 }, { 31331, 1844, -1 }, { 31332, 1844, -1 }, { 31333, 1844, -1 }, { 31334, 1844, -1 }, { 31335, 1844, -1 }, { 31336, 1844, -1 }, { 31337, 1844, -1 }, { 31338, 1844, -1 }, { 31339, 1844, -1 }, { 31340, 1844, -1 }, { 31341, 1844, -1 }, { 31342, 1844, -1 }, { 31343, 1844, -1 }, { 31344, 1844, -1 }, { 31345, 1844, -1 }, { 31346, 1844, -1 }, { 31347, 1844, -1 }, { 31348, 1844, -1 }, { 31349, 1844, -1 }, { 31350, 1844, -1 }, { 31351, 1844, -1 }, { 31352, 1844, -1 }, { 31353, 1844, -1 }, { 31354, 1844, -1 }, { 31355, 1844, -1 }, { 31356, 1844, -1 }, { 31321, 1155, -1 }, { 31322, 1155, -1 }, { 31323, 1155, -1 }, { 31324, 1155, -1 }, { 31325, 1155, -1 }, { 31326, 1155, -1 }, { 31327, 1155, -1 }, { 31328, 1155, -1 }, { 31329, 1155, -1 }, { 31330, 1155, -1 }, { 31331, 1155, -1 }, { 31332, 1155, -1 }, { 31333, 1155, -1 }, { 31334, 1155, -1 }, { 31335, 1155, -1 }, { 31336, 1155, -1 }, { 31337, 1155, -1 }, { 31338, 1155, -1 }, { 31339, 1155, -1 }, { 31340, 1155, -1 }, { 31341, 1155, -1 }, { 31342, 1155, -1 }, { 31343, 1155, -1 }, { 31344, 1155, -1 }, { 31345, 1155, -1 }, { 31346, 1155, -1 }, { 31347, 1155, -1 }, { 31348, 1155, -1 }, { 31349, 1155, -1 }, { 31350, 1155, -1 }, { 31351, 1155, -1 }, { 31352, 1155, -1 }, { 31353, 1155, -1 }, { 31354, 1155, -1 }, { 31355, 1155, -1 }, { 31356, 1155, -1 }, { 31362, 63, -1 }, { 31363, 63, -1 }, { 31364, 63, -1 }, { 31365, 63, -1 }, { 31362, 21, -1 }, { 31363, 21, -1 }, { 31364, 21, -1 }, { 31365, 21, -1 }, { 31366, 1178, -1 }, { 31367, 1178, -1 }, { 31368, 1178, -1 }, { 31369, 1178, -1 }, { 31370, 1178, -1 }, { 31371, 1178, -1 }, { 31372, 1178, -1 }, { 31366, 1179, -1 }, { 31367, 1179, -1 }, { 31368, 1179, -1 }, { 31369, 1179, -1 }, { 31370, 1179, -1 }, { 31371, 1179, -1 }, { 31372, 1179, -1 }, { 4978, 198, -1 }, { 4979, 198, -1 }, { 4980, 198, -1 }, { 4972, 198, -1 }, { 4973, 198, -1 }, { 4974, 198, -1 }, { 4975, 198, -1 }, { 4976, 198, -1 }, { 4977, 198, -1 }, { 3267, 387, -1 }, { 3268, 387, -1 }, { 3269, 387, -1 }, { 3270, 387, -1 }, { 3271, 387, -1 }, { 3272, 387, -1 }, { 3273, 387, -1 }, { 3274, 387, -1 }, { 3275, 387, -1 }, { 3276, 387, -1 }, { 3277, 387, -1 }, { 3267, 1159, -1 }, { 3268, 1159, -1 }, { 3269, 1159, -1 }, { 3270, 1159, -1 }, { 3271, 1159, -1 }, { 3272, 1159, -1 }, { 3273, 1159, -1 }, { 3274, 1159, -1 }, { 3275, 1159, -1 }, { 3276, 1159, -1 }, { 3277, 1159, -1 }, { 3278, 1183, -1 }, { 3279, 1183, -1 }, { 3280, 1183, -1 }, { 3281, 1183, -1 }, { 3282, 1183, -1 }, { 3283, 1183, -1 }, { 3284, 1183, -1 }, { 3285, 1183, -1 }, { 3286, 1183, -1 }, { 3287, 1183, -1 }, { 3288, 1183, -1 }, { 3289, 1183, -1 }, { 3278, 1157, -1 }, { 3279, 1157, -1 }, { 3280, 1157, -1 }, { 3281, 1157, -1 }, { 3282, 1157, -1 }, { 3283, 1157, -1 }, { 3284, 1157, -1 }, { 3285, 1157, -1 }, { 3286, 1157, -1 }, { 3287, 1157, -1 }, { 3288, 1157, -1 }, { 3289, 1157, -1 }, { 3290, 522, -1 }, { 3291, 522, -1 }, { 3292, 522, -1 }, { 3293, 522, -1 }, { 3295, 522, -1 }, { 3296, 522, -1 }, { 3297, 522, -1 }, { 3298, 522, -1 }, { 3299, 522, -1 }, { 3300, 522, -1 }, { 3301, 522, -1 }, { 3302, 522, -1 }, { 3290, 385, -1 }, { 3291, 385, -1 }, { 3292, 385, -1 }, { 3293, 385, -1 }, { 3294, 385, -1 }, { 3295, 385, -1 }, { 3296, 385, -1 }, { 3297, 385, -1 }, { 3298, 385, -1 }, { 3299, 385, -1 }, { 3300, 385, -1 }, { 3301, 385, -1 }, { 3302, 385, -1 }, { 3290, 739, -1 }, { 3291, 739, -1 }, { 3292, 739, -1 }, { 3293, 739, -1 }, { 3294, 739, -1 }, { 3295, 739, -1 }, { 3296, 739, -1 }, { 3297, 739, -1 }, { 3298, 739, -1 }, { 3299, 739, -1 }, { 3300, 739, -1 }, { 3301, 739, -1 }, { 3302, 739, -1 }, { 3290, 751, -1 }, { 3291, 751, -1 }, { 3292, 751, -1 }, { 3293, 751, -1 }, { 3294, 751, -1 }, { 3295, 751, -1 }, { 3296, 751, -1 }, { 3297, 751, -1 }, { 3298, 751, -1 }, { 3299, 751, -1 }, { 3300, 751, -1 }, { 3301, 751, -1 }, { 3302, 751, -1 }, { 31294, 1178, -1 }, { 31295, 1178, -1 }, { 31294, 1179, -1 }, { 31295, 1179, -1 }, { 27179, 63, -1 }, { 27180, 63, -1 }, { 27179, 11, -1 }, { 27180, 11, -1 }, { 27179, 19, -1 }, { 27180, 19, -1 }, { 27162, 63, -1 }, { 27163, 63, -1 }, { 27164, 63, -1 }, { 27165, 63, -1 }, { 27166, 63, -1 }, { 27167, 63, -1 }, { 27168, 63, -1 }, { 27162, 11, -1 }, { 27163, 11, -1 }, { 27164, 11, -1 }, { 27165, 11, -1 }, { 27166, 11, -1 }, { 27167, 11, -1 }, { 27168, 11, -1 }, { 27162, 19, -1 }, { 27163, 19, -1 }, { 27164, 19, -1 }, { 27165, 19, -1 }, { 27166, 19, -1 }, { 27167, 19, -1 }, { 27168, 19, -1 }, { 27162, 784, -1 }, { 27163, 784, -1 }, { 27164, 784, -1 }, { 27165, 784, -1 }, { 27166, 784, -1 }, { 27167, 784, -1 }, { 27168, 784, -1 }, { 27162, 783, -1 }, { 27163, 783, -1 }, { 27164, 783, -1 }, { 27165, 783, -1 }, { 27166, 783, -1 }, { 27167, 783, -1 }, { 27168, 783, -1 }, { 27224, 63, -1 }, { 27225, 63, -1 }, { 27226, 63, -1 }, { 27223, 11, -1 }, { 27224, 11, -1 }, { 27225, 11, -1 }, { 27226, 11, -1 }, { 27224, 19, -1 }, { 27225, 19, -1 }, { 27226, 19, -1 }, { 27224, 784, -1 }, { 27225, 784, -1 }, { 27226, 784, -1 }, { 27223, 791, -1 }, { 27225, 791, -1 }, { 27226, 791, -1 }, { 27223, 783, -1 }, { 27224, 783, -1 }, { 27225, 783, -1 }, { 27226, 783, -1 }, { 27236, 790, -1 }, { 27237, 790, -1 }, { 27234, 792, -1 }, { 27236, 792, -1 }, { 27237, 792, -1 }, { 27229, 63, -1 }, { 27232, 63, -1 }, { 27228, 11, -1 }, { 27229, 11, -1 }, { 27232, 11, -1 }, { 27232, 19, -1 }, { 27229, 784, -1 }, { 27232, 784, -1 }, { 27228, 783, -1 }, { 27229, 783, -1 }, { 27232, 783, -1 }, { 33935, 1432, -1 }, { 33936, 1432, -1 }, { 33937, 1432, -1 }, { 33938, 1432, -1 }, { 33939, 1432, -1 }, { 33940, 1432, -1 }, { 33935, 1416, -1 }, { 33936, 1416, -1 }, { 33937, 1416, -1 }, { 33938, 1416, -1 }, { 33939, 1416, -1 }, { 33940, 1416, -1 }, { 33931, 1432, -1 }, { 33931, 1416, -1 }, { 33934, 1416, -1 }, { 35112, 11, -1 }, { 35115, 11, -1 }, { 35112, 785, -1 }, { 35115, 785, -1 }, { 35112, 836, -1 }, { 35115, 836, -1 }, { 35112, 783, -1 }, { 35115, 783, -1 }, { 35112, 778, -1 }, { 35115, 778, -1 }, { 35112, 779, -1 }, { 35115, 779, -1 }, { 31667, 63, -1 }, { 31666, 1149, -1 }, { 31667, 1149, -1 }, { 31671, 1178, -1 }, { 31672, 1178, -1 }, { 31671, 1179, -1 }, { 31672, 1179, -1 }, { 31659, 1178, -1 }, { 31660, 1178, -1 }, { 31660, 1179, -1 }, { 31625, 1858, -1 }, { 31625, 1855, -1 }, { 31625, 63, -1 }, { 31625, 7, -1 }, { 31625, 13, -1 }, { 31625, 473, -1 }, { 31625, 27, -1 }, { 31625, 1003, -1 }, { 31625, 1107, -1 }, { 31625, 88, -1 }, { 31625, 231, -1 }, { 31625, 322, -1 }, { 31625, 472, -1 }, { 31625, 1019, -1 }, { 31625, 1002, -1 }, { 31625, 87, -1 }, { 31625, 249, -1 }, { 31625, 321, -1 }, { 31625, 474, -1 }, { 31625, 1021, -1 }, { 31625, 1005, -1 }, { 31625, 90, -1 }, { 31625, 232, -1 }, { 31625, 324, -1 }, { 31625, 1857, -1 }, { 31625, 98, -1 }, { 31625, 99, -1 }, { 31625, 1330, -1 }, { 31625, 191, -1 }, { 31625, 1724, -1 }, { 31625, 605, -1 }, { 31625, 855, -1 }, { 31625, 258, -1 }, { 31625, 897, -1 }, { 31625, 10, -1 }, { 31625, 1568, -1 }, { 31625, 606, -1 }, { 31625, 259, -1 }, { 31625, 898, -1 }, { 31625, 24, -1 }, { 31625, 222, -1 }, { 31625, 219, -1 }, { 31625, 1095, -1 }, { 31625, 1569, -1 }, { 31625, 1823, -1 }, { 31625, 26, -1 }, { 31625, 84, -1 }, { 31625, 1115, -1 }, { 31625, 134, -1 }, { 31625, 16, -1 }, { 31625, 129, -1 }, { 31625, 44, -1 }, { 31625, 155, -1 }, { 31625, 17, -1 }, { 31625, 11, -1 }, { 31625, 12, -1 }, { 31625, 275, -1 }, { 31625, 19, -1 }, { 31625, 25, -1 }, { 31625, 68, -1 }, { 31625, 1, -1 }, { 31625, 20, -1 }, { 31625, 21, -1 }, { 31625, 22, -1 }, { 31625, 600, -1 }, { 31625, 1235, -1 }, { 31625, 1234, -1 }, { 31625, 1233, -1 }, { 31625, 1146, -1 }, { 31625, 1147, -1 }, { 31625, 1148, -1 }, { 31625, 1240, -1 }, { 31625, 1239, -1 }, { 31625, 1245, -1 }, { 31625, 1246, -1 }, { 31625, 1244, -1 }, { 31626, 1858, -1 }, { 31627, 1858, -1 }, { 31628, 1858, -1 }, { 31629, 1858, -1 }, { 31626, 1855, -1 }, { 31627, 1855, -1 }, { 31628, 1855, -1 }, { 31629, 1855, -1 }, { 31626, 63, -1 }, { 31627, 63, -1 }, { 31628, 63, -1 }, { 31629, 63, -1 }, { 31626, 7, -1 }, { 31627, 7, -1 }, { 31628, 7, -1 }, { 31629, 7, -1 }, { 31626, 13, -1 }, { 31627, 13, -1 }, { 31628, 13, -1 }, { 31629, 13, -1 }, { 31626, 473, -1 }, { 31627, 473, -1 }, { 31628, 473, -1 }, { 31629, 473, -1 }, { 31626, 27, -1 }, { 31627, 27, -1 }, { 31628, 27, -1 }, { 31629, 27, -1 }, { 31626, 1003, -1 }, { 31627, 1003, -1 }, { 31628, 1003, -1 }, { 31629, 1003, -1 }, { 31626, 1107, -1 }, { 31627, 1107, -1 }, { 31628, 1107, -1 }, { 31629, 1107, -1 }, { 31626, 88, -1 }, { 31627, 88, -1 }, { 31628, 88, -1 }, { 31629, 88, -1 }, { 31626, 231, -1 }, { 31627, 231, -1 }, { 31628, 231, -1 }, { 31629, 231, -1 }, { 31626, 322, -1 }, { 31627, 322, -1 }, { 31628, 322, -1 }, { 31629, 322, -1 }, { 31626, 472, -1 }, { 31627, 472, -1 }, { 31628, 472, -1 }, { 31629, 472, -1 }, { 31626, 1019, -1 }, { 31627, 1019, -1 }, { 31628, 1019, -1 }, { 31629, 1019, -1 }, { 31626, 1002, -1 }, { 31627, 1002, -1 }, { 31628, 1002, -1 }, { 31629, 1002, -1 }, { 31626, 87, -1 }, { 31627, 87, -1 }, { 31628, 87, -1 }, { 31629, 87, -1 }, { 31626, 249, -1 }, { 31627, 249, -1 }, { 31628, 249, -1 }, { 31629, 249, -1 }, { 31626, 321, -1 }, { 31627, 321, -1 }, { 31628, 321, -1 }, { 31629, 321, -1 }, { 31626, 474, -1 }, { 31627, 474, -1 }, { 31628, 474, -1 }, { 31629, 474, -1 }, { 31626, 1021, -1 }, { 31627, 1021, -1 }, { 31628, 1021, -1 }, { 31629, 1021, -1 }, { 31626, 1005, -1 }, { 31627, 1005, -1 }, { 31628, 1005, -1 }, { 31629, 1005, -1 }, { 31626, 90, -1 }, { 31627, 90, -1 }, { 31628, 90, -1 }, { 31629, 90, -1 }, { 31626, 232, -1 }, { 31627, 232, -1 }, { 31628, 232, -1 }, { 31629, 232, -1 }, { 31626, 324, -1 }, { 31627, 324, -1 }, { 31628, 324, -1 }, { 31629, 324, -1 }, { 31626, 1857, -1 }, { 31627, 1857, -1 }, { 31628, 1857, -1 }, { 31629, 1857, -1 }, { 31626, 98, -1 }, { 31627, 98, -1 }, { 31628, 98, -1 }, { 31629, 98, -1 }, { 31626, 99, -1 }, { 31627, 99, -1 }, { 31628, 99, -1 }, { 31629, 99, -1 }, { 31626, 1330, -1 }, { 31627, 1330, -1 }, { 31628, 1330, -1 }, { 31629, 1330, -1 }, { 31626, 191, -1 }, { 31627, 191, -1 }, { 31628, 191, -1 }, { 31629, 191, -1 }, { 31626, 1724, -1 }, { 31627, 1724, -1 }, { 31628, 1724, -1 }, { 31629, 1724, -1 }, { 31626, 605, -1 }, { 31627, 605, -1 }, { 31628, 605, -1 }, { 31629, 605, -1 }, { 31626, 855, -1 }, { 31627, 855, -1 }, { 31628, 855, -1 }, { 31629, 855, -1 }, { 31626, 258, -1 }, { 31627, 258, -1 }, { 31628, 258, -1 }, { 31629, 258, -1 }, { 31626, 897, -1 }, { 31627, 897, -1 }, { 31628, 897, -1 }, { 31629, 897, -1 }, { 31626, 10, -1 }, { 31627, 10, -1 }, { 31628, 10, -1 }, { 31629, 10, -1 }, { 31626, 1568, -1 }, { 31627, 1568, -1 }, { 31628, 1568, -1 }, { 31629, 1568, -1 }, { 31626, 606, -1 }, { 31627, 606, -1 }, { 31628, 606, -1 }, { 31629, 606, -1 }, { 31626, 259, -1 }, { 31627, 259, -1 }, { 31628, 259, -1 }, { 31629, 259, -1 }, { 31626, 898, -1 }, { 31627, 898, -1 }, { 31628, 898, -1 }, { 31629, 898, -1 }, { 31626, 24, -1 }, { 31627, 24, -1 }, { 31628, 24, -1 }, { 31629, 24, -1 }, { 31626, 222, -1 }, { 31627, 222, -1 }, { 31628, 222, -1 }, { 31629, 222, -1 }, { 31626, 219, -1 }, { 31627, 219, -1 }, { 31628, 219, -1 }, { 31629, 219, -1 }, { 31626, 1095, -1 }, { 31627, 1095, -1 }, { 31628, 1095, -1 }, { 31629, 1095, -1 }, { 31626, 1569, -1 }, { 31627, 1569, -1 }, { 31628, 1569, -1 }, { 31629, 1569, -1 }, { 31626, 1823, -1 }, { 31627, 1823, -1 }, { 31628, 1823, -1 }, { 31629, 1823, -1 }, { 31626, 26, -1 }, { 31627, 26, -1 }, { 31628, 26, -1 }, { 31629, 26, -1 }, { 31626, 84, -1 }, { 31627, 84, -1 }, { 31628, 84, -1 }, { 31629, 84, -1 }, { 31626, 1115, -1 }, { 31627, 1115, -1 }, { 31628, 1115, -1 }, { 31629, 1115, -1 }, { 31626, 134, -1 }, { 31627, 134, -1 }, { 31628, 134, -1 }, { 31629, 134, -1 }, { 31626, 16, -1 }, { 31627, 16, -1 }, { 31628, 16, -1 }, { 31629, 16, -1 }, { 31626, 129, -1 }, { 31627, 129, -1 }, { 31628, 129, -1 }, { 31629, 129, -1 }, { 31626, 44, -1 }, { 31627, 44, -1 }, { 31628, 44, -1 }, { 31629, 44, -1 }, { 31626, 155, -1 }, { 31627, 155, -1 }, { 31628, 155, -1 }, { 31629, 155, -1 }, { 31626, 17, -1 }, { 31627, 17, -1 }, { 31628, 17, -1 }, { 31629, 17, -1 }, { 31626, 11, -1 }, { 31627, 11, -1 }, { 31628, 11, -1 }, { 31629, 11, -1 }, { 31626, 12, -1 }, { 31627, 12, -1 }, { 31628, 12, -1 }, { 31629, 12, -1 }, { 31626, 275, -1 }, { 31627, 275, -1 }, { 31628, 275, -1 }, { 31629, 275, -1 }, { 31626, 19, -1 }, { 31627, 19, -1 }, { 31628, 19, -1 }, { 31629, 19, -1 }, { 31626, 25, -1 }, { 31627, 25, -1 }, { 31628, 25, -1 }, { 31629, 25, -1 }, { 31626, 68, -1 }, { 31627, 68, -1 }, { 31628, 68, -1 }, { 31629, 68, -1 }, { 31626, 1, -1 }, { 31627, 1, -1 }, { 31628, 1, -1 }, { 31629, 1, -1 }, { 31626, 20, -1 }, { 31627, 20, -1 }, { 31628, 20, -1 }, { 31629, 20, -1 }, { 31626, 21, -1 }, { 31627, 21, -1 }, { 31628, 21, -1 }, { 31629, 21, -1 }, { 31626, 22, -1 }, { 31627, 22, -1 }, { 31628, 22, -1 }, { 31629, 22, -1 }, { 31626, 600, -1 }, { 31627, 600, -1 }, { 31628, 600, -1 }, { 31629, 600, -1 }, { 31626, 1235, -1 }, { 31627, 1235, -1 }, { 31628, 1235, -1 }, { 31629, 1235, -1 }, { 31626, 1234, -1 }, { 31627, 1234, -1 }, { 31628, 1234, -1 }, { 31629, 1234, -1 }, { 31626, 1233, -1 }, { 31627, 1233, -1 }, { 31628, 1233, -1 }, { 31629, 1233, -1 }, { 31626, 1146, -1 }, { 31627, 1146, -1 }, { 31628, 1146, -1 }, { 31629, 1146, -1 }, { 31626, 1147, -1 }, { 31627, 1147, -1 }, { 31628, 1147, -1 }, { 31629, 1147, -1 }, { 31626, 1148, -1 }, { 31627, 1148, -1 }, { 31628, 1148, -1 }, { 31629, 1148, -1 }, { 31626, 1240, -1 }, { 31627, 1240, -1 }, { 31628, 1240, -1 }, { 31629, 1240, -1 }, { 31626, 1239, -1 }, { 31627, 1239, -1 }, { 31628, 1239, -1 }, { 31629, 1239, -1 }, { 31626, 1245, -1 }, { 31627, 1245, -1 }, { 31628, 1245, -1 }, { 31629, 1245, -1 }, { 31626, 1246, -1 }, { 31627, 1246, -1 }, { 31628, 1246, -1 }, { 31629, 1246, -1 }, { 31626, 1244, -1 }, { 31627, 1244, -1 }, { 31628, 1244, -1 }, { 31629, 1244, -1 }, { 31646, 1856, -1 }, { 31647, 1856, -1 }, { 31646, 97, -1 }, { 31647, 97, -1 }, { 31646, 96, -1 }, { 31647, 96, -1 }, { 31646, 1329, -1 }, { 31647, 1329, -1 }, { 31646, 442, -1 }, { 31647, 442, -1 }, { 31646, 190, -1 }, { 31647, 190, -1 }, { 31646, 1694, -1 }, { 31647, 1694, -1 }, { 31646, 169, -1 }, { 31647, 169, -1 }, { 31646, 854, -1 }, { 31647, 854, -1 }, { 31646, 182, -1 }, { 31647, 182, -1 }, { 31646, 896, -1 }, { 31647, 896, -1 }, { 31646, 1567, -1 }, { 31647, 1567, -1 }, { 31646, 604, -1 }, { 31647, 604, -1 }, { 31646, 257, -1 }, { 31647, 257, -1 }, { 31646, 895, -1 }, { 31647, 895, -1 }, { 31646, 8, -1 }, { 31647, 8, -1 }, { 31646, 221, -1 }, { 31647, 221, -1 }, { 31646, 218, -1 }, { 31647, 218, -1 }, { 31646, 1033, -1 }, { 31647, 1033, -1 }, { 31646, 1566, -1 }, { 31647, 1566, -1 }, { 31646, 1822, -1 }, { 31647, 1822, -1 }, { 31648, 1856, -1 }, { 31649, 1856, -1 }, { 31650, 1856, -1 }, { 31651, 1856, -1 }, { 31652, 1856, -1 }, { 31653, 1856, -1 }, { 31654, 1856, -1 }, { 31648, 97, -1 }, { 31649, 97, -1 }, { 31650, 97, -1 }, { 31651, 97, -1 }, { 31652, 97, -1 }, { 31653, 97, -1 }, { 31654, 97, -1 }, { 31648, 96, -1 }, { 31649, 96, -1 }, { 31650, 96, -1 }, { 31651, 96, -1 }, { 31652, 96, -1 }, { 31653, 96, -1 }, { 31654, 96, -1 }, { 31648, 1329, -1 }, { 31649, 1329, -1 }, { 31650, 1329, -1 }, { 31651, 1329, -1 }, { 31652, 1329, -1 }, { 31653, 1329, -1 }, { 31654, 1329, -1 }, { 31648, 190, -1 }, { 31649, 190, -1 }, { 31650, 190, -1 }, { 31651, 190, -1 }, { 31652, 190, -1 }, { 31653, 190, -1 }, { 31654, 190, -1 }, { 31648, 1694, -1 }, { 31649, 1694, -1 }, { 31650, 1694, -1 }, { 31651, 1694, -1 }, { 31652, 1694, -1 }, { 31653, 1694, -1 }, { 31654, 1694, -1 }, { 31648, 169, -1 }, { 31649, 169, -1 }, { 31650, 169, -1 }, { 31651, 169, -1 }, { 31652, 169, -1 }, { 31653, 169, -1 }, { 31654, 169, -1 }, { 31648, 854, -1 }, { 31649, 854, -1 }, { 31650, 854, -1 }, { 31651, 854, -1 }, { 31652, 854, -1 }, { 31653, 854, -1 }, { 31654, 854, -1 }, { 31648, 182, -1 }, { 31649, 182, -1 }, { 31650, 182, -1 }, { 31651, 182, -1 }, { 31652, 182, -1 }, { 31653, 182, -1 }, { 31654, 182, -1 }, { 31648, 896, -1 }, { 31649, 896, -1 }, { 31650, 896, -1 }, { 31651, 896, -1 }, { 31652, 896, -1 }, { 31653, 896, -1 }, { 31654, 896, -1 }, { 31648, 1567, -1 }, { 31649, 1567, -1 }, { 31650, 1567, -1 }, { 31651, 1567, -1 }, { 31652, 1567, -1 }, { 31653, 1567, -1 }, { 31654, 1567, -1 }, { 31648, 604, -1 }, { 31649, 604, -1 }, { 31650, 604, -1 }, { 31651, 604, -1 }, { 31652, 604, -1 }, { 31653, 604, -1 }, { 31654, 604, -1 }, { 31648, 257, -1 }, { 31649, 257, -1 }, { 31650, 257, -1 }, { 31651, 257, -1 }, { 31652, 257, -1 }, { 31653, 257, -1 }, { 31654, 257, -1 }, { 31648, 895, -1 }, { 31649, 895, -1 }, { 31650, 895, -1 }, { 31651, 895, -1 }, { 31652, 895, -1 }, { 31653, 895, -1 }, { 31654, 895, -1 }, { 31648, 8, -1 }, { 31649, 8, -1 }, { 31650, 8, -1 }, { 31651, 8, -1 }, { 31652, 8, -1 }, { 31653, 8, -1 }, { 31654, 8, -1 }, { 31648, 221, -1 }, { 31649, 221, -1 }, { 31650, 221, -1 }, { 31651, 221, -1 }, { 31652, 221, -1 }, { 31653, 221, -1 }, { 31654, 221, -1 }, { 31648, 218, -1 }, { 31649, 218, -1 }, { 31650, 218, -1 }, { 31651, 218, -1 }, { 31652, 218, -1 }, { 31653, 218, -1 }, { 31654, 218, -1 }, { 31648, 1033, -1 }, { 31649, 1033, -1 }, { 31650, 1033, -1 }, { 31651, 1033, -1 }, { 31652, 1033, -1 }, { 31653, 1033, -1 }, { 31654, 1033, -1 }, { 31648, 1566, -1 }, { 31649, 1566, -1 }, { 31650, 1566, -1 }, { 31651, 1566, -1 }, { 31652, 1566, -1 }, { 31653, 1566, -1 }, { 31654, 1566, -1 }, { 31648, 1822, -1 }, { 31649, 1822, -1 }, { 31650, 1822, -1 }, { 31651, 1822, -1 }, { 31652, 1822, -1 }, { 31653, 1822, -1 }, { 31654, 1822, -1 }, { 31655, 1856, -1 }, { 31656, 1856, -1 }, { 31657, 1856, -1 }, { 31658, 1856, -1 }, { 31655, 97, -1 }, { 31656, 97, -1 }, { 31657, 97, -1 }, { 31658, 97, -1 }, { 31655, 96, -1 }, { 31656, 96, -1 }, { 31657, 96, -1 }, { 31658, 96, -1 }, { 31655, 1329, -1 }, { 31656, 1329, -1 }, { 31657, 1329, -1 }, { 31658, 1329, -1 }, { 31655, 190, -1 }, { 31656, 190, -1 }, { 31657, 190, -1 }, { 31658, 190, -1 }, { 31655, 1694, -1 }, { 31656, 1694, -1 }, { 31657, 1694, -1 }, { 31658, 1694, -1 }, { 31655, 169, -1 }, { 31656, 169, -1 }, { 31657, 169, -1 }, { 31658, 169, -1 }, { 31655, 854, -1 }, { 31656, 854, -1 }, { 31657, 854, -1 }, { 31658, 854, -1 }, { 31655, 182, -1 }, { 31656, 182, -1 }, { 31657, 182, -1 }, { 31658, 182, -1 }, { 31655, 896, -1 }, { 31656, 896, -1 }, { 31657, 896, -1 }, { 31658, 896, -1 }, { 31655, 1567, -1 }, { 31656, 1567, -1 }, { 31657, 1567, -1 }, { 31658, 1567, -1 }, { 31655, 604, -1 }, { 31656, 604, -1 }, { 31657, 604, -1 }, { 31658, 604, -1 }, { 31655, 257, -1 }, { 31656, 257, -1 }, { 31657, 257, -1 }, { 31658, 257, -1 }, { 31655, 895, -1 }, { 31656, 895, -1 }, { 31657, 895, -1 }, { 31658, 895, -1 }, { 31655, 8, -1 }, { 31656, 8, -1 }, { 31657, 8, -1 }, { 31658, 8, -1 }, { 31655, 221, -1 }, { 31656, 221, -1 }, { 31657, 221, -1 }, { 31658, 221, -1 }, { 31655, 218, -1 }, { 31656, 218, -1 }, { 31657, 218, -1 }, { 31658, 218, -1 }, { 31655, 1033, -1 }, { 31656, 1033, -1 }, { 31657, 1033, -1 }, { 31658, 1033, -1 }, { 31655, 1566, -1 }, { 31656, 1566, -1 }, { 31657, 1566, -1 }, { 31658, 1566, -1 }, { 31655, 1822, -1 }, { 31656, 1822, -1 }, { 31657, 1822, -1 }, { 31658, 1822, -1 }, { 31634, 1858, -1 }, { 31635, 1858, -1 }, { 31636, 1858, -1 }, { 31637, 1858, -1 }, { 31638, 1858, -1 }, { 31639, 1858, -1 }, { 31640, 1858, -1 }, { 31641, 1858, -1 }, { 31642, 1858, -1 }, { 31643, 1858, -1 }, { 31644, 1858, -1 }, { 31645, 1858, -1 }, { 31634, 1855, -1 }, { 31635, 1855, -1 }, { 31636, 1855, -1 }, { 31637, 1855, -1 }, { 31638, 1855, -1 }, { 31639, 1855, -1 }, { 31640, 1855, -1 }, { 31641, 1855, -1 }, { 31642, 1855, -1 }, { 31643, 1855, -1 }, { 31644, 1855, -1 }, { 31645, 1855, -1 }, { 31634, 63, -1 }, { 31635, 63, -1 }, { 31636, 63, -1 }, { 31637, 63, -1 }, { 31638, 63, -1 }, { 31639, 63, -1 }, { 31640, 63, -1 }, { 31641, 63, -1 }, { 31642, 63, -1 }, { 31643, 63, -1 }, { 31644, 63, -1 }, { 31645, 63, -1 }, { 31634, 7, -1 }, { 31635, 7, -1 }, { 31636, 7, -1 }, { 31637, 7, -1 }, { 31638, 7, -1 }, { 31639, 7, -1 }, { 31640, 7, -1 }, { 31641, 7, -1 }, { 31642, 7, -1 }, { 31643, 7, -1 }, { 31644, 7, -1 }, { 31645, 7, -1 }, { 31634, 13, -1 }, { 31635, 13, -1 }, { 31636, 13, -1 }, { 31637, 13, -1 }, { 31638, 13, -1 }, { 31639, 13, -1 }, { 31640, 13, -1 }, { 31641, 13, -1 }, { 31642, 13, -1 }, { 31643, 13, -1 }, { 31644, 13, -1 }, { 31645, 13, -1 }, { 31634, 473, -1 }, { 31635, 473, -1 }, { 31636, 473, -1 }, { 31637, 473, -1 }, { 31638, 473, -1 }, { 31639, 473, -1 }, { 31640, 473, -1 }, { 31641, 473, -1 }, { 31642, 473, -1 }, { 31643, 473, -1 }, { 31644, 473, -1 }, { 31645, 473, -1 }, { 31634, 27, -1 }, { 31635, 27, -1 }, { 31636, 27, -1 }, { 31637, 27, -1 }, { 31638, 27, -1 }, { 31639, 27, -1 }, { 31640, 27, -1 }, { 31641, 27, -1 }, { 31642, 27, -1 }, { 31643, 27, -1 }, { 31644, 27, -1 }, { 31645, 27, -1 }, { 31634, 1003, -1 }, { 31635, 1003, -1 }, { 31636, 1003, -1 }, { 31637, 1003, -1 }, { 31638, 1003, -1 }, { 31639, 1003, -1 }, { 31640, 1003, -1 }, { 31641, 1003, -1 }, { 31642, 1003, -1 }, { 31643, 1003, -1 }, { 31644, 1003, -1 }, { 31645, 1003, -1 }, { 31634, 1107, -1 }, { 31635, 1107, -1 }, { 31636, 1107, -1 }, { 31637, 1107, -1 }, { 31638, 1107, -1 }, { 31639, 1107, -1 }, { 31640, 1107, -1 }, { 31641, 1107, -1 }, { 31642, 1107, -1 }, { 31643, 1107, -1 }, { 31644, 1107, -1 }, { 31645, 1107, -1 }, { 31634, 88, -1 }, { 31635, 88, -1 }, { 31636, 88, -1 }, { 31637, 88, -1 }, { 31638, 88, -1 }, { 31639, 88, -1 }, { 31640, 88, -1 }, { 31641, 88, -1 }, { 31642, 88, -1 }, { 31643, 88, -1 }, { 31644, 88, -1 }, { 31645, 88, -1 }, { 31634, 231, -1 }, { 31635, 231, -1 }, { 31636, 231, -1 }, { 31637, 231, -1 }, { 31638, 231, -1 }, { 31639, 231, -1 }, { 31640, 231, -1 }, { 31641, 231, -1 }, { 31642, 231, -1 }, { 31643, 231, -1 }, { 31644, 231, -1 }, { 31645, 231, -1 }, { 31634, 322, -1 }, { 31635, 322, -1 }, { 31636, 322, -1 }, { 31637, 322, -1 }, { 31638, 322, -1 }, { 31639, 322, -1 }, { 31640, 322, -1 }, { 31641, 322, -1 }, { 31642, 322, -1 }, { 31643, 322, -1 }, { 31644, 322, -1 }, { 31645, 322, -1 }, { 31634, 472, -1 }, { 31635, 472, -1 }, { 31636, 472, -1 }, { 31637, 472, -1 }, { 31638, 472, -1 }, { 31639, 472, -1 }, { 31640, 472, -1 }, { 31641, 472, -1 }, { 31642, 472, -1 }, { 31643, 472, -1 }, { 31644, 472, -1 }, { 31645, 472, -1 }, { 31634, 1019, -1 }, { 31635, 1019, -1 }, { 31636, 1019, -1 }, { 31637, 1019, -1 }, { 31638, 1019, -1 }, { 31639, 1019, -1 }, { 31640, 1019, -1 }, { 31641, 1019, -1 }, { 31642, 1019, -1 }, { 31643, 1019, -1 }, { 31644, 1019, -1 }, { 31645, 1019, -1 }, { 31634, 1002, -1 }, { 31635, 1002, -1 }, { 31636, 1002, -1 }, { 31637, 1002, -1 }, { 31638, 1002, -1 }, { 31639, 1002, -1 }, { 31640, 1002, -1 }, { 31641, 1002, -1 }, { 31642, 1002, -1 }, { 31643, 1002, -1 }, { 31644, 1002, -1 }, { 31645, 1002, -1 }, { 31634, 87, -1 }, { 31635, 87, -1 }, { 31636, 87, -1 }, { 31637, 87, -1 }, { 31638, 87, -1 }, { 31639, 87, -1 }, { 31640, 87, -1 }, { 31641, 87, -1 }, { 31642, 87, -1 }, { 31643, 87, -1 }, { 31644, 87, -1 }, { 31645, 87, -1 }, { 31634, 249, -1 }, { 31635, 249, -1 }, { 31636, 249, -1 }, { 31637, 249, -1 }, { 31638, 249, -1 }, { 31639, 249, -1 }, { 31640, 249, -1 }, { 31641, 249, -1 }, { 31642, 249, -1 }, { 31643, 249, -1 }, { 31644, 249, -1 }, { 31645, 249, -1 }, { 31634, 321, -1 }, { 31635, 321, -1 }, { 31636, 321, -1 }, { 31637, 321, -1 }, { 31638, 321, -1 }, { 31639, 321, -1 }, { 31640, 321, -1 }, { 31641, 321, -1 }, { 31642, 321, -1 }, { 31643, 321, -1 }, { 31644, 321, -1 }, { 31645, 321, -1 }, { 31634, 474, -1 }, { 31635, 474, -1 }, { 31636, 474, -1 }, { 31637, 474, -1 }, { 31638, 474, -1 }, { 31639, 474, -1 }, { 31640, 474, -1 }, { 31641, 474, -1 }, { 31642, 474, -1 }, { 31643, 474, -1 }, { 31644, 474, -1 }, { 31645, 474, -1 }, { 31634, 1021, -1 }, { 31635, 1021, -1 }, { 31636, 1021, -1 }, { 31637, 1021, -1 }, { 31638, 1021, -1 }, { 31639, 1021, -1 }, { 31640, 1021, -1 }, { 31641, 1021, -1 }, { 31642, 1021, -1 }, { 31643, 1021, -1 }, { 31644, 1021, -1 }, { 31645, 1021, -1 }, { 31634, 1005, -1 }, { 31635, 1005, -1 }, { 31636, 1005, -1 }, { 31637, 1005, -1 }, { 31638, 1005, -1 }, { 31639, 1005, -1 }, { 31640, 1005, -1 }, { 31641, 1005, -1 }, { 31642, 1005, -1 }, { 31643, 1005, -1 }, { 31644, 1005, -1 }, { 31645, 1005, -1 }, { 31634, 90, -1 }, { 31635, 90, -1 }, { 31636, 90, -1 }, { 31637, 90, -1 }, { 31638, 90, -1 }, { 31639, 90, -1 }, { 31640, 90, -1 }, { 31641, 90, -1 }, { 31642, 90, -1 }, { 31643, 90, -1 }, { 31644, 90, -1 }, { 31645, 90, -1 }, { 31634, 232, -1 }, { 31635, 232, -1 }, { 31636, 232, -1 }, { 31637, 232, -1 }, { 31638, 232, -1 }, { 31639, 232, -1 }, { 31640, 232, -1 }, { 31641, 232, -1 }, { 31642, 232, -1 }, { 31643, 232, -1 }, { 31644, 232, -1 }, { 31645, 232, -1 }, { 31634, 324, -1 }, { 31635, 324, -1 }, { 31636, 324, -1 }, { 31637, 324, -1 }, { 31638, 324, -1 }, { 31639, 324, -1 }, { 31640, 324, -1 }, { 31641, 324, -1 }, { 31642, 324, -1 }, { 31643, 324, -1 }, { 31644, 324, -1 }, { 31645, 324, -1 }, { 31634, 1857, -1 }, { 31635, 1857, -1 }, { 31636, 1857, -1 }, { 31637, 1857, -1 }, { 31638, 1857, -1 }, { 31639, 1857, -1 }, { 31640, 1857, -1 }, { 31641, 1857, -1 }, { 31642, 1857, -1 }, { 31643, 1857, -1 }, { 31644, 1857, -1 }, { 31645, 1857, -1 }, { 31634, 98, -1 }, { 31635, 98, -1 }, { 31636, 98, -1 }, { 31637, 98, -1 }, { 31638, 98, -1 }, { 31639, 98, -1 }, { 31640, 98, -1 }, { 31641, 98, -1 }, { 31642, 98, -1 }, { 31643, 98, -1 }, { 31644, 98, -1 }, { 31645, 98, -1 }, { 31634, 99, -1 }, { 31635, 99, -1 }, { 31636, 99, -1 }, { 31637, 99, -1 }, { 31638, 99, -1 }, { 31639, 99, -1 }, { 31640, 99, -1 }, { 31641, 99, -1 }, { 31642, 99, -1 }, { 31643, 99, -1 }, { 31644, 99, -1 }, { 31645, 99, -1 }, { 31634, 1330, -1 }, { 31635, 1330, -1 }, { 31636, 1330, -1 }, { 31637, 1330, -1 }, { 31638, 1330, -1 }, { 31639, 1330, -1 }, { 31640, 1330, -1 }, { 31641, 1330, -1 }, { 31642, 1330, -1 }, { 31643, 1330, -1 }, { 31644, 1330, -1 }, { 31645, 1330, -1 }, { 31634, 191, -1 }, { 31635, 191, -1 }, { 31636, 191, -1 }, { 31637, 191, -1 }, { 31638, 191, -1 }, { 31639, 191, -1 }, { 31640, 191, -1 }, { 31641, 191, -1 }, { 31642, 191, -1 }, { 31643, 191, -1 }, { 31644, 191, -1 }, { 31645, 191, -1 }, { 31634, 1724, -1 }, { 31635, 1724, -1 }, { 31636, 1724, -1 }, { 31637, 1724, -1 }, { 31638, 1724, -1 }, { 31639, 1724, -1 }, { 31640, 1724, -1 }, { 31641, 1724, -1 }, { 31642, 1724, -1 }, { 31643, 1724, -1 }, { 31644, 1724, -1 }, { 31645, 1724, -1 }, { 31634, 605, -1 }, { 31635, 605, -1 }, { 31636, 605, -1 }, { 31637, 605, -1 }, { 31638, 605, -1 }, { 31639, 605, -1 }, { 31640, 605, -1 }, { 31641, 605, -1 }, { 31642, 605, -1 }, { 31643, 605, -1 }, { 31644, 605, -1 }, { 31645, 605, -1 }, { 31634, 855, -1 }, { 31635, 855, -1 }, { 31636, 855, -1 }, { 31637, 855, -1 }, { 31638, 855, -1 }, { 31639, 855, -1 }, { 31640, 855, -1 }, { 31641, 855, -1 }, { 31642, 855, -1 }, { 31643, 855, -1 }, { 31644, 855, -1 }, { 31645, 855, -1 }, { 31634, 258, -1 }, { 31635, 258, -1 }, { 31636, 258, -1 }, { 31637, 258, -1 }, { 31638, 258, -1 }, { 31639, 258, -1 }, { 31640, 258, -1 }, { 31641, 258, -1 }, { 31642, 258, -1 }, { 31643, 258, -1 }, { 31644, 258, -1 }, { 31645, 258, -1 }, { 31634, 897, -1 }, { 31635, 897, -1 }, { 31636, 897, -1 }, { 31637, 897, -1 }, { 31638, 897, -1 }, { 31639, 897, -1 }, { 31640, 897, -1 }, { 31641, 897, -1 }, { 31642, 897, -1 }, { 31643, 897, -1 }, { 31644, 897, -1 }, { 31645, 897, -1 }, { 31634, 10, -1 }, { 31635, 10, -1 }, { 31636, 10, -1 }, { 31637, 10, -1 }, { 31638, 10, -1 }, { 31639, 10, -1 }, { 31640, 10, -1 }, { 31641, 10, -1 }, { 31642, 10, -1 }, { 31643, 10, -1 }, { 31644, 10, -1 }, { 31645, 10, -1 }, { 31634, 1568, -1 }, { 31635, 1568, -1 }, { 31636, 1568, -1 }, { 31637, 1568, -1 }, { 31638, 1568, -1 }, { 31639, 1568, -1 }, { 31640, 1568, -1 }, { 31641, 1568, -1 }, { 31642, 1568, -1 }, { 31643, 1568, -1 }, { 31644, 1568, -1 }, { 31645, 1568, -1 }, { 31634, 606, -1 }, { 31635, 606, -1 }, { 31636, 606, -1 }, { 31637, 606, -1 }, { 31638, 606, -1 }, { 31639, 606, -1 }, { 31640, 606, -1 }, { 31641, 606, -1 }, { 31642, 606, -1 }, { 31643, 606, -1 }, { 31644, 606, -1 }, { 31645, 606, -1 }, { 31634, 259, -1 }, { 31635, 259, -1 }, { 31636, 259, -1 }, { 31637, 259, -1 }, { 31638, 259, -1 }, { 31639, 259, -1 }, { 31640, 259, -1 }, { 31641, 259, -1 }, { 31642, 259, -1 }, { 31643, 259, -1 }, { 31644, 259, -1 }, { 31645, 259, -1 }, { 31634, 898, -1 }, { 31635, 898, -1 }, { 31636, 898, -1 }, { 31637, 898, -1 }, { 31638, 898, -1 }, { 31639, 898, -1 }, { 31640, 898, -1 }, { 31641, 898, -1 }, { 31642, 898, -1 }, { 31643, 898, -1 }, { 31644, 898, -1 }, { 31645, 898, -1 }, { 31634, 24, -1 }, { 31635, 24, -1 }, { 31636, 24, -1 }, { 31637, 24, -1 }, { 31638, 24, -1 }, { 31639, 24, -1 }, { 31640, 24, -1 }, { 31641, 24, -1 }, { 31642, 24, -1 }, { 31643, 24, -1 }, { 31644, 24, -1 }, { 31645, 24, -1 }, { 31634, 222, -1 }, { 31635, 222, -1 }, { 31636, 222, -1 }, { 31637, 222, -1 }, { 31638, 222, -1 }, { 31639, 222, -1 }, { 31640, 222, -1 }, { 31641, 222, -1 }, { 31642, 222, -1 }, { 31643, 222, -1 }, { 31644, 222, -1 }, { 31645, 222, -1 }, { 31634, 219, -1 }, { 31635, 219, -1 }, { 31636, 219, -1 }, { 31637, 219, -1 }, { 31638, 219, -1 }, { 31639, 219, -1 }, { 31640, 219, -1 }, { 31641, 219, -1 }, { 31642, 219, -1 }, { 31643, 219, -1 }, { 31644, 219, -1 }, { 31645, 219, -1 }, { 31634, 1095, -1 }, { 31635, 1095, -1 }, { 31636, 1095, -1 }, { 31637, 1095, -1 }, { 31638, 1095, -1 }, { 31639, 1095, -1 }, { 31640, 1095, -1 }, { 31641, 1095, -1 }, { 31642, 1095, -1 }, { 31643, 1095, -1 }, { 31644, 1095, -1 }, { 31645, 1095, -1 }, { 31634, 1569, -1 }, { 31635, 1569, -1 }, { 31636, 1569, -1 }, { 31637, 1569, -1 }, { 31638, 1569, -1 }, { 31639, 1569, -1 }, { 31640, 1569, -1 }, { 31641, 1569, -1 }, { 31642, 1569, -1 }, { 31643, 1569, -1 }, { 31644, 1569, -1 }, { 31645, 1569, -1 }, { 31634, 1823, -1 }, { 31635, 1823, -1 }, { 31636, 1823, -1 }, { 31637, 1823, -1 }, { 31638, 1823, -1 }, { 31639, 1823, -1 }, { 31640, 1823, -1 }, { 31641, 1823, -1 }, { 31642, 1823, -1 }, { 31643, 1823, -1 }, { 31644, 1823, -1 }, { 31645, 1823, -1 }, { 31634, 26, -1 }, { 31635, 26, -1 }, { 31636, 26, -1 }, { 31637, 26, -1 }, { 31638, 26, -1 }, { 31639, 26, -1 }, { 31640, 26, -1 }, { 31641, 26, -1 }, { 31642, 26, -1 }, { 31643, 26, -1 }, { 31644, 26, -1 }, { 31645, 26, -1 }, { 31634, 84, -1 }, { 31635, 84, -1 }, { 31636, 84, -1 }, { 31637, 84, -1 }, { 31638, 84, -1 }, { 31639, 84, -1 }, { 31640, 84, -1 }, { 31641, 84, -1 }, { 31642, 84, -1 }, { 31643, 84, -1 }, { 31644, 84, -1 }, { 31645, 84, -1 }, { 31634, 1115, -1 }, { 31635, 1115, -1 }, { 31636, 1115, -1 }, { 31637, 1115, -1 }, { 31638, 1115, -1 }, { 31639, 1115, -1 }, { 31640, 1115, -1 }, { 31641, 1115, -1 }, { 31642, 1115, -1 }, { 31643, 1115, -1 }, { 31644, 1115, -1 }, { 31645, 1115, -1 }, { 31634, 134, -1 }, { 31635, 134, -1 }, { 31636, 134, -1 }, { 31637, 134, -1 }, { 31638, 134, -1 }, { 31639, 134, -1 }, { 31640, 134, -1 }, { 31641, 134, -1 }, { 31642, 134, -1 }, { 31643, 134, -1 }, { 31644, 134, -1 }, { 31645, 134, -1 }, { 31634, 16, -1 }, { 31635, 16, -1 }, { 31636, 16, -1 }, { 31637, 16, -1 }, { 31638, 16, -1 }, { 31639, 16, -1 }, { 31640, 16, -1 }, { 31641, 16, -1 }, { 31642, 16, -1 }, { 31643, 16, -1 }, { 31644, 16, -1 }, { 31645, 16, -1 }, { 31634, 129, -1 }, { 31635, 129, -1 }, { 31636, 129, -1 }, { 31637, 129, -1 }, { 31638, 129, -1 }, { 31639, 129, -1 }, { 31640, 129, -1 }, { 31641, 129, -1 }, { 31642, 129, -1 }, { 31643, 129, -1 }, { 31644, 129, -1 }, { 31645, 129, -1 }, { 31634, 44, -1 }, { 31635, 44, -1 }, { 31636, 44, -1 }, { 31637, 44, -1 }, { 31638, 44, -1 }, { 31639, 44, -1 }, { 31640, 44, -1 }, { 31641, 44, -1 }, { 31642, 44, -1 }, { 31643, 44, -1 }, { 31644, 44, -1 }, { 31645, 44, -1 }, { 31634, 155, -1 }, { 31635, 155, -1 }, { 31636, 155, -1 }, { 31637, 155, -1 }, { 31638, 155, -1 }, { 31639, 155, -1 }, { 31640, 155, -1 }, { 31641, 155, -1 }, { 31642, 155, -1 }, { 31643, 155, -1 }, { 31644, 155, -1 }, { 31645, 155, -1 }, { 31634, 17, -1 }, { 31635, 17, -1 }, { 31636, 17, -1 }, { 31637, 17, -1 }, { 31638, 17, -1 }, { 31639, 17, -1 }, { 31640, 17, -1 }, { 31641, 17, -1 }, { 31642, 17, -1 }, { 31643, 17, -1 }, { 31644, 17, -1 }, { 31645, 17, -1 }, { 31634, 11, -1 }, { 31635, 11, -1 }, { 31636, 11, -1 }, { 31637, 11, -1 }, { 31638, 11, -1 }, { 31639, 11, -1 }, { 31640, 11, -1 }, { 31641, 11, -1 }, { 31642, 11, -1 }, { 31643, 11, -1 }, { 31644, 11, -1 }, { 31645, 11, -1 }, { 31634, 12, -1 }, { 31635, 12, -1 }, { 31636, 12, -1 }, { 31637, 12, -1 }, { 31638, 12, -1 }, { 31639, 12, -1 }, { 31640, 12, -1 }, { 31641, 12, -1 }, { 31642, 12, -1 }, { 31643, 12, -1 }, { 31644, 12, -1 }, { 31645, 12, -1 }, { 31634, 275, -1 }, { 31635, 275, -1 }, { 31636, 275, -1 }, { 31637, 275, -1 }, { 31638, 275, -1 }, { 31639, 275, -1 }, { 31640, 275, -1 }, { 31641, 275, -1 }, { 31642, 275, -1 }, { 31643, 275, -1 }, { 31644, 275, -1 }, { 31645, 275, -1 }, { 31634, 19, -1 }, { 31635, 19, -1 }, { 31636, 19, -1 }, { 31637, 19, -1 }, { 31638, 19, -1 }, { 31639, 19, -1 }, { 31640, 19, -1 }, { 31641, 19, -1 }, { 31642, 19, -1 }, { 31643, 19, -1 }, { 31644, 19, -1 }, { 31645, 19, -1 }, { 31634, 25, -1 }, { 31635, 25, -1 }, { 31636, 25, -1 }, { 31637, 25, -1 }, { 31638, 25, -1 }, { 31639, 25, -1 }, { 31640, 25, -1 }, { 31641, 25, -1 }, { 31642, 25, -1 }, { 31643, 25, -1 }, { 31644, 25, -1 }, { 31645, 25, -1 }, { 31634, 68, -1 }, { 31635, 68, -1 }, { 31636, 68, -1 }, { 31637, 68, -1 }, { 31638, 68, -1 }, { 31639, 68, -1 }, { 31640, 68, -1 }, { 31641, 68, -1 }, { 31642, 68, -1 }, { 31643, 68, -1 }, { 31644, 68, -1 }, { 31645, 68, -1 }, { 31634, 1, -1 }, { 31635, 1, -1 }, { 31636, 1, -1 }, { 31637, 1, -1 }, { 31638, 1, -1 }, { 31639, 1, -1 }, { 31640, 1, -1 }, { 31641, 1, -1 }, { 31642, 1, -1 }, { 31643, 1, -1 }, { 31644, 1, -1 }, { 31645, 1, -1 }, { 31634, 20, -1 }, { 31635, 20, -1 }, { 31636, 20, -1 }, { 31637, 20, -1 }, { 31638, 20, -1 }, { 31639, 20, -1 }, { 31640, 20, -1 }, { 31641, 20, -1 }, { 31642, 20, -1 }, { 31643, 20, -1 }, { 31644, 20, -1 }, { 31645, 20, -1 }, { 31634, 21, -1 }, { 31635, 21, -1 }, { 31636, 21, -1 }, { 31637, 21, -1 }, { 31638, 21, -1 }, { 31639, 21, -1 }, { 31640, 21, -1 }, { 31641, 21, -1 }, { 31642, 21, -1 }, { 31643, 21, -1 }, { 31644, 21, -1 }, { 31645, 21, -1 }, { 31634, 22, -1 }, { 31635, 22, -1 }, { 31636, 22, -1 }, { 31637, 22, -1 }, { 31638, 22, -1 }, { 31639, 22, -1 }, { 31640, 22, -1 }, { 31641, 22, -1 }, { 31642, 22, -1 }, { 31643, 22, -1 }, { 31644, 22, -1 }, { 31645, 22, -1 }, { 31634, 600, -1 }, { 31635, 600, -1 }, { 31636, 600, -1 }, { 31637, 600, -1 }, { 31638, 600, -1 }, { 31639, 600, -1 }, { 31640, 600, -1 }, { 31641, 600, -1 }, { 31642, 600, -1 }, { 31643, 600, -1 }, { 31644, 600, -1 }, { 31645, 600, -1 }, { 31634, 1235, -1 }, { 31635, 1235, -1 }, { 31636, 1235, -1 }, { 31637, 1235, -1 }, { 31638, 1235, -1 }, { 31639, 1235, -1 }, { 31640, 1235, -1 }, { 31641, 1235, -1 }, { 31642, 1235, -1 }, { 31643, 1235, -1 }, { 31644, 1235, -1 }, { 31645, 1235, -1 }, { 31634, 1234, -1 }, { 31635, 1234, -1 }, { 31636, 1234, -1 }, { 31637, 1234, -1 }, { 31638, 1234, -1 }, { 31639, 1234, -1 }, { 31640, 1234, -1 }, { 31641, 1234, -1 }, { 31642, 1234, -1 }, { 31643, 1234, -1 }, { 31644, 1234, -1 }, { 31645, 1234, -1 }, { 31634, 1233, -1 }, { 31635, 1233, -1 }, { 31636, 1233, -1 }, { 31637, 1233, -1 }, { 31638, 1233, -1 }, { 31639, 1233, -1 }, { 31640, 1233, -1 }, { 31641, 1233, -1 }, { 31642, 1233, -1 }, { 31643, 1233, -1 }, { 31644, 1233, -1 }, { 31645, 1233, -1 }, { 31634, 1146, -1 }, { 31635, 1146, -1 }, { 31636, 1146, -1 }, { 31637, 1146, -1 }, { 31638, 1146, -1 }, { 31639, 1146, -1 }, { 31640, 1146, -1 }, { 31641, 1146, -1 }, { 31642, 1146, -1 }, { 31643, 1146, -1 }, { 31644, 1146, -1 }, { 31645, 1146, -1 }, { 31634, 1147, -1 }, { 31635, 1147, -1 }, { 31636, 1147, -1 }, { 31637, 1147, -1 }, { 31638, 1147, -1 }, { 31639, 1147, -1 }, { 31640, 1147, -1 }, { 31641, 1147, -1 }, { 31642, 1147, -1 }, { 31643, 1147, -1 }, { 31644, 1147, -1 }, { 31645, 1147, -1 }, { 31634, 1148, -1 }, { 31635, 1148, -1 }, { 31636, 1148, -1 }, { 31637, 1148, -1 }, { 31638, 1148, -1 }, { 31639, 1148, -1 }, { 31640, 1148, -1 }, { 31641, 1148, -1 }, { 31642, 1148, -1 }, { 31643, 1148, -1 }, { 31644, 1148, -1 }, { 31645, 1148, -1 }, { 31634, 1240, -1 }, { 31635, 1240, -1 }, { 31636, 1240, -1 }, { 31637, 1240, -1 }, { 31638, 1240, -1 }, { 31639, 1240, -1 }, { 31640, 1240, -1 }, { 31641, 1240, -1 }, { 31642, 1240, -1 }, { 31643, 1240, -1 }, { 31644, 1240, -1 }, { 31645, 1240, -1 }, { 31634, 1239, -1 }, { 31635, 1239, -1 }, { 31636, 1239, -1 }, { 31637, 1239, -1 }, { 31638, 1239, -1 }, { 31639, 1239, -1 }, { 31640, 1239, -1 }, { 31641, 1239, -1 }, { 31642, 1239, -1 }, { 31643, 1239, -1 }, { 31644, 1239, -1 }, { 31645, 1239, -1 }, { 31634, 1245, -1 }, { 31635, 1245, -1 }, { 31636, 1245, -1 }, { 31637, 1245, -1 }, { 31638, 1245, -1 }, { 31639, 1245, -1 }, { 31640, 1245, -1 }, { 31641, 1245, -1 }, { 31642, 1245, -1 }, { 31643, 1245, -1 }, { 31644, 1245, -1 }, { 31645, 1245, -1 }, { 31634, 1246, -1 }, { 31635, 1246, -1 }, { 31636, 1246, -1 }, { 31637, 1246, -1 }, { 31638, 1246, -1 }, { 31639, 1246, -1 }, { 31640, 1246, -1 }, { 31641, 1246, -1 }, { 31642, 1246, -1 }, { 31643, 1246, -1 }, { 31644, 1246, -1 }, { 31645, 1246, -1 }, { 31634, 1244, -1 }, { 31635, 1244, -1 }, { 31636, 1244, -1 }, { 31637, 1244, -1 }, { 31638, 1244, -1 }, { 31639, 1244, -1 }, { 31640, 1244, -1 }, { 31641, 1244, -1 }, { 31642, 1244, -1 }, { 31643, 1244, -1 }, { 31644, 1244, -1 }, { 31645, 1244, -1 }, { 31630, 1858, -1 }, { 31631, 1858, -1 }, { 31632, 1858, -1 }, { 31633, 1858, -1 }, { 31630, 1855, -1 }, { 31631, 1855, -1 }, { 31632, 1855, -1 }, { 31633, 1855, -1 }, { 31630, 63, -1 }, { 31631, 63, -1 }, { 31632, 63, -1 }, { 31633, 63, -1 }, { 31630, 7, -1 }, { 31631, 7, -1 }, { 31632, 7, -1 }, { 31633, 7, -1 }, { 31630, 13, -1 }, { 31631, 13, -1 }, { 31632, 13, -1 }, { 31633, 13, -1 }, { 31630, 473, -1 }, { 31631, 473, -1 }, { 31632, 473, -1 }, { 31633, 473, -1 }, { 31630, 27, -1 }, { 31631, 27, -1 }, { 31632, 27, -1 }, { 31633, 27, -1 }, { 31630, 1003, -1 }, { 31631, 1003, -1 }, { 31632, 1003, -1 }, { 31633, 1003, -1 }, { 31630, 1107, -1 }, { 31631, 1107, -1 }, { 31632, 1107, -1 }, { 31633, 1107, -1 }, { 31630, 88, -1 }, { 31631, 88, -1 }, { 31632, 88, -1 }, { 31633, 88, -1 }, { 31630, 231, -1 }, { 31631, 231, -1 }, { 31632, 231, -1 }, { 31633, 231, -1 }, { 31630, 322, -1 }, { 31631, 322, -1 }, { 31632, 322, -1 }, { 31633, 322, -1 }, { 31630, 472, -1 }, { 31631, 472, -1 }, { 31632, 472, -1 }, { 31633, 472, -1 }, { 31630, 1019, -1 }, { 31631, 1019, -1 }, { 31632, 1019, -1 }, { 31633, 1019, -1 }, { 31630, 1002, -1 }, { 31631, 1002, -1 }, { 31632, 1002, -1 }, { 31633, 1002, -1 }, { 31630, 87, -1 }, { 31631, 87, -1 }, { 31632, 87, -1 }, { 31633, 87, -1 }, { 31630, 249, -1 }, { 31631, 249, -1 }, { 31632, 249, -1 }, { 31633, 249, -1 }, { 31630, 321, -1 }, { 31631, 321, -1 }, { 31632, 321, -1 }, { 31633, 321, -1 }, { 31630, 474, -1 }, { 31631, 474, -1 }, { 31632, 474, -1 }, { 31633, 474, -1 }, { 31630, 1021, -1 }, { 31631, 1021, -1 }, { 31632, 1021, -1 }, { 31633, 1021, -1 }, { 31630, 1005, -1 }, { 31631, 1005, -1 }, { 31632, 1005, -1 }, { 31633, 1005, -1 }, { 31630, 90, -1 }, { 31631, 90, -1 }, { 31632, 90, -1 }, { 31633, 90, -1 }, { 31630, 232, -1 }, { 31631, 232, -1 }, { 31632, 232, -1 }, { 31633, 232, -1 }, { 31630, 324, -1 }, { 31631, 324, -1 }, { 31632, 324, -1 }, { 31633, 324, -1 }, { 31630, 1857, -1 }, { 31631, 1857, -1 }, { 31632, 1857, -1 }, { 31633, 1857, -1 }, { 31630, 98, -1 }, { 31631, 98, -1 }, { 31632, 98, -1 }, { 31633, 98, -1 }, { 31630, 99, -1 }, { 31631, 99, -1 }, { 31632, 99, -1 }, { 31633, 99, -1 }, { 31630, 1330, -1 }, { 31631, 1330, -1 }, { 31632, 1330, -1 }, { 31633, 1330, -1 }, { 31630, 191, -1 }, { 31631, 191, -1 }, { 31632, 191, -1 }, { 31633, 191, -1 }, { 31630, 1724, -1 }, { 31631, 1724, -1 }, { 31632, 1724, -1 }, { 31633, 1724, -1 }, { 31630, 605, -1 }, { 31631, 605, -1 }, { 31632, 605, -1 }, { 31633, 605, -1 }, { 31630, 855, -1 }, { 31631, 855, -1 }, { 31632, 855, -1 }, { 31633, 855, -1 }, { 31630, 258, -1 }, { 31631, 258, -1 }, { 31632, 258, -1 }, { 31633, 258, -1 }, { 31630, 897, -1 }, { 31631, 897, -1 }, { 31632, 897, -1 }, { 31633, 897, -1 }, { 31630, 10, -1 }, { 31631, 10, -1 }, { 31632, 10, -1 }, { 31633, 10, -1 }, { 31630, 1568, -1 }, { 31631, 1568, -1 }, { 31632, 1568, -1 }, { 31633, 1568, -1 }, { 31630, 606, -1 }, { 31631, 606, -1 }, { 31632, 606, -1 }, { 31633, 606, -1 }, { 31630, 259, -1 }, { 31631, 259, -1 }, { 31632, 259, -1 }, { 31633, 259, -1 }, { 31630, 898, -1 }, { 31631, 898, -1 }, { 31632, 898, -1 }, { 31633, 898, -1 }, { 31630, 24, -1 }, { 31631, 24, -1 }, { 31632, 24, -1 }, { 31633, 24, -1 }, { 31630, 222, -1 }, { 31631, 222, -1 }, { 31632, 222, -1 }, { 31633, 222, -1 }, { 31630, 219, -1 }, { 31631, 219, -1 }, { 31632, 219, -1 }, { 31633, 219, -1 }, { 31630, 1095, -1 }, { 31631, 1095, -1 }, { 31632, 1095, -1 }, { 31633, 1095, -1 }, { 31630, 1569, -1 }, { 31631, 1569, -1 }, { 31632, 1569, -1 }, { 31633, 1569, -1 }, { 31630, 1823, -1 }, { 31631, 1823, -1 }, { 31632, 1823, -1 }, { 31633, 1823, -1 }, { 31630, 26, -1 }, { 31631, 26, -1 }, { 31632, 26, -1 }, { 31633, 26, -1 }, { 31630, 84, -1 }, { 31631, 84, -1 }, { 31632, 84, -1 }, { 31633, 84, -1 }, { 31630, 1115, -1 }, { 31631, 1115, -1 }, { 31632, 1115, -1 }, { 31633, 1115, -1 }, { 31630, 134, -1 }, { 31631, 134, -1 }, { 31632, 134, -1 }, { 31633, 134, -1 }, { 31630, 16, -1 }, { 31631, 16, -1 }, { 31632, 16, -1 }, { 31633, 16, -1 }, { 31630, 129, -1 }, { 31631, 129, -1 }, { 31632, 129, -1 }, { 31633, 129, -1 }, { 31630, 44, -1 }, { 31631, 44, -1 }, { 31632, 44, -1 }, { 31633, 44, -1 }, { 31630, 155, -1 }, { 31631, 155, -1 }, { 31632, 155, -1 }, { 31633, 155, -1 }, { 31630, 17, -1 }, { 31631, 17, -1 }, { 31632, 17, -1 }, { 31633, 17, -1 }, { 31630, 11, -1 }, { 31631, 11, -1 }, { 31632, 11, -1 }, { 31633, 11, -1 }, { 31630, 12, -1 }, { 31631, 12, -1 }, { 31632, 12, -1 }, { 31633, 12, -1 }, { 31630, 275, -1 }, { 31631, 275, -1 }, { 31632, 275, -1 }, { 31633, 275, -1 }, { 31630, 19, -1 }, { 31631, 19, -1 }, { 31632, 19, -1 }, { 31633, 19, -1 }, { 31630, 25, -1 }, { 31631, 25, -1 }, { 31632, 25, -1 }, { 31633, 25, -1 }, { 31630, 68, -1 }, { 31631, 68, -1 }, { 31632, 68, -1 }, { 31633, 68, -1 }, { 31630, 1, -1 }, { 31631, 1, -1 }, { 31632, 1, -1 }, { 31633, 1, -1 }, { 31630, 20, -1 }, { 31631, 20, -1 }, { 31632, 20, -1 }, { 31633, 20, -1 }, { 31630, 21, -1 }, { 31631, 21, -1 }, { 31632, 21, -1 }, { 31633, 21, -1 }, { 31630, 22, -1 }, { 31631, 22, -1 }, { 31632, 22, -1 }, { 31633, 22, -1 }, { 31630, 600, -1 }, { 31631, 600, -1 }, { 31632, 600, -1 }, { 31633, 600, -1 }, { 31630, 1235, -1 }, { 31631, 1235, -1 }, { 31632, 1235, -1 }, { 31633, 1235, -1 }, { 31630, 1234, -1 }, { 31631, 1234, -1 }, { 31632, 1234, -1 }, { 31633, 1234, -1 }, { 31630, 1233, -1 }, { 31631, 1233, -1 }, { 31632, 1233, -1 }, { 31633, 1233, -1 }, { 31630, 1146, -1 }, { 31631, 1146, -1 }, { 31632, 1146, -1 }, { 31633, 1146, -1 }, { 31630, 1147, -1 }, { 31631, 1147, -1 }, { 31632, 1147, -1 }, { 31633, 1147, -1 }, { 31630, 1148, -1 }, { 31631, 1148, -1 }, { 31632, 1148, -1 }, { 31633, 1148, -1 }, { 31630, 1240, -1 }, { 31631, 1240, -1 }, { 31632, 1240, -1 }, { 31633, 1240, -1 }, { 31630, 1239, -1 }, { 31631, 1239, -1 }, { 31632, 1239, -1 }, { 31633, 1239, -1 }, { 31630, 1245, -1 }, { 31631, 1245, -1 }, { 31632, 1245, -1 }, { 31633, 1245, -1 }, { 31630, 1246, -1 }, { 31631, 1246, -1 }, { 31632, 1246, -1 }, { 31633, 1246, -1 }, { 31630, 1244, -1 }, { 31631, 1244, -1 }, { 31632, 1244, -1 }, { 31633, 1244, -1 }, { 31668, 63, -1 }, { 31669, 63, -1 }, { 31670, 63, -1 }, { 31668, 21, -1 }, { 31669, 21, -1 }, { 31670, 21, -1 }, { 31668, 1241, -1 }, { 31669, 1241, -1 }, { 31667, 1241, -1 }, { 31670, 1241, -1 }, { 31668, 1228, -1 }, { 31669, 1228, -1 }, { 31667, 1228, -1 }, { 31670, 1228, -1 }, { 31668, 1229, -1 }, { 31669, 1229, -1 }, { 31667, 1229, -1 }, { 31670, 1229, -1 }, { 31668, 1231, -1 }, { 31669, 1231, -1 }, { 31667, 1231, -1 }, { 31670, 1231, -1 }, { 31668, 1227, -1 }, { 31669, 1227, -1 }, { 31667, 1227, -1 }, { 31670, 1227, -1 }, { 31661, 1178, -1 }, { 31662, 1178, -1 }, { 31663, 1178, -1 }, { 31664, 1178, -1 }, { 31665, 1178, -1 }, { 31661, 1179, -1 }, { 31662, 1179, -1 }, { 31663, 1179, -1 }, { 31664, 1179, -1 }, { 31665, 1179, -1 }, { 31661, 1177, -1 }, { 31662, 1177, -1 }, { 31672, 1177, -1 }, { 31663, 1177, -1 }, { 31664, 1177, -1 }, { 31660, 1177, -1 }, { 31665, 1177, -1 }, { 31673, 1250, -1 }, { 31673, 133, -1 }, { 31673, 63, -1 }, { 31673, 7, -1 }, { 31673, 13, -1 }, { 31673, 501, -1 }, { 31673, 134, -1 }, { 31673, 16, -1 }, { 31673, 129, -1 }, { 31673, 44, -1 }, { 31673, 17, -1 }, { 31673, 11, -1 }, { 31673, 12, -1 }, { 31673, 275, -1 }, { 31673, 19, -1 }, { 31673, 25, -1 }, { 31673, 68, -1 }, { 31673, 1, -1 }, { 31673, 20, -1 }, { 31673, 21, -1 }, { 31673, 22, -1 }, { 31673, 1221, -1 }, { 31673, 1214, -1 }, { 31673, 1222, -1 }, { 31673, 1224, -1 }, { 31673, 1223, -1 }, { 31673, 1216, -1 }, { 31673, 1217, -1 }, { 31673, 1220, -1 }, { 31673, 1219, -1 }, { 31673, 1218, -1 }, { 31673, 1146, -1 }, { 31673, 1211, -1 }, { 31673, 1210, -1 }, { 31673, 1147, -1 }, { 31673, 1213, -1 }, { 31673, 1148, -1 }, { 31673, 1212, -1 }, { 31673, 1215, -1 }, { 31673, 1226, -1 }, { 31673, 1237, -1 }, { 31673, 1238, -1 }, { 31673, 1230, -1 }, { 31673, 1232, -1 }, { 31673, 1225, -1 }, { 31673, 1242, -1 }, { 31673, 1247, -1 }, { 31673, 1248, -1 }, { 31673, 1249, -1 }, { 31355, 1165, -1 }, { 31356, 1165, -1 }, { 31354, 1165, -1 }, { 31352, 1165, -1 }, { 31353, 1165, -1 }, { 31348, 1165, -1 }, { 31355, 1170, -1 }, { 31356, 1170, -1 }, { 31354, 1170, -1 }, { 31352, 1170, -1 }, { 31353, 1170, -1 }, { 31350, 1170, -1 }, { 31348, 1170, -1 }, { 31355, 1180, -1 }, { 31356, 1180, -1 }, { 31354, 1180, -1 }, { 31352, 1180, -1 }, { 31353, 1180, -1 }, { 31350, 1180, -1 }, { 31348, 1180, -1 }, { 31355, 1187, -1 }, { 31356, 1187, -1 }, { 31354, 1187, -1 }, { 31352, 1187, -1 }, { 31353, 1187, -1 }, { 31371, 1177, -1 }, { 31350, 1187, -1 }, { 31372, 1177, -1 }, { 31348, 1187, -1 }, { 31368, 1177, -1 }, { 31355, 1197, -1 }, { 31356, 1197, -1 }, { 31354, 1197, -1 }, { 31352, 1197, -1 }, { 31353, 1197, -1 }, { 31350, 1197, -1 }, { 31348, 1197, -1 }, { 31355, 1202, -1 }, { 31356, 1202, -1 }, { 31354, 1202, -1 }, { 31352, 1202, -1 }, { 31353, 1202, -1 }, { 31348, 1202, -1 }, { 31667, 1188, -1 }, { 31675, 1243, -1 }, { 31355, 1843, -1 }, { 31356, 1843, -1 }, { 31354, 1843, -1 }, { 31352, 1843, -1 }, { 31353, 1843, -1 }, { 31348, 1843, -1 }, { 4128, 8, -1 }, { 4097, 1, -1 }, { 4097, 24, -1 }, { 4097, 25, -1 }, { 4097, 26, -1 }, { 4097, 27, -1 }, { 4097, 84, -1 }, { 4097, 87, -1 }, { 4097, 88, -1 }, { 4097, 90, -1 }, { 4097, 99, -1 }, { 4097, 155, -1 }, { 4097, 219, -1 }, { 4097, 222, -1 }, { 4097, 231, -1 }, { 4097, 232, -1 }, { 4097, 249, -1 }, { 4097, 259, -1 }, { 4097, 321, -1 }, { 4097, 322, -1 }, { 4097, 324, -1 }, { 4097, 472, -1 }, { 4097, 473, -1 }, { 4097, 474, -1 }, { 4097, 600, -1 }, { 4097, 606, -1 }, { 4097, 898, -1 }, { 4097, 1002, -1 }, { 4097, 1003, -1 }, { 4097, 1005, -1 }, { 4097, 1019, -1 }, { 4097, 1021, -1 }, { 4097, 1095, -1 }, { 4097, 1107, -1 }, { 4097, 1115, -1 }, { 4097, 1233, -1 }, { 4097, 1234, -1 }, { 4097, 1235, -1 }, { 4097, 1239, -1 }, { 4097, 1240, -1 }, { 4097, 1244, -1 }, { 4097, 1245, -1 }, { 4097, 1246, -1 }, { 4097, 1569, -1 }, { 4097, 1857, -1 }, { 4097, 1855, -1 }, { 4097, 1858, -1 }, { 31383, 8, -1 }, { 31389, 8, -1 }, { 4128, 96, -1 }, { 31383, 96, -1 }, { 31389, 96, -1 }, { 3980, 96, -1 }, { 4128, 218, -1 }, { 31383, 218, -1 }, { 31389, 218, -1 }, { 3980, 218, -1 }, { 4128, 221, -1 }, { 31383, 221, -1 }, { 31389, 221, -1 }, { 4128, 257, -1 }, { 31383, 257, -1 }, { 31389, 257, -1 }, { 3980, 257, -1 }, { 3981, 257, -1 }, { 4128, 604, -1 }, { 31383, 604, -1 }, { 31389, 604, -1 }, { 3980, 604, -1 }, { 3981, 604, -1 }, { 4128, 895, -1 }, { 31383, 895, -1 }, { 31389, 895, -1 }, { 3980, 895, -1 }, { 3981, 895, -1 }, { 4128, 1033, -1 }, { 31383, 1033, -1 }, { 31389, 1033, -1 }, { 4128, 1566, -1 }, { 31383, 1566, -1 }, { 31389, 1566, -1 }, { 3981, 1566, -1 }, { 4128, 1856, -1 }, { 31383, 1856, -1 }, { 31389, 1856, -1 }, };