blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
1a40b4bd152f233514804147978b6671730e9d8a
ad1a88ead2b277336de54dd79379184024ac1def
/ResultParser/ResultParser.cpp
ad790d78b91cc7b775faac393b10d1302f549f8e
[ "MIT" ]
permissive
jstarks/diskspd
96425ac9a04d0a442c2df94383946bc405aabd51
4c039d49ff0e2acdcf3c8dd471f8809e8bf76143
refs/heads/master
2021-01-18T05:58:59.356875
2014-10-29T22:54:33
2014-10-29T22:54:33
26,157,780
2
0
null
null
null
null
UTF-8
C++
false
false
27,504
cpp
/* DISKSPD Copyright(c) Microsoft Corporation All rights reserved. MIT License 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. */ // ResultParser.cpp : Defines the entry point for the DLL application. // #include "ResultParser.h" #include "common.h" #include <stdio.h> #include <stdlib.h> #include <Winternl.h> //ntdll.dll #include <Wmistr.h> //WNODE_HEADER #include <Evntrace.h> #include <assert.h> // TODO: refactor to a single function shared with the XmlResultParser void ResultParser::_Print(const char *format, ...) { assert(nullptr != format); va_list listArg; va_start(listArg, format); char buffer[4096] = {}; vsprintf_s(buffer, _countof(buffer), format, listArg); va_end(listArg); _sResult += buffer; } /*****************************************************************************/ // display file size in a user-friendly form // void ResultParser::_DisplayFileSize(UINT64 fsize) { if( fsize > (UINT64)10*1024*1024*1024 ) // > 10GB { _Print("%uGB", fsize >> 30); } else if( fsize > (UINT64)10*1024*1024 ) // > 10MB { _Print("%uMB", fsize >> 20); } else if( fsize > 10*1024 ) // > 10KB { _Print("%uKB", fsize >> 10); } else { _Print("%I64uB", fsize); } } /*****************************************************************************/ void ResultParser::_DisplayETWSessionInfo(struct ETWSessionInfo sessionInfo) { _Print("\n\n"); _Print(" ETW Buffer Settings & Statistics\n"); _Print("--------------------------------------------------------\n"); _Print("(KB) Buffers (Secs) (Mins)\n"); _Print("Size | Min | Max | Free | Written | Flush Age\n"); _Print("%-5lu %5lu %-5lu %-2lu %8lu %8lu %8d\n\n", sessionInfo.ulBufferSize, sessionInfo.ulMinimumBuffers, sessionInfo.ulMaximumBuffers, sessionInfo.ulFreeBuffers, sessionInfo.ulBuffersWritten, sessionInfo.ulFlushTimer, sessionInfo.lAgeLimit); _Print("Allocated Buffers: %lu\n", sessionInfo.ulNumberOfBuffers); _Print("LOST EVENTS:%15lu\n", sessionInfo.ulEventsLost); _Print("LOST LOG BUFFERS:%10lu\n", sessionInfo.ulLogBuffersLost); _Print("LOST REAL TIME BUFFERS:%4lu\n", sessionInfo.ulRealTimeBuffersLost); } /*****************************************************************************/ void ResultParser::_DisplayETW(struct ETWMask ETWMask, struct ETWEventCounters EtwEventCounters) { _Print("\n\n\nETW:\n"); _Print("----\n\n"); if (ETWMask.bDiskIO) { _Print("\tDisk I/O\n"); _Print("\t\tRead: %I64u\n", EtwEventCounters.ullIORead); _Print("\t\tWrite: %I64u\n", EtwEventCounters.ullIOWrite); } if (ETWMask.bImageLoad) { _Print("\tLoad Image\n"); _Print("\t\tLoad Image: %I64u\n", EtwEventCounters.ullImageLoad); } if (ETWMask.bMemoryPageFaults) { _Print("\tMemory Page Faults\n"); _Print("\t\tCopy on Write: %I64u\n", EtwEventCounters.ullMMCopyOnWrite); _Print("\t\tDemand Zero fault: %I64u\n", EtwEventCounters.ullMMDemandZeroFault); _Print("\t\tGuard Page fault: %I64u\n", EtwEventCounters.ullMMGuardPageFault); _Print("\t\tHard page fault: %I64u\n", EtwEventCounters.ullMMHardPageFault); _Print("\t\tTransition fault: %I64u\n", EtwEventCounters.ullMMTransitionFault); } if (ETWMask.bMemoryHardFaults && !ETWMask.bMemoryPageFaults ) { _Print("\tMemory Hard Faults\n"); _Print("\t\tHard page fault: %I64u\n", EtwEventCounters.ullMMHardPageFault); } if (ETWMask.bNetwork) { _Print("\tNetwork\n"); _Print("\t\tAccept: %I64u\n", EtwEventCounters.ullNetAccept); _Print("\t\tConnect: %I64u\n", EtwEventCounters.ullNetConnect); _Print("\t\tDisconnect: %I64u\n", EtwEventCounters.ullNetDisconnect); _Print("\t\tReconnect: %I64u\n", EtwEventCounters.ullNetReconnect); _Print("\t\tRetransmit: %I64u\n", EtwEventCounters.ullNetRetransmit); _Print("\t\tTCP/IP Send: %I64u\n", EtwEventCounters.ullNetTcpSend); _Print("\t\tTCP/IP Receive: %I64u\n", EtwEventCounters.ullNetTcpReceive); _Print("\t\tUDP/IP Send: %I64u\n", EtwEventCounters.ullNetUdpSend); _Print("\t\tUDP/IP Receive: %I64u\n", EtwEventCounters.ullNetUdpReceive); } if (ETWMask.bProcess) { _Print("\tProcess\n"); _Print("\t\tStart: %I64u\n", EtwEventCounters.ullProcessStart); _Print("\t\tEnd: %I64u\n", EtwEventCounters.ullProcessEnd); } if (ETWMask.bRegistry) { _Print("\tRegistry\n"); _Print("\t\tNtCreateKey: %I64u\n", EtwEventCounters.ullRegCreate); _Print("\t\tNtDeleteKey: %I64u\n", EtwEventCounters.ullRegDelete); _Print("\t\tNtDeleteValueKey: %I64u\n", EtwEventCounters.ullRegDeleteValue); _Print("\t\tNtEnumerateKey: %I64u\n", EtwEventCounters.ullRegEnumerateKey); _Print("\t\tNtEnumerateValueKey: %I64u\n", EtwEventCounters.ullRegEnumerateValueKey); _Print("\t\tNtFlushKey: %I64u\n", EtwEventCounters.ullRegFlush); _Print("\t\tKcbDump/create: %I64u\n", EtwEventCounters.ullRegKcbDmp); _Print("\t\tNtOpenKey: %I64u\n", EtwEventCounters.ullRegOpen); _Print("\t\tNtQueryKey: %I64u\n", EtwEventCounters.ullRegQuery); _Print("\t\tNtQueryMultipleValueKey: %I64u\n", EtwEventCounters.ullRegQueryMultipleValue); _Print("\t\tNtQueryValueKey: %I64u\n", EtwEventCounters.ullRegQueryValue); _Print("\t\tNtSetInformationKey: %I64u\n", EtwEventCounters.ullRegSetInformation); _Print("\t\tNtSetValueKey: %I64u\n", EtwEventCounters.ullRegSetValue); } if (ETWMask.bThread) { _Print("\tThread\n"); _Print("\t\tStart: %I64u\n", EtwEventCounters.ullThreadStart); _Print("\t\tEnd: %I64u\n", EtwEventCounters.ullThreadEnd); } } void ResultParser::_PrintTarget(Target target, bool fUseThreadsPerFile, bool fCompletionRoutines) { _Print("\tpath: '%s'\n", target.GetPath().c_str()); _Print("\t\tthink time: %ums\n", target.GetThinkTime()); _Print("\t\tburst size: %u\n", target.GetBurstSize()); // TODO: completion routines/ports if (target.GetDisableAllCache()) { _Print("\t\tsoftware and hardware write cache disabled\n"); } if (target.GetDisableOSCache()) { _Print("\t\tsoftware cache disabled\n"); } if (!target.GetDisableAllCache() && !target.GetDisableOSCache()) { _Print("\t\tusing software and hardware write cache\n"); } if (target.GetZeroWriteBuffers()) { _Print("\t\tzeroing write buffers\n"); } if (target.GetRandomDataWriteBufferSize() > 0) { _Print("\t\twrite buffer size: %I64u\n", target.GetRandomDataWriteBufferSize()); string sWriteBufferSourcePath = target.GetRandomDataWriteBufferSourcePath(); if (sWriteBufferSourcePath != "") { _Print("\t\twrite buffer source: '%s'\n", sWriteBufferSourcePath.c_str()); } } if (target.GetUseParallelAsyncIO()) { _Print("\t\tusing parallel async I/O\n"); } if (target.GetWriteRatio() == 0) { _Print("\t\tperforming read test\n"); } else if (target.GetWriteRatio() == 100) { _Print("\t\tperforming write test\n"); } else { _Print("\t\tperforming mix test (write/read ratio: %d/100)\n", target.GetWriteRatio()); } _Print("\t\tblock size: %d\n", target.GetBlockSizeInBytes()); if (target.GetRandomAlignmentInBytes() != 0) { _Print("\t\tusing random I/O (alignment: %I64u)\n", target.GetRandomAlignmentInBytes()); } _Print("\t\tnumber of outstanding I/O operations: %d\n", target.GetRequestCount()); if (0 != target.GetBaseFileOffsetInBytes()) { _Print("\t\tbase file offset: %I64u\n", target.GetBaseFileOffsetInBytes()); } if (0 != target.GetMaxFileSize()) { _Print("\t\tmax file size: %I64u\n", target.GetMaxFileSize()); } _Print("\t\tstride size: %I64u\n", target.GetStrideSizeInBytes()); _Print("\t\tthread stride size: %I64u\n", target.GetThreadStrideInBytes()); if (target.GetSequentialScan()) { _Print("\t\tusing FILE_FLAG_SEQUENTIAL_SCAN hint\n"); } if (target.GetRandomAccess()) { _Print("\t\tusing FILE_FLAG_RANDOM_ACCESS hint\n"); } if (fUseThreadsPerFile) { _Print("\t\tthreads per file: %d\n", target.GetThreadsPerFile()); } if (target.GetRequestCount() > 1 && fUseThreadsPerFile) { if (fCompletionRoutines) { _Print("\t\tusing completion routines (ReadFileEx/WriteFileEx)\n"); } else { _Print("\t\tusing I/O Completion Ports\n"); } } if (target.GetIOPriorityHint() == IoPriorityHintVeryLow) { _Print("\t\tIO priority: very low\n"); } else if (target.GetIOPriorityHint() == IoPriorityHintLow) { _Print("\t\tIO priority: low\n"); } else if (target.GetIOPriorityHint() == IoPriorityHintNormal) { _Print("\t\tIO priority: normal\n"); } else { _Print("\t\tIO priority: unknown\n"); } } void ResultParser::_PrintTimeSpan(TimeSpan timeSpan) { _Print("\tduration: %us\n", timeSpan.GetDuration()); _Print("\twarm up time: %us\n", timeSpan.GetWarmup()); _Print("\tcool down time: %us\n", timeSpan.GetCooldown()); if (timeSpan.GetDisableAffinity()) { _Print("\taffinity disabled\n"); } if (timeSpan.GetMeasureLatency()) { _Print("\tmeasuring latency\n"); } if (timeSpan.GetCalculateIopsStdDev()) { _Print("\tcalculating IOPS stddev with bucket duration = %u milliseconds\n", timeSpan.GetIoBucketDurationInMilliseconds()); } _Print("\trandom seed: %u\n", timeSpan.GetRandSeed()); vector<UINT32> vAffinity = timeSpan.GetAffinityAssignments(); if ( vAffinity.size() > 0) { _Print("\tadvanced affinity: "); for (unsigned int x = 0; x < vAffinity.size(); ++x) { _Print("%d", vAffinity[x]); if (x < vAffinity.size() - 1) { _Print(", "); } } _Print("\n"); } vector<Target> vTargets(timeSpan.GetTargets()); for (auto i = vTargets.begin(); i != vTargets.end(); i++) { _PrintTarget(*i, (timeSpan.GetThreadCount() == 0), timeSpan.GetCompletionRoutines()); } } void ResultParser::_PrintProfile(Profile profile) { _Print("\nCommand Line: %s\n", profile.GetCmdLine().c_str()); _Print("\n"); _Print("Input parameters:\n\n"); if (profile.GetVerbose()) { _Print("\tusing verbose mode\n"); } vector<TimeSpan> vTimeSpans(profile.GetTimeSpans()); int c = 1; for (auto i = vTimeSpans.begin(); i != vTimeSpans.end(); i++) { _Print("\ttimespan: %3d\n", c++); _Print("\t-------------\n"); _PrintTimeSpan(*i); _Print("\n"); } } void ResultParser::_PrintCpuUtilization(const Results& results) { size_t ulProcCount = results.vSystemProcessorPerfInfo.size(); double fTime = PerfTimer::PerfTimeToSeconds(results.ullTimeCount); char szFloatBuffer[1024]; _Print("\nCPU | Usage | User | Kernel | Idle\n"); _Print("-------------------------------------------\n"); double busyTime = 0; double totalIdleTime = 0; double totalUserTime = 0; double totalKrnlTime = 0; for (unsigned int x = 0; x<ulProcCount; ++x) { double idleTime; double userTime; double krnlTime; double thisTime; idleTime = 100.0 * results.vSystemProcessorPerfInfo[x].IdleTime.QuadPart / 10000000 / fTime; krnlTime = 100.0 * results.vSystemProcessorPerfInfo[x].KernelTime.QuadPart / 10000000 / fTime; userTime = 100.0 * results.vSystemProcessorPerfInfo[x].UserTime.QuadPart / 10000000 / fTime; thisTime = (krnlTime + userTime) - idleTime; sprintf_s(szFloatBuffer, sizeof(szFloatBuffer), "%4u| %6.2lf%%| %6.2lf%%| %6.2lf%%| %6.2lf%%\n", x, thisTime, userTime, krnlTime - idleTime, idleTime); _Print("%s", szFloatBuffer); busyTime += thisTime; totalIdleTime += idleTime; totalUserTime += userTime; totalKrnlTime += krnlTime; } _Print("-------------------------------------------\n"); sprintf_s(szFloatBuffer, sizeof(szFloatBuffer), "avg.| %6.2lf%%| %6.2lf%%| %6.2lf%%| %6.2lf%%\n", busyTime / ulProcCount, totalUserTime / ulProcCount, (totalKrnlTime - totalIdleTime) / ulProcCount, totalIdleTime / ulProcCount); _Print("%s", szFloatBuffer); } void ResultParser::_PrintSectionFieldNames(const TimeSpan& timeSpan) { _Print("thread | bytes | I/Os | MB/s | I/O per s %s%s%s| file\n", timeSpan.GetMeasureLatency() ? "| AvgLat " : "", timeSpan.GetCalculateIopsStdDev() ? "| IopsStdDev " : "", timeSpan.GetMeasureLatency() ? "| LatStdDev " : ""); } void ResultParser::_PrintSectionBorderLine(const TimeSpan& timeSpan) { _Print("------------------------------------------------------------------%s%s%s------------\n", timeSpan.GetMeasureLatency() ? "-----------" : "" , timeSpan.GetCalculateIopsStdDev() ? "-------------" : "", timeSpan.GetMeasureLatency() ? "------------" : ""); } void ResultParser::_PrintSection(_SectionEnum section, const TimeSpan& timeSpan, const Results& results) { double fTime = PerfTimer::PerfTimeToSeconds(results.ullTimeCount); double fBucketTime = timeSpan.GetIoBucketDurationInMilliseconds() / 1000.0; UINT64 ullTotalBytesCount = 0; UINT64 ullTotalIOCount = 0; Histogram<float> totalLatencyHistogram; IoBucketizer totalIoBucketizer; _PrintSectionFieldNames(timeSpan); _PrintSectionBorderLine(timeSpan); for (unsigned int iThread = 0; iThread < results.vThreadResults.size(); ++iThread) { ThreadResults threadResults = results.vThreadResults[iThread]; for (unsigned int iFile = 0; iFile < threadResults.vTargetResults.size(); iFile++) { TargetResults targetResults = threadResults.vTargetResults[iFile]; UINT64 ullBytesCount = 0; UINT64 ullIOCount = 0; Histogram<float> latencyHistogram; IoBucketizer ioBucketizer; if ((section == _SectionEnum::WRITE) || (section == _SectionEnum::TOTAL)) { ullBytesCount += targetResults.ullWriteBytesCount; ullIOCount += targetResults.ullWriteIOCount; if (timeSpan.GetMeasureLatency()) { latencyHistogram.Merge(targetResults.writeLatencyHistogram); totalLatencyHistogram.Merge(targetResults.writeLatencyHistogram); } if (timeSpan.GetCalculateIopsStdDev()) { ioBucketizer.Merge(targetResults.writeBucketizer); totalIoBucketizer.Merge(targetResults.writeBucketizer); } } if ((section == _SectionEnum::READ) || (section == _SectionEnum::TOTAL)) { ullBytesCount += targetResults.ullReadBytesCount; ullIOCount += targetResults.ullReadIOCount; if (timeSpan.GetMeasureLatency()) { latencyHistogram.Merge(targetResults.readLatencyHistogram); totalLatencyHistogram.Merge(targetResults.readLatencyHistogram); } if (timeSpan.GetCalculateIopsStdDev()) { ioBucketizer.Merge(targetResults.readBucketizer); totalIoBucketizer.Merge(targetResults.readBucketizer); } } _Print("%6u | %15llu | %12llu | %10.2f | %10.2f", iThread, ullBytesCount, ullIOCount, (double)ullBytesCount / 1024 / 1024 / fTime, (double)ullIOCount / fTime); if (timeSpan.GetMeasureLatency()) { double avgLat = latencyHistogram.GetAvg()/1000; _Print(" | %8.3f", avgLat); } if (timeSpan.GetCalculateIopsStdDev()) { double iopsStdDev = ioBucketizer.GetStandardDeviation() / fBucketTime; _Print(" | %10.2f", iopsStdDev); } if (timeSpan.GetMeasureLatency()) { if (latencyHistogram.GetSampleSize() > 0) { double latStdDev = latencyHistogram.GetStandardDeviation() / 1000; _Print(" | %8.3f", latStdDev); } else { _Print(" | N/A"); } } _Print(" | %s (", targetResults.sPath.c_str()); _DisplayFileSize(targetResults.ullFileSize); _Print(")\n"); ullTotalBytesCount += ullBytesCount; ullTotalIOCount += ullIOCount; } } _PrintSectionBorderLine(timeSpan); double totalAvgLat = 0; if (timeSpan.GetMeasureLatency()) { totalAvgLat = totalLatencyHistogram.GetAvg()/1000; } _Print("total: %15llu | %12llu | %10.2f | %10.2f", ullTotalBytesCount, ullTotalIOCount, (double)ullTotalBytesCount / 1024 / 1024 / fTime, (double)ullTotalIOCount / fTime); if (timeSpan.GetMeasureLatency()) { _Print(" | %8.3f", totalAvgLat); } if (timeSpan.GetCalculateIopsStdDev()) { double iopsStdDev = totalIoBucketizer.GetStandardDeviation() / fBucketTime; _Print(" | %10.2f", iopsStdDev); } if (timeSpan.GetMeasureLatency()) { if (totalLatencyHistogram.GetSampleSize() > 0) { double latStdDev = totalLatencyHistogram.GetStandardDeviation() / 1000; _Print(" | %8.3f", latStdDev); } else { _Print(" | N/A"); } } _Print("\n"); } void ResultParser::_PrintLatencyPercentiles(const Results& results) { Histogram<float> readLatencyHistogram; Histogram<float> writeLatencyHistogram; Histogram<float> totalLatencyHistogram; for (auto thread : results.vThreadResults) { for (auto target : thread.vTargetResults) { readLatencyHistogram.Merge(target.readLatencyHistogram); writeLatencyHistogram.Merge(target.writeLatencyHistogram); totalLatencyHistogram.Merge(target.writeLatencyHistogram); totalLatencyHistogram.Merge(target.readLatencyHistogram); } } bool fHasReads = readLatencyHistogram.GetSampleSize() > 0; bool fHasWrites = writeLatencyHistogram.GetSampleSize() > 0; _Print(" %%-ile | Read (ms) | Write (ms) | Total (ms)\n"); _Print("----------------------------------------------\n"); string readMin = fHasReads ? Util::DoubleToStringHelper(readLatencyHistogram.GetMin()/1000) : "N/A"; string writeMin = fHasWrites ? Util::DoubleToStringHelper(writeLatencyHistogram.GetMin() / 1000) : "N/A"; _Print(" min | %10s | %10s | %10.3lf\n", readMin.c_str(), writeMin.c_str(), totalLatencyHistogram.GetMin()/1000); PercentileDescriptor percentiles[] = { { 0.25, "25th" }, { 0.50, "50th" }, { 0.75, "75th" }, { 0.90, "90th" }, { 0.95, "95th" }, { 0.99, "99th" }, { 0.999, "3-nines" }, { 0.9999, "4-nines" }, { 0.99999, "5-nines" }, { 0.999999, "6-nines" }, { 0.9999999, "7-nines" }, { 0.99999999, "8-nines" }, }; for (auto p : percentiles) { string readPercentile = fHasReads ? Util::DoubleToStringHelper(readLatencyHistogram.GetPercentile(p.Percentile) / 1000) : "N/A"; string writePercentile = fHasWrites ? Util::DoubleToStringHelper(writeLatencyHistogram.GetPercentile(p.Percentile) / 1000) : "N/A"; _Print("%7s | %10s | %10s | %10.3lf\n", p.Name.c_str(), readPercentile.c_str(), writePercentile.c_str(), totalLatencyHistogram.GetPercentile(p.Percentile)/1000); } string readMax = Util::DoubleToStringHelper(readLatencyHistogram.GetMax() / 1000); string writeMax = Util::DoubleToStringHelper(writeLatencyHistogram.GetMax() / 1000); _Print(" max | %10s | %10s | %10.3lf\n", fHasReads ? readMax.c_str() : "N/A", fHasWrites ? writeMax.c_str() : "N/A", totalLatencyHistogram.GetMax()/1000); } string ResultParser::ParseResults(Profile& profile, const SystemInformation& system, vector<Results> vResults) { // TODO: print text representation of system information (see xml parser) UNREFERENCED_PARAMETER(system); _sResult.clear(); _PrintProfile(profile); for (size_t iResult = 0; iResult < vResults.size(); iResult++) { _Print("\n\nResults for timespan %d:\n", iResult + 1); _Print("*******************************************************************************\n"); Results results = vResults[iResult]; TimeSpan timeSpan = profile.GetTimeSpans()[iResult]; size_t ulProcCount = results.vSystemProcessorPerfInfo.size(); double fTime = PerfTimer::PerfTimeToSeconds(results.ullTimeCount); //test duration char szFloatBuffer[1024]; // There either is a fixed number of threads for all files to share (GetThreadCount() > 0) or a number of threads per file. // In the latter case vThreadResults.size() == number of threads per file * file count size_t ulThreadCnt = (timeSpan.GetThreadCount() > 0) ? timeSpan.GetThreadCount() : results.vThreadResults.size(); if (fTime < 0.0000001) { _Print("The test was interrupted before the measurements began. No results are displayed.\n"); } else { // TODO: parameters.bCreateFile; _Print("\n"); sprintf_s(szFloatBuffer, sizeof(szFloatBuffer), "actual test time:\t%.2lfs\n", fTime); _Print("%s", szFloatBuffer); _Print("thread count:\t\t%u\n", ulThreadCnt); _Print("proc count:\t\t%u\n", ulProcCount); _PrintCpuUtilization(results); _Print("\nTotal IO\n"); _PrintSection(_SectionEnum::TOTAL, timeSpan, results); _Print("\nRead IO\n"); _PrintSection(_SectionEnum::READ, timeSpan, results); _Print("\nWrite IO\n"); _PrintSection(_SectionEnum::WRITE, timeSpan, results); if (timeSpan.GetMeasureLatency()) { _Print("\n\n"); _PrintLatencyPercentiles(results); } //etw if (results.fUseETW) { _DisplayETW(results.EtwMask, results.EtwEventCounters); _DisplayETWSessionInfo(results.EtwSessionInfo); } } } if (vResults.size() > 1) { _Print("\n\nTotals:\n"); _Print("*******************************************************************************\n\n"); _Print("type | bytes | I/Os | MB/s | I/O per s\n"); _Print("-------------------------------------------------------------------------------\n"); UINT64 cbTotalWritten = 0; UINT64 cbTotalRead = 0; UINT64 cTotalWriteIO = 0; UINT64 cTotalReadIO = 0; UINT64 cTotalTicks = 0; for (auto pResults = vResults.begin(); pResults != vResults.end(); pResults++) { double time = PerfTimer::PerfTimeToSeconds(pResults->ullTimeCount); if (time >= 0.0000001) // skip timespans that were interrupted { cTotalTicks += pResults->ullTimeCount; auto vThreadResults = pResults->vThreadResults; for (auto pThreadResults = vThreadResults.begin(); pThreadResults != vThreadResults.end(); pThreadResults++) { for (auto pTargetResults = pThreadResults->vTargetResults.begin(); pTargetResults != pThreadResults->vTargetResults.end(); pTargetResults++) { cbTotalRead += pTargetResults->ullReadBytesCount; cbTotalWritten += pTargetResults->ullWriteBytesCount; cTotalReadIO += pTargetResults->ullReadIOCount; cTotalWriteIO += pTargetResults->ullWriteIOCount; } } } } double totalTime = PerfTimer::PerfTimeToSeconds(cTotalTicks); _Print("write | %15I64u | %12I64u | %10.2lf | %10.2lf\n", cbTotalWritten, cTotalWriteIO, (double)cbTotalWritten / 1024 / 1024 / totalTime, (double)cTotalWriteIO / totalTime); _Print("read | %15I64u | %12I64u | %10.2lf | %10.2lf\n", cbTotalRead, cTotalReadIO, (double)cbTotalRead / 1024 / 1024 / totalTime, (double)cTotalReadIO / totalTime); _Print("-------------------------------------------------------------------------------\n"); _Print("total | %15I64u | %12I64u | %10.2lf | %10.2lf\n\n", cbTotalRead + cbTotalWritten, cTotalReadIO + cTotalWriteIO, (double)(cbTotalRead + cbTotalWritten) / 1024 / 1024 / totalTime, (double)(cTotalReadIO + cTotalWriteIO) / totalTime); _Print("total test time:\t%.2lfs\n", totalTime); } return _sResult; }
[ "danlo@microsoft.com" ]
danlo@microsoft.com
27c5e73daf86b86408d735139b8e7d9d21a60fc4
2deb946f9a78674b47b1ff474fc59191b12f28eb
/test/testCrossCorrelationPlot.cpp
be13047bec89da872cc84894dbec473adab66ff1
[ "MIT" ]
permissive
dogjin/PlotLib
292b60b6065172db2d6071bab539ac556bc738c3
36439335362b74ae002ce7e446d233c580b63d1a
refs/heads/master
2020-04-25T04:49:17.163629
2018-06-01T11:40:21
2018-06-01T11:40:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,205
cpp
/** * @cond ___LICENSE___ * * Copyright (c) 2016-2018 Zefiros Software. * * 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. * * @endcond */ #include "plot/plotting.h" #include "helper.h" TEST(CrossCorrelationPlot, CrossCorrelationPlot) { TestPlot< CrossCorrelationPlot >("CrossCorrelationPlot", []() { vec xVec = randu(200); vec yVec = randu(200); CrossCorrelationPlot f(xVec, yVec); return f; }); } TEST(CrossCorrelationPlot, CrossCorrelationPlot2) { TestPlot< CrossCorrelationPlot >("CrossCorrelationPlot_SetHold", []() { vec xVec = randu(200); vec yVec = randu(200); CrossCorrelationPlot f(xVec, yVec); f.SetLineWidth(3) .SetColour("b") .Normed(true); return f; }); } TEST(CrossCorrelationPlot, SetVLines) { TestPlot< CrossCorrelationPlot >("CrossCorrelationPlot_SetVLines", []() { vec xVec = randu(200); vec yVec = randu(200); CrossCorrelationPlot f(xVec, yVec); f.SetMarker(".") .VLines(false) .SetMaxLags(100) .SetDetrend(CrossCorrelationPlot::Detrend::Linear); return f; }); }
[ "paul.pev@hotmail.com" ]
paul.pev@hotmail.com
dcd0fda16086cfbb13f904d4aa7edb316d66319a
1393b088958301a6c2f6766df2864c61365e9d4b
/Testing/TU/Code/Algorithms/L2/AtmosphericAbsorptionCorrection/vnsWaterAmountImageGeneratorNew.cxx
432f0c391a166b9ed9c0017293d6c563fdb02ce3
[ "Apache-2.0" ]
permissive
alexgoussev/maja_gitlab
f6727468cb70e210d3c09453de22fee58ed9d656
9688780f8dd8244e60603e1f11385e1fadc90cb4
refs/heads/develop
2023-02-24T05:37:38.769452
2021-01-21T16:47:54
2021-01-21T16:47:54
332,269,078
0
0
Apache-2.0
2021-01-23T18:17:25
2021-01-23T17:33:18
C++
UTF-8
C++
false
false
5,437
cxx
/* * Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES) * * 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. * */ /************************************************************************************************************ * * * ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo * * o * * o * * o * * o * * o ooooooo ooooooo o o oo * * o o o o o o o o o o * * o o o o o o o o o o * * o o o o o o o o o o * * o o o oooo o o o o o o * * o o o o o o o o o * * o o o o o o o o o o * * oo oooooooo o o o oooooo o oooo * * o * * o * * o o * * o o oooo o o oooo * * o o o o o o * * o o ooo o o ooo * * o o o o o * * ooooo oooo o ooooo oooo * * o * * * ************************************************************************************************************ * * * Author: CS Systemes d'Information (France) * * * ************************************************************************************************************ * HISTORIQUE * * * * VERSION : 1-0-0 : <TypeFT> : <NumFT> : 9 avr. 2010 : Creation * * * FIN-HISTORIQUE * * * * $Id$ * * ************************************************************************************************************/ #include "itkMacro.h" #include "vnsWaterAmountImageGenerator.h" #include "otbVectorImage.h" #include "otbImage.h" #include "vnsLookUpTable.h" int vnsWaterAmountImageGeneratorNew(int /*argc*/, char * /*argv*/[]) { typedef double PixelType; typedef otb::VectorImage<PixelType> VectorInpuImageType; typedef otb::Image<PixelType> ImageType; typedef vns::LookUpTable<double, 2> LUTType; typedef vns::WaterAmountImageGenerator<VectorInpuImageType,ImageType,LUTType> WaterAmountImageGeneratorType; // Instantiating object WaterAmountImageGeneratorType::Pointer object = WaterAmountImageGeneratorType::New(); return EXIT_SUCCESS; }
[ "julie.brossard@c-s.fr" ]
julie.brossard@c-s.fr
8638a6f86c337b508851f5386854eecda7a4fc5e
2f1a092537d8650cacbd274a3bd600e87a627e90
/thrift/lib/cpp2/async/ServerSinkBridge.cpp
02c9cf351e9c2a1d96906d6a628733f7d0289baf
[ "Apache-2.0" ]
permissive
ConnectionMaster/fbthrift
3aa7d095c00b04030fddbabffbf09a5adca29d42
d5d0fa3f72ee0eb4c7b955e9e04a25052678d740
refs/heads/master
2023-04-10T17:49:05.409858
2021-08-03T02:32:49
2021-08-03T02:33:57
187,603,239
1
1
Apache-2.0
2023-04-03T23:15:28
2019-05-20T08:49:29
C++
UTF-8
C++
false
false
5,461
cpp
/* * Copyright (c) Facebook, Inc. and its affiliates. * * 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. */ #include <thrift/lib/cpp2/async/ServerSinkBridge.h> #if FOLLY_HAS_COROUTINES namespace apache { namespace thrift { namespace detail { // Explicitly instantiate the base of ServerSinkBridge template class TwoWayBridge< ServerSinkBridge, ClientMessage, CoroConsumer, ServerMessage, ServerSinkBridge>; ServerSinkBridge::ServerSinkBridge( SinkConsumerImpl&& sinkConsumer, folly::EventBase& evb, SinkClientCallback* callback) : consumer_(std::move(sinkConsumer)), evb_(folly::getKeepAliveToken(&evb)), clientCallback_(callback) { interaction_ = TileStreamGuard::transferFrom(std::move(sinkConsumer.interaction)); bool scheduledWait = clientWait(this); DCHECK(scheduledWait); } ServerSinkBridge::~ServerSinkBridge() {} ServerSinkBridge::Ptr ServerSinkBridge::create( SinkConsumerImpl&& sinkConsumer, folly::EventBase& evb, SinkClientCallback* callback) { return (new ServerSinkBridge(std::move(sinkConsumer), evb, callback))->copy(); } // SinkServerCallback method bool ServerSinkBridge::onSinkNext(StreamPayload&& payload) { clientPush(folly::Try<StreamPayload>(std::move(payload))); return true; } void ServerSinkBridge::onSinkError(folly::exception_wrapper ew) { folly::exception_wrapper hijacked; if (ew.with_exception([&hijacked](rocket::RocketException& rex) { hijacked = folly::exception_wrapper( apache::thrift::detail::EncodedError(rex.moveErrorData())); })) { clientPush(folly::Try<StreamPayload>(std::move(hijacked))); } else { clientPush(folly::Try<StreamPayload>(std::move(ew))); } close(); } bool ServerSinkBridge::onSinkComplete() { clientPush(SinkComplete{}); sinkComplete_ = true; return true; } void ServerSinkBridge::resetClientCallback(SinkClientCallback& clientCallback) { DCHECK(clientCallback_); clientCallback_ = &clientCallback; } // start should be called on threadmanager's thread folly::coro::Task<void> ServerSinkBridge::startImpl(ServerSinkBridge& self) { self.serverPush(self.consumer_.bufferSize); folly::Try<StreamPayload> finalResponse = co_await self.consumer_.consumer(makeGenerator(self)); if (self.clientException_) { co_return; } self.serverPush(std::move(finalResponse)); } folly::coro::Task<void> ServerSinkBridge::start() { return startImpl(*this); } // TwoWayBridge consumer void ServerSinkBridge::consume() { evb_->runInEventBaseThread( [self = copy()]() { self->processClientMessages(); }); } folly::coro::AsyncGenerator<folly::Try<StreamPayload>&&> ServerSinkBridge::makeGenerator(ServerSinkBridge& self) { uint64_t counter = 0; while (true) { CoroConsumer consumer; if (self.serverWait(&consumer)) { folly::CancellationCallback cb{ co_await folly::coro::co_current_cancellation_token, [&]() { self.serverClose(); }}; co_await consumer.wait(); } co_await folly::coro::co_safe_point; for (auto messages = self.serverGetMessages(); !messages.empty(); messages.pop()) { auto& message = messages.front(); folly::Try<StreamPayload> ele; folly::variant_match( message, [&](folly::Try<StreamPayload>& payload) { ele = std::move(payload); }, [](SinkComplete&) {}); // empty Try represent the normal completion of the sink if (!ele.hasValue() && !ele.hasException()) { co_return; } if (ele.hasException()) { self.clientException_ = true; co_yield std::move(ele); co_return; } co_yield std::move(ele); counter++; if (counter > self.consumer_.bufferSize / 2) { self.serverPush(counter); counter = 0; } } } } void ServerSinkBridge::processClientMessages() { if (!clientCallback_) { return; } int64_t credits = 0; do { for (auto messages = clientGetMessages(); !messages.empty(); messages.pop()) { bool terminated = false; auto& message = messages.front(); folly::variant_match( message, [&](folly::Try<StreamPayload>& payload) { terminated = true; if (payload.hasValue()) { clientCallback_->onFinalResponse(std::move(payload).value()); } else { clientCallback_->onFinalResponseError( std::move(payload).exception()); } }, [&](int64_t n) { credits += n; }); if (terminated) { close(); return; } } } while (!clientWait(this)); if (!sinkComplete_ && credits > 0) { std::ignore = clientCallback_->onSinkRequestN(credits); } } void ServerSinkBridge::close() { clientClose(); clientCallback_ = nullptr; Ptr(this); } } // namespace detail } // namespace thrift } // namespace apache #endif
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
953737bde45651fbba0aaa535f6c92cf4f670496
3bbe06642f31145e5172c94b92f204261ea510ba
/TornadoEngine/Source/Developer/ShareDev/Adapters/AdapterSoundEngine.cpp
a3db27911df42fbddb1394574cb8a585bc5eb25f
[]
no_license
xJayLee/MMO-Framework
82061fce005a613fd8e685c8056882bc63db41cf
bf024d1265712e784d247883965c5bbbf43c3599
refs/heads/master
2021-05-29T18:12:13.845027
2015-01-16T20:59:30
2015-01-16T20:59:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
585
cpp
/* Author: Gudakov Ramil Sergeevich a.k.a. Gauss Гудаков Рамиль Сергеевич Contacts: [ramil2085@mail.ru, ramil2085@gmail.com] See for more information License.h. */ #include "AdapterSoundEngine.h" AdapterSoundEngine::AdapterSoundEngine() { } //---------------------------------------------------------------------- AdapterSoundEngine::~AdapterSoundEngine() { } //---------------------------------------------------------------------- bool AdapterSoundEngine::Work() { return true; } //----------------------------------------------------------------------
[ "ramil2085@mail.ru" ]
ramil2085@mail.ru
065604e07d99010def4f94862e38f35865702061
8ce88e6d70a7ba3a10a9aabc6dbe282b4b978d0d
/Other/Borg/Borg/RANGE.H
2a7c0f2216d0b2b50e09eecb483f16903b9c82f1
[]
no_license
yodamaster/avdbg
e66a35838d4b9561a53388b13d6cd44889e21fbc
92157c686ebaadc5565eec5a6e4d9a5a390b1fa9
refs/heads/master
2021-01-18T06:33:18.087191
2013-01-03T14:21:52
2013-01-03T14:21:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
285
h
// range.h // #ifndef range_h #define range_h #include "common.h" class range { public: lptr top,bottom; public: range(); ~range(); bool checkblock(void); void undefine(void); void settop(void); void setbottom(void); }; extern range blk; #endif
[ "Administrator@20111020-1601xyz" ]
Administrator@20111020-1601xyz
c0438cdda1973aafa615c41d320d263519658c28
b3c47795e8b6d95ae5521dcbbb920ab71851a92f
/Leetcode/Algorithm/cpp/00026-Remove Duplicates from Sorted Array.cc
655b71eb697768dccb78d54fd76c76a7bf9632df
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
Wizmann/ACM-ICPC
6afecd0fd09918c53a2a84c4d22c244de0065710
7c30454c49485a794dcc4d1c09daf2f755f9ecc1
refs/heads/master
2023-07-15T02:46:21.372860
2023-07-09T15:30:27
2023-07-09T15:30:27
3,009,276
51
23
null
null
null
null
UTF-8
C++
false
false
276
cc
class Solution { public: int removeDuplicates(int A[], int n) { int ptr = 0; for (int i = 0; i < n; i++) { if (i && A[i] == A[i - 1]) { continue; } A[ptr++] = A[i]; } return ptr; } };
[ "mail.kuuy@gmail.com" ]
mail.kuuy@gmail.com
d32add1faca3d399b4fc9a128da783ed2909f090
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/073/272/CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83_bad.cpp
40722bbb789844d72537f98db016824cfcb70714
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C++
false
false
1,431
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83_bad.cpp Label Definition File: CWE122_Heap_Based_Buffer_Overflow__sizeof.label.xml Template File: sources-sink-83_bad.tmpl.cpp */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Initialize the source buffer using the size of a pointer * GoodSource: Initialize the source buffer using the size of the DataElementType * Sinks: * BadSink : Print then free data * Flow Variant: 83 Data flow: data passed to class constructor and destructor by declaring the class object on the stack * * */ #ifndef OMITBAD #include "std_testcase.h" #include "CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83.h" namespace CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83 { CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83_bad::CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83_bad(double * dataCopy) { data = dataCopy; /* INCIDENTAL: CWE-467 (Use of sizeof() on a pointer type) */ /* FLAW: Using sizeof the pointer and not the data type in malloc() */ data = (double *)malloc(sizeof(data)); *data = 1.7E300; } CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83_bad::~CWE122_Heap_Based_Buffer_Overflow__sizeof_double_83_bad() { /* POTENTIAL FLAW: Attempt to use data, which may not have enough memory allocated */ printDoubleLine(*data); free(data); } } #endif /* OMITBAD */
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
9772588f38f00aed1ac377d730ee83213890faec
d51e54dccbb594a056005cb50a9dbad472ddb034
/Volume_12/Number_4/Eisemann2007/ray.cpp
e7327e343130fd5ad25c654bba8a16cf3e991ec9
[ "MIT" ]
permissive
skn123/jgt-code
4aa8d39d6354a1ede9b141e5e7131e403465f4f7
1c80455c8aafe61955f61372380d983ce7453e6d
refs/heads/master
2023-08-30T22:54:09.412136
2023-08-28T20:54:09
2023-08-28T20:54:09
217,573,703
0
0
MIT
2023-08-29T02:29:29
2019-10-25T16:27:56
MATLAB
UTF-8
C++
false
false
2,955
cpp
/****************************************************************************** This source code accompanies the Journal of Graphics Tools paper: "Fast Ray / Axis-Aligned Bounding Box Overlap Tests using Ray Slopes" by Martin Eisemann, Thorsten Grosch, Stefan Müller and Marcus Magnor Computer Graphics Lab, TU Braunschweig, Germany and University of Koblenz-Landau, Germany Parts of this code are taken from "Fast Ray-Axis Aligned Bounding Box Overlap Tests With Pluecker Coordinates" by Jeffrey Mahovsky and Brian Wyvill Department of Computer Science, University of Calgary This source code is public domain, but please mention us if you use it. ******************************************************************************/ #include <math.h> #include "ray.h" void make_ray(float x, float y, float z, float i, float j, float k, ray *r) { //common variables r->x = x; r->y = y; r->z = z; r->i = i; r->j = j; r->k = k; r->ii = 1.0f/i; r->ij = 1.0f/j; r->ik = 1.0f/k; //ray slope r->ibyj = r->i * r->ij; r->jbyi = r->j * r->ii; r->jbyk = r->j * r->ik; r->kbyj = r->k * r->ij; r->ibyk = r->i * r->ik; r->kbyi = r->k * r->ii; r->c_xy = r->y - r->jbyi * r->x; r->c_xz = r->z - r->kbyi * r->x; r->c_yx = r->x - r->ibyj * r->y; r->c_yz = r->z - r->kbyj * r->y; r->c_zx = r->x - r->ibyk * r->z; r->c_zy = r->y - r->jbyk * r->z; //ray slope classification if(i < 0) { if(j < 0) { if(k < 0) { r->classification = MMM; } else if(k > 0){ r->classification = MMP; } else//(k >= 0) { r->classification = MMO; } } else//(j >= 0) { if(k < 0) { r->classification = MPM; if(j==0) r->classification = MOM; } else//(k >= 0) { if((j==0) && (k==0)) r->classification = MOO; else if(k==0) r->classification = MPO; else if(j==0) r->classification = MOP; else r->classification = MPP; } } } else//(i >= 0) { if(j < 0) { if(k < 0) { r->classification = PMM; if(i==0) r->classification = OMM; } else//(k >= 0) { if((i==0) && (k==0)) r->classification = OMO; else if(k==0) r->classification = PMO; else if(i==0) r->classification = OMP; else r->classification = PMP; } } else//(j >= 0) { if(k < 0) { if((i==0) && (j==0)) r->classification = OOM; else if(i==0) r->classification = OPM; else if(j==0) r->classification = POM; else r->classification = PPM; } else//(k > 0) { if(i==0) { if(j==0) r->classification = OOP; else if(k==0) r->classification = OPO; else r->classification = OPP; } else { if((j==0) && (k==0)) r->classification = POO; else if(j==0) r->classification = POP; else if(k==0) r->classification = PPO; else r->classification = PPP; } } } } }
[ "erich@acm.org" ]
erich@acm.org
5f6fbfc3c1613cd197516de6388c9aca543e42ac
864f7edac1358c408f89e57d9b87ab848f5ceada
/src/math/wrappers.cpp
6d660246ee9c6f4bd35d79e78fc768cf3548fc01
[ "MIT" ]
permissive
xclmj/magmadnn
59dd3feffbb2cfa40c4ca87f31e194fd4c9b8d34
ce91152e70eee319168d0fc11f5b4964e577b30a
refs/heads/master
2021-03-31T17:56:04.082844
2020-03-07T23:07:42
2020-03-07T23:07:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,841
cpp
/** * @file wrappers.h * @author Florent Lopez * @version 0.1 * @date 2019-12-04 * * @copyright Copyright (c) 2019 */ #include <iostream> #include "math/wrappers.h" extern "C" { // GEMM void dgemm_(char* transa, char* transb, int* m, int* n, int* k, double* alpha, const double* a, int* lda, const double* b, int* ldb, double *beta, double* c, int* ldc); void sgemm_(char* transa, char* transb, int* m, int* n, int* k, float* alpha, const float* a, int* lda, const float* b, int* ldb, float *beta, float* c, int* ldc); // GEMV void sgemv_(char* trans, int *m, int *n, float* alpha, float const* a, int* lda, const float *x, int const* incx, float *beta, float *y, int const *incy); void dgemv_(char* trans, int *m, int *n, double* alpha, double const* a, int* lda, const double *x, int const* incx, double *beta, double *y, int const *incy); // AXPY void daxpy_(const int *n, const double *a, const double *x, const int *incx, double *y, const int *incy); void saxpy_(const int *n, const float *a, const float *x, const int *incx, float *y, const int *incy); // SCAL void dscal_(int const* n, double const* a, double const* x, int const* incx); void sscal_(int const* n, float const* a, float const* x, int const* incx); } namespace magmadnn { namespace math { // DGEMM template <> void gemm<double>( enum operation transa, enum operation transb, int m, int n, int k, double alpha, const double* a, int lda, const double* b, int ldb, double beta, double* c, int ldc) { char ftransa = (transa==OP_N) ? 'N' : 'T'; char ftransb = (transb==OP_N) ? 'N' : 'T'; dgemm_(&ftransa, &ftransb, &m, &n, &k, &alpha, a, &lda, b, &ldb, &beta, c, &ldc); } // SGEMM template <> void gemm<float>( enum operation transa, enum operation transb, int m, int n, int k, float alpha, const float * a, int lda, const float * b, int ldb, float beta, float* c, int ldc) { char ftransa = (transa==OP_N) ? 'N' : 'T'; char ftransb = (transb==OP_N) ? 'N' : 'T'; sgemm_(&ftransa, &ftransb, &m, &n, &k, &alpha, a, &lda, b, &ldb, &beta, c, &ldc); } // INT template<> void gemv<int>(enum operation trans, int m, int n, int alpha, int const* a, int lda, int const* x, int incx, int beta, int *y, int incy) { // char ftrans = (trans==OP_N) ? 'N' : 'T'; // sgemv_(&ftrans, &m, &n, &alpha, a, &lda, x, &incx, &beta, y, &incy); std::cout << "gemv NOT implemented for type int" << std::endl; } // SGEMV template<> void gemv<float>(enum operation trans, int m, int n, float alpha, float const* a, int lda, float const* x, int incx, float beta, float *y, int incy) { char ftrans = (trans==OP_N) ? 'N' : 'T'; sgemv_(&ftrans, &m, &n, &alpha, a, &lda, x, &incx, &beta, y, &incy); } // DGEMV template<> void gemv<double>(enum operation trans, int m, int n, double alpha, double const* a, int lda, double const* x, int incx, double beta, double *y, int incy) { char ftrans = (trans==OP_N) ? 'N' : 'T'; dgemv_(&ftrans, &m, &n, &alpha, a, &lda, x, &incx, &beta, y, &incy); } // SAXPY template<> void axpy<float>(int n, float a, const float *x, int incx, float *y, int incy) { saxpy_(&n, &a, x, &incx, y, &incy); } // DAXPY template<> void axpy<double>(int n, double a, const double *x, int incx, double *y, int incy) { daxpy_(&n, &a, x, &incx, y, &incy); } // SSCAL template<> void scal<float>(int n, float a, const float *x, int incx) { sscal_(&n, &a, x, &incx); } // DSCAL template<> void scal<double>(int n, double a, const double *x, int incx) { dscal_(&n, &a, x, &incx); } }} // namespace magmadnn::math
[ "florent.lopez@stfc.ac.uk" ]
florent.lopez@stfc.ac.uk
3e4279475bee832c1e090c9f23face119c480a66
57f6d50c518f94bddcf96b500a1800aae6699d13
/apps-src/apps/librose/help.cpp
b33d27e2f6abe33cce4c2fdfbc8e909f3e4c342c
[]
no_license
vitaliyivanchenko/Rose
22eef541a0c7a6dbfcade514f22d52e89f69bacf
046b6fd36e333dd816e51c8811930ec41e5a710c
refs/heads/master
2021-01-19T12:54:56.056888
2016-06-26T14:15:50
2017-01-24T06:58:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
30,126
cpp
/* $Id: help.cpp 47608 2010-11-21 01:56:29Z shadowmaster $ */ /* Copyright (C) 2003 - 2010 by David White <dave@whitevine.net> Part of the Battle for Wesnoth Project http://www.wesnoth.org/ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. See the COPYING file for more details. */ /** * @file * Routines for showing the help-dialog. */ #include "global.hpp" #include "help.hpp" #include "exceptions.hpp" #include "gettext.hpp" #include "gui/dialogs/transient_message.hpp" #include "gui/dialogs/book.hpp" #include "marked-up_text.hpp" #include "log.hpp" #include "sound.hpp" #include "wml_separators.hpp" #include "serialization/parser.hpp" #include "font.hpp" #include "wml_exception.hpp" #include "integrate.hpp" #include <boost/foreach.hpp> #include <queue> namespace help { /// Thrown when the help system fails to parse something. parse_error::parse_error(const std::string& msg) : game::error(msg) {} std::string remove_first_space(const std::string& text); /// Return the first word in s, not removing any spaces in the start of /// it. std::string get_first_word(const std::string &s); SDL_Color string_to_color(const std::string& cmp_str) { if (cmp_str == "green") { return font::GOOD_COLOR; } if (cmp_str == "red") { return font::BAD_COLOR; } if (cmp_str == "black") { return font::BLACK_COLOR; } if (cmp_str == "yellow") { return font::YELLOW_COLOR; } if (cmp_str == "white") { return font::BIGMAP_COLOR; } if (cmp_str == "blue") { return font::BLUE_COLOR; } if (cmp_str == "gray") { return font::GRAY_COLOR; } if (cmp_str == "orange") { SDL_Color color = {255, 165, 0, 0}; return color; } if (!cmp_str.empty()) { std::vector<std::string> fields = utils::split(cmp_str); size_t size = fields.size(); if (size == 3 || size == 4) { // make sure we have four fields SDL_Color result; result.r = lexical_cast_default<int>(fields[0]); result.g = lexical_cast_default<int>(fields[1]); result.b = lexical_cast_default<int>(fields[2]); result.a = 0; return result; } } return font::NORMAL_COLOR; } std::vector<std::string> split_in_width(const std::string &s, const int font_size, const unsigned width, int style) { std::vector<std::string> res; try { // [see remark#24] size_t pos = s.find("\n"); if (pos == std::string::npos) { unsigned unsplit_width = font::line_size(s, font_size, style).w; if (unsplit_width <= width) { res.push_back(s); return res; } } else { const std::string line_str = s.substr(0, pos); unsigned unsplit_width = font::line_size(line_str, font_size, style).w; if (unsplit_width <= width) { res.push_back(line_str); res.push_back(s.substr(pos)); return res; } } const std::string& first_line = font::word_wrap_text(s, font_size, width, -1, 1, true); // [see remark#21] if (!first_line.empty()) { res.push_back(first_line); if(s.size() > first_line.size()) { res.push_back(s.substr(first_line.size())); } } else { res.push_back(s); } } catch (utils::invalid_utf8_exception&) { throw parse_error (_("corrupted original file")); } return res; } std::string remove_first_space(const std::string& text) { if (text.length() > 0 && text[0] == ' ') { return text.substr(1); } return text; } std::string get_first_word(const std::string &s) { size_t first_word_start = s.find_first_not_of(' '); if (first_word_start == std::string::npos) { return s; } size_t first_word_end = s.find_first_of(" \n", first_word_start); if( first_word_end == first_word_start ) { // This word is '\n'. first_word_end = first_word_start+1; } //if no gap(' ' or '\n') found, test if it is CJK character std::string re = s.substr(0, first_word_end); utils::utf8_iterator ch(re); if (ch == utils::utf8_iterator::end(re)) return re; wchar_t firstchar = *ch; if (font::is_cjk_char(firstchar)) { // [see remark#23] std::string re1 = utils::wchar_to_string(firstchar); wchar_t previous = firstchar; for (++ ch; ch != utils::utf8_iterator::end(re); ++ch) { if (font::can_break(previous, *ch)) { break; } re1.append(ch.substr().first, ch.substr().second); previous = *ch; } return re1; } return re; } // // book part // // All sections and topics not referenced from the default toplevel. section hidden_sections; const config* game_cfg = NULL; gamemap* map = NULL; bool editor = false; section* book_toplevel = NULL; void init_book(const config* _game_cfg, gamemap* _map, bool _editor) { game_cfg = _game_cfg; map = _map; editor = _editor; } void clear_book() { game_cfg = NULL; map = NULL; hidden_sections.clear(); } const config dummy_cfg; const int max_section_level = 15; // The topic to open by default when opening the help dialog. const std::string default_show_topic = "introduction_topic"; const std::string unknown_unit_topic = ".unknown_unit"; const std::string unit_prefix = "unit_"; const std::string race_prefix = "race_"; const std::string section_topic_prefix = ".."; const int normal_font_size = font::SIZE_SMALL; /// Recursive function used by parse_config. bool is_section_topic(const std::string& id) { return id.find(section_topic_prefix) == 0; } std::string form_section_topic(const std::string& id) { return section_topic_prefix + id; } std::string extract_section_topic(const std::string& id) { return id.substr(section_topic_prefix.size()); } /// Prepend all chars with meaning inside attributes with a backslash. std::string escape(const std::string &s) { return utils::escape(s, "'\\"); } // id starting with '.' are hidden std::string hidden_symbol(bool hidden) { return (hidden ? "." : ""); } static bool is_visible_id(const std::string &id) { return (id.empty() || id[0] != '.'); } /// Return true if the id is valid for user defined topics and /// sections. Some IDs are special, such as toplevel and may not be /// be defined in the config. static bool is_valid_id(const std::string &id) { if (id == "toplevel") { return false; } if (id.find(unit_prefix) == 0 || id.find(hidden_symbol() + unit_prefix) == 0) { return false; } if (id.find("ability_") == 0) { return false; } if (id.find("weaponspecial_") == 0) { return false; } if (id == "hidden") { return false; } return true; } /// Class to be used as a function object when generating the about /// text. Translate the about dialog formatting to format suitable /// for the help dialog. class about_text_formatter { public: std::string operator()(const std::string &s) { if (s.empty()) return s; // Format + as headers, and the rest as normal text. if (s[0] == '+') return " \n<header>text='" + escape(s.substr(1)) + "'</header>"; if (s[0] == '-') return s.substr(1); return s; } }; class treserve_section { public: treserve_section(const std::string& id, const std::string& generator) : id(id) , generator_str(generator) {} std::string id; std::string generator_str; }; std::map<std::string, treserve_section> reserve_sections; void fill_reserve_sections() { if (!reserve_sections.empty()) { return; } reserve_sections.insert(std::make_pair("units", treserve_section("units", "sections_generator = races"))); reserve_sections.insert(std::make_pair("abilities_section", treserve_section("abilities_section", "generator = abilities"))); reserve_sections.insert(std::make_pair("weapon_specials", treserve_section("weapon_specials", "generator = weapon_specials"))); reserve_sections.insert(std::make_pair("factions_section", treserve_section("factions_section", "generator = factions"))); reserve_sections.insert(std::make_pair("about", treserve_section("about", "generator = about"))); } bool is_reserve_section(const std::string& id) { return reserve_sections.count(id) > 0; } topic_text::~topic_text() { if (generator_ && --generator_->count == 0) delete generator_; } topic_text::topic_text(topic_text const &t): parsed_text_(t.parsed_text_) , generator_(t.generator_) , from_textdomain_(t.from_textdomain_) { if (generator_) ++generator_->count; } topic_text &topic_text::operator=(topic_generator *g) { if (generator_ && --generator_->count == 0) delete generator_; generator_ = g; from_textdomain_ = false; return *this; } const t_string& topic_text::parsed_text() const { if (generator_) { parsed_text_ = (*generator_)(); if (--generator_->count == 0) delete generator_; generator_ = NULL; } return parsed_text_; } void topic_text::set_parsed_text(const t_string& str) { VALIDATE(!generator_, "generator_ must be nul!"); parsed_text_ = str; } bool topic_text::operator==(const topic_text& that) const { if (generator_ || that.generator_) { // generate automaticly, no one standard. return true; } return parsed_text_ == that.parsed_text_; } bool topic::operator==(const topic &t) const { return t.id == id && t.title == title && t.text == text; } void topic::generate(std::stringstream& strstr, const std::string& prefix, const std::string& default_textdomain, section& toplevel) const { strstr << prefix << "[topic]\n"; strstr << prefix << "\tid = " << id << "\n"; std::vector<t_string_base::trans_str> trans = title.valuex(); if (!trans.empty()) { if (!trans[0].td.empty() && trans[0].td != default_textdomain) { strstr << "#textdomain " << trans[0].td << "\n"; } strstr << prefix << "\ttitle = _ \"" << trans[0].str << "\"\n"; if (!trans[0].td.empty() && trans[0].td != default_textdomain) { strstr << "#textdomain " << default_textdomain << "\n"; } } if (!text.parsed_text().empty()) { trans = text.parsed_text().valuex(); if (!trans.empty()) { strstr << prefix << "\ttext = _ \"" << trans[0].str << "\"\n"; } } if (is_section_topic(id)) { const std::string extracted_id = id.substr(section_topic_prefix.size()); const section* sec = NULL; if (!is_reserve_section(extracted_id)) { sec = find_section(toplevel, extracted_id); } strstr << prefix << "\tgenerator = \"contents:"; if (sec && sec->sections.empty()) { strstr << extracted_id; } else { strstr << "generated"; } strstr << "\"\n"; } else if (is_reserve_section(id)) { std::map<std::string, treserve_section>::const_iterator it = reserve_sections.find(id); strstr << prefix << "\t" << it->second.generator_str << "\n"; } strstr << prefix << "[/topic]\n"; } void generate_pot(std::set<std::string>& msgids, const t_string& tstr, const std::string& default_textdomain) { if (tstr.str().empty()) { return; } std::vector<t_string_base::trans_str> trans = tstr.valuex(); if (!trans.empty()) { if (trans[0].td.empty() || trans[0].td == default_textdomain) { msgids.insert(trans[0].str); } } return; } void topic::generate_pot(std::set<std::string>& msgids, const std::string& default_textdomain) const { if (!is_section_topic(id)) { help::generate_pot(msgids, title, default_textdomain); } if (!text.generator()) { help::generate_pot(msgids, text.parsed_text(), default_textdomain); } } section::~section() { std::for_each(sections.begin(), sections.end(), delete_section()); } section::section(const section &sec) : title(sec.title), id(sec.id), topics(sec.topics), sections(), level(sec.level) { std::transform(sec.sections.begin(), sec.sections.end(), std::back_inserter(sections), create_section()); } section& section::operator=(const section &sec) { title = sec.title; id = sec.id; level = sec.level; std::copy(sec.topics.begin(), sec.topics.end(), std::back_inserter(topics)); std::transform(sec.sections.begin(), sec.sections.end(), std::back_inserter(sections), create_section()); return *this; } bool section::operator==(const section &sec) const { if (sec.id != id || sec.title != title) { return false; } if (sec.topics != topics) { return false; } if (sec.sections.size() != sections.size()) { return false; } for (size_t n = 0; n < sections.size(); n ++) { if (*sec.sections[n] != *sections[n]) { return false; } } return true; } void section::add_section(const section& s, int pos) { // after pos pos ++; if (pos < 0 || pos >= (int)sections.size()) { sections.push_back(new section(s)); } else { section_list::iterator it = sections.begin(); std::advance(it, pos); sections.insert(it, new section(s)); } } void section::erase_section(const section& s) { section_list::iterator it = std::find(sections.begin(), sections.end(), &s); delete *it; sections.erase(it); } void section::add_topic(const topic& t, int pos) { // after pos pos ++; if (pos < 0 || pos >= (int)topics.size()) { topics.push_back(t); } else { topic_list::iterator it = topics.begin(); std::advance(it, pos); topics.insert(it, t); } } void section::erase_topic(const topic& t) { topic_list::iterator it = std::find_if(topics.begin(), topics.end(), has_id(t.id)); topics.erase(it); } void section::move(const topic& t, bool up) { topic_list::iterator it = std::find_if(topics.begin(), topics.end(), has_id(t.id)); int n = std::distance(topics.begin(), it); topic_list::iterator it2; if (up) { topic t = *it; topics.erase(it); it = topics.begin(); std::advance(it, n - 1); topics.insert(it, t); } else { topic_list::iterator it2 = topics.begin(); std::advance(it2, n + 1); topic t = *it2; topics.erase(it2); topics.insert(it, t); } } void section::move(const section& s, bool up) { section_list::iterator it = std::find_if(sections.begin(), sections.end(), has_id(s.id)); int n = std::distance(sections.begin(), it); section_list::iterator it2; if (up) { section* s = *it; sections.erase(it); it = sections.begin(); std::advance(it, n - 1); sections.insert(it, s); } else { section_list::iterator it2 = sections.begin(); std::advance(it2, n + 1); section* s = *it2; sections.erase(it2); sections.insert(it, s); } } void section::clear() { id.clear(); topics.clear(); std::for_each(sections.begin(), sections.end(), delete_section()); sections.clear(); } void section::generate(std::stringstream& strstr, const std::string& prefix, const std::string& default_textdomain, section& toplevel) const { strstr << prefix << "[" << (!level? "toplevel": "section") << "]\n"; if (level) { strstr << prefix << "\tid = " << id << "\n"; std::vector<t_string_base::trans_str> trans = title.valuex(); if (!trans.empty()) { if (!trans[0].td.empty() && trans[0].td != default_textdomain) { strstr << "#textdomain " << trans[0].td << "\n"; } strstr << prefix << "\ttitle = _ \"" << trans[0].str << "\"\n"; if (!trans[0].td.empty() && trans[0].td != default_textdomain) { strstr << "#textdomain " << default_textdomain << "\n"; } } } if (!sections.empty()) { strstr << prefix << "\tsections = "; for (section_list::const_iterator it = sections.begin(); it != sections.end(); ++ it) { const section& sec = **it; if (it != sections.begin()) { strstr << ", "; } strstr << sec.id; } strstr << "\n"; } if (!topics.empty()) { strstr << prefix << "\ttopics = "; for (topic_list::const_iterator it = topics.begin(); it != topics.end(); ++ it) { const topic& t = *it; if (it != topics.begin()) { strstr << ", "; } strstr << t.id; } strstr << "\n"; } std::map<std::string, treserve_section>::const_iterator it = reserve_sections.find(id); if (it != reserve_sections.end()) { strstr << prefix << "\t" << it->second.generator_str << "\n"; } strstr << prefix << "[/" << (!level? "toplevel": "section") << "]\n"; for (section_list::const_iterator it = sections.begin(); it != sections.end(); ++ it) { strstr << "\n"; const section& sec = **it; sec.generate(strstr, prefix, default_textdomain, toplevel); } for (topic_list::const_iterator it = topics.begin(); it != topics.end(); ++ it) { strstr << "\n"; const topic& t = *it; t.generate(strstr, prefix, default_textdomain, toplevel); } } void section::generate_pot(std::set<std::string>& msgids, const std::string& default_textdomain) const { if (!sections.empty()) { for (section_list::const_iterator it = sections.begin(); it != sections.end(); ++ it) { const section& sec = **it; help::generate_pot(msgids, sec.title, default_textdomain); } } for (section_list::const_iterator it = sections.begin(); it != sections.end(); ++ it) { const section& sec = **it; sec.generate_pot(msgids, default_textdomain); } for (topic_list::const_iterator it = topics.begin(); it != topics.end(); ++ it) { const topic& t = *it; t.generate_pot(msgids, default_textdomain); } } std::string generate_about_text() { std::vector<std::string> about_lines; // std::vector<std::string> about_lines = about::get_text(); std::vector<std::string> res_lines; std::transform(about_lines.begin(), about_lines.end(), std::back_inserter(res_lines), about_text_formatter()); res_lines.erase(std::remove(res_lines.begin(), res_lines.end(), ""), res_lines.end()); std::string text = utils::join(res_lines, "\n"); return text; } std::string generate_separate_text_links() { std::stringstream strstr; strstr << "\n\n"; return strstr.str(); } std::string generate_contents_links(const std::string& section_name, config const *help_cfg) { config const &section_cfg = help_cfg->find_child("section", "id", section_name); if (!section_cfg) { return std::string(); } std::ostringstream res; std::vector<std::string> topics = utils::quoted_split(section_cfg["topics"]); // we use an intermediate structure to allow a conditional sorting typedef std::pair<std::string,std::string> link; std::vector<link> topics_links; std::vector<std::string>::iterator t; // Find all topics in this section. for (t = topics.begin(); t != topics.end(); ++t) { if (config const &topic_cfg = help_cfg->find_child("topic", "id", *t)) { std::string id = topic_cfg["id"]; if (is_visible_id(id)) topics_links.push_back(link(topic_cfg["title"], id)); } } if (section_cfg["sort_topics"] == "yes") { std::sort(topics_links.begin(),topics_links.end()); } if (!topics_links.empty()) { res << generate_separate_text_links(); } std::vector<link>::iterator l; for (l = topics_links.begin(); l != topics_links.end(); ++l) { std::string link = "<ref>text='" + escape(l->first) + "' dst='" + escape(l->second) + "'</ref>"; res << link <<"\n"; } return res.str(); } std::string generate_contents_links(const section &sec, const std::vector<topic>& topics) { std::stringstream res; if (!sec.sections.empty() || !topics.empty()) { res << generate_separate_text_links(); } section_list::const_iterator s; for (s = sec.sections.begin(); s != sec.sections.end(); ++s) { if (is_visible_id((*s)->id)) { std::string link = "<ref>text='" + escape((*s)->title) + "' dst='.." + escape((*s)->id) + "'</ref>"; res << link <<"\n"; } } std::vector<topic>::const_iterator t; for (t = topics.begin(); t != topics.end(); ++t) { if (is_visible_id(t->id)) { std::string link = "<ref>text='" + escape(t->title) + "' dst='" + escape(t->id) + "'</ref>"; res << link <<"\n"; } } return res.str(); } std::string generate_topic_text(const std::string &generator, const config *help_cfg, const section &sec, const std::vector<topic>& generated_topics) { std::string empty_string = ""; if (editor || generator == "") { return empty_string; } else if (generator == "about") { return generate_about_text(); } else { std::vector<std::string> parts = utils::split(generator, ':'); if (parts.size()>1 && parts[0] == "contents") { if (parts[1] == "generated") { return generate_contents_links(sec, generated_topics); } else { return generate_contents_links(parts[1], help_cfg); } } } return empty_string; } topic* find_topic(section &sec, const std::string &id) { topic_list::iterator tit = std::find_if(sec.topics.begin(), sec.topics.end(), has_id(id)); if (tit != sec.topics.end()) { return &(*tit); } section_list::iterator sit; for (sit = sec.sections.begin(); sit != sec.sections.end(); ++sit) { topic *t = find_topic(*(*sit), id); if (t != NULL) { return t; } } return NULL; } section* find_section(section &sec, const std::string &id) { section_list::iterator sit = std::find_if(sec.sections.begin(), sec.sections.end(), has_id(id)); if (sit != sec.sections.end()) { return *sit; } for (sit = sec.sections.begin(); sit != sec.sections.end(); ++sit) { section *s = find_section(*(*sit), id); if (s != NULL) { return s; } } return NULL; } std::pair<section*, int> find_parent(section& sec, const std::string& id) { section_list::iterator sit = std::find_if(sec.sections.begin(), sec.sections.end(), has_id(id)); if (sit != sec.sections.end()) { return std::make_pair(&sec, std::distance(sec.sections.begin(), sit)); } topic_list::iterator tit = std::find_if(sec.topics.begin(), sec.topics.end(), has_id(id)); if (tit != sec.topics.end()) { return std::make_pair(&sec, std::distance(sec.topics.begin(), tit)); } std::pair<section*, int> ret(reinterpret_cast<section*>(NULL), -1); for (sit = sec.sections.begin(); sit != sec.sections.end(); ++sit) { ret = find_parent(*(*sit), id); if (ret.first != NULL) { return ret; } } return ret; } /// Return true if the section with id section_id is referenced from /// another section in the config, or the toplevel. bool section_is_referenced(const std::string &section_id, const config &cfg) { if (const config &toplevel = cfg.child("toplevel")) { const std::vector<std::string> toplevel_refs = utils::quoted_split(toplevel["sections"]); if (std::find(toplevel_refs.begin(), toplevel_refs.end(), section_id) != toplevel_refs.end()) { return true; } } BOOST_FOREACH (const config &section, cfg.child_range("section")) { const std::vector<std::string> sections_refd = utils::quoted_split(section["sections"]); if (std::find(sections_refd.begin(), sections_refd.end(), section_id) != sections_refd.end()) { return true; } } return false; } /// Return true if the topic with id topic_id is referenced from /// another section in the config, or the toplevel. bool topic_is_referenced(const std::string &topic_id, const config &cfg) { if (const config &toplevel = cfg.child("toplevel")) { const std::vector<std::string> toplevel_refs = utils::quoted_split(toplevel["topics"]); if (std::find(toplevel_refs.begin(), toplevel_refs.end(), topic_id) != toplevel_refs.end()) { return true; } } BOOST_FOREACH (const config &section, cfg.child_range("section")) { const std::vector<std::string> topics_refd = utils::quoted_split(section["topics"]); if (std::find(topics_refd.begin(), topics_refd.end(), topic_id) != topics_refd.end()) { return true; } } return false; } void parse_config_internal(gui2::tbook* book, const config *help_cfg, const config *section_cfg, section &sec, int level) { if (level > max_section_level) { std::cerr << "Maximum section depth has been reached. Maybe circular dependency?" << std::endl; } else if (section_cfg != NULL) { const std::vector<std::string> sections = utils::quoted_split((*section_cfg)["sections"]); sec.level = level; std::string id = level == 0 ? "toplevel" : (*section_cfg)["id"].str(); if (level != 0) { if (!is_valid_id(id)) { std::stringstream ss; ss << "Invalid ID, used for internal purpose: '" << id << "'"; throw help::parse_error(ss.str()); } } t_string title = level == 0 ? "" : (*section_cfg)["title"].t_str(); sec.id = id; sec.title = title; std::vector<std::string>::const_iterator it; // Find all child sections. for (it = sections.begin(); it != sections.end(); ++it) { if (const config &child_cfg = help_cfg->find_child("section", "id", *it)) { section child_section; parse_config_internal(book, help_cfg, &child_cfg, child_section, level + 1); sec.add_section(child_section); } else { std::stringstream ss; ss << "Help-section '" << *it << "' referenced from '" << id << "' but could not be found."; throw help::parse_error(ss.str()); } } if (book) { book->generate_sections(help_cfg, (*section_cfg)["sections_generator"], sec, level); } //TODO: harmonize topics/sections sorting if ((*section_cfg)["sort_sections"] == "yes") { std::sort(sec.sections.begin(),sec.sections.end(), section_less()); } bool sort_topics = false; bool sort_generated = true; if ((*section_cfg)["sort_topics"] == "yes") { sort_topics = true; sort_generated = false; } else if ((*section_cfg)["sort_topics"] == "no") { sort_topics = false; sort_generated = false; } else if ((*section_cfg)["sort_topics"] == "generated") { sort_topics = false; sort_generated = true; } else if ((*section_cfg)["sort_topics"] != "") { std::stringstream ss; ss << "Invalid sort option: '" << (*section_cfg)["sort_topics"] << "'"; throw help::parse_error(ss.str()); } std::vector<topic> generated_topics; if (book) { generated_topics = book->generate_topics(sort_generated,(*section_cfg)["generator"]); } const std::vector<std::string> topics_id = utils::quoted_split((*section_cfg)["topics"]); std::vector<topic> topics; // Find all topics in this section. for (it = topics_id.begin(); it != topics_id.end(); ++it) { if (const config &topic_cfg = help_cfg->find_child("topic", "id", *it)) { t_string text = topic_cfg["text"].t_str(); text += generate_topic_text(topic_cfg["generator"], help_cfg, sec, generated_topics); topic child_topic(topic_cfg["title"], topic_cfg["id"], text); if (!is_valid_id(child_topic.id)) { std::stringstream ss; ss << "Invalid ID, used for internal purpose: '" << id << "'"; throw help::parse_error(ss.str()); } topics.push_back(child_topic); } else { std::stringstream ss; ss << "Help-topic '" << *it << "' referenced from '" << id << "' but could not be found." << std::endl; throw help::parse_error(ss.str()); } } if (sort_topics) { std::sort(topics.begin(),topics.end(), title_less()); std::sort(generated_topics.begin(), generated_topics.end(), title_less()); std::merge(generated_topics.begin(), generated_topics.end(),topics.begin(),topics.end() ,std::back_inserter(sec.topics),title_less()); } else { std::copy(topics.begin(), topics.end(), std::back_inserter(sec.topics)); std::copy(generated_topics.begin(), generated_topics.end(), std::back_inserter(sec.topics)); } } } section parse_config(gui2::tbook* book, const config *cfg) { section sec; if (cfg != NULL) { config const &toplevel_cfg = cfg->child("toplevel"); parse_config_internal(book, cfg, toplevel_cfg ? &toplevel_cfg : NULL, sec); } return sec; } void generate_contents(gui2::tbook* book, const std::string& tag, section& toplevel) { toplevel.clear(); hidden_sections.clear(); const config *help_config = &game_cfg->find_child("book", "id", tag); if (!*help_config) { help_config = &dummy_cfg; } try { toplevel = parse_config(book, help_config); // Create a config object that contains everything that is // not referenced from the toplevel element. Read this // config and save these sections and topics so that they // can be referenced later on when showing help about // specified things, but that should not be shown when // opening the help browser in the default manner. config hidden_toplevel; std::stringstream ss; BOOST_FOREACH (const config &section, help_config->child_range("section")) { const std::string id = section["id"]; if (find_section(toplevel, id) == NULL) { // This section does not exist referenced from the // toplevel. Hence, add it to the hidden ones if it // is not referenced from another section. if (!section_is_referenced(id, *help_config)) { if (ss.str() != "") { ss << ","; } ss << id; } } } hidden_toplevel["sections"] = ss.str(); ss.str(""); BOOST_FOREACH (const config &topic, help_config->child_range("topic")) { const std::string id = topic["id"]; if (find_topic(toplevel, id) == NULL) { if (!topic_is_referenced(id, *help_config)) { if (ss.str() != "") { ss << ","; } ss << id; } } } hidden_toplevel["topics"] = ss.str(); config hidden_cfg = *help_config; // Change the toplevel to our new, custom built one. hidden_cfg.clear_children("toplevel"); hidden_cfg.add_child("toplevel", hidden_toplevel); hidden_sections = parse_config(book, &hidden_cfg); } catch (help::parse_error e) { std::stringstream msg; msg << "Parse error when parsing help text: '" << e.message << "'"; VALIDATE(false, msg.str()); } } } // End namespace help. std::string single_digit_image(int digit) { if (digit < 0 || digit > 9) { return null_str; } std::stringstream strstr; strstr << "misc/digit.png~CROP(" << 8 * digit << ", 0, 8, 12)"; return strstr.str(); } std::string multi_digit_image_str(int integer) { if (integer < 0) { return null_str; } std::vector<int> digits; digits.push_back(integer % 10); int descend = integer / 10; while (descend) { digits.push_back(descend % 10); descend /= 10; } std::stringstream img, strstr; for (std::vector<int>::const_reverse_iterator it = digits.rbegin(); it != digits.rend(); ++ it) { int digit = *it; img.str(""); img << "misc/digit.png~CROP(" << 8 * digit << ", 0, 8, 12)"; strstr << tintegrate::generate_img(img.str()); } return strstr.str(); } SDL_Point multi_digit_image_size(int integer) { int digits = 1; int descend = integer / 10; while (descend) { digits ++; descend /= 10; } SDL_Point ret; ret.x = 8 * digits; ret.y = 12; return ret; }
[ "ancientcc@gmail.com" ]
ancientcc@gmail.com
911c5bc19d5b1080ef90fb9c28dcbeb394ab35d2
13bfcfd7492f3f4ee184aeafd0153a098e0e2fa5
/Kattis/quickestimate.cpp
31d2c1ccf9a44f3fa4bc716eece97538b6a4481b
[]
no_license
jqk6/CodeArchive
fc59eb3bdf60f6c7861b82d012d298f2854d7f8e
aca7db126e6e6f24d0bbe667ae9ea2c926ac4a5f
refs/heads/master
2023-05-05T09:09:54.032436
2021-05-20T07:10:02
2021-05-20T07:10:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
201
cpp
#include<iostream> using namespace std; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; string a; cin>>n; while(n--){ cin>>a; cout<<a.size()<<'\n'; } return 0; }
[ "froghackervirus@gmail.com" ]
froghackervirus@gmail.com
d259118f2d91e8c15d205a8a34766f3ca901b8bb
7d7f343413368fa68ddd123b67f1cb9aee09f481
/tests/mock_arduino.h
28fdd9ca90451f89f9387410e92c90d8b4dbe2c8
[]
no_license
arthursw/tipibot
8779282e8d95fe1d857c9300407d976b75aaee79
08237ea9b56cccc6294bc3eb5f5a549f0df1ed23
refs/heads/master
2021-01-23T03:33:55.826549
2017-04-15T17:14:09
2017-04-15T17:14:09
86,091,855
0
0
null
null
null
null
UTF-8
C++
false
false
1,916
h
/* DSM2_tx implements the serial communication protocol used for operating the RF modules that can be found in many DSM2-compatible transmitters. Copyrigt (C) 2012 Erik Elmore <erik@ironsavior.net> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <iostream> #include <climits> #include <math.h> using namespace std; #define OUTPUT 0 #define INPUT 1 #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt))) #define lowByte(w) ((unsigned char) ((w) & 0xff)) #define highByte(w) ((unsigned char) ((w) >> 8)) typedef unsigned char byte; typedef unsigned short int word; void delay(unsigned long ms) { } unsigned long millis(){ return 0; } std::chrono::high_resolution_clock::time_point start = std::chrono::high_resolution_clock::now(); unsigned long micros(){ std::chrono::high_resolution_clock::duration elapsed = std::chrono::high_resolution_clock::now() - start; return std::chrono::duration_cast<std::chrono::microseconds>(elapsed).count(); } // WMath.cpp long map(long, long, long, long, long); void initialize_mock_arduino(); void pinMode(int pin, int mode){ cout << "Set pin " << pin << " to mode " << mode << endl; } //void digitalWrite(int pin, int value) { // cout << "Digital write: pin: " << pin << ", value: " << value << endl; //} #include "fake_serial.h"
[ "arthur.sw@gmail.com" ]
arthur.sw@gmail.com
a6ddde2528d0dd1a69cb6a23689d0fe391e4b602
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/Profile/UNIX_Profile_LINUX.hxx
ca28052bce17b2e492883dfe91186bced7aea68e
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
1,799
hxx
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // 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. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////// #ifdef PEGASUS_OS_LINUX #ifndef __UNIX_PROFILE_PRIVATE_H #define __UNIX_PROFILE_PRIVATE_H #endif #endif
[ "brunolauze@msn.com" ]
brunolauze@msn.com
f99cc9e3dc05b4f41841d7d2a74d34cb2abc2e67
a2c3b3126cb130b3c6f498b674919fcff81752df
/include/entradas.hpp
e35ccd102a8bf1a5229a82b0a9823d8189e9829d
[]
no_license
DinoMah/PrimalPikachusDrugStore
78f88dfe27195c3d7fabf9376bda3dad21b27f46
06b14091a96425aefa8f7aacda848cda20526271
refs/heads/master
2022-12-31T14:45:24.333088
2020-10-16T18:47:30
2020-10-16T18:47:30
300,769,277
0
0
null
null
null
null
UTF-8
C++
false
false
117
hpp
#ifndef ENTRADAS_H #define ENTRADAS_H #include "../src/objeto.cpp" void entradas( objeto & ); #endif // ENTRADAS_H
[ "leithonpeas@hotmail.com" ]
leithonpeas@hotmail.com
b2b3f58f03f145868b41873e2de73f03fd969173
3af68b32aaa9b7522a1718b0fc50ef0cf4a704a9
/cpp/D/E/C/E/C/ADECEC.h
2690b682817f3caaa2ed7b19733f8781ab175d6b
[]
no_license
devsisters/2021-NDC-ICECREAM
7cd09fa2794cbab1ab4702362a37f6ab62638d9b
ac6548f443a75b86d9e9151ff9c1b17c792b2afd
refs/heads/master
2023-03-19T06:29:03.216461
2021-03-10T02:53:14
2021-03-10T02:53:14
341,872,233
0
0
null
null
null
null
UTF-8
C++
false
false
67
h
#ifndef ADECEC_H namespace ADECEC { std::string run(); } #endif
[ "nakhyun@devsisters.com" ]
nakhyun@devsisters.com
18263d045d8d89d8876f872b98a7fae8c22bf887
401852dcbbabb0c1efd168d24dfdc5e265dc3148
/stack/deleteMiddle.cpp
05ebd4af42770c7fdb11243710f7fae6e161f373
[]
no_license
radhikaarajput/Competitive_Programming
85090db5d26cb6c5fa4e9cbd3e6482c818127894
f974efa92972b4f992cb5c6f778c669016b00ca8
refs/heads/master
2023-06-10T08:23:59.419847
2021-06-22T13:28:53
2021-06-22T13:28:53
370,107,313
0
0
null
null
null
null
UTF-8
C++
false
false
863
cpp
#include <iostream> #include<cmath> #include <stack> using namespace std; /* Approach use a recusive fn pop all elememts in stack and store them in a variable call recusive f till all elemenst pop cout push all ements in stack again (x) except the middle eleemnts i.e. (n+1)/2 */ void del_mid(stack<int>s,int n,int cur); int main() { stack<int>s; int n,x,i,cur=0; cin>>n; for(i=0;i<n;i++) { cin>>x; s.push(x); } del_mid(s,n,cur); return 0; } void del_mid(stack<int>s,int n, int cur=0) { stack<int>s2; while(!s.empty()) { int z=s.top(); s.pop(); if(cur != floor(n/2)+1) { s2.push(z); cur++; } } while(!s2.empty()) { cout<<s2.top()<<" "; s2.pop(); } }
[ "rajputradhika20177@gmail.com" ]
rajputradhika20177@gmail.com
f507e5bb6456db79a6576bd6e0f0b279958179ec
b24c8b02807377cdc70ba226f275cf738aba2220
/Module04/ex03/IMateriaSource.hpp
cb489072f45c4dfecc9140805459b380fe998a12
[]
no_license
Saadelfadil/Cplusplus
a619708999a5cab0c50d33b5be3318e6c6409b39
99121d3cff2a914c418d7b5ca66ed8f6d7a65f4f
refs/heads/main
2023-08-25T02:46:40.542522
2021-10-05T19:50:08
2021-10-05T19:50:08
352,775,594
0
0
null
null
null
null
UTF-8
C++
false
false
1,277
hpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* IMateriaSource.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sel-fadi <sel-fadi@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/07/11 13:13:46 by sel-fadi #+# #+# */ /* Updated: 2021/07/15 19:18:36 by sel-fadi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef IMATERIASOURCE_HPP # define IMATERIASOURCE_HPP # include <iostream> # include <string> # include "AMateria.hpp" class IMateriaSource { public: virtual ~IMateriaSource() {} virtual void learnMateria(AMateria*) = 0; virtual AMateria* createMateria(std::string const & type) = 0; }; #endif /* ******************************************************** IMATERIASOURCE_H */
[ "saadelfadil18@gmail.com" ]
saadelfadil18@gmail.com
f03ccfa02b8512af10704fcb8e3c595e935c276e
56ac25837e47a1fde7a76750a5b2b6dddd48989e
/NewSuperMarioBrosPC/MarioState.cpp
d795a699da20855b6da77e7e791dcc9e516980b7
[]
no_license
TranAnhMinh/NewSuperMarioBrosPC
1c0a459a3f719c148dc8a9cda5b69be61c5e4f16
d82eb4a48831fb5be401d7f2bad95cb5feb224fa
refs/heads/master
2021-01-23T02:05:21.421693
2015-11-27T14:40:15
2015-11-27T14:41:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,692
cpp
#include "MarioState.h" #include "MarioObject.h" #include <string> using namespace std; //================STATE==================== void MarioState::onAPress(){ //do nothing } void MarioState::onBPress(){ //do nothing } void MarioState::onCollision(Object* ob){ // do nothing } string MarioState::getName(){ return "mario_state"; } //================STATE SMALL============== const string MarioStateSmall::STATE_NAME = "mario_state_small"; string MarioStateSmall::getName(){ return STATE_NAME; } MarioStateSmall::MarioStateSmall(Mario* ob){//contructor MarioStateSmall::mMario = ob; } void MarioStateSmall::onAPress(){ //jump } void MarioStateSmall::onBPress(){ //do nothing } void MarioStateSmall::onCollision(Object* ob){ //xử lý va chạm khi mario ở trạng thái Small } //==================SATE_LARGE============== const string MarioStateLarge::STATE_NAME = "mario_state_large"; string MarioStateLarge::getName(){ return STATE_NAME; } MarioStateLarge::MarioStateLarge(Mario* ob){ MarioStateLarge::mMario = ob; } void MarioStateLarge::onAPress(){ //jump; } void MarioStateLarge::onBPress(){ //do nothing; } void MarioStateLarge::onCollision(Object* ob){ //xử lý va chạm trong trường hợp mario Lớn } //==================SATE_RACON============== const string MarioStateRacon::STATE_NAME = "mario_state_racon"; string MarioStateRacon::getName(){ return STATE_NAME; } MarioStateRacon::MarioStateRacon(Mario* ob){ MarioStateRacon::mMario = ob; } void MarioStateRacon::onAPress(){ //jump; } void MarioStateRacon::onBPress(){ //do nothing; } void MarioStateRacon::onCollision(Object* ob){ //xử lý va chạm trong trường hợp mario Lớn }
[ "whitefang.tcotw@gmail.com" ]
whitefang.tcotw@gmail.com
619829e0d2bd6c51878ee695caa1dbb90e4e09b4
34f4521d997cedbfdef457392d32136b402e6889
/spot_light.cpp
cfbe3667b8afa76816ae25db079c7e7e9bb725cb
[]
no_license
nicmc9/spot_light
db9d45825ba25dbd2ca8763c32a969135e3ddc7d
8a1be8494b7f76b8bea9acd1d7a02414bf778109
refs/heads/master
2022-12-06T06:37:10.688843
2020-08-31T13:22:35
2020-08-31T13:22:35
274,055,933
0
0
null
null
null
null
UTF-8
C++
false
false
13,550
cpp
#include <iostream> #define GLEW_STATIC #include <GL/glew.h> // GLFW #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> #include <stb_image.h> #include <filesystem> #include "shader_m.h" #include "camera.h" using namespace std; void framebuffer_size_callback(GLFWwindow* window, int width, int height); void mouse_callback(GLFWwindow* window, double xpos, double ypos); void processInput(GLFWwindow* window); GLuint loadTexture(char const* path); // settings const unsigned int SCR_WIDTH = 800; const unsigned int SCR_HEIGHT = 600; // camera Camera camera(glm::vec3(0.0f, 0.0f, 3.0f)); string project_path = std::filesystem::current_path().string(); bool blinn = false; bool blinnKeyPressed = false; bool plain = false; // yaw is initialized to -90.0 degrees since a yaw of 0.0 results in a direction vector pointing // to the right so we initially rotate a bit to the left. float yaw = -90.0f; float pitch = 0.0f; float lastX = 800.0f / 2.0; float lastY = 600.0 / 2.0; GLfloat deltaTime = 0.0f; GLfloat lastFrame = 0.0f; int main() { glfwInit(); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); glfwWindowHint(GLFW_RESIZABLE, GL_FALSE); GLFWwindow* window = glfwCreateWindow(SCR_WIDTH, SCR_HEIGHT, "Spot_light", nullptr, nullptr); if (window == nullptr) { std::cout << "Failed to create GLFW window" << std::endl; glfwTerminate(); return -1; } glfwMakeContextCurrent(window); glfwSetFramebufferSizeCallback(window, framebuffer_size_callback); glfwSetCursorPosCallback(window, mouse_callback); glfwSetCursorPos(window, lastX, lastY); glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED); glewExperimental = GL_TRUE; if (glewInit() != GLEW_OK) { std::cout << "Failed to initialize GLEW" << std::endl; return -1; } glViewport(0, 0, SCR_WIDTH, SCR_HEIGHT); Shader shader("shaders/cube.vert", "shaders/cube.frag"); // set up vertex data (and buffer(s)) and configure vertex attributes // ------------------------------------------------------------------ GLfloat vertices[] = { // positions // normals // texture coords -0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, 0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 0.0f, 0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f, 0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f, -0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 1.0f, -0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, -0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, 0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, -0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, -0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, -0.5f, 0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f, -0.5f, 0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 1.0f, -0.5f, -0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f, -0.5f, -0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f, -0.5f, -0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.5f, 0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, -0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, 0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 1.0f, 0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f, 0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f, -0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 0.0f, -0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, -0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 1.0f, 0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, -0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f }; // positions all containers glm::vec3 cubePositions[] = { glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3(2.0f, 5.0f, -15.0f), glm::vec3(-1.5f, -2.2f, -2.5f), glm::vec3(-3.8f, -2.0f, -12.3f), glm::vec3(2.4f, -0.4f, -3.5f), glm::vec3(-1.7f, 3.0f, -7.5f), glm::vec3(1.3f, -2.0f, -2.5f), glm::vec3(1.5f, 2.0f, -2.5f), glm::vec3(1.5f, 0.2f, -1.5f), glm::vec3(-1.3f, 1.0f, -1.5f) }; GLuint VBO, cubeVAO; glGenVertexArrays(1, &cubeVAO); glGenBuffers(1, &VBO); glBindBuffer(GL_ARRAY_BUFFER, VBO); glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); glBindVertexArray(cubeVAO); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(GLfloat), (void*)0); glEnableVertexAttribArray(0); glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(GLfloat), (void*)(3 * sizeof(GLfloat))); glEnableVertexAttribArray(1); glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(GLfloat), (void*)(6 * sizeof(GLfloat))); glEnableVertexAttribArray(2); // set up vertex data (and buffer(s)) and configure vertex attributes // ------------------------------------------------------------------ float planeVertices[] = { // positions // normals // texcoords 10.0f, -5.0f, 10.0f, 0.0f, 1.0f, 0.0f, 10.0f, 0.0f, -10.0f, -5.0f, 10.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, -10.0f, -5.0f, -10.0f, 0.0f, 1.0f, 0.0f, 0.0f, 10.0f, 10.0f, -5.0f, 10.0f, 0.0f, 1.0f, 0.0f, 10.0f, 0.0f, -10.0f, -5.0f, -10.0f, 0.0f, 1.0f, 0.0f, 0.0f, 10.0f, 10.0f, -5.0f, -10.0f, 0.0f, 1.0f, 0.0f, 10.0f, 10.0f }; // plane VAO GLuint planeVAO, planeVBO; glGenVertexArrays(1, &planeVAO); glGenBuffers(1, &planeVBO); glBindVertexArray(planeVAO); glBindBuffer(GL_ARRAY_BUFFER, planeVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(planeVertices), planeVertices, GL_STATIC_DRAW); glEnableVertexAttribArray(0); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)0); glEnableVertexAttribArray(1); glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(3 * sizeof(float))); glEnableVertexAttribArray(2); glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(6 * sizeof(float))); glBindVertexArray(0); glEnable(GL_DEPTH_TEST); /// load textures GLuint diffuseMap = loadTexture((project_path + "/resources/textures/container2.png").c_str()); GLuint specularMap = loadTexture((project_path + "/resources/textures/container2_specular.png").c_str()); GLuint floorTexture = loadTexture((project_path + "/resources/textures/wood.png").c_str()); shader.use(); shader.setVec3("light.ambient", 0.1f, 0.1f, 0.1f); shader.setVec3("light.diffuse", 0.8f, 0.8f, 0.8f); shader.setVec3("light.specular", 1.0f, 1.0f, 1.0f); shader.setFloat("light.cutOff", glm::cos(glm::radians(12.5f))); shader.setFloat("light.outerCutOff", glm::cos(glm::radians(17.5f))); shader.setFloat("light.constant", 1.0f); shader.setFloat("light.linear", 0.09f); shader.setFloat("light.quadratic", 0.032f); shader.setFloat("material.shininess", 32.0f); shader.setInt("material.diffuse", 0); shader.setInt("material.specular", 1); shader.setInt("blinn", blinn); shader.setInt("plain", plain); // projection transformations glm::mat4 projection = glm::perspective(glm::radians(camera.zoom_), (float)SCR_WIDTH / (float)SCR_HEIGHT, 0.1f, 100.0f); shader.setMat4("projection", projection); while (!glfwWindowShouldClose(window)) { // per-frame time logic float currentFrame = glfwGetTime(); deltaTime = currentFrame - lastFrame; lastFrame = currentFrame; glfwPollEvents(); // input processInput(window); glClearColor(0.2f, 0.3f, 0.3f, 1.0f); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // be sure to activate shader when setting uniforms/drawing objects shader.use(); // bind diffuse map glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, diffuseMap); // bind specular map glActiveTexture(GL_TEXTURE1); glBindTexture(GL_TEXTURE_2D, specularMap); plain = false; shader.setVec3("viewPos", camera.position_); shader.setVec3("light.direction", camera.front_); shader.setVec3("light.position", camera.position_); glm::mat4 view = camera.GetViewMatrix(); shader.setMat4("view", view); // world transformation glm::mat4 model = glm::mat4(1.0f); // render the cube glBindVertexArray(cubeVAO); for (unsigned int i = 0; i < 10; i++) { // calculate the model matrix for each object and pass it to shader before drawing model = glm::mat4(1.0f); model = glm::translate(model, cubePositions[i]); float angle = 20.0f * i; model = glm::rotate(model, glm::radians(angle), glm::vec3(1.0f, 0.3f, 0.5f)); shader.setMat4("model", model); glDrawArrays(GL_TRIANGLES, 0, 36); } model = glm::mat4(1.0f); shader.setMat4("model", model); plain = true; shader.setInt("plain", plain); glBindVertexArray(planeVAO); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, floorTexture); glDrawArrays(GL_TRIANGLES, 0, 6); glfwSwapBuffers(window); } glfwTerminate(); return 0; } GLuint loadTexture(char const* path) { GLuint textureID; glGenTextures(1, &textureID); int width, height, nrComponents; unsigned char* data = stbi_load(path, &width, &height, &nrComponents, 0); if (data) { GLenum format = GL_RGB; if (nrComponents == 1) format = GL_RED; else if (nrComponents == 3) format = GL_RGB; else if (nrComponents == 4) format = GL_RGBA; glBindTexture(GL_TEXTURE_2D, textureID); glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, GL_UNSIGNED_BYTE, data); glGenerateMipmap(GL_TEXTURE_2D); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); stbi_image_free(data); } else { std::cout << "Texture failed to load at path: " << path << std::endl; stbi_image_free(data); } return textureID; } // process all input: query GLFW whether relevant keys are pressed/released this frame and react accordingly // --------------------------------------------------------------------------------------------------------- void processInput(GLFWwindow* window) { if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS) glfwSetWindowShouldClose(window, true); if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS) camera.ProcessKeyboard(FORWARD, deltaTime); if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS) camera.ProcessKeyboard(BACKWARD, deltaTime); if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS) camera.ProcessKeyboard(LEFT, deltaTime); if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS) camera.ProcessKeyboard(RIGHT, deltaTime); if (glfwGetKey(window, GLFW_KEY_B) == GLFW_PRESS && !blinnKeyPressed) { blinn = !blinn; blinnKeyPressed = true; std::cout << (blinn ? "Blinn-Phong" : "Phong") << std::endl; } if (glfwGetKey(window, GLFW_KEY_B) == GLFW_RELEASE) { blinnKeyPressed = false; } } // glfw: whenever the window size changed (by OS or user resize) this callback function executes // --------------------------------------------------------------------------------------------- void framebuffer_size_callback(GLFWwindow* window, int width, int height) { // make sure the viewport matches the new window dimensions; note that width and // height will be significantly larger than specified on retina displays. glViewport(0, 0, width, height); } // glfw: whenever the mouse moves, this callback is called // ------------------------------------------------------- void mouse_callback(GLFWwindow* window, double xpos, double ypos) { float xoffset = xpos - lastX; float yoffset = lastY - ypos; // reversed since y-coordinates go from bottom to top lastX = xpos; lastY = ypos; camera.ProcessMouseMovement(xoffset, yoffset); }
[ "nicmc9@gmail.com" ]
nicmc9@gmail.com
9781f8d6ddb220a928e80527e91f09e56c48ec47
2a4aeb44cb6609a3700787b902c1a265c5023a85
/week4/rational_calculator.cpp
e1dc3190d0a3b60e724393232439d62453e2d103
[]
no_license
RealAntonVoronov/coursera_cpp_white
1c262bc4af9084c4dbf06e56df53f62d3a0a8016
943edd004f69f4126d39a2fe2442b7a7506328dd
refs/heads/master
2023-08-21T02:39:21.363281
2021-09-22T12:11:32
2021-09-22T12:11:32
400,862,835
0
0
null
null
null
null
UTF-8
C++
false
false
2,529
cpp
#include <iostream> #include "numeric" using namespace std; class Rational { public: Rational() { p = 0; q = 1; } Rational(int numerator, int denominator) { if (denominator == 0) { throw invalid_argument("Invalid argument"); } else { int gcd = std::gcd(numerator, denominator); p = numerator / gcd; q = denominator / gcd; if (denominator < 0) { p *= -1; q *= -1; } } } int Numerator() const { return p; } int Denominator() const { return q; } private: int p, q; }; Rational operator * (const Rational& lhs, const Rational& rhs){ return {lhs.Numerator() * rhs.Numerator(), lhs.Denominator() * rhs.Denominator()}; } Rational operator / (const Rational& lhs, const Rational& rhs){ if (rhs.Numerator() == 0){ throw domain_error("Division by zero"); } else return Rational(lhs.Numerator() * rhs.Denominator(), lhs.Denominator() * rhs.Numerator()); } Rational operator + (const Rational& lhs, const Rational& rhs){ return {lhs.Numerator() * rhs.Denominator() + rhs.Numerator() * lhs.Denominator(), rhs.Denominator() * lhs.Denominator()}; } Rational operator - (const Rational& lhs, const Rational& rhs){ return {lhs.Numerator() * rhs.Denominator() - rhs.Numerator() * lhs.Denominator(), rhs.Denominator() * lhs.Denominator()}; } istream& operator >> (istream& input, Rational& rational){ int p, q; if (input >> p){ char sep; input >> sep; if (sep == '/'){ if(input >> q){ rational = Rational(p, q); return input; } } } return input; } ostream& operator << (ostream& output, const Rational& rational){ output << rational.Numerator() << "/" << rational.Denominator(); return output; } int main(){ char operation; Rational a, b; try{ cin >> a >> operation >> b; } catch (invalid_argument& ex){ cout << ex.what(); return 0; } if (operation == '+'){ cout << a + b; } else if (operation == '-'){ cout << a - b; } else if (operation == '*'){ cout << a * b; } else if (operation == '/'){ try{ cout << a / b; } catch (domain_error& ex){ cout << ex.what(); } } else cout << "Unknown operation\n"; return 0; }
[ "a.voronov3797@gmail.com" ]
a.voronov3797@gmail.com
30622cb6f82a7f1ab45cdc1fc54ebe068e48bb4a
add092c3d2998e666fb633e809903c11b6f8d7c0
/Window.cpp
1e9a02c946f5e77e24c6bbd9c477ac8c93b88802
[]
no_license
rodreri/ProyectoPC-Grafica
f7cd263a23efc67b0f20c5757547e293881a26cc
76c391c30c96adcae639bace86bd01471f04e583
refs/heads/master
2023-08-15T01:29:31.594628
2021-08-13T23:13:17
2021-08-13T23:13:17
389,838,608
0
0
null
null
null
null
ISO-8859-1
C++
false
false
3,343
cpp
#include "Window.h" Window::Window() { width = 800; height = 600; for (size_t i = 0; i < 1024; i++) { keys[i] = 0; } } Window::Window(GLint windowWidth, GLint windowHeight) { width = windowWidth; height = windowHeight; muevex = 2.0f; for (size_t i = 0; i < 1024; i++) { keys[i] = 0; } } int Window::Initialise() { //Inicialización de GLFW if (!glfwInit()) { printf("Falló inicializar GLFW"); glfwTerminate(); return 1; } //Asignando variables de GLFW y propiedades de ventana glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); //para solo usar el core profile de OpenGL y no tener retrocompatibilidad glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); //CREAR VENTANA mainWindow = glfwCreateWindow(width, height, "Primer ventana", NULL, NULL); if (!mainWindow) { printf("Fallo en crearse la ventana con GLFW"); glfwTerminate(); return 1; } //Obtener tamaño de Buffer glfwGetFramebufferSize(mainWindow, &bufferWidth, &bufferHeight); //asignar el contexto glfwMakeContextCurrent(mainWindow); //MANEJAR TECLADO y MOUSE createCallbacks(); //permitir nuevas extensiones glewExperimental = GL_TRUE; if (glewInit() != GLEW_OK) { printf("Falló inicialización de GLEW"); glfwDestroyWindow(mainWindow); glfwTerminate(); return 1; } glEnable(GL_DEPTH_TEST); //HABILITAR BUFFER DE PROFUNDIDAD // Asignar valores de la ventana y coordenadas //Asignar Viewport glViewport(0, 0, bufferWidth, bufferHeight); //Callback para detectar que se está usando la ventana glfwSetWindowUserPointer(mainWindow, this); } void Window::createCallbacks() { glfwSetKeyCallback(mainWindow, ManejaTeclado); glfwSetCursorPosCallback(mainWindow, ManejaMouse); } GLfloat Window::getXChange() { GLfloat theChange = xChange; xChange = 0.0f; return theChange; } GLfloat Window::getYChange() { GLfloat theChange = yChange; yChange = 0.0f; return theChange; } void Window::ManejaTeclado(GLFWwindow* window, int key, int code, int action, int mode) { Window* theWindow = static_cast<Window*>(glfwGetWindowUserPointer(window)); if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS) { glfwSetWindowShouldClose(window, GL_TRUE); } if (key == GLFW_KEY_Y) { theWindow->muevex += 1.0; } if (key == GLFW_KEY_U) { theWindow->muevex -= 1.0; } if (key == GLFW_KEY_C) { if (theWindow->numcamara > 4) { theWindow->numcamara = 0; } else { theWindow->numcamara++; } } if (key >= 0 && key < 1024) { if (action == GLFW_PRESS) { theWindow->keys[key] = true; printf("se presiono la tecla %d'\n", key); } else if (action == GLFW_RELEASE) { theWindow->keys[key] = false; printf("se solto la tecla %d'\n", key); } } } void Window::ManejaMouse(GLFWwindow* window, double xPos, double yPos) { Window* theWindow = static_cast<Window*>(glfwGetWindowUserPointer(window)); if (theWindow->mouseFirstMoved) { theWindow->lastX = xPos; theWindow->lastY = yPos; theWindow->mouseFirstMoved = false; } theWindow->xChange = xPos - theWindow->lastX; theWindow->yChange = theWindow->lastY - yPos; theWindow->lastX = xPos; theWindow->lastY = yPos; } Window::~Window() { glfwDestroyWindow(mainWindow); glfwTerminate(); }
[ "rodreri@gmail.com" ]
rodreri@gmail.com
a50d12719ee5879ff038e0ff9d007602aadb8aa8
8565325365db437120a4ae8b97f2919e362be8a6
/Baekjoon/Graph/14502/14502.cpp
a6a235f5a47356f64bfef89e88caf82423e5a875
[]
no_license
FacerAin/Algorithm-Study
31e56ea9ba01cff0fb27211b62d6665f1620dbb5
ad7474c72d8a6c83a15880b86e931ac6f03893fd
refs/heads/master
2021-07-24T00:53:10.022607
2021-07-03T14:37:48
2021-07-03T14:37:48
194,530,669
0
0
null
null
null
null
UTF-8
C++
false
false
1,727
cpp
//14502번 연구소 #include <iostream> #include <queue> #include <utility> #include <algorithm> using namespace std; int wall_cnt = 0; int dy[4] = {1,-1,0,0}; int dx[4] = {0,0,1,-1}; int map[10][10]; int temp[10][10]; int check[10][10]; int N, M; int ans; queue<pair<int,int>> init_q; queue<pair<int,int>> q; void copyMap(){ for(int i = 0; i < N; i++){ for(int j = 0; j < M; j++){ temp[i][j] = map[i][j]; } } } bool isInside(int a, int b){ return (a >= 0 && a < N) && (b >=0 && b < M); } void BFS(){ int v_map[10][10]; for(int i = 0; i < N; i++){ for(int j = 0; j < M; j++){ v_map[i][j] = temp[i][j]; } } q = init_q; while(!q.empty()){ int cur_y = q.front().first; int cur_x = q.front().second; q.pop(); for(int i = 0; i < 4; i++){ int next_y = cur_y + dy[i]; int next_x = cur_x + dx[i]; if(isInside(next_y,next_x) && v_map[next_y][next_x] == 0){ v_map[next_y][next_x] = 2; q.push(pair<int,int>(next_y,next_x)); } } } int sum = 0; for(int i = 0; i < N; i++){ for(int j = 0; j < M; j++){ if(v_map[i][j] == 0){ sum++; } } } ans = max(ans, sum); } void make_wall(int cnt){ if(cnt == 3){ BFS(); return; } for(int i = 0; i < N; i++){ for(int j = 0; j < M; j++){ if(temp[i][j] == 0){ temp[i][j] = 1; make_wall(cnt+1); temp[i][j] = 0; } } } } int main(){ //시작 바이러스의 위치는 바뀌지 않는다. //큐를 한번 저장해두고 계속 복사해서 사용하자. cin >> N >> M; for(int i = 0; i < N; i++){ for(int j = 0; j < M; j++){ cin >> map[i][j]; if(map[i][j] == 2){ init_q.push(pair<int,int>(i,j)); } } } copyMap(); make_wall(0); cout << ans; return 0; }
[ "ywsong.dev@kakao.com" ]
ywsong.dev@kakao.com
6b03970353ede99d395b4e12cb2a5e14f2f02ea2
01c93dfd17bf4aa76067bcc3baf6aa8d0a400536
/PAT乙级/B1070.cpp
3c21ebad60cc8931102eff9139c4230cd1b4a78a
[]
no_license
lfwbale/PATbasic
908aa8e99afcffe3753eb380cc7bd32317f99a5b
26d51773bb8304bc8c5baff67cb5cf41f49b8e2c
refs/heads/master
2020-09-05T19:22:41.441664
2019-11-07T10:54:16
2019-11-07T10:54:16
220,191,335
0
0
null
null
null
null
UTF-8
C++
false
false
279
cpp
#include<stdio.h> #include<algorithm> using namespace std; int main(){ int n; scanf("%d",&n); int a[n]; for(int i=0;i<n;i++){ scanf("%d",&a[i]); } sort(a,a+n); int sum=0; for(int i=0;i<n;i++){ sum=(sum+a[i])/2; } printf("%d\n",sum); return 0; }
[ "stunning@MacBook-Pro-4.local" ]
stunning@MacBook-Pro-4.local
3b42d8491eba897d2322a7ffb06b80cdbd4c9810
117246cd4faafd099cb8ec981378820ca111d744
/Snake/Game.cpp
edfa45f9e72b3f071701ca46d3d348a7a712794c
[]
no_license
TruongHoangPhuLoc/Snake
eebeb23d6a0367f6f61b70255c4dc1805a323bd4
b359c5aecee6505474125ba145c1be31e6624bba
refs/heads/master
2023-07-30T19:57:26.945354
2021-09-19T05:18:25
2021-09-19T05:18:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,185
cpp
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<Windows.h> #include<conio.h> #include<time.h> #define DOT_RAN 254 #define MAX 100 #define LEN 1 #define XUONG 2 #define TRAI 3 #define PHAI 4 #define WallTop 5 #define WallBot 28 #define WallLeft 0 #define WallRight 118 void Nocursortype() { CONSOLE_CURSOR_INFO Info; Info.bVisible = FALSE; Info.dwSize = 20; SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &Info); } void gotoxy(short x, short y) { HANDLE hConsoleOutput; COORD Cursor_an_Pos = { x, y }; hConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleCursorPosition(hConsoleOutput, Cursor_an_Pos); } struct TOADO { int x; int y; }; struct NODE { TOADO info; NODE* pNext; NODE* pPrevious; }; TOADO randomFOOD(); bool checkPosOfFood(NODE* head, TOADO food); void DrawWall(); void InitializeSNAKE(NODE*& head); NODE* findendNODE(NODE* head); TOADO Move(NODE* head, int huong); void DisplaySNAKE(NODE* head, TOADO endNODE, int huong); void DisplaySNAKE_2(NODE* head, TOADO end); void GetFromKeyBoard(int& huong); bool GameOver(NODE* head); bool checkAte(NODE* head, NODE* food); TOADO getEndNODE(NODE* head, int huong); void InsertNODE(NODE*& head, TOADO endNODE); int countNODE(NODE* head); void DisPlayScore(int score); void DisPlayPlayer(char* name, int tuoi); void ENDGAME(char* name, int score); void DisPlayFOOD(NODE* food); void InitializeFOOD(NODE*& food); void InsertFOOD(NODE* head, int nOFfood, NODE*& food); NODE* FindFOODtobeEaten(NODE* head, NODE* food); void ChangeNODETobeEATEN(NODE* head, NODE* food, NODE* nodeFoodTobeEaten); bool CheckSNAKE(NODE* head); int main() { srand(time(NULL)); char* name = new char[100]; printf("Nhap ten: "); gets_s(name, 100); int age; do { printf("Nhap tuoi: "); scanf("%d", &age); if (age < 18) { printf("Game nay chi danh cho nguoi tren 18 thoi nha %s oii :))\nNhap lai tuoi di\n", name); } } while (age < 18); system("cls"); NODE* head; InitializeSNAKE(head); NODE* food; InitializeFOOD(food); int nOFfood = 3; InsertFOOD(head, nOFfood, food); DisPlayFOOD(food); int huong = PHAI; int score = 0; gotoxy(50, 1); printf("WELCOME TO MY GAME"); gotoxy(55, 2); printf("Coding and design by Phu Loc"); DrawWall(); DisPlayPlayer(name, age); DisPlayScore(score); int time = 100; Nocursortype(); while (true) { TOADO endNODE = getEndNODE(head, huong); DisplaySNAKE(head, endNODE, huong); Sleep(time); GetFromKeyBoard(huong); if (GameOver(head) == true) { break; } if (checkAte(head, food) == true) { NODE* eaten = FindFOODtobeEaten(head, food); ChangeNODETobeEATEN(head, food, eaten); DisPlayFOOD(food); score++; InsertNODE(head, endNODE); DisPlayScore(score); if (time == 1) { time = 1; } else { time = time - 1; } } } system("cls"); /*int after = countNODE(head); int score = after - before;*/ ENDGAME(name, score); system("pause"); } void DrawWall() { for (int i = WallLeft; i <= WallRight; i++)// ve tuong tren { gotoxy(i, WallTop); printf("%c", 220); } for (int i = WallTop + 1; i <= WallBot; i++)// tuong trai { gotoxy(WallLeft, i); printf("%c", 221); } for (int i = WallTop + 1; i <= WallBot; i++) { gotoxy(WallRight, i); printf("%c", 222); } for (int i = WallLeft; i <= WallRight; i++) { gotoxy(i, WallBot); printf("%c", 223); } } void InitializeSNAKE(NODE*& head) { head = new NODE; head->info.x = 3; head->info.y = 8; head->pPrevious = NULL; NODE* p = new NODE; p->info.x = 2; p->info.y = 8; p->pPrevious = head; head->pNext = p; NODE* q = new NODE; q->info.x = 1; q->info.y = 8; q->pNext = NULL; q->pPrevious = p; p->pNext = q; } NODE* findendNODE(NODE* head) { NODE* p = head; NODE* q = new NODE; while (p != NULL) { q = p; p = p->pNext; } return q; } TOADO Move(NODE* head, int huong) { TOADO temp = findendNODE(head)->info; NODE* p = findendNODE(head); while (p != head) { NODE* k = p->pPrevious; p->info = k->info; p = p->pPrevious; } switch (huong) { case LEN: head->info.y--; break; case XUONG: head->info.y++; break; case TRAI: head->info.x--; break; case PHAI: head->info.x++; break; } return temp; } void DisplaySNAKE(NODE* head, TOADO endNODE, int huong) { gotoxy(endNODE.x, endNODE.y); printf(" "); NODE* p = head; while (p != NULL) { gotoxy(p->info.x, p->info.y); if (p == head && huong == PHAI) { printf(">"); } if (p == head && huong == TRAI) { printf("<"); } if (p == head && huong == LEN) { printf("^"); } if (p == head && huong == XUONG) { printf("v"); } if (p != head) { printf("-"); } p = p->pNext; } } void DisplaySNAKE_2(NODE* head, TOADO end) { while (head != NULL) { gotoxy(head->info.x, head->info.y); printf("*"); head = head->pNext; } gotoxy(end.x, end.y); printf(" "); } void GetFromKeyBoard(int& huong) { if (_kbhit()) { int key = _getch(); if (key == 'w' || key == 'W' || key == 72) { if (huong == XUONG) { huong = XUONG; } else { huong = LEN; } } else if (key == 's' || key == 'S' || key == 80) { if (huong == LEN) { huong = LEN; } else { huong = XUONG; } } else if (key == 'a' || key == 'A' || key == 75) { if (huong == PHAI) { huong = PHAI; } else { huong = TRAI; } } else if (key == 'd' || key == 'D' || key == 77) { if (huong == TRAI) { huong = TRAI; } else { huong = PHAI; } } } } TOADO randomFOOD() { TOADO food; food.x = (WallLeft + 1) + rand() % ((WallRight - 1) + 1 - (WallLeft + 1)); food.y = (WallTop + 1) + rand() % ((WallBot - 1) + 1 - (WallTop + 1)); return food; } bool checkPosOfFood(NODE* head, TOADO food) { while (head != NULL) { if (head->info.x == food.x && head->info.y == food.y) { return true; } head = head->pNext; } return false; } bool GameOver(NODE* head) { NODE* p = head; if (p->info.y == WallTop) { return true; } else if (p->info.y == WallBot) { return true; } else if (p->info.x == WallLeft) { return true; } else if (p->info.x == WallRight) { return true; } else if (CheckSNAKE(head) == true) { return true; } else { return false; } } bool checkAte(NODE* head, NODE* food) { while (food != NULL) { if (head->info.x == food->info.x && head->info.y == food->info.y) { return true; } food = food->pNext; } return false; } bool CheckSNAKE(NODE* head) { NODE* p = head->pNext; while (p != NULL) { if (head->info.x == p->info.x && head->info.y == p->info.y) { return true; } p = p->pNext; } return false; } TOADO getEndNODE(NODE* head, int huong) { TOADO endNODE = Move(head, huong); return endNODE; } void InsertNODE(NODE*& head, TOADO endNODE) { NODE* end = findendNODE(head); NODE* p = new NODE; p->info = endNODE; p->pNext = NULL; p->pPrevious = end; end->pNext = p; } int countNODE(NODE* head) { NODE* p = head; int count = 0; while (p != NULL) { count++; p = p->pNext; } return count; } void DisPlayScore(int score) { gotoxy(100, 1); printf("Score is %d", score); } void DisPlayPlayer(char* name, int age) { gotoxy(5, 1); printf("Name: %s", name); gotoxy(5, 2); printf("Age: %d", age); } void ENDGAME(char* name, int score) { gotoxy(35, 1); printf("Thua roi %s oi ahahahaha do ngok", name); gotoxy(35, 2); printf("Chi dat duoc %d diem thoi nha cung\n", score); } void DisPlayFOOD(NODE* food) { while (food != NULL) { gotoxy(food->info.x, food->info.y); printf("%c", 254); food = food->pNext; } } void InsertFOOD(NODE* head, int nOFfood, NODE*& food) { TOADO info; for (int i = 0; i < nOFfood; i++) { do { info = randomFOOD(); } while (checkPosOfFood(head, info) == true); if (food == NULL) { NODE* p = new NODE; p->info = info; p->pNext = NULL; p->pPrevious = NULL; food = p; } else { while (checkPosOfFood(food, info) == true) { info = randomFOOD(); } NODE* q = new NODE; q->info = info; q->pNext = NULL; NODE* temp = food; while (temp->pNext != NULL) { temp = temp->pNext; } temp->pNext = q; q->pPrevious = temp; } } } NODE* findFOODtobeEaten(NODE* head, NODE* food) { NODE* p = NULL; while (food != NULL) { if (head->info.x == food->info.x && head->info.y == food->info.y) { p = food; } food = food->pNext; } return p; } void changeNODETobeEATEN(NODE* head, NODE* food, NODE* nodeFoodTobeEaten) { TOADO info = randomFOOD(); while (checkPosOfFood(head, info) == true || checkPosOfFood(food, info) == true) { info = randomFOOD(); } nodeFoodTobeEaten->info = info; } NODE* FindFOODtobeEaten(NODE* head, NODE* food) { NODE* p = NULL; while (food != NULL) { if (head->info.x == food->info.x && head->info.y == food->info.y) { p = food; } food = food->pNext; } return p; } void ChangeNODETobeEATEN(NODE* head, NODE* food, NODE* nodeFoodTobeEaten) { TOADO info = randomFOOD(); while (checkPosOfFood(head, info) == true || checkPosOfFood(food, info) == true) { info = randomFOOD(); } nodeFoodTobeEaten->info = info; } void InitializeFOOD(NODE*& food) { food = NULL; }
[ "truongphuloc030499@gmail.com" ]
truongphuloc030499@gmail.com
3071ab018fc7cab0d27b196e368b128e501da2fd
19eb97436a3be9642517ea9c4095fe337fd58a00
/private/inet/mshtml/btools/pdlparse/pdlparse.hxx
ad969645a6260ebfb535250e0357a6088dacb4a9
[]
no_license
oturan-boga/Windows2000
7d258fd0f42a225c2be72f2b762d799bd488de58
8b449d6659840b6ba19465100d21ca07a0e07236
refs/heads/main
2023-04-09T23:13:21.992398
2021-04-22T11:46:21
2021-04-22T11:46:21
360,495,781
2
0
null
null
null
null
UTF-8
C++
false
false
22,823
hxx
#define COLLECT_STATISTICS 0 // Set to 1 to enable statics gathering extern const char *rgszCcssString[]; #define CCSSF_NONE 0 // no flags #define CCSSF_CLEARCACHES 1 // clear the caches when changing #define CCSSF_REMEASURECONTENTS 2 // need to resize site after changing this #define CCSSF_SIZECHANGED 4 // notify the parent of a size change. #define CCSSF_REMEASUREINPARENT 8 // remeasure in parent layout's context #define CCSSF_CLEARFF 16 // clear the caches when changing #define CCSSF_REMEASUREALLCONTENTS 32 // resize self & all nested layout elements struct CCachedAttrArrayInfo { char *szDispId; DWORD dwFlags; }; enum StorageType { STORAGETYPE_OTHER, STORAGETYPE_NUMBER, STORAGETYPE_STRING, }; struct AssociateDataType { char *szKey; char *szValue; char *szMethodFnPrefix; StorageType stStorageType; }; struct Associate { char *szKey; char *szValue; }; // Maximum allowed length of a parse line #define MAX_LINE_LEN 2048 // Max number of tags per token #define MAX_TAGS 63 #define MAX_SUBTOKENS 8 class CString { char szString [ MAX_LINE_LEN+1 ]; public: CString() { szString [ 0 ] = '\0'; } BOOL operator== ( LPCSTR szStr1 ) { return _stricmp ( (const char *)szString, (const char *)szStr1 ) == 0 ? TRUE : FALSE; } #ifndef UNIX static BOOL operator== ( const CString& szStr1, LPCSTR szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? TRUE : FALSE; } static BOOL operator== ( LPCSTR szStr1, const CString &szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? TRUE : FALSE; } #endif BOOL operator!= ( LPCSTR szStr1 ) { return _stricmp ( (const char *)szString, (const char *)szStr1 ) == 0 ? FALSE : TRUE; } #ifndef UNIX static BOOL operator!= ( const CString& szStr1, LPCSTR szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? FALSE : TRUE; } static BOOL operator!= ( LPCSTR szStr1, const CString &szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? FALSE : TRUE; } #endif const CString &operator= ( LPCSTR pStr ) { strcpy ( szString, pStr ); return *this; } const CString &operator+= ( LPCSTR pStr ) { strcat ( szString, pStr ); return *this; } const CString &operator+ ( CString szStr ) { strcat ( szString, (LPCSTR)szStr ); return *this; } const CString &operator+ ( LPCSTR pStr ) { strcat ( szString, pStr ); return *this; } char operator[] ( INT nIndex ) { return szString [ nIndex ]; } operator LPCSTR () const { return (const char *)szString; } CString &ToUpper () { _strupr ( szString ); return *this; } int Length ( void ) { return strlen ( szString ); } char * FindChar ( char ch ) { return strchr(szString, ch); } UINT Lookup ( Associate *pArray, LPCSTR pStr ); UINT Lookup ( AssociateDataType *pArray, LPCSTR pStr ); }; #ifdef UNIX inline BOOL operator== ( const CString& szStr1, LPCSTR szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? TRUE : FALSE; } inline BOOL operator== ( LPCSTR szStr1, const CString &szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? TRUE : FALSE; } inline BOOL operator== ( const CString& szStr1, const CString& szStr2) { return _stricmp( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? TRUE : FALSE; } inline BOOL operator!= ( const CString& szStr1, LPCSTR szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? FALSE : TRUE; } #if 0 // apogee can't tell the difference between these two. inline BOOL operator!= ( LPCSTR szStr1, const CString &szStr2 ) { return _stricmp ( (LPCSTR)szStr1, (LPCSTR)szStr2 ) == 0 ? FALSE : TRUE; } #endif #endif struct TagDescriptor { char *szTag; BOOL fIsFlag; BOOL fIsRequired; BOOL fRefersToClass; }; // This enum must match the order that the corresponding structs appear in AllDescriptors enum DESCRIPTOR_TYPE; class TagArray { char *szValues [ MAX_TAGS ]; static char *szEmptyString; public: BOOL AddTag ( int iTag, LPCSTR szStr, int nLen ); TagArray() { INT i; for ( i = 0 ; i < MAX_TAGS ; i++ ) { szValues [ i ] = NULL; } } ~TagArray() { INT i; for ( i = 0 ; i < MAX_TAGS ; i++ ) { if ( szValues [ i ] ) delete szValues [ i ]; } } BOOL CompareTag ( INT nIndex, char *szWith ); char *GetTagValue ( INT nIndex ); BOOL IsSet ( INT nIndex ) { return szValues [ nIndex ] == NULL ? FALSE : TRUE; } // Only use this method if you must - use GetTagValue normaly char *GetInternalValue ( INT nIndex ) { return szValues [ nIndex ]; } }; struct TokenDescriptor; class CTokenList; class Token { friend class CRuntimeTokenList; friend class CPDLParser; friend class CTokenList; friend class CTokenListWalker; protected: DESCRIPTOR_TYPE nType; // Calculate bitwise enum vaklidation mask UINT uEnumMask; UINT nNextEnumValue; // Token *_pNextToken; CTokenList *_pChildList; public: Token ( DESCRIPTOR_TYPE nDescriptorType ) { nType = nDescriptorType; uEnumMask = 0; nNextEnumValue = 0; _pNextToken = NULL; _pChildList = NULL; } void Clone ( Token *pFrom ); ~Token(); TagArray TagValues; // Array of values size == nTag BOOL CompareTag ( INT nIndex, char *szWith ) { return TagValues.CompareTag ( nIndex, szWith ); } char *GetTagValue ( INT nIndex ) { return TagValues.GetTagValue ( nIndex ); } BOOL AddTag ( int iTag, LPCSTR szStr, int nLen = -1 ) { if ( nLen == -1 ) nLen = strlen ( szStr ); return TagValues.AddTag ( iTag, szStr, nLen ); } BOOL IsSet ( INT nIndex ) { return TagValues.IsSet ( nIndex ); } // Sets a flag value to TRUE BOOL Set ( INT nIndex ) { return TagValues.AddTag ( nIndex, "", 1 ); } void AddParam ( CString &szArg, INT nTag, LPCSTR szText ); void AddParamStr ( CString &szArg, INT nTag, LPCSTR szText ); void GetTagValueOrDefault ( CString &szArg, INT nTag, LPCSTR szDefault ) { if ( IsSet ( nTag ) ) szArg = (LPCSTR)GetTagValue ( nTag ); else szArg = (LPCSTR)szDefault; } DESCRIPTOR_TYPE GetType ( void ) const { return nType; } void SetNextToken ( Token *pToken ) { _pNextToken = pToken; } Token *GetNextToken ( void ) const { return _pNextToken; } Token *AddChildToken ( DESCRIPTOR_TYPE nType ); void CalculateEnumMask ( Token *pParentToken ); UINT GetChildTokenCount ( void ); }; struct TokenDescriptor { char *szTokenName; BOOL fIsParentToken; TagDescriptor Tags [MAX_TAGS]; // BOOL LookupTagName ( char *szTag, int nTagLen, INT *pnIndex ) { for ( *pnIndex = 0 ; Tags [ *pnIndex ].szTag != NULL ; (*pnIndex)++ ) { if ( _strnicmp ( Tags [ *pnIndex ].szTag, szTag, nTagLen ) == 0 ) { // Descriptors never have an entry for the "name", so // the actual tag array index is always 1 more than the // corresponding descriptor index (*pnIndex)++; return TRUE; } } return FALSE; } }; class CTokenList { private: // Linked list of all tokens Token *_pFirstToken; // Pointer to last item in token list Token *_pLastToken; // Count of number of tokens in list UINT _uTokens; ULONG ulRefs; // protect out destructor so people don't delete us, use Release() instead ~CTokenList(); public: CTokenList() { _pFirstToken = NULL; _pLastToken = NULL; _uTokens = 0; ulRefs = 1; } Token *AddNewToken ( DESCRIPTOR_TYPE nTokenDescriptor ); Token *FindToken ( char *pTokenName, DESCRIPTOR_TYPE nType ) const; Token *GetFirst ( void ) const { return _pFirstToken; } UINT GetTokenCount ( void ) const { return _uTokens; } // We reference count to simplify Cloning of arg lists // for ref properties void AddRef ( void ) { ulRefs++; }; void Release ( void ) { if ( --ulRefs == 0 ) delete this; } }; class CTokenListWalker { private: CTokenList *_pList; Token *_pCurrentToken; char *_pszFileName; BOOL _fInCurrentFile; BOOL _fAtEnd; private: Token *GetNextToken ( void ) { if ( _fAtEnd || _pList == NULL ) { return NULL; } if ( _pCurrentToken == NULL ) _pCurrentToken = _pList -> GetFirst (); else { _pCurrentToken = _pCurrentToken -> GetNextToken(); if ( _pCurrentToken == NULL ) _fAtEnd = TRUE; } return _pCurrentToken; } public: Token *CurrentToken ( void ) { return _pCurrentToken; } void Reset ( void ); // Generic walker CTokenListWalker ( CTokenList *pList ) { _pList = pList; _pszFileName = NULL; Reset(); } // Walker that will just walk definitions in a given pdl file CTokenListWalker ( CTokenList *pList, char *pszFileName ) { _pList = pList; _pszFileName = pszFileName; Reset(); } // Child token list walker CTokenListWalker ( Token *pParentToken ) { if ( pParentToken ) _pList = pParentToken -> _pChildList; else _pList = NULL; _pszFileName = NULL; Reset(); } Token *GetNext ( void ); Token *GetNext ( DESCRIPTOR_TYPE Type, LPCSTR pName = NULL ); UINT GetTokenCount ( void ) { return _pList ? _pList -> GetTokenCount() : 0; } BOOL IsGenericWalker ( void ) { return _pszFileName == 0; } }; struct PropdescInfo{ LPCSTR _szClass; LPCSTR _szPropName; BOOL _fAppendA; BOOL _fProperty; // TRUE if property FALSE if method UINT _uVTblIndex; // VTable Index of method or first Property (Get or Set) LPCSTR _szAttrName; LPCSTR _szSortKey; void Set(LPCSTR szClass, LPCSTR szPropName, BOOL fAppendA, LPCSTR szAttrName, UINT uVTblIndex = 0, BOOL fProperty = TRUE) { _szClass = szClass; _szPropName = szPropName; _fAppendA = fAppendA; _szAttrName = szAttrName; // If szAttribute specified, use that to override property name for sorting. _szSortKey = strlen(szAttrName) ? szAttrName : szPropName; _uVTblIndex = uVTblIndex; _fProperty = fProperty; } void SetVTable(LPCSTR szClass, LPCSTR szPropName, BOOL fAppendA, LPCSTR szAttrName, UINT uVTblIndex = 0, BOOL fProperty = TRUE) { _szClass = szClass; _szPropName = szPropName; _fAppendA = fAppendA; _szAttrName = szAttrName; // If szPropName use that it's the exported name else the szAttrName is the usd. _szSortKey = strlen(szPropName) ? szPropName : szAttrName; _uVTblIndex = uVTblIndex; _fProperty = fProperty; } }; #define MAX_ARGS 8 // Maximum # of args (w/ default parameters PDL handles) class CPDLParser { private: char *_pszPDLFileName; char *_pszOutputFileRoot; char *_pszInputFile; char *_pszOutputPath; CTokenList *pRuntimeList; FILE *fpHDLFile; FILE *fpIDLFile; FILE *fpHeaderFile; FILE *fpLOGFile; FILE *fpHTMFile; FILE *fpHTMIndexFile; FILE *fpDISPIDFile; FILE *fpMaxLenFile; int cOnFileSignatures; int cOnFileIIDs; char **rgszSignatures; char **rgszIIDs; int cSignatures; int cIIDs; int _numPropDescs; int _numVTblEntries; void RemoveSignatures ( void ); BOOL LoadSignatures ( char *pszOutputPath ); BOOL SaveSignatures ( char *pszOutputPath ); BOOL FindAndAddSignature ( LPCSTR szType, LPCSTR szSignature, LPSTR pszInvokeMethod ); int FindAndAddIIDs ( CString szInterface ); #if COLLECT_STATISTICS==1 #define MAX_STATS 20 #define NUM_PROPTURDS 0 // Number of code turds for all properties #define NUM_EMUMTURDS 1 // Number of code turds for enum properties #define NUM_GETENUMS 2 // Number of unique enum property gets per interface #define NUM_SETENUMS 3 // Number of unique enum property gets per interface #define NUM_GETPROPERTY 4 // Number of unique property sets per interface #define NUM_SETPROPERTY 5 // Number of unique property sets per interface long rgcStats[MAX_STATS]; void LoadStatistics ( char *pszOutputPath ); void SaveStatistics ( char *pszOutputPath ); void CollectStatistic (long lStatisticIdx, long lValue) { rgcStats[lStatisticIdx] = lValue; } long GetStatistic (long lStatisticIdx) { return rgcStats[lStatisticIdx]; } #endif // Used to use this fn, leaving it for posterity UINT CountTags ( TokenDescriptor *tokdesc ); // Token * IsSuperInterface( CString szSuper, Token * pInterface ); Token * FindMatchingEntryWOPropDesc(Token *pClass, Token *pToFindToken, BOOL fNameMatchOnly = FALSE); Token * FindMethodInInterfaceWOPropDesc(Token *pInterface, Token *pToFindToken, BOOL fNameMatchOnly = FALSE); void GenerateThunkContext ( Token *pClassToken ); void GenerateThunkContextImplemenation ( Token *pClassToken ); void GenerateSingleThunkContextPrototype ( Token *pClassToken, Token * pChildToken, BOOL fNodeContext ); void GenerateSingleThunkContextImplementation ( Token *pClassToken, Token * pChildToken, BOOL fNodeContext ); void GenerateClassDISPIDs ( void ); void GenerateInterfaceDISPIDs ( void ); void GenerateExternalInterfaceDISPIDs ( void ); void GenerateEventDISPIDs ( FILE *fp, BOOL fPutDIID ); BOOL ComputePROPDESC_STRUCT ( FILE *fp, Token *pClassToken, Token *pChild, CString & szHandler, CString & szFnPrefix ); Token * FindEnum ( Token *pChild ); char * MapTypeToIDispatch ( CString & szType ); BOOL ComputeProperty ( Token *pClassToken, Token *pChild ); BOOL ComputeMethod ( Token *pClassToken, Token *pChild ); BOOL BuildMethodSignature(Token *pChild, CString &szTypesSig, CString &szArgsType, BOOL &fBSTRArg, BOOL &fVARIANTArg, int &cArgs, int &cRequiredArgs, char *pDefaultParams[MAX_ARGS] = NULL, char *pDefaultStrParams[MAX_ARGS] = NULL); BOOL GeneratePROPDESCs ( void ); BOOL GeneratePROPDESCArray ( Token *pThisClassToken, int *pNumVTblEntries ); void GenerateVTableArray ( Token *pThisClassToken, int *pNumVTblEntries ); void SortPropDescInfo ( PropdescInfo *pPI, int cPDI ); BOOL ComputeVTable ( Token *pClass, Token *pInterface, BOOL fDerived, PropdescInfo *pPI, int *piPI, UINT *pUVTblIdx, BOOL fPrimaryTearoff = FALSE ); BOOL GeneratePropMethodImplementation ( void ); void SplitTag ( char *pStr, int nLen, char **pTag, int *pnTagLen, char **pValue, int *pnValueLen ); BOOL IsStoredAsString( Token *pClassToken ); BOOL LookupToken ( LPCSTR pTokenName, int nTokenLen, TokenDescriptor **ppTokenDescriptor, DESCRIPTOR_TYPE *pnTokenDes ); BOOL GetElem ( char **pStr, char **pElem, int *pnLen, BOOL fBreakOnOpenParenthesis = FALSE, BOOL fBreakOnCloseParenthesis = FALSE, BOOL fBreakOnComma=FALSE ); LPCSTR ConvertType ( LPCSTR szType ); BOOL ParseInputFile ( BOOL fDebugging ); BOOL GenerateHDLFile ( void ); void GenerateCPPEnumDefs ( void ); BOOL GetTypeDetails ( char *szTypeName, CString& szHandler, CString &szFnPrefix, StorageType *pStorageType = NULL ); void GenerateMethodImp ( Token *pClassToken, Token *pChildToken, BOOL fIsSet, CString &szHandler, CString &szHandlerArgs, CString &szOffsetOf, CString &szAType ); BOOL FindTearoffMethod ( Token *pTearoff, LPCSTR pszTearoffMethod, LPSTR pszUseTearoff); BOOL GenerateTearoffTable ( Token *pClassToken, Token *pTearoff, LPCSTR pszInterface, BOOL fMostDerived ); BOOL GenerateTearOffMethods ( LPCSTR szClassName, Token *pTearoff, LPCSTR szInterfaceName, BOOL fMostDerived = FALSE ); BOOL GenerateIDispatchTearoff(LPCSTR szClassName, Token *pTearoff, LPCSTR pszInterfaceName, BOOL fMostDerived = FALSE ); BOOL HasMondoDispInterface ( Token *pClassToken ); BOOL PatchInterfaceRefTypes ( void ); BOOL CloneToken ( Token *pChildToken, DESCRIPTOR_TYPE Type, INT nClassName, INT nTagName ); void GeneratePropMethodDecl ( Token *pClassToken ); void GenerateGetAAXImplementations ( Token *pClassToken ); void GenerateGetAAXPrototypes ( Token *pClassToken ); BOOL PrimaryTearoff (Token *pInterface); Token* NextTearoff (LPCSTR szClassname, Token *pLastTearoff = NULL); Token* FindTearoff (LPCSTR szClassname, LPCSTR szInterface); BOOL GenerateClassIncludes ( void ); BOOL GenerateEventFireDecl ( Token *pToken ); BOOL GenerateEventDecl ( Token *pClassToken, Token *pEventToken ); BOOL GenerateIDLFile ( char *szFileName ); void GenerateIDLInterfaceDecl ( Token *pInterfaceToken, char *pszGUID, char *pszSuper, BOOL fDispInterface = FALSE, Token *pClassToken = NULL ); void ComputePropType ( Token *pPropertyToken, CString &szProp, BOOL fComment ); void GenerateMkTypelibDecl ( Token *pInterfaceToken, BOOL fDispInterface = FALSE, Token *pClass =NULL ); void GenerateMidlInterfaceDecl ( Token *pInterfaceToken, char *pszGUID, char *pszSuper ); void GenerateCoClassDecl ( Token *pClassToken ); void GenerateEnumDescIDL ( Token *pEnumToken ); void ReportError ( LPCSTR szErrorString ); void GenerateHeaderFile ( void ); void GenerateIncludeStatement ( Token *pImportToken ); void GenerateIncludeInterface ( Token *pInterfaceToken ); void GenerateIncludeEnum(Token *pEnumToken, BOOL fSpitExtern, FILE *pFile = NULL); BOOL GenerateHTMFile ( void ); void GenerateArg ( Token *pArgToken ); void GenerateInterfaceArg ( Token *pArgToken ); void GenerateMethodHTM ( Token *pClassToken ); void GenerateInterfaceMethodHTM ( Token *pClassToken ); void GenerateEventMethodHTM ( Token *pClassToken ); void GenerateEnumHTM ( Token *pClassToken, char *pEnumPrefix ); void GeneratePropertiesHTM ( Token *pClassToken, BOOL fAttributes ); void GenerateInterfacePropertiesHTM ( Token *pIntfToken ); void GenerateStruct(Token *pStructToken, FILE *pFile); Token* FindInterface (CString szInterfaceMatch); Token* FindInterfaceLocally (CString szInterfaceMatch); BOOL IsPrimaryInterface(CString szInterface); Token* FindClass (CString szClassMatch); BOOL IsUniqueCPC ( Token *pClassToken ); BOOL FindTearoffProperty ( Token *pPropertyToken, LPSTR szTearoffMethod, LPSTR szTearOffClassName, LPSTR szPropArgs, BOOL fPropGet ); BOOL GeneratePropDescsInVtblOrder(Token *pClassToken, int *pNumVtblPropDescs); BOOL IsSpecialProperty(Token *pClassToken); BOOL IsSpecialTearoff(Token *pTearoff); const CCachedAttrArrayInfo* GetCachedAttrArrayInfo( LPCSTR szDispId ); // Manage a dynamic list of types CTokenList *pDynamicTypeList; CTokenList *pDynamicEventTypeList; enum { DATATYPE_NAME, DATATYPE_HANDLER, }; enum { TYPE_DATATYPE=-1 }; BOOL LookupType ( LPCSTR szTypeName, CString &szIntoString, CString &szFnPrefix, StorageType *pStorageType = NULL ); BOOL AddType ( LPCSTR szTypeName, LPCSTR szHandler ); BOOL LookupEventType ( CString &szIntoString, LPCSTR szTypeName ); BOOL AddEventType ( LPCSTR szTypeName, LPCSTR szVTSType ); BOOL PatchPropertyTypes ( void ); BOOL PatchInterfaces (); BOOL HasClassGotProperties ( Token *pClassToken ); Token *GetSuperClassTokenPtr ( Token *pClassToken ); Token *GetPropAbstractClassTokenPtr ( Token *pClassToken ); BOOL GeneratePropdescReference ( Token *pClassToken, BOOL fDerivedClass, PropdescInfo *pPI, int *pnPI ); void GeneratePropdescExtern ( Token *pClassToken, BOOL fRecurse = TRUE ); void Init ( void ); public: CPDLParser (); ~CPDLParser () { if (fpMaxLenFile) fclose(fpMaxLenFile); if ( fpHDLFile ) fclose ( fpHDLFile ); if ( fpHeaderFile ) fclose ( fpHeaderFile ); if ( fpIDLFile ) fclose ( fpIDLFile ); if ( fpLOGFile ) fclose ( fpLOGFile ); if ( fpDISPIDFile ) fclose ( fpDISPIDFile ); if ( fpHTMFile ) fclose ( fpHTMFile ); if ( fpHTMIndexFile ) fclose ( fpHTMIndexFile ); pRuntimeList -> Release(); pDynamicTypeList -> Release(); pDynamicEventTypeList -> Release(); } int Parse ( char *szInputFile, char *szOutputFileRoot, char *szPDLFileName, char *szOutputPath, BOOL fDebugging ); }; BOOL GetStdInLine ( char *szLineBuffer, int nMaxLen ); // Every Token array has a name as the first item #define NAME_TAG 0 // Always have this as the last element in the descriptor array #define END_OF_ARG_ARRAY { NULL, FALSE, FALSE } #define ARRAY_SIZE(ar) (sizeof(ar)/sizeof (ar[0]))
[ "mehmetyilmaz3371@gmail.com" ]
mehmetyilmaz3371@gmail.com
cb917761fef4adba5af9cca4e434fd2bc231f3af
3e7ae0d825853090372e5505f103d8f3f39dce6d
/AutMarine v4.2.0/AutLib/Geom/GeoMesh/GeoMesh_TriangleMesh2dInnerBoundaryList.hxx
6540bf8df89fd38e3b6f625984f622789bb1dfb7
[]
no_license
amir5200fx/AutMarine-v4.2.0
bba1fe1aa1a14605c22a389c1bd3b48d943dc228
6beedbac1a3102cd1f212381a9800deec79cb31a
refs/heads/master
2020-11-27T05:04:27.397790
2019-12-20T17:59:03
2019-12-20T17:59:03
227,961,590
0
0
null
null
null
null
UTF-8
C++
false
false
396
hxx
#pragma once #ifndef _GeoMesh_TriangleMesh2dInnerBoundaryList_Header #define _GeoMesh_TriangleMesh2dInnerBoundaryList_Header #include <GeoMesh_TriangleMesh2dInnerBoundary.hxx> #include <ADT_Ary1d.hxx> namespace AutLib { typedef ADT_Ary1d<Global_Handle(GeoMesh_TriangleMesh2dInnerBoundary)> GeoMesh_TriangleMesh2dInnerBoundaryList; } #endif // !_GeoMesh_TriangleMesh2dInnerBoundaryList_Header
[ "aasoleimani86@gmail.com" ]
aasoleimani86@gmail.com
60738dee6b30c63a8c39cf2434bc77f7ee8a8bd5
d8e7a11322f6d1b514c85b0c713bacca8f743ff5
/7.6.00.37/V76_00_37/MaxDB_ORG/sys/src/SAPDB/DBM/Srv/BackupHistory/DBMSrvBHist_FileLineEBF.cpp
74ae1634a28f09ad0399655cf87379e0a8dd680d
[]
no_license
zhaonaiy/MaxDB_GPL_Releases
a224f86c0edf76e935d8951d1dd32f5376c04153
15821507c20bd1cd251cf4e7c60610ac9cabc06d
refs/heads/master
2022-11-08T21:14:22.774394
2020-07-07T00:52:44
2020-07-07T00:52:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,018
cpp
/*! \file DBMSrvBHist_FileLineEBF.cpp \author TiloH \ingroup backup history handling by the DBMServer \brief a class determining the layout of a line of dbm.ebf \if EMIT_LICENCE ========== licence begin GPL Copyright (c) 2004-2005 SAP AG This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ========== licence end \endif */ #include "hcn36.h" #include "SAPDB/DBM/Srv/BackupHistory/DBMSrvBHist_FileLineEBF.hpp" #include "SAPDB/SAPDBCommon/SAPDB_ToString.hpp" DBMSrvBHist_FileLineEBF::DBMSrvBHist_FileLineEBF(const DBMSrvBHist_Part & part) :m_line(0) { size_t lineLength=16; //there are 16 '|' in the line as separators lineLength+=strlen(part.GiveKey()); lineLength+=strlen(part.GiveLabel()); lineLength+=strlen(part.GiveEBID()); lineLength+=strlen(part.getBackupType()); lineLength+=strlen(part.getBackupDateTime()); lineLength+=strlen(part.GiveUsedBackupTool().AsString()); lineLength+=strlen(SAPDB_ToString(part.GiveDBMReturnCode())); lineLength+=strlen(part.GiveDBMReturnText()); lineLength+=strlen(part.GiveMediumName()); lineLength+=strlen(part.getMediumType()); lineLength+=strlen(part.getMediumOverwrite()); lineLength+=strlen(part.getMediumSize()); lineLength+=strlen(part.getMediumBlockSize()); lineLength+=strlen(part.getMediumKind()); lineLength+=strlen(part.getMediumLocation()); lineLength+=strlen(SAPDB_ToString(part.GivePartNumber())); if(cn36_StrAlloc(m_line, lineLength)) { sprintf(m_line, "%s|%s|%s|%s|%s|%s|%d|%s|%s|%s|%s|%s|%s|%s|%s|%d|", part.GiveKey(), part.GiveLabel(), part.GiveEBID(), part.getBackupType(), part.getBackupDateTime(), part.GiveUsedBackupTool().AsString(), (int)part.GiveDBMReturnCode(), part.GiveDBMReturnText(), part.GiveMediumName(), part.getMediumType(), part.getMediumOverwrite(), part.getMediumSize(), part.getMediumBlockSize(), part.getMediumKind(), part.getMediumLocation(), (int)part.GivePartNumber()); } } DBMSrvBHist_FileLineEBF::~DBMSrvBHist_FileLineEBF() { cn36_StrDealloc(m_line); } const char * DBMSrvBHist_FileLineEBF::asString() { return m_line; }
[ "gunter.mueller@gmail.com" ]
gunter.mueller@gmail.com
f668a94d5cffaefaba1530a6b563c0f6fa24e75d
6ff225ced3f8ea771a0db118933907da4445690e
/logdevice/server/locallogstore/ShardedRocksDBLocalLogStore.cpp
3f89fbb5ce249d3d8eb538f6ca7d3259b2a20350
[ "BSD-3-Clause" ]
permissive
mickvav/LogDevice
c5680d76b5ebf8f96de0eca0ba5e52357408997a
24a8b6abe4576418eceb72974083aa22d7844705
refs/heads/master
2020-04-03T22:33:29.633769
2018-11-07T12:17:25
2018-11-07T12:17:25
155,606,676
0
0
NOASSERTION
2018-10-31T18:39:23
2018-10-31T18:39:23
null
UTF-8
C++
false
false
26,794
cpp
/** * Copyright (c) 2017-present, Facebook, Inc. and its affiliates. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #include "ShardedRocksDBLocalLogStore.h" #include <array> #include <cerrno> #include <cstdio> #include <cstdlib> #include <future> #include <thread> #include <folly/FileUtil.h> #include <folly/Memory.h> #include <folly/ScopeGuard.h> #include <rocksdb/db.h> #include <rocksdb/statistics.h> #include <sys/stat.h> #include "logdevice/common/ConstructorFailed.h" #include "logdevice/common/RandomAccessQueue.h" #include "logdevice/common/ThreadID.h" #include "logdevice/common/settings/RebuildingSettings.h" #include "logdevice/common/types_internal.h" #include "logdevice/server/ServerProcessor.h" #include "logdevice/server/fatalsignal.h" #include "logdevice/server/locallogstore/FailingLocalLogStore.h" #include "logdevice/server/locallogstore/PartitionedRocksDBStore.h" #include "logdevice/server/locallogstore/RocksDBKeyFormat.h" #include "logdevice/server/locallogstore/RocksDBListener.h" #include "logdevice/server/locallogstore/RocksDBLogStoreFactory.h" #include "logdevice/server/locallogstore/ShardToPathMapping.h" #include "logdevice/server/storage_tasks/ShardedStorageThreadPool.h" namespace facebook { namespace logdevice { namespace fs = boost::filesystem; // Returns 1/0 if base_path looks like it contains an existing database, -1 on // error static int database_exists(const std::string& base_path); // Called when the database directory exists. Expect a NSHARDS file that // contains the number of shards this directory was created for. Verify that // this number matches `nshards_expected` which is retrieved from the // "num_shards" property of this node in the config. // // Returns 0 on success, or -1 on any error. static int check_nshards(const std::string& base_path, shard_size_t nshards_expected); // Tries to create a new sharded database at the given path, returns 0 on // success static int create_new_sharded_db(const std::string& base_path, shard_size_t nshards); using DiskShardMappingEntry = ShardedRocksDBLocalLogStore::DiskShardMappingEntry; ShardedRocksDBLocalLogStore::ShardedRocksDBLocalLogStore( const std::string& base_path, shard_size_t nshards, Settings settings, UpdateableSettings<RocksDBSettings> db_settings, UpdateableSettings<RebuildingSettings> rebuilding_settings, std::shared_ptr<UpdateableConfig> updateable_config, RocksDBCache* caches, StatsHolder* stats) : stats_(stats), db_settings_(db_settings), partitioned_(db_settings->partitioned) { if (db_settings->num_levels < 2 && db_settings->compaction_style == rocksdb::kCompactionStyleLevel) { ld_error("Level-style compaction requires at least 2 levels. %d given.", db_settings->num_levels); throw ConstructorFailed(); } int rv = database_exists(base_path); if (rv < 0) { throw ConstructorFailed(); } // This value should have been validated by the Configuration module. ld_check(nshards > 0 && nshards <= MAX_SHARDS); if (rv) { // Database exists, check that the number of shards matches. We do not // want to start up otherwise. if (check_nshards(base_path, nshards) < 0) { throw ConstructorFailed(); } } else { if (db_settings->auto_create_shards == false) { ld_error("Auto creation of shards & directories is not enabled and " "they do not exist"); throw ConstructorFailed(); } // Directory does not exist. Create a new sharded database. if (nshards < 0) { ld_error("Number of shards was not specified and database does not " "exist. Don't know how many shards to create!"); throw ConstructorFailed(); } if (create_new_sharded_db(base_path, nshards) != 0) { throw ConstructorFailed(); } } std::shared_ptr<Configuration> config = updateable_config ? updateable_config->get() : nullptr; env_ = std::make_unique<RocksDBEnv>(db_settings); { int num_bg_threads_lo = db_settings->num_bg_threads_lo; if (num_bg_threads_lo == -1) { num_bg_threads_lo = nshards * db_settings->max_background_compactions; } env_->SetBackgroundThreads(num_bg_threads_lo, rocksdb::Env::LOW); } { int num_bg_threads_hi = db_settings->num_bg_threads_hi; if (num_bg_threads_hi == -1) { num_bg_threads_hi = nshards * db_settings->max_background_flushes; } env_->SetBackgroundThreads(num_bg_threads_hi, rocksdb::Env::HIGH); } rocksdb_config_ = RocksDBLogStoreConfig( db_settings, rebuilding_settings, env_.get(), updateable_config, stats); // save the rocksdb cache information to be used by the SIGSEGV handler if (caches) { caches->block_cache = rocksdb_config_.table_options_.block_cache; caches->block_cache_compressed = rocksdb_config_.table_options_.block_cache_compressed; if (rocksdb_config_.metadata_table_options_.block_cache != rocksdb_config_.table_options_.block_cache) { caches->metadata_block_cache = rocksdb_config_.metadata_table_options_.block_cache; } } rv = ShardToPathMapping(base_path, nshards).get(&shard_paths_); if (rv != 0) { throw ConstructorFailed(); } ld_check(static_cast<int>(shard_paths_.size()) == nshards); // Create shards in multiple threads since it's a bit slow using FutureResult = std::pair<std::unique_ptr<LocalLogStore>, std::shared_ptr<RocksDBCompactionFilterFactory>>; std::vector<std::future<FutureResult>> futures; for (shard_index_t shard_idx = 0; shard_idx < nshards; ++shard_idx) { fs::path shard_path = shard_paths_[shard_idx]; ld_check(!shard_path.empty()); futures.push_back(std::async(std::launch::async, [=]() { ThreadID::set(ThreadID::UTILITY, "ld:open-rocksdb"); // Make a copy of RocksDBLogStoreConfig for this shard. RocksDBLogStoreConfig shard_config = rocksdb_config_; shard_config.createMergeOperator(shard_idx); // Create SstFileManager for this shard shard_config.addSstFileManagerForShard(); // If rocksdb statistics are enabled, create a Statistics object for // each shard. if (db_settings->statistics) { shard_config.options_.statistics = rocksdb::CreateDBStatistics(); } // Create a compaction filter factory. Later (in // setShardedStorageThreadPool()) we'll link it to the storage // thread pool so that it can see the world. auto filter_factory = std::make_shared<RocksDBCompactionFilterFactory>(db_settings); shard_config.options_.compaction_filter_factory = filter_factory; if (stats) { shard_config.options_.listeners.push_back( std::make_shared<RocksDBListener>(stats, shard_idx)); } RocksDBLogStoreFactory factory( std::move(shard_config), settings, config, stats); std::unique_ptr<LocalLogStore> shard_store; // Treat the shard as failed if we find a file named // LOGDEVICE_DISABLED. Used by tests. auto disable_marker = shard_path / fs::path("LOGDEVICE_DISABLED"); bool should_open_shard = true; try { if (fs::exists(disable_marker) && fs::is_regular_file(disable_marker)) { ld_info("Found %s, not opening shard %d", disable_marker.string().c_str(), shard_idx); should_open_shard = false; } if (fs::exists(shard_path) && !fs::is_directory(shard_path)) { ld_info("%s exists but is not a directory; not opening shard %d", shard_path.string().c_str(), shard_idx); should_open_shard = false; } } catch (const fs::filesystem_error& e) { ld_error("Error while checking for existence of %s or %s: %s. " "Not opening shard %d", disable_marker.string().c_str(), shard_path.string().c_str(), e.what(), shard_idx); should_open_shard = false; } if (should_open_shard) { shard_store = factory.create(shard_idx, shard_path.string()); } if (shard_store) { ld_info("Opened RocksDB instance at %s", shard_path.c_str()); bool enable_tracing = settings.trace_all_db_shards || shard_idx == settings.trace_db_shard; shard_store->setTracingEnabled(enable_tracing); } else { PER_SHARD_STAT_INCR(stats_, failing_log_stores, shard_idx); shard_store.reset(new FailingLocalLogStore()); ld_info("Opened FailingLocalLogStore instance for shard %d", shard_idx); } return std::make_pair(std::move(shard_store), std::move(filter_factory)); })); } for (int shard_idx = 0; shard_idx < nshards; ++shard_idx) { auto& future = futures[shard_idx]; std::unique_ptr<LocalLogStore> shard_store; std::shared_ptr<RocksDBCompactionFilterFactory> filter_factory; std::tie(shard_store, filter_factory) = future.get(); ld_check(shard_store); if (dynamic_cast<FailingLocalLogStore*>(shard_store.get()) != nullptr) { shards_.push_back(std::move(shard_store)); filters_.push_back(std::move(filter_factory)); failing_log_store_shards_.insert(shard_idx); continue; } shards_.push_back(std::move(shard_store)); filters_.push_back(std::move(filter_factory)); } // Subscribe for rocksdb config updates after initializing shards. rocksdb_settings_handle_ = db_settings.callAndSubscribeToUpdates( std::bind(&ShardedRocksDBLocalLogStore::onSettingsUpdated, this)); if (failing_log_store_shards_.size() >= nshards && nshards > 0) { ld_critical("All shards failed to open. Not starting the server."); throw ConstructorFailed(); } // Check that we can map shards to devices if (createDiskShardMapping() != nshards) { throw ConstructorFailed(); } printDiskShardMapping(); } ShardedRocksDBLocalLogStore::~ShardedRocksDBLocalLogStore() { for (shard_index_t shard_idx : failing_log_store_shards_) { PER_SHARD_STAT_DECR(stats_, failing_log_stores, shard_idx); } // Unsubscribe from settings update before destroying shards. rocksdb_settings_handle_.unsubscribe(); // destroy each RocksDBLocalLogStore instance in a separate thread std::vector<std::thread> threads; for (size_t i = 0; i < numShards(); ++i) { threads.emplace_back([this, i]() { ThreadID::set(ThreadID::Type::UTILITY, "ld:stop-rocksdb"); ld_debug("Destroying RocksDB shard %zd", i); shards_[i].reset(); ld_info("Destroyed RocksDB shard %zd", i); }); } for (auto& thread : threads) { thread.join(); } } static int database_exists(const std::string& base_path) { boost::system::error_code code; bool exists = fs::exists(base_path, code); if (code.value() != boost::system::errc::success && code.value() != boost::system::errc::no_such_file_or_directory) { ld_error("Error checking if path \"%s\" exists: %s", base_path.c_str(), code.message().c_str()); return -1; } if (!exists) { return 0; } bool isdir = fs::is_directory(base_path, code); if (code.value() != boost::system::errc::success && code.value() != boost::system::errc::not_a_directory) { ld_error("Error checking if path \"%s\" is a directory: %s", base_path.c_str(), code.message().c_str()); return -1; } if (!isdir) { ld_error("Path \"%s\" exists but is not a directory, cannot open local " "log store", base_path.c_str()); return -1; } bool isempty = fs::is_empty(base_path, code); if (code.value() != boost::system::errc::success) { ld_error("Error checking if path \"%s\" is empty: %s", base_path.c_str(), code.message().c_str()); return -1; } return !isempty; } static int check_nshards(const std::string& base_path, const shard_size_t nshards_expected) { fs::path nshards_path = fs::path(base_path) / fs::path("NSHARDS"); FILE* fp = std::fopen(nshards_path.c_str(), "r"); if (fp == nullptr) { ld_error("Database directory \"%s\" exists but there was an error opening " "the NSHARDS file, errno=%d (%s). To create a new sharded " "database, please delete the directory and try again.", base_path.c_str(), errno, strerror(errno)); return -1; } SCOPE_EXIT { std::fclose(fp); }; shard_size_t nshards_read; if (std::fscanf(fp, "%hd", &nshards_read) != 1) { ld_error("Error reading file \"%s\"", nshards_path.c_str()); return -1; } if (nshards_read != nshards_expected) { ld_error("Tried to open existing sharded database \"%s\" with a different " "number of shards (expected %d, found %d)", base_path.c_str(), nshards_expected, nshards_read); return -1; } return 0; } static int create_new_sharded_db(const std::string& base_path, shard_size_t nshards) { boost::system::error_code code; fs::create_directories(base_path, code); if (code.value() != boost::system::errc::success) { ld_error("Error creating directory \"%s\": %s", base_path.c_str(), code.message().c_str()); return -1; } fs::path nshards_path = fs::path(base_path) / fs::path("NSHARDS"); FILE* fp = std::fopen(nshards_path.c_str(), "w"); if (fp == nullptr) { ld_error("Failed to open \"%s\" for writing, errno=%d (%s)", nshards_path.c_str(), errno, strerror(errno)); return -1; } SCOPE_EXIT { std::fclose(fp); }; if (std::fprintf(fp, "%d", nshards) < 0) { ld_error("Error writing to \"%s\"", nshards_path.c_str()); return -1; } return 0; } int ShardedRocksDBLocalLogStore::trimLogsBasedOnSpaceIfNeeded( const DiskShardMappingEntry& mapping, boost::filesystem::space_info info, bool* full) { if (!partitioned_) { RATELIMIT_INFO(std::chrono::minutes(1), 1, "Space based trimming requested on non-partitioned storage"); return -1; } *full = false; if (db_settings_->free_disk_space_threshold_low == 0) { return 0; } size_t space_limit_coordinated = (1 - db_settings_->free_disk_space_threshold_low) * info.capacity; // Get & reset sequencer-initiated flag, so that if the flag was set by a // trailing probe after it was not full anymore, that value is not used in // the future if it becomes full again. ld_check(mapping.shards.size()); auto disk_info_kv = fspath_to_dsme_.find(shard_to_devt_[mapping.shards[0]]); if (disk_info_kv == fspath_to_dsme_.end()) { ld_check(false); return -1; } bool sequencer_initiated_trimming = disk_info_kv->second.sequencer_initiated_space_based_retention.exchange( false); if (space_limit_coordinated >= (info.capacity - info.free)) { // Not breaking any limits return 0; } using PartitionPtr = std::shared_ptr<PartitionedRocksDBStore::Partition>; using PartitionIterator = std::vector<PartitionPtr>::const_iterator; struct ShardTrimPoint { shard_index_t shard_idx; PartitionIterator it; // Keeping partition list so it is not freed while we use the iterator PartitionedRocksDBStore::PartitionList partition_list; size_t space_usage; size_t reclaimed; }; // Comparator to get the oldest partition timestamp first auto timestamp_cmp = [](const ShardTrimPoint& a, const ShardTrimPoint& b) { return (*a.it)->starting_timestamp > (*b.it)->starting_timestamp; }; std::priority_queue<ShardTrimPoint, std::vector<ShardTrimPoint>, decltype(timestamp_cmp)> shards_oldest_partitions_queue(timestamp_cmp); // Comparator to get lowest shard_idx first, for nicer prints auto shard_idx_cmp = [](const ShardTrimPoint& a, const ShardTrimPoint& b) { return a.shard_idx > b.shard_idx; }; std::priority_queue<ShardTrimPoint, std::vector<ShardTrimPoint>, decltype(shard_idx_cmp)> trim_points_sorted(shard_idx_cmp); // 1) Get snapshot of partitions from each shard, and put in priority queue. size_t total_space_used_by_partitions = 0; for (shard_index_t shard_idx : mapping.shards) { auto store = getByIndex(shard_idx); auto partitioned_store = dynamic_cast<PartitionedRocksDBStore*>(store); ld_check(partitioned_store != nullptr); auto partition_list = partitioned_store->getPartitionList(); // Add its size size_t partition_space_usage = partitioned_store->getApproximatePartitionSize( // Metadata partitioned_store->getMetadataCFHandle()) + partitioned_store->getApproximatePartitionSize( // Unpartitioned partitioned_store->getUnpartitionedCFHandle()); for (PartitionPtr partition_ptr : *partition_list) { // Partitions partition_space_usage += partitioned_store->getApproximatePartitionSize( partition_ptr->cf_.get()); } total_space_used_by_partitions += partition_space_usage; ShardTrimPoint stp{ shard_idx, // shard id partition_list->begin(), // iterator at beginning partition_list, // partition list (to keep in mem) partition_space_usage, // space usage 0 // reclaimed space (none yet) }; // Only add shard to priority queue if there are partitions we can drop. if (partition_list->size() > 1) { shards_oldest_partitions_queue.push(stp); } else { trim_points_sorted.push(stp); } } double ld_percentage = double(total_space_used_by_partitions) / double(info.capacity); double actual_percentage = double(info.capacity - info.free) / double(info.capacity); if (std::abs(actual_percentage - ld_percentage) > 0.3) { // TODO: add a stat and raise an alarm? RATELIMIT_WARNING( std::chrono::seconds(5), 1, "Estimated size differ %d%% from actual size! Would be unsafe " "to do space-based trimming, skipping it", static_cast<int>( round(100 * std::abs(actual_percentage - ld_percentage)))); return -1; } bool coordinated_limit_exceeded = total_space_used_by_partitions > space_limit_coordinated; *full = coordinated_limit_exceeded; ld_debug("example path:%s -> coordinated_limit_exceeded:%s, " "sequencer_initiated_trimming:%s, sbr_force:%s, " "space_limit_coordinated:%lu, coordinated_threshold:%lf" "[ld_percentage:%lf, total_space_used_by_partitions:%lu," " actual_percentage:%lf] [info.capacity:%lu, info.free:%lu]", mapping.example_path.c_str(), coordinated_limit_exceeded ? "yes" : "no", sequencer_initiated_trimming ? "yes" : "no", db_settings_->sbr_force ? "yes" : "no", space_limit_coordinated, db_settings_->free_disk_space_threshold_low, ld_percentage, total_space_used_by_partitions, actual_percentage, info.capacity, info.free); if (!coordinated_limit_exceeded) { return 0; } if (!sequencer_initiated_trimming && !db_settings_->sbr_force) { return 0; } // 2) Calculate how much to trim. size_t reclaimed_so_far = 0; size_t total_to_reclaim = total_space_used_by_partitions - space_limit_coordinated; // 3) Keep picking the oldest partition until enough space is freed. while (reclaimed_so_far <= total_to_reclaim && !shards_oldest_partitions_queue.empty()) { ShardTrimPoint current = shards_oldest_partitions_queue.top(); shards_oldest_partitions_queue.pop(); auto partitioned_store = dynamic_cast<PartitionedRocksDBStore*>(getByIndex(current.shard_idx)); size_t partition_size = partitioned_store->getApproximatePartitionSize( (*current.it)->cf_.get()); reclaimed_so_far += partition_size; current.reclaimed += partition_size; current.it++; // Don't drop latest partition if ((*current.it)->id_ == current.partition_list->nextID() - 1) { trim_points_sorted.push(current); } else { shards_oldest_partitions_queue.push(current); } } // 4) Tell the low-pri thread in each shard to drop the decided partitions. while (!shards_oldest_partitions_queue.empty()) { trim_points_sorted.push(shards_oldest_partitions_queue.top()); shards_oldest_partitions_queue.pop(); } // Apply trim points, log stats size_t num_trim_points = trim_points_sorted.size(); while (!trim_points_sorted.empty()) { ShardTrimPoint current = trim_points_sorted.top(); trim_points_sorted.pop(); auto partitioned_store = dynamic_cast<PartitionedRocksDBStore*>(getByIndex(current.shard_idx)); ld_check(partitioned_store != nullptr); partition_id_t first = current.partition_list->firstID(); partition_id_t target = (*current.it)->id_; ld_spew("Setting trim-limit target:%lu for shard:%d. " "coordinated threshold: %lf", target, current.shard_idx, db_settings_->free_disk_space_threshold_low); partitioned_store->setSpaceBasedTrimLimit(target); if (target == first) { ld_debug("Space-based trimming of shard%d: %ju used, dropping nothing", current.shard_idx, current.space_usage); } else { PER_SHARD_STAT_INCR(stats_, sbt_num_storage_trims, current.shard_idx); ld_info("Space-based trimming of shard %d: %ju used, %ju reclaimed, " "dropping partitions [%ju,%ju)", current.shard_idx, current.space_usage, current.reclaimed, first, target); } } if (num_trim_points > 1) { ld_info("Space based trimming, total on disk:%s: used:%ju, limit:%ju, " "reclaimed:%ju", mapping.example_path.c_str(), total_space_used_by_partitions, space_limit_coordinated, reclaimed_so_far); } return 0; } void ShardedRocksDBLocalLogStore::setSequencerInitiatedSpaceBasedRetention( int shard_idx) { ld_debug("shard_idx:%d, coordinated threshold:%lf", shard_idx, db_settings_->free_disk_space_threshold_low); if (db_settings_->free_disk_space_threshold_low == 0) { return; } auto disk_info_kv = fspath_to_dsme_.find(shard_to_devt_[shard_idx]); if (disk_info_kv == fspath_to_dsme_.end()) { RATELIMIT_ERROR(std::chrono::seconds(1), 5, "Couldn't find disk info for disk %s (containing shard %d)", shard_paths_[shard_idx].c_str(), shard_idx); ld_check(false); } else { ld_debug("Setting sequencer_initiated_space_based_retention for shard%d", shard_idx); disk_info_kv->second.sequencer_initiated_space_based_retention.store(true); } } void ShardedRocksDBLocalLogStore::setShardedStorageThreadPool( const ShardedStorageThreadPool* sharded_pool) { for (size_t i = 0; i < shards_.size(); ++i) { filters_[i]->setStorageThreadPool(&sharded_pool->getByIndex(i)); shards_[i]->setProcessor(checked_downcast<Processor*>( &sharded_pool->getByIndex(i).getProcessor())); } } const std::unordered_map<dev_t, DiskShardMappingEntry>& ShardedRocksDBLocalLogStore::getShardToDiskMapping() { return fspath_to_dsme_; } size_t ShardedRocksDBLocalLogStore::createDiskShardMapping() { ld_check(!shard_paths_.empty()); std::unordered_map<dev_t, size_t> dev_to_out_index; size_t success = 0, added_to_map = 0; shard_to_devt_.resize(shard_paths_.size()); for (int shard_idx = 0; shard_idx < shard_paths_.size(); ++shard_idx) { const fs::path& path = shard_paths_[shard_idx]; boost::system::error_code ec; // Resolve any links and such auto db_canonical_path = fs::canonical(path, ec); if (ec.value() != boost::system::errc::success) { RATELIMIT_ERROR(std::chrono::minutes(10), 1, "Failed to find canonical path of shard %d (path %s): %s", shard_idx, path.c_str(), ec.message().c_str()); continue; } std::string true_path = db_canonical_path.generic_string(); struct stat st; int rv = ::stat(true_path.c_str(), &st); if (rv != 0) { RATELIMIT_ERROR(std::chrono::minutes(10), 1, "stat(\"%s\") failed with errno %d (%s)", true_path.c_str(), errno, strerror(errno)); continue; } shard_to_devt_[shard_idx] = st.st_dev; auto insert_result = dev_to_out_index.emplace(st.st_dev, added_to_map); if (!insert_result.second) { // A previous shard had the same dev_t so they are on the same disk. // Just append this shard idx to the list in DiskSpaceInfo. fspath_to_dsme_[shard_to_devt_[shard_idx]].shards.push_back(shard_idx); ++success; continue; } // First time we're seeing the device. The index in the output vector // was "reserved" by the map::emplace() above. fspath_to_dsme_[shard_to_devt_[shard_idx]].example_path = db_canonical_path; fspath_to_dsme_[shard_to_devt_[shard_idx]].shards.push_back(shard_idx); ++added_to_map; ++success; } return success; } void ShardedRocksDBLocalLogStore::printDiskShardMapping() { // Format disk -> shard mapping log std::stringstream disk_mapping_ss; disk_mapping_ss << "Disk -> Shard mapping: "; bool first = true; for (const auto& kv : fspath_to_dsme_) { if (!first) { disk_mapping_ss << ", "; } first = false; disk_mapping_ss << kv.second.example_path.c_str() << " -> ["; auto& last_shard = kv.second.shards.back(); for (auto& shard_idx : kv.second.shards) { disk_mapping_ss << shard_idx << (shard_idx == last_shard ? "]" : ","); } } ld_info("%s", disk_mapping_ss.str().c_str()); } void ShardedRocksDBLocalLogStore::onSettingsUpdated() { for (auto& shard : shards_) { auto rocksdb_shard = dynamic_cast<RocksDBLogStoreBase*>(shard.get()); if (rocksdb_shard == nullptr) { continue; } rocksdb_shard->onSettingsUpdated(db_settings_.get()); } } }} // namespace facebook::logdevice
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
4709b69c8360e57dbce60265702549451a7155f8
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/wget/hunk_191.cpp
c5c6ff2cb2af6099e3920b1925375ca4b95d4f22
[]
no_license
ccdxc/logSurvey
eaf28e9c2d6307140b17986d5c05106d1fd8e943
6b80226e1667c1e0760ab39160893ee19b0e9fb1
refs/heads/master
2022-01-07T21:31:55.446839
2018-04-21T14:12:43
2018-04-21T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
457
cpp
break; default: - /* Can't happen. */ - assert (1); + logprintf (LOG_ALWAYS, _("Logically impossible section reached in getftp()")); + logprintf (LOG_ALWAYS, _("cwd_count: %d\ncwd_start: %d\ncwd_end: %d\n"), + cwd_count, cwd_start, cwd_end); + abort (); } if (!opt.server_response)
[ "993273596@qq.com" ]
993273596@qq.com
31698a12640782a4afdf2e762fee6e3ef7777828
ffa9bada806a6330cfe6d2ab3d7decfc05626d10
/51Nod/Nod2653.cpp
d6df7799bbec093dafa2f93002cf7451b6587d5b
[ "MIT" ]
permissive
James3039/OhMyCodes
064ef03d98384fd8d57c7d64ed662f51218ed08e
f25d7a5e7438afb856035cf758ab43812d5bb600
refs/heads/master
2023-07-15T15:52:45.419938
2021-08-28T03:37:27
2021-08-28T03:37:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
443
cpp
#include <cstdio> #include <iostream> #include <cmath> int ans, a, b, bi, len; int main(){ scanf("%d %d", &a, &b); bi=log(a)/log(2); if((1<<bi)<a) bi++; len=log(b-(1<<bi)+1)/log(2); if(len==1 || (1<<bi)>=b) { for(int i=a; i<=b; i++) ans = ans^i; } else{ for(int i=a; i<(1<<bi); i++){ ans = ans^i; } for(int i=(1<<bi)+(1<<len); i<=b; i++){ ans = ans^i; } } printf("%d", ans); return 0; }
[ "1816750728@qq.com" ]
1816750728@qq.com
52b716d7310aca87be4d977f3889aa1c2eb1689d
70cb5e043b7a469fecf810fc1c12ddd3faba452f
/c++ primer ,5th/word map/main.cpp
cd257407389cf7b89e7d762b723516d866b0e76a
[]
no_license
yulifromchina/exercise
5205d7e27f46d397a3048919e76d45ab4c3f9b32
bc2302db0fa75db85c4ab6bc7356b5f3727b2701
refs/heads/master
2021-01-19T13:42:29.552298
2018-02-23T05:17:42
2018-02-23T05:17:42
100,857,569
1
0
null
null
null
null
GB18030
C++
false
false
289
cpp
#include "Filter.h" int main() { Filter obj_filter; obj_filter.AddBlackListFromFile("KeyWords.txt");//添加C/C++中的关键字 obj_filter.AddRuleFromFile("Rule.txt");//读取规则 obj_filter.TransFile("OriginText.txt");//翻译原文本,生成result.txt return 0; }
[ "yulifromchina@gmail.com" ]
yulifromchina@gmail.com
583c9162629b16adaa3a4ed61f451939695064c4
58337d1029cfc8b830408cd2f7053237e6c40d06
/song.h
5898cf5393b58544aa9c74b001b71dab9d0aa2d2
[]
no_license
JustviCiT/QTXMLParser
14300bc38a1f7c77b68e7a1bab16c38bcbdde4b7
de50db19f483c170b1dd83132abc5a18bd082e40
refs/heads/master
2020-09-03T03:35:17.742368
2019-11-04T09:12:16
2019-11-04T09:12:16
219,376,169
0
0
null
null
null
null
UTF-8
C++
false
false
426
h
#ifndef SONG_H #define SONG_H #include <QObject> #include <QDebug> class Song { public: explicit Song(); void print(); void setArtist(QString); void setiD(int); void setAlbum(QString); void setFav(bool); void setID(int); QString gArtist(); QString gAlbum(); bool gFav(); int giD(); private: int id; QString artist; QString album; bool fav; }; #endif // SONG_H
[ "victor.serov@protonmail.com" ]
victor.serov@protonmail.com
bee55885367599bb4cc013e06e1f63600bae8d94
1a76cdf3b8776c238f0fecaca9c9491145106ec6
/SDK/FN_Athena_PlayerCameraModeSkydiveDive_classes.hpp
dae2da56422b8ed4e8928065b10a6768dbc36da8
[]
no_license
JimmyJones97/aasd
9af6e9c83eec4d1b4c76c601c2ccba814ce8a1c0
1961458db5ef577e6f013ca9ea744dcd48f2b4ad
refs/heads/master
2022-02-19T11:47:42.191429
2017-10-27T11:59:07
2017-10-27T11:59:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
668
hpp
#pragma once // Fortnite SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass Athena_PlayerCameraModeSkydiveDive.Athena_PlayerCameraModeSkydiveDive_C // 0x0000 (0x0110 - 0x0110) class UAthena_PlayerCameraModeSkydiveDive_C : public UAthena_PlayerCameraModeBase_C { public: static UClass* StaticClass() { static UClass* ptr = nullptr; if (!ptr) ptr = UObject::FindClass(0x12ff1741); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "joker@slaughter-gaming.de" ]
joker@slaughter-gaming.de
4df4fc772752dbf68ea63988337d014d9d329f69
a521ad7729b50b554ec571f7be0332db0c20ffd6
/geant4reweight/src/PredictionBase/G4CascadeDetectorConstruction.hh
f2bf2be4066f65915dc113d635a73ed0cfc67437
[]
no_license
nusense/Geant4Reweight
cc47a8ee238074e7d4bdbedd5d249e28a73fbcdc
333947cf58f436b3ad37c13a4cf7b3d91927644e
refs/heads/master
2023-06-19T06:34:41.824032
2021-07-23T21:07:14
2021-07-23T21:07:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
531
hh
#ifndef G4CascadeDetectorConstruction_h #define G4CascadeDetectorConstruction_h 1 #include "Geant4/G4VUserDetectorConstruction.hh" class G4VPhysicalVolume; class G4LogicalVolume; class G4CascadeDetectorConstruction : public G4VUserDetectorConstruction{ public: G4CascadeDetectorConstruction(); G4CascadeDetectorConstruction(G4VPhysicalVolume * phys_vol); virtual ~G4CascadeDetectorConstruction(); virtual G4VPhysicalVolume * Construct(); protected: G4VPhysicalVolume * fPhysicalVol = 0x0; }; #endif
[ "calcuttj@msu.edu" ]
calcuttj@msu.edu
a4a59e07f795395c9658f02199c57c9b65eaec10
c9ea4b7d00be3092b91bf157026117bf2c7a77d7
/深度优先搜索初步/P1219.cpp
7e1d70ac0f33adc9b2fef59e0cad5b1ea294954e
[]
no_license
Jerry-Terrasse/Programming
dc39db2259c028d45c58304e8f29b2116eef4bfd
a59a23259d34a14e38a7d4c8c4d6c2b87a91574c
refs/heads/master
2020-04-12T08:31:48.429416
2019-04-20T00:32:55
2019-04-20T00:32:55
162,387,499
3
0
null
null
null
null
UTF-8
C++
false
false
611
cpp
#include<iostream> #define MAXN 15 using namespace std; int a[MAXN],b[MAXN<<1],c[MAXN<<1],ans[MAXN],n=0,cnt=0; void dfs(int); int main() { int i=0; cin>>n; dfs(1); cout<<cnt<<endl; return 0; } void dfs(int x) { int i=0; if(x==n+1) { cnt++; if(cnt<=3) { for(i=1;i<=n;i++) { cout<<ans[i]<<' '; } cout<<endl; } return; } for(i=1;i<=n;i++) { if(a[i] || b[x+i] || c[i+n-x]) { continue; } a[i]=b[x+i]=c[i+n-x]=ans[x]=i; dfs(x+1); a[i]=b[x+i]=c[i+n-x]=ans[x]=0; } return; }
[ "3305049949@qq.com" ]
3305049949@qq.com
72cca768972d3edd6cacc0b0254665146100172b
fce8d9c72923ed0123ac9b7ee1b09731084b8faa
/D3D_Base/cRabitGirl.h
05aa8e37bd4094d8c52a44b31d87b63603e2286d
[]
no_license
asy1256/TestGit
b7a68787e79a219c7231797c88110cac4a1cecd0
9ac26242c349990dcf08e0403655489e49c27f22
refs/heads/master
2021-07-25T10:21:37.475127
2017-11-05T07:58:26
2017-11-05T07:58:26
109,367,418
0
0
null
2017-11-05T07:58:27
2017-11-03T07:49:08
C++
UTF-8
C++
false
false
247
h
#pragma once #include "cCharacter.h" class cAseLoader; class cRabitGirl : public cCharacter { private: LPD3DXMESH m_pMesh; cAseLoader* m_pAseLoader; public: cRabitGirl(); ~cRabitGirl(); void Setup(); void Update(); void Render(); };
[ "asy1256@daum.net" ]
asy1256@daum.net
3339fa471f6138de4c041d9f85964861d013ad89
469c34f2a031d0add6de15cfadd4d6b351b8fe99
/src/include/spin/SpinClusterIndex.h
466fa0df4ff0e9c139ae3d3d1ae069148d970878
[]
no_license
HoldenGao/oops
d0bc3e280678be2e4d78952d187c9e46130de78f
6710eebdb28b74b982475074ea67157bfbb7a9fb
refs/heads/master
2021-01-20T16:47:57.410682
2016-04-08T08:22:19
2016-04-08T08:22:19
56,654,023
1
0
null
2016-04-20T03:59:55
2016-04-20T03:59:53
null
UTF-8
C++
false
false
1,337
h
#ifndef SPINCLUSTERINDEX_H #define SPINCLUSTERINDEX_H #include <iostream> #include <vector> #include <set> #include <string> #include <armadillo> #include "include/easylogging++.h" #include "include/spin/Spin.h" typedef pair<size_t, size_t> ClusterPostion; //////////////////////////////////////////////////////////////////////////////// //{{{ cClusterIndex /// This class defines index list of a cluster. /// class cClusterIndex { public: cClusterIndex(); cClusterIndex(const uvec& idx); ~cClusterIndex(); mat get_array(size_t nspin); uvec getIndex() const {return _index;}; size_t getNum() const {return _spin_num;}; size_t getOrder() const {return _spin_num-1;}; set< ClusterPostion > getSubClstPos() const; void appendSubClstPos(int pos) const {_sub_clst_pos.push_back( pos );}; void setSubClstPos(vector<size_t> pos_lst) const {_sub_clst_pos = pos_lst;}; friend bool operator == (const cClusterIndex& idx1, const cClusterIndex& idx2); friend bool operator < (const cClusterIndex& idx1, const cClusterIndex& idx2); friend ostream& operator << (ostream& outs, const cClusterIndex& idx); private: uvec _index; size_t _spin_num; mutable vector<size_t> _sub_clst_pos; }; //}}} //////////////////////////////////////////////////////////////////////////////// #endif
[ "nzhao@csrc.ac.cn" ]
nzhao@csrc.ac.cn
93249c18893b9b170d3f4daad5de2cac3daab93b
c6551fc92088db6d2a8481fd974994f1880ec198
/evita/dom/text/text_mutation_observer.h
8fec2e3de674a47e02f1486a2cbfd7ca9c4fc71f
[]
no_license
eval1749/evita
dd2c40180b32fada64dce4aad1f597a6beeade8a
4e9dd86009af091e213a208270ef9bd429fbb698
refs/heads/master
2022-10-16T23:10:07.605527
2022-10-04T07:35:37
2022-10-04T07:35:37
23,464,799
3
3
null
2015-09-19T20:33:38
2014-08-29T13:27:24
C++
UTF-8
C++
false
false
1,547
h
// Copyright (c) 1996-2014 Project Vogue. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EVITA_DOM_TEXT_TEXT_MUTATION_OBSERVER_H_ #define EVITA_DOM_TEXT_TEXT_MUTATION_OBSERVER_H_ #include <memory> #include <vector> #include "evita/ginx/scoped_persistent.h" #include "evita/ginx/scriptable.h" #include "evita/text/models/offset.h" namespace dom { class ScriptHost; class TextDocument; class TextMutationObserverInit; class TextMutationRecord; namespace bindings { class TextMutationObserverClass; } ////////////////////////////////////////////////////////////////////// // // TextMutationObserver implements IDL interface |TextMutationObserver|. // class TextMutationObserver final : public ginx::Scriptable<TextMutationObserver> { DECLARE_SCRIPTABLE_OBJECT(TextMutationObserver); public: class Tracker; ~TextMutationObserver() final; private: friend class bindings::TextMutationObserverClass; TextMutationObserver(ScriptHost* script_host, v8::Local<v8::Function> callback); // Bindings void Disconnect(); void Observe(TextDocument* document, const TextMutationObserverInit& options); std::vector<TextMutationRecord*> TakeRecords(); const ginx::ScopedPersistent<v8::Function> callback_; ScriptHost* const script_host_; std::vector<std::unique_ptr<Tracker>> trackers_; DISALLOW_COPY_AND_ASSIGN(TextMutationObserver); }; } // namespace dom #endif // EVITA_DOM_TEXT_TEXT_MUTATION_OBSERVER_H_
[ "eval1749@gmail.com" ]
eval1749@gmail.com
253999d3d9f0236851131f53e43e8a5845825c84
0ca50389f4b300fa318452128ab5437ecc97da65
/example/less-than-1k/assign/rgb/rgb2YPbPr709.cpp
4d31b1bd6edc2caa2b12bf6837f6195a1c31ae1d
[ "Apache-2.0" ]
permissive
dmilos/color
5981a07d85632d5c959747dac646ac9976f1c238
84dc0512cb5fcf6536d79f0bee2530e678c01b03
refs/heads/master
2022-09-03T05:13:16.959970
2022-08-20T09:22:24
2022-08-22T06:03:32
47,105,546
160
25
Apache-2.0
2021-09-29T07:11:04
2015-11-30T08:37:43
C++
UTF-8
C++
false
false
783
cpp
#include <iostream> #include <iomanip> #include "color/color.hpp" int main( int argc, char *argv[] ) { ::color::rgb< float > c0; //!< Instead of float you may put std::uint8_t,std::uint16_t, std::uint32_t, std::uint64_t, double, long double ::color::YPbPr< std::uint8_t, ::color::constant::YPbPr::BT_709_entity > c1; //!< Instead of std::uint8_t you may put std::uint16_t, std::uint32_t, std::uint64_t, float, double, long double c0 = ::color::constant::lavender_t{}; c1 = ::color::constant::orange_t{}; // Assign c0 = c1; std::cout << c0[0] << ", " << c0[1] << ", " << c0[2] << std::endl; // .. and vice versa c1 = c0; std::cout << c1[0] << ", " << c1[1] << ", " << c1[2] << std::endl; return EXIT_SUCCESS; }
[ "dmilos@gmail.com" ]
dmilos@gmail.com
195102e22851dae46772b6ab4a64c44a9812f322
e0aa106c29732b28625e03f0dbe64a534f63da6a
/src/051-prime-digit-replacements/cpp/bin/range.cpp
374a42b1ba69eefa82cbbf7d61a4470ef130b466
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
xfbs/euler
ee2002c77c67ed7c6a57ebca014ae8b764a8c380
e26768c56ff87b029cb2a02f56dc5cd32e1f7c87
refs/heads/master
2020-04-16T17:05:25.589886
2019-06-12T22:12:21
2019-06-12T22:12:21
40,597,273
1
0
null
null
null
null
UTF-8
C++
false
false
916
cpp
#include <array> #include <iostream> #include <range/v3/all.hpp> #include <vector> using std::cout; using std::endl; using namespace ranges; auto is_six = [](int i) -> bool { return i == 6; }; auto doub = [](int i) -> int { return 2 * i; }; int main() { std::vector<int> v{6, 2, 3, 4, 5, 6}; auto c = count_if(v, is_six); cout << "count-sixes: " << c << endl; auto s = accumulate(v, 0); cout << "sum-vetor: " << s << endl; auto cand = view::ints(1) | view::transform(doub); auto e = find_if(cand, is_six); cout << "find-six: " << *e << endl; auto odd_perfect_square = front(view::ints // make perfect squares | view::transform([](int a) { return a * a; }) // keep odd ones only | view::filter([](int a) { return a % 2 == 1; }) // ignore first two | view::drop_exactly(2)); cout << odd_perfect_square << endl; }
[ "pelsen@xfbs.net" ]
pelsen@xfbs.net
867e98dcb4c6105e52688fb25fd9ff6a5d972852
e09287b0da2feb548d8c7dd307a0119e6ae65f4d
/menge_core/src/BFSM/Actions/ObstacleAction.cpp
d3189d35046b3bb2be2dcacea845975b282d6af5
[]
no_license
flztiii/menge_ros
ee52f37a0aa710c6128c047a4c4e3d25832bfe7b
af50499f90117a29ea8bddd1b496dead232b5ec0
refs/heads/master
2023-03-18T10:57:48.634069
2017-08-23T19:34:27
2017-08-23T19:34:27
510,190,699
1
1
null
2022-07-04T02:48:29
2022-07-04T02:48:29
null
WINDOWS-1252
C++
false
false
5,200
cpp
/* License Menge Copyright © and trademark ™ 2012-14 University of North Carolina at Chapel Hill. All rights reserved. Permission to use, copy, modify, and distribute this software and its documentation for educational, research, and non-profit purposes, without fee, and without a written agreement is hereby granted, provided that the above copyright notice, this paragraph, and the following four paragraphs appear in all copies. This software program and documentation are copyrighted by the University of North Carolina at Chapel Hill. The software program and documentation are supplied "as is," without any accompanying services from the University of North Carolina at Chapel Hill or the authors. The University of North Carolina at Chapel Hill and the authors do not warrant that the operation of the program will be uninterrupted or error-free. The end-user understands that the program was developed for research purposes and is advised not to rely exclusively on the program for any reason. IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE AUTHORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY STATUTORY WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS HAVE NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. Any questions or comments should be sent to the authors {menge,geom}@cs.unc.edu */ #include "Actions/ObstacleAction.h" #include "BaseAgent.h" namespace Menge { namespace BFSM { ///////////////////////////////////////////////////////////////////// // Implementation of ObstacleAction ///////////////////////////////////////////////////////////////////// ObstacleAction::ObstacleAction():Action(), _setOperand(0),_originalMap() { } ///////////////////////////////////////////////////////////////////// ObstacleAction::~ObstacleAction() { // Is this delete safe? This may require a destroy method if it is // instantiated in MengeCore and used in external dll _originalMap.clear(); } ///////////////////////////////////////////////////////////////////// void ObstacleAction::onEnter( Agents::BaseAgent * agent ) { _lock.lock(); if ( _undoOnExit ) _originalMap[ agent->_id ] = agent->_obstacleSet; agent->_obstacleSet = newValue( agent->_obstacleSet ); _lock.release(); } ///////////////////////////////////////////////////////////////////// void ObstacleAction::leaveAction( Agents::BaseAgent * agent ) { _lock.lock(); std::map< size_t, size_t >::iterator itr = _originalMap.begin(); assert( itr != _originalMap.end() && "Trying to find an original value for an agent whose value was not cached" ); agent->_obstacleSet = itr->second; _originalMap.erase( itr ); _lock.release(); } ///////////////////////////////////////////////////////////////////// // Implementation of ObstacleActFactory ///////////////////////////////////////////////////////////////////// ObstacleActFactory::ObstacleActFactory():ActionFactory() { _operandID = _attrSet.addSizeTAttribute( "operand", true /*required*/ ); } ///////////////////////////////////////////////////////////////////// bool ObstacleActFactory::setFromXML( Action * action, TiXmlElement * node, const std::string & behaveFldr ) const { ObstacleAction * oAction = dynamic_cast< ObstacleAction * >( action ); assert( oAction != 0x0 && "Trying to set obstacle set action properties on an incompatible object" ); if ( ! ActionFactory::setFromXML( action, node, behaveFldr ) ) return false; oAction->_setOperand = _attrSet.getSizeT( _operandID ); return true; } ///////////////////////////////////////////////////////////////////// // Implementation of RemoveObstacleSetAction ///////////////////////////////////////////////////////////////////// size_t RemoveObstacleSetAction::newValue( size_t value ) { return value & (~_setOperand); } ///////////////////////////////////////////////////////////////////// // Implementation of AddObstacleSetAction ///////////////////////////////////////////////////////////////////// size_t AddObstacleSetAction::newValue( size_t value ) { return value | _setOperand; } ///////////////////////////////////////////////////////////////////// // Implementation of SetObstacleSetAction ///////////////////////////////////////////////////////////////////// size_t SetObstacleSetAction::newValue( size_t value ) { return _setOperand; } } // namespace BFSM } // namespace Menge
[ "anooparoor@Minerva.cs.hunter.cuny.edu" ]
anooparoor@Minerva.cs.hunter.cuny.edu
1cdf121cacb8d1f5d799187bb64a9eff464fe58d
80ea2ec75f3505931c6643a4159f5784d24f7112
/magic_get/include/boost/pfr/detail/core14.hpp
6ea3607dbd0c596cb73604356cac1777f4bc7d27
[]
no_license
ksmurph1/VulkanConfigurator
843c6282b5eb75c9bcf5d0501ba2ff2b293fc930
986992a8b963a6b271785a77d5efd349b6e6ea4f
refs/heads/master
2023-03-30T14:11:27.417840
2021-04-03T20:57:28
2021-04-03T20:57:28
270,752,561
0
0
null
null
null
null
UTF-8
C++
false
false
455
hpp
// Copyright (c) 2016-2019 Antony Polukhin // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_PFR_DETAIL_CORE14_HPP #define BOOST_PFR_DETAIL_CORE14_HPP #pragma once #include "config.hpp" #if BOOST_PFR_USE_LOOPHOLE # include "core14_loophole.hpp" #else # include "core14_classic.hpp" #endif #endif // BOOST_PFR_DETAIL_CORE14_HPP
[ "ksmurph1@gmail.com" ]
ksmurph1@gmail.com
957f5f51b6241890070678e1b68f747ee242b21d
9987a33adf46172cf5352b57e2e1319955dd75ab
/SongInfoEditor/TabID3v2.h
1e05ddd67e4070b79d339eac8cdc6f77f6e3e67a
[]
no_license
lilinayuy/SongInfo
ce4cb73c7d4b394abf1f063939d758cbef79743c
d02929c16f5144a542093b88be02118e9d54f20b
refs/heads/master
2016-09-10T18:24:53.640838
2015-03-24T01:53:41
2015-03-24T01:53:41
32,769,729
0
0
null
null
null
null
UTF-8
C++
false
false
1,553
h
#pragma once #include "afxwin.h" // CTabID3v2 dialog class CTabID3v2 : public CDialog { DECLARE_DYNAMIC(CTabID3v2) public: CTabID3v2(CWnd* pParent = NULL); // standard constructor virtual ~CTabID3v2(); // Dialog Data enum { IDD = IDD_DLG_ID3V2 }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support DECLARE_MESSAGE_MAP() public: CString m_strTitle; CString m_strTrack; CString m_strArtist; CString m_strAlbum; CString m_strYear; CString m_strGenre; CString m_strComposer; CString m_strLyricist; CString m_strOriginalArtist; CString m_strCopyright; CString m_strEncoder; CString m_strEncodedBy; CString m_strComment; CString m_strURL; CString m_strLyricText; CString m_strFileType; CString m_strMediaType; afx_msg void OnBnClickedBtnCopyartistout(); afx_msg void OnBnClickedBtnCopyalbumout(); int m_nID3Version; CComboBox m_cUnicode; BOOL m_bUnicode; afx_msg void OnBnClickedBtnShowlyric(); afx_msg void OnBnClickedBtnGotourl(); afx_msg void OnBnClickedBtnTojapanese(); afx_msg void OnBnClickedBtnTochinese(); afx_msg void OnBnClickedBtnSave(); virtual BOOL OnInitDialog(); BOOL ChangeUnicode(int Des); BOOL m_bEnable; void EnableDialog(BOOL bEnable); BOOL m_bGenreAdded; CComboBox m_cCmbGenre; CComboBox m_cCmbID3Version; CDialog* m_pDlg; CDialog* m_pLyricDlg; BOOL m_bShowLyric; CButton m_cBtnToJapanese; CButton m_cBtnToChinese; CButton m_cBtnSave; afx_msg void OnBnClickedBtnAdd(); afx_msg void OnBnClickedBtnDelete(); afx_msg void OnBnClickedBtnUpload(); };
[ "heeroyuy1982@163.com" ]
heeroyuy1982@163.com
95a8c9a3ae97d2c01f845a82f19e1c8ee8bb4ff2
335e56925e49716c7b7766f2bbca71590e0c77a8
/hdoj/Problem Achieve/2102 A计划.cpp
e4e7291d9aefb6d21544c54bd81356fc50231b1b
[]
no_license
suzumiyayuhi/AlgorithmTraining
388b9bfd5aed5d76a20c71ad03b69a5269d2e7a7
1af9584fde2ec209429e6b85c5e0381685733c16
refs/heads/master
2021-01-18T17:54:03.491535
2018-01-20T10:57:12
2018-01-20T10:57:12
86,822,395
4
0
null
null
null
null
UTF-8
C++
false
false
1,911
cpp
#include<iostream> #include<queue> #include<string.h> #include<cstdio> using namespace std; char palace[11][11][3]; bool flag[11][11][3]; int N,M,T,ex,ey,ez; struct point { int x,y,z,time; }person; int dx[4]={0,0,1,-1}; int dy[4]={1,-1,0,0}; bool check(point a) { if(a.x>=1&&a.x<=N&&a.y>=1&&a.y<=M) if(palace[a.x][a.y][a.z]!='*') if(!flag[a.x][a.y][a.z]) return true; return false; } bool bfs() { queue<point> q; q.push(person); point cur,next; while(!q.empty()) { cur=q.front(); flag[cur.x][cur.y][cur.z]=true; q.pop(); if(cur.x==ex&&cur.y==ey&&cur.z==ez&&cur.time<=T) return true; if(cur.time>T) return false; if(palace[cur.x][cur.y][cur.z]=='#') { next=cur; if(next.z==1) next.z=2; else next.z=1; if(check(next)) q.push(next); } else { for(int i=0;i!=4;i++) { next.x=cur.x+dx[i]; next.y=cur.y+dy[i]; next.z=cur.z; next.time=cur.time+1; if(check(next)) q.push(next); } } } return false; } int main() { int cc; cin>>cc; while(cc--) { cin>>N>>M>>T; memset(flag,false,sizeof(flag)); for(int z=1;z!=3;z++) { for(int x=1;x<=N;x++) { for(int y=1;y<=M;y++) { cin>>palace[x][y][z]; if(palace[x][y][z]=='S') { person.x=x; person.y=y; person.z=z; person.time=0; flag[x][y][z]=true; } else if(palace[x][y][z]=='P') { ex=x; ey=y; ez=z; } } } } for(int j=1;j<=N;j++) { for(int k=1;k<=M;k++) { if(palace[j][k][1]=='#'&&palace[j][k][2]=='#') { palace[j][k][1]='*'; palace[j][k][2]='*'; } else if(palace[j][k][1]=='#'&&palace[j][k][2]=='*') { palace[j][k][1]='*'; } else if(palace[j][k][2]=='#'&&palace[j][k][1]=='*') { palace[j][k][2]='*'; } } } if(bfs()) cout<<"YES"<<endl; else cout<<"NO"<<endl; } return 0; }
[ "923051761@qq.com" ]
923051761@qq.com
3d908408a8c8447c48431adeb0d4c8064357f51a
b7691235885c17306a660d242afe1cf6a70e867b
/8/81265.cpp
b934aec5617af3f8d2313f8c6177f9bf1f8f702a
[]
no_license
DobrinTs/Artifical-Intelligence-FMI-course
8dc67a27f9a50d0d756b7a7405519d9d7d8b7714
d171e092c9c2f1192932f92646e26f867169ed8c
refs/heads/master
2020-04-14T11:56:52.539124
2019-01-08T09:55:56
2019-01-08T09:55:56
163,827,100
0
0
null
null
null
null
UTF-8
C++
false
false
5,358
cpp
#include<iostream> #include<fstream> #include<vector> #include<queue> #include<math.h> using namespace std; string fullClassName(string classAbbreviation) { if(classAbbreviation == "set") { return "Iris-setosa"; } else if(classAbbreviation == "ver") { return "Iris-versicolor"; } else if(classAbbreviation == "vir") { return "Iris-virginica"; } } struct Plant { double sepalLength; double sepalWidth; double petalLength; double petalWidth; string plantClass; Plant(double sepalLength, double sepalWidth, double petalLength, double petalWidth, string plantClass) : sepalLength(sepalLength), sepalWidth(sepalWidth), petalLength(petalLength), petalWidth(petalWidth), plantClass(plantClass) {} Plant(const Plant& other) : sepalLength(other.sepalLength), sepalWidth(other.sepalWidth), petalLength(other.petalLength), petalWidth(other.petalWidth), plantClass(other.plantClass) {} Plant& operator=(const Plant& other) { if(this!=&other) { sepalLength=other.sepalLength; sepalWidth=other.sepalWidth; petalLength=other.petalLength; petalWidth=other.petalWidth; plantClass=other.plantClass; } return *this; } bool operator<(const Plant& other) const //for priority queue of pair<double, Plant> { int chance = rand() % 10; return chance < 5; } string getPlantClass() const { return plantClass; } void print() const { cout<<sepalLength<<" "<<sepalWidth<<" "<<petalLength<<" "<<petalWidth<<" "<<fullClassName(plantClass)<<endl; } }; string findClassByKNeighbours(const vector<Plant> trainingDataset, Plant newEntry, int k) { priority_queue<pair<double, Plant> > nearestNeighbours; double distance; for(int i=0; i<trainingDataset.size(); i++) { distance = sqrt( (newEntry.petalLength - trainingDataset[i].petalLength)*(newEntry.petalLength - trainingDataset[i].petalLength) + (newEntry.petalWidth - trainingDataset[i].petalWidth)*(newEntry.petalWidth - trainingDataset[i].petalWidth) + (newEntry.sepalLength - trainingDataset[i].sepalLength)*(newEntry.sepalLength - trainingDataset[i].sepalLength) + (newEntry.sepalWidth - trainingDataset[i].sepalWidth)*(newEntry.sepalWidth - trainingDataset[i].sepalWidth) ); if(nearestNeighbours.size() < k) { nearestNeighbours.push(pair<double, Plant>(distance, trainingDataset[i])); } else if(nearestNeighbours.top().first > distance) { nearestNeighbours.pop(); nearestNeighbours.push(pair<double, Plant>(distance, trainingDataset[i])); } } int irisSetosa = 0, irisVersicolor = 0, irisVirginica = 0; string nearestNeighbourClass; while(!nearestNeighbours.empty()) { string topClass = nearestNeighbours.top().second.getPlantClass(); if(nearestNeighbours.size() == 1) { nearestNeighbourClass = topClass; } if( topClass == "set") { irisSetosa++; } else if(topClass == "ver") { irisVersicolor++; } else if( topClass == "vir") { irisVirginica++; } nearestNeighbours.pop(); } string maxCountClass = "set"; int maxCount = irisSetosa; if(irisVersicolor > maxCount || (irisVersicolor == maxCount && nearestNeighbourClass == "ver")) { maxCountClass = "ver"; maxCount = irisVersicolor; } if(irisVirginica > maxCount || (irisVirginica == maxCount && nearestNeighbourClass == "vir")) { maxCountClass = "vir"; maxCount = irisVirginica; } return maxCountClass; } void kNN() { ifstream file ("iris.txt", std::ifstream::in); double sL, sW, pL, pW; string pC; vector<Plant> trainingDataset; vector<Plant> testDataset; while(file>>sL) { file.ignore(1); file>>sW; file.ignore(1); file>>pL; file.ignore(1); file>>pW; file.ignore(1); getline(file, pC); pC = pC.substr(5, 3); trainingDataset.push_back(Plant(sL, sW, pL, pW, pC)); } while(testDataset.size() < 20) { int idx = rand() % trainingDataset.size(); testDataset.push_back(trainingDataset[idx]); trainingDataset.erase(trainingDataset.begin()+idx); } int k; cout<<"Enter k: "; cin>>k; int correctCount = 0; for(int i=0; i<testDataset.size(); i++) { cout<<"Test dataset individual info: "<<endl; testDataset[i].print(); cout<<"Predicted class: "; string predictionResult = findClassByKNeighbours(trainingDataset, testDataset[i], k); cout<<fullClassName(predictionResult)<<endl; cout<<"------------------"<<endl; if(testDataset[i].getPlantClass() == predictionResult) { correctCount++; } } double accuracy = (double)correctCount/testDataset.size(); cout<<"Accuracy: "<< accuracy; } int main() { srand (time(NULL)); kNN(); }
[ "dobrits97@gmail.com" ]
dobrits97@gmail.com
63c2608b3c1d6e8ad3f665836f7e0686b555d88a
653f49d47f6f88c7c8c0b0343b02e8a5bb8ae66d
/gazebo/converter/convertURDF.cpp
3c897edd2b465423e107308ed09fd29f57bd2a05
[]
no_license
ana-GT/huboCode
53a860454c40090fc61d68ba8c3d6b205e810e42
a45fd1b78b7c3c6a9b37d6097dddfeca831994e4
refs/heads/master
2021-01-10T14:30:48.400413
2013-05-12T04:05:07
2013-05-12T04:05:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
291
cpp
/** * @file convertURDF.cpp */ #include <gazebo/sdf/interface/parser_urdf.hh> /** * @function main */ int main( int argc, char* argv[] ) { urdf2gazebo::URDF2Gazebo u2g; TiXmlDocument xml_sdf; xml_sdf = u2g.InitModelFile( argv[1] ); xml_sdf.SaveFile("test.sdf" ); return 0; }
[ "ahuaman3@gatech.edu" ]
ahuaman3@gatech.edu
d7cd9d3be7b38cec4f15998a16ef5862672baf1d
34fe5b48225c2509d272032c44d6fe5be08a6330
/src/test/scheduler_tests.cpp
4cacb3d84c431888bcfd7f6aa59d12982d2e1ad5
[ "MIT" ]
permissive
mcret1/socialcoin
8386f2ef1287dadd7530c65d2b8464d83adeb308
7c2a94ff33cd48708113b29ce40515a7236bf7fd
refs/heads/main
2023-06-27T13:29:24.003888
2021-08-04T12:25:04
2021-08-04T12:25:04
376,731,408
0
0
null
null
null
null
UTF-8
C++
false
false
5,017
cpp
// Copyright (c) 2012-2013 The Bitcoin Core developers // Copyright (c) 2017 The PIVX developers // Copyright (c) 2018 The socialcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "random.h" #include "scheduler.h" #if defined(HAVE_CONFIG_H) #include "config/socialcoin-config.h" #else #define HAVE_WORKING_BOOST_SLEEP_FOR #endif #include <boost/bind.hpp> #include <boost/random/mersenne_twister.hpp> #include <boost/random/uniform_int_distribution.hpp> #include <boost/thread.hpp> #include <boost/test/unit_test.hpp> BOOST_AUTO_TEST_SUITE(scheduler_tests) static void microTask(CScheduler& s, boost::mutex& mutex, int& counter, int delta, boost::chrono::system_clock::time_point rescheduleTime) { { boost::unique_lock<boost::mutex> lock(mutex); counter += delta; } boost::chrono::system_clock::time_point noTime = boost::chrono::system_clock::time_point::min(); if (rescheduleTime != noTime) { CScheduler::Function f = boost::bind(&microTask, boost::ref(s), boost::ref(mutex), boost::ref(counter), -delta + 1, noTime); s.schedule(f, rescheduleTime); } } static void MicroSleep(uint64_t n) { #if defined(HAVE_WORKING_BOOST_SLEEP_FOR) boost::this_thread::sleep_for(boost::chrono::microseconds(n)); #elif defined(HAVE_WORKING_BOOST_SLEEP) boost::this_thread::sleep(boost::posix_time::microseconds(n)); #else //should never get here #error missing boost sleep implementation #endif } BOOST_AUTO_TEST_CASE(manythreads) { seed_insecure_rand(false); // Stress test: hundreds of microsecond-scheduled tasks, // serviced by 10 threads. // // So... ten shared counters, which if all the tasks execute // properly will sum to the number of tasks done. // Each task adds or subtracts from one of the counters a // random amount, and then schedules another task 0-1000 // microseconds in the future to subtract or add from // the counter -random_amount+1, so in the end the shared // counters should sum to the number of initial tasks performed. CScheduler microTasks; boost::mutex counterMutex[10]; int counter[10] = { 0 }; boost::random::mt19937 rng(insecure_rand()); boost::random::uniform_int_distribution<> zeroToNine(0, 9); boost::random::uniform_int_distribution<> randomMsec(-11, 1000); boost::random::uniform_int_distribution<> randomDelta(-1000, 1000); boost::chrono::system_clock::time_point start = boost::chrono::system_clock::now(); boost::chrono::system_clock::time_point now = start; boost::chrono::system_clock::time_point first, last; size_t nTasks = microTasks.getQueueInfo(first, last); BOOST_CHECK(nTasks == 0); for (int i = 0; i < 100; i++) { boost::chrono::system_clock::time_point t = now + boost::chrono::microseconds(randomMsec(rng)); boost::chrono::system_clock::time_point tReschedule = now + boost::chrono::microseconds(500 + randomMsec(rng)); int whichCounter = zeroToNine(rng); CScheduler::Function f = boost::bind(&microTask, boost::ref(microTasks), boost::ref(counterMutex[whichCounter]), boost::ref(counter[whichCounter]), randomDelta(rng), tReschedule); microTasks.schedule(f, t); } nTasks = microTasks.getQueueInfo(first, last); BOOST_CHECK(nTasks == 100); BOOST_CHECK(first < last); BOOST_CHECK(last > now); // As soon as these are created they will start running and servicing the queue boost::thread_group microThreads; for (int i = 0; i < 5; i++) microThreads.create_thread(boost::bind(&CScheduler::serviceQueue, &microTasks)); MicroSleep(600); now = boost::chrono::system_clock::now(); // More threads and more tasks: for (int i = 0; i < 5; i++) microThreads.create_thread(boost::bind(&CScheduler::serviceQueue, &microTasks)); for (int i = 0; i < 100; i++) { boost::chrono::system_clock::time_point t = now + boost::chrono::microseconds(randomMsec(rng)); boost::chrono::system_clock::time_point tReschedule = now + boost::chrono::microseconds(500 + randomMsec(rng)); int whichCounter = zeroToNine(rng); CScheduler::Function f = boost::bind(&microTask, boost::ref(microTasks), boost::ref(counterMutex[whichCounter]), boost::ref(counter[whichCounter]), randomDelta(rng), tReschedule); microTasks.schedule(f, t); } // Drain the task queue then exit threads microTasks.stop(true); microThreads.join_all(); // ... wait until all the threads are done int counterSum = 0; for (int i = 0; i < 10; i++) { BOOST_CHECK(counter[i] != 0); counterSum += counter[i]; } BOOST_CHECK_EQUAL(counterSum, 200); } BOOST_AUTO_TEST_SUITE_END()
[ "80612177+mcret1@users.noreply.github.com" ]
80612177+mcret1@users.noreply.github.com
b366307ec1b0122b5bf770d994077e55b8f88788
f9a8e812a0f8e8ddcae5a7da6576f376d5b4c100
/test/unit_and_integrationtests/TestGlobalData.cpp
8792e243a1836bc91bd5f52b7604706b183e6e63
[ "MIT" ]
permissive
CapRat/APAL
d44bfbee74540e812ccd63901d47de401fefb672
a08f4bc6ee6299e8e370ef99750262ad23c87d58
refs/heads/master
2022-12-13T18:52:11.512432
2020-08-19T11:24:40
2020-08-19T11:24:40
290,733,218
2
0
null
null
null
null
ISO-8859-3
C++
false
false
501
cpp
//#include <interfaces/IPlugin.hpp> #include "CatchTools.hpp" #include "base/PluginBases.hpp" #include <GlobalData.hpp> using namespace APAL; class SimpleExamplePlugin : public LazyPlugin { public: // Geerbt über LazyPlugin virtual void processAudio() override {} }; REGISTER_PLUGIN(SimpleExamplePlugin); using namespace APAL; TEST_CASE("Registration of derived Plugins") { REQUIRE_MESSAGE(GlobalData().getNumberOfRegisteredPlugins() >= 1, "Static Initialisation Failed"); }
[ "benjaminheisch@yahoo.de" ]
benjaminheisch@yahoo.de
071fda499d8c193b5ca8db5a76c5e5877f772be0
872f24199d847f05ddb4d8f7ac69eaed9336a0d5
/code/synthesis/ImagerObjects/SIImageStoreMultiTerm.cc
eb4efa3562bc1b7840f39e626a5b6c983677bfd8
[]
no_license
schiebel/casa
8004f7d63ca037b4579af8a8bbfb4fa08e87ced4
e2ced7349036d8fc13d0a65aad9a77b76bfe55d1
refs/heads/master
2016-09-05T16:20:59.022063
2015-08-26T18:46:26
2015-08-26T18:46:26
41,441,084
1
1
null
null
null
null
UTF-8
C++
false
false
37,972
cc
//# SIImageStoreMultiTerm.cc: Implementation of Imager.h //# Copyright (C) 1997-2008 //# Associated Universities, Inc. Washington DC, USA. //# //# This program is free software; you can redistribute it and/or modify it //# under the terms of the GNU General Public License as published by the Free //# Software Foundation; either version 2 of the License, or (at your option) //# any later version. //# //# This program is distributed in the hope that it will be useful, but WITHOUT //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for //# more details. //# //# You should have received a copy of the GNU General Public License along //# with this program; if not, write to the Free Software Foundation, Inc., //# 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning AIPS++ should be addressed as follows: //# Internet email: aips2-request@nrao.edu. //# Postal address: AIPS++ Project Office //# National Radio Astronomy Observatory //# 520 Edgemont Road //# Charlottesville, VA 22903-2475 USA //# //# $Id$ #include <casa/Exceptions/Error.h> #include <casa/iostream.h> #include <casa/sstream.h> #include <casa/Arrays/Matrix.h> #include <casa/Arrays/ArrayMath.h> #include <casa/Arrays/ArrayLogical.h> #include <casa/Logging.h> #include <casa/Logging/LogIO.h> #include <casa/Logging/LogMessage.h> #include <casa/Logging/LogSink.h> #include <casa/Logging/LogMessage.h> #include <casa/OS/DirectoryIterator.h> #include <casa/OS/File.h> #include <casa/OS/Path.h> #include <casa/OS/HostInfo.h> #include <images/Images/TempImage.h> #include <images/Images/PagedImage.h> #include <ms/MeasurementSets/MSHistoryHandler.h> #include <ms/MeasurementSets/MeasurementSet.h> #include <synthesis/TransformMachines/StokesImageUtil.h> #include <images/Images/TempImage.h> #include <images/Images/SubImage.h> #include <images/Regions/ImageRegion.h> #include <synthesis/ImagerObjects/SIImageStoreMultiTerm.h> #include <casa/Arrays/MatrixMath.h> #include <scimath/Mathematics/MatrixMathLA.h> #include <sys/types.h> #include <unistd.h> using namespace std; namespace casa { //# NAMESPACE CASA - BEGIN ////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////// SIImageStoreMultiTerm::SIImageStoreMultiTerm():SIImageStore() { itsPsfs.resize(0); itsModels.resize(0); itsResiduals.resize(0); itsWeights.resize(0); itsImages.resize(0); itsSumWts.resize(0); itsMask.reset( ); itsGridWt.reset( ); itsPB.reset( ); itsForwardGrids.resize(0); itsBackwardGrids.resize(0); itsNTerms=0; itsNFacets=1; itsFacetId=0; itsNChanChunks = 1; itsChanId = 0; itsNPolChunks = 1; itsPolId = 0; itsUseWeight=False; itsImageShape=IPosition(4,0,0,0,0); itsImageName=String(""); itsCoordSys=CoordinateSystem(); itsMiscInfo=Record(); // itsValidity = False; init(); validate(); } SIImageStoreMultiTerm::SIImageStoreMultiTerm(String imagename, CoordinateSystem &imcoordsys, IPosition imshape, const Int /*nfacets*/, const Bool /*overwrite*/, uInt ntaylorterms, Bool useweightimage) { LogIO os( LogOrigin("SIImageStoreMultiTerm","Open new Images",WHERE) ); itsNTerms = ntaylorterms; itsPsfs.resize(2 * itsNTerms - 1); itsModels.resize(itsNTerms); itsResiduals.resize(itsNTerms); itsWeights.resize(2 * itsNTerms - 1); itsImages.resize(itsNTerms); itsSumWts.resize(2 * itsNTerms - 1); itsMask.reset( ); itsGridWt.reset( ); itsPB.reset( ); itsForwardGrids.resize(itsNTerms); itsBackwardGrids.resize(2 * itsNTerms - 1); //cout << "Input imshape : " << imshape << endl; itsImageName = imagename; itsImageShape = imshape; itsCoordSys = imcoordsys; // itsNFacets = nfacets; // So that sumwt shape happens properly, via checkValidity // itsFacetId = -1; itsNFacets=1; itsFacetId=0; itsNChanChunks = 1; itsChanId = 0; itsNPolChunks = 1; itsPolId = 0; itsUseWeight = useweightimage; itsMiscInfo=Record(); init(); validate(); } SIImageStoreMultiTerm::SIImageStoreMultiTerm(String imagename, uInt ntaylorterms,const Bool ignorefacets) { LogIO os( LogOrigin("SIImageStoreMultiTerm","Open existing Images",WHERE) ); itsNTerms = ntaylorterms; itsPsfs.resize(2 * itsNTerms - 1); itsModels.resize(itsNTerms); itsResiduals.resize(itsNTerms); itsWeights.resize(2 * itsNTerms - 1); itsImages.resize(itsNTerms); itsSumWts.resize(2 * itsNTerms - 1); itsMask.reset( ); itsGridWt.reset( ); itsPB.reset( ); itsMiscInfo=Record(); itsForwardGrids.resize(itsNTerms); itsBackwardGrids.resize(2 * itsNTerms - 1); itsImageName = imagename; itsNFacets=1; itsFacetId=0; itsNChanChunks = 1; itsChanId = 0; itsNPolChunks = 1; itsPolId = 0; Bool exists=True; Bool sumwtexists=True; for(uInt tix=0;tix<2*itsNTerms-1;tix++) { if( tix<itsNTerms ) { exists &= ( doesImageExist( itsImageName+String(".residual.tt")+String::toString(tix) ) || doesImageExist( itsImageName+String(".psf.tt")+String::toString(tix) ) ); }else { exists &= ( doesImageExist( itsImageName+String(".psf.tt")+String::toString(tix) ) ); sumwtexists &= ( doesImageExist( itsImageName+String(".sumwt.tt")+String::toString(tix) ) ); } } // The PSF or Residual images must exist. ( or the gridwt image) // All this is just for the shape and coordinate system. if( exists || doesImageExist(itsImageName+String(".gridwt")) ) { SHARED_PTR<ImageInterface<Float> > imptr; if( doesImageExist(itsImageName+String(".psf.tt0")) ) imptr.reset( new PagedImage<Float> (itsImageName+String(".psf.tt0")) ); else if( doesImageExist(itsImageName+String(".residual.tt0")) ) imptr.reset( new PagedImage<Float> (itsImageName+String(".residual.tt0")) ); else imptr.reset( new PagedImage<Float> (itsImageName+String(".gridwt")) ); itsImageShape = imptr->shape(); itsCoordSys = imptr->coordinates(); } else { throw( AipsError( "Multi-term PSF or Residual Images do not exist. Please create one of them." ) ); } if( doesImageExist(itsImageName+String(".residual.tt0")) || doesImageExist(itsImageName+String(".psf.tt0")) ) { if( sumwtexists ) { SHARED_PTR<ImageInterface<Float> > imptr; imptr.reset( new PagedImage<Float> (itsImageName+String(".sumwt.tt0")) ); itsNFacets = imptr->shape()[0]; itsFacetId = 0; itsUseWeight = getUseWeightImage( *imptr ); if( itsUseWeight && ! doesImageExist(itsImageName+String(".weight.tt0")) ) { throw(AipsError("Internal error : MultiTerm Sumwt has a useweightimage=True but the weight image does not exist.")); } } else { throw( AipsError( "Multi-term SumWt does not exist. Please create PSFs or Residuals." ) ); } }// if psf0 or res0 exist if( ignorefacets==True ) itsNFacets=1; init(); validate(); } /* /////////////Constructor with pointers already created else where but taken over here SIImageStoreMultiTerm::SIImageStoreMultiTerm(Block<SHARED_PTR<ImageInterface<Float> > > modelims, Block<SHARED_PTR<ImageInterface<Float> > >residims, Block<SHARED_PTR<ImageInterface<Float> > >psfims, Block<SHARED_PTR<ImageInterface<Float> > >weightims, Block<SHARED_PTR<ImageInterface<Float> > >restoredims, Block<SHARED_PTR<ImageInterface<Float> > >sumwtims, SHARED_PTR<ImageInterface<Float> > newmask, SHARED_PTR<ImageInterface<Float> > newalpha, SHARED_PTR<ImageInterface<Float> > newbeta) { itsPsfs=psfims; itsModels=modelims; itsResiduals=residims; itsWeights=weightims; itsImages=restoredims; itsSumWts=sumwtims; itsMask = newmask; itsAlpha = newalpha; itsBeta = newbeta; itsNTerms = itsResiduals.nelements(); itsMiscInfo=Record(); AlwaysAssert( itsPsfs.nelements() == 2*itsNTerms-1 , AipsError ); AlwaysAssert( itsPsfs.nelements()>0 && itsPsfs[0] , AipsError ); AlwaysAssert( itsSumWts.nelements()>0 && itsSumWts[0] , AipsError ); itsForwardGrids.resize( itsNTerms ); itsBackwardGrids.resize( 2 * itsNTerms - 1 ); itsImageShape=psfims[0]->shape(); itsCoordSys = psfims[0]->coordinates(); itsMiscInfo = psfims[0]->miscInfo(); itsNFacets=sumwtims[0]->shape()[0]; itsUseWeight=getUseWeightImage( *(sumwtims[0]) ); itsImageName = String("reference"); // This is what the access functions use to guard against allocs... init(); validate(); } */ ////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////Constructor with pointers already created else where but taken over here SIImageStoreMultiTerm::SIImageStoreMultiTerm(Block<SHARED_PTR<ImageInterface<Float> > > modelims, Block<SHARED_PTR<ImageInterface<Float> > >residims, Block<SHARED_PTR<ImageInterface<Float> > >psfims, Block<SHARED_PTR<ImageInterface<Float> > >weightims, Block<SHARED_PTR<ImageInterface<Float> > >restoredims, Block<SHARED_PTR<ImageInterface<Float> > >sumwtims, SHARED_PTR<ImageInterface<Float> > newmask, SHARED_PTR<ImageInterface<Float> > newalpha, SHARED_PTR<ImageInterface<Float> > newbeta, SHARED_PTR<ImageInterface<Float> > newalphaerror, CoordinateSystem& csys, IPosition imshape, String imagename, const Int facet, const Int nfacets, const Int chan, const Int nchanchunks, const Int pol, const Int npolchunks) { itsPsfs=psfims; itsModels=modelims; itsResiduals=residims; itsWeights=weightims; itsImages=restoredims; itsSumWts=sumwtims; itsMask = newmask; itsAlpha = newalpha; itsBeta = newbeta; itsAlphaError = newalphaerror; itsNTerms = itsResiduals.nelements(); itsMiscInfo=Record(); AlwaysAssert( itsPsfs.nelements() == 2*itsNTerms-1 , AipsError ); // AlwaysAssert( itsPsfs.nelements()>0 && itsPsfs[0] , AipsError ); // AlwaysAssert( itsSumWts.nelements()>0 && itsSumWts[0] , AipsError ); itsForwardGrids.resize( itsNTerms ); itsBackwardGrids.resize( 2 * itsNTerms - 1 ); itsNFacets = nfacets; itsFacetId = facet; itsNChanChunks = nchanchunks; itsChanId = chan; itsNPolChunks = npolchunks; itsPolId = pol; itsParentImageShape = imshape; itsImageShape = imshape; ///// itsImageShape = IPosition(4,0,0,0,0); itsCoordSys = csys; // Hopefully this doesn't change for a reference image itsImageName = imagename; //----------------------- init(); // Connect parent pointers to the images. //----------------------- // Set these to null, to be set later upon first access. // Setting to null will hopefully set all elements of each array, to NULL. itsPsfs=SHARED_PTR<ImageInterface<Float> >(); itsModels=SHARED_PTR<ImageInterface<Float> >(); itsResiduals=SHARED_PTR<ImageInterface<Float> >(); itsWeights=SHARED_PTR<ImageInterface<Float> >(); itsImages=SHARED_PTR<ImageInterface<Float> >(); itsSumWts=SHARED_PTR<ImageInterface<Float> >(); itsMask.reset( ); validate(); } ////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// uInt SIImageStoreMultiTerm::getNTaylorTerms(Bool dopsf) { return dopsf ? (2*itsNTerms-1) : itsNTerms; } // Check if images that are asked-for are ready and all have the same shape. /* Bool SIImageStoreMultiTerm::checkValidity(const Bool ipsf, const Bool iresidual, const Bool iweight, const Bool imodel, const Bool irestored, const Bool imask,const Bool isumwt, const Bool ialpha, const Bool ibeta) { // cout << "In MT::checkValidity imask is " << imask << endl; Bool valid = True; for(uInt tix=0; tix<2*itsNTerms-1; tix++) { if(ipsf==True) { psf(tix); valid = valid & ( itsPsfs[tix] && itsPsfs[tix]->shape()==itsImageShape ); } if(iweight==True) { weight(tix); valid = valid & ( itsWeights[tix] && itsWeights[tix]->shape()==itsImageShape ); } if(isumwt==True) { IPosition useShape(itsImageShape); useShape[0]=itsNFacets; useShape[1]=itsNFacets; sumwt(tix); valid = valid & ( itsSumWts[tix] && itsSumWts[tix]->shape()==useShape ); } if( tix< itsNTerms ) { if(iresidual==True) { residual(tix); valid = valid & ( itsResiduals[tix] && itsResiduals[tix]->shape()==itsImageShape ); } if(imodel==True) { model(tix); valid = valid & ( itsModels[tix] && itsModels[tix]->shape()==itsImageShape); } if(irestored==True) { image(tix); valid = valid & ( itsImages[tix] && itsImages[tix]->shape()==itsImageShape); } } } if(imask==True) { mask(); valid = valid & ( itsMask && itsMask->shape()==itsImageShape); // cout << " Mask null ? " << (bool) itsMask << endl; } if(ialpha==True) { alpha(); valid = valid & ( itsAlpha && itsAlpha->shape()==itsImageShape ); } if(ibeta==True) { beta(); valid = valid & ( itsBeta && itsBeta->shape()==itsImageShape ); } return valid; } */ ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////// SIImageStoreMultiTerm::~SIImageStoreMultiTerm() { } ////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////// Bool SIImageStoreMultiTerm::releaseLocks() { LogIO os( LogOrigin("SIImageStoreMultiTerm","releaseLocks",WHERE) ); for(uInt tix=0; tix<2*itsNTerms-1; tix++) { if( itsPsfs[tix] ) releaseImage( itsPsfs[tix] ); if( itsWeights[tix] ) releaseImage( itsWeights[tix] ); if( itsSumWts[tix] ) releaseImage( itsSumWts[tix] ); if( tix < itsNTerms ) { if( itsModels[tix] ) releaseImage( itsModels[tix] ); if( itsResiduals[tix] ) releaseImage( itsResiduals[tix] ); if( itsImages[tix] ) releaseImage( itsImages[tix] ); } } if( itsMask ) releaseImage( itsMask ); if( itsAlpha ) releaseImage( itsAlpha ); if( itsBeta ) releaseImage( itsBeta ); if( itsAlphaError ) releaseImage( itsAlphaError ); if( itsGridWt ) releaseImage( itsGridWt ); if( itsPB ) releaseImage( itsPB ); return True; // do something more intelligent here. } Double SIImageStoreMultiTerm::getReferenceFrequency() { Double theRefFreq; Vector<Double> refpix = (itsCoordSys.spectralCoordinate()).referencePixel(); AlwaysAssert( refpix.nelements()>0, AipsError ); (itsCoordSys.spectralCoordinate()).toWorld( theRefFreq, refpix[0] ); // cout << "Reading ref freq as : " << theRefFreq << endl; return theRefFreq; } ////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////// void SIImageStoreMultiTerm::setModelImage( String modelname ) { LogIO os( LogOrigin("SIImageStoreMultiTerm","setModelImage",WHERE) ); for(uInt tix=0;tix<itsNTerms;tix++) { Directory immodel( modelname+String(".model.tt")+String::toString(tix) ); if( !immodel.exists() ) { os << "Starting model image does not exist for term : " << tix << LogIO::POST; } else { SHARED_PTR<PagedImage<Float> > newmodel( new PagedImage<Float>( modelname+String(".model.tt")+String::toString(tix) ) ); // Check shapes, coordsys with those of other images. If different, try to re-grid here. if( newmodel->shape() != model(tix)->shape() ) { os << "Regridding input model to target coordinate system for term " << tix << LogIO::POST; regridToModelImage( *newmodel , tix); // For now, throw an exception. //throw( AipsError( "Input model image "+modelname+".model.tt"+String::toString(tix)+" is not the same shape as that defined for output in "+ itsImageName + ".model" ) ); } else { os << "Setting " << modelname << " as model for term " << tix << LogIO::POST; // Then, add its contents to itsModel. //itsModel->put( itsModel->get() + model->get() ); ( model(tix) )->put( newmodel->get() ); } } }//nterms } ////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////// SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::psf(uInt term) { AlwaysAssert( itsPsfs.nelements() > term, AipsError ); accessImage( itsPsfs[term], itsParentPsfs[term], imageExts(PSF)+".tt"+String::toString(term) ); return itsPsfs[term]; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::residual(uInt term) { accessImage( itsResiduals[term], itsParentResiduals[term], imageExts(RESIDUAL)+".tt"+String::toString(term) ); return itsResiduals[term]; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::weight(uInt term) { accessImage( itsWeights[term], itsParentWeights[term], imageExts(WEIGHT)+".tt"+String::toString(term) ); return itsWeights[term]; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::sumwt(uInt term) { accessImage( itsSumWts[term], itsParentSumWts[term], imageExts(SUMWT)+".tt"+String::toString(term) ); if( itsNFacets>1 || itsNChanChunks>1 || itsNPolChunks>1 ) {itsUseWeight = getUseWeightImage( *itsParentSumWts[0] );} setUseWeightImage( *(itsSumWts[term]) , itsUseWeight); // Sets a flag in the SumWt image. return itsSumWts[term]; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::model(uInt term) { accessImage( itsModels[term], itsParentModels[term], imageExts(MODEL)+".tt"+String::toString(term) ); // Set up header info the first time. ImageInfo info = itsModels[term]->imageInfo(); String objectName(""); if( itsMiscInfo.isDefined("OBJECT") ){ itsMiscInfo.get("OBJECT", objectName); } info.setObjectName(objectName); itsModels[term]->setImageInfo( info ); itsModels[term]->setMiscInfo( itsMiscInfo ); itsModels[term]->setUnits("Jy/pixel"); return itsModels[term]; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::image(uInt term) { accessImage( itsImages[term], itsParentImages[term], imageExts(IMAGE)+".tt"+String::toString(term) ); itsImages[term]->setUnits("Jy/beam"); return itsImages[term]; } SHARED_PTR<ImageInterface<Complex> > SIImageStoreMultiTerm::forwardGrid(uInt term){ if( itsForwardGrids[term] )// && (itsForwardGrids[term]->shape() == itsImageShape)) return itsForwardGrids[term]; Vector<Int> whichStokes(0); IPosition cimageShape; cimageShape=itsImageShape; CoordinateSystem cimageCoord = StokesImageUtil::CStokesCoord( itsCoordSys, whichStokes, itsDataPolRep); cimageShape(2)=whichStokes.nelements(); itsForwardGrids[term].reset(new TempImage<Complex>(TiledShape(cimageShape, tileShape()), cimageCoord, memoryBeforeLattice())); return itsForwardGrids[term]; } SHARED_PTR<ImageInterface<Complex> > SIImageStoreMultiTerm::backwardGrid(uInt term){ if( itsBackwardGrids[term] && (itsBackwardGrids[term]->shape() == itsImageShape)) return itsBackwardGrids[term]; // cout << "MT : Making backward grid of shape : " << itsImageShape << endl; Vector<Int> whichStokes(0); IPosition cimageShape; cimageShape=itsImageShape; CoordinateSystem cimageCoord = StokesImageUtil::CStokesCoord( itsCoordSys, whichStokes, itsDataPolRep); cimageShape(2)=whichStokes.nelements(); itsBackwardGrids[term].reset(new TempImage<Complex>(TiledShape(cimageShape, tileShape()), cimageCoord, memoryBeforeLattice())); return itsBackwardGrids[term]; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::alpha() { if( itsAlpha && itsAlpha->shape() == itsImageShape ) { return itsAlpha; } // checkRef( itsAlpha , "alpha" ); itsAlpha = openImage( itsImageName+String(".alpha"), False ); // itsAlpha->setUnits("Alpha"); return itsAlpha; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::beta() { if( itsBeta && itsBeta->shape() == itsImageShape ) { return itsBeta; } // checkRef( itsBeta , "beta" ); itsBeta = openImage( itsImageName+String(".beta"), False ); // itsBeta->setUnits("Beta"); return itsBeta; } SHARED_PTR<ImageInterface<Float> > SIImageStoreMultiTerm::alphaerror() { if( itsAlphaError && itsAlphaError->shape() == itsImageShape ) { return itsAlphaError; } // checkRef( itsAlpha , "alpha" ); itsAlphaError = openImage( itsImageName+String(".alpha.error"), False ); // itsAlpha->setUnits("Alpha"); return itsAlphaError; } // TODO : Move to an image-wrapper class ? Same function exists in SynthesisDeconvolver. Bool SIImageStoreMultiTerm::doesImageExist(String imagename) { LogIO os( LogOrigin("SIImageStoreMultiTerm","doesImageExist",WHERE) ); Directory image( imagename ); return image.exists(); } void SIImageStoreMultiTerm::resetImages( Bool resetpsf, Bool resetresidual, Bool resetweight ) { for(uInt tix=0;tix<2*itsNTerms-1;tix++) { if( resetpsf ) psf(tix)->set(0.0); if( resetweight && itsWeights[tix] ) weight(tix)->set(0.0); if( tix < itsNTerms ) { if( resetresidual ) residual(tix)->set(0.0); } } } void SIImageStoreMultiTerm::addImages( SHARED_PTR<SIImageStore> imagestoadd, Bool addpsf, Bool addresidual, Bool addweight, Bool adddensity) { for(uInt tix=0;tix<2*itsNTerms-1;tix++) { if(addpsf) { LatticeExpr<Float> adderPsf( *(psf(tix)) + *(imagestoadd->psf(tix)) ); psf(tix)->copyData(adderPsf); } if(addweight) { if(getUseWeightImage( *(imagestoadd->sumwt(tix)) ) ) // Access and add weight only if it is needed. { LatticeExpr<Float> adderWeight( *(weight(tix)) + *(imagestoadd->weight(tix)) ); weight(tix)->copyData(adderWeight); } LatticeExpr<Float> adderSumWt( *(sumwt(tix)) + *(imagestoadd->sumwt(tix)) ); sumwt(tix)->copyData(adderSumWt); } if(tix < itsNTerms && addresidual) { LatticeExpr<Float> adderRes( *(residual(tix)) + *(imagestoadd->residual(tix)) ); residual(tix)->copyData(adderRes); } if( tix==0 && adddensity ) { LatticeExpr<Float> adderDensity( *(gridwt()) + *(imagestoadd->gridwt()) ); gridwt()->copyData(adderDensity); } } } void SIImageStoreMultiTerm::dividePSFByWeight(const Float pblimit) { LogIO os( LogOrigin("SIImageStoreMultiTerm","dividePSFByWeight",WHERE) ); //// for(uInt tix=0;tix<2*itsNTerms-1;tix++) for(Int tix=2*itsNTerms-1-1;tix>-1;tix--) // AAH go backwards so that zeroth term is normalized last..... sigh sigh sigh. { //cout << "npsfs : " << itsPsfs.nelements() << " and tix : " << tix << endl; normPSF(tix); if( itsUseWeight ) { divideImageByWeightVal( *weight(tix) ); } } if ( itsUseWeight) { makePBFromWeight(pblimit); } // calcSensitivity(); // createMask } // Make another for the PSF too. void SIImageStoreMultiTerm::divideResidualByWeight(Float pblimit, const String normtype) { LogIO os( LogOrigin("SIImageStoreMultiTerm","divideResidualByWeight",WHERE) ); if( itsUseWeight ) { itsPBScaleFactor = getPbMax(); } for(uInt tix=0;tix<itsNTerms;tix++) { divideImageByWeightVal( *residual(tix) ); // if(doesImageExist(itsImageName+String(".weight.tt0")) ) if( itsUseWeight ) { LatticeExpr<Float> deno; if( normtype=="flatnoise"){ deno = LatticeExpr<Float> ( sqrt( abs(*(weight(0)) ) ) * itsPBScaleFactor ); os << LogIO::NORMAL1 << "Dividing " << itsImageName+String(".residual.tt")+String::toString(tix) ; os << " by [ sqrt(weightimage) * " << itsPBScaleFactor ; os << " ] to get flat noise with unit pb peak."<< LogIO::POST; } if( normtype=="flatsky") { deno = LatticeExpr<Float> ( *(weight(0)) ); os << LogIO::NORMAL1 << "Dividing " << itsImageName+String(".residual.tt")+String::toString(tix) ; os << " by [ weight ] to get flat sky"<< LogIO::POST; } LatticeExpr<Float> mask( iif( (deno) > pblimit , 1.0, 0.0 ) ); LatticeExpr<Float> maskinv( iif( (deno) > pblimit , 0.0, 1.0 ) ); LatticeExpr<Float> ratio( ( (*(residual(tix))) * mask ) / ( deno + maskinv ) ); residual(tix)->copyData(ratio); } } // createMask } void SIImageStoreMultiTerm::divideModelByWeight(Float pblimit, const String normtype) { LogIO os( LogOrigin("SIImageStoreMultiTerm","divideModelByWeight",WHERE) ); if( itsUseWeight // only when needed && hasSensitivity() )// i.e. only when possible. For an initial starting model, don't need wt anyway. { if( normtype=="flatsky") { Array<Float> arrmod; model(0)->get( arrmod, True ); os << "Model is already flat sky with peak flux : " << max(arrmod); os << ". No need to divide before prediction" << LogIO::POST; return; } itsPBScaleFactor = getPbMax(); for(uInt tix=0;tix<itsNTerms;tix++) { os << LogIO::NORMAL1 << "Dividing " << itsImageName+String(".model")+String::toString(tix); os << " by [ sqrt(weight) / " << itsPBScaleFactor ; os <<" ] to get to flat sky model before prediction" << LogIO::POST; LatticeExpr<Float> deno( sqrt( abs(*(weight(0))) ) / itsPBScaleFactor ); LatticeExpr<Float> mask( iif( (deno) > pblimit , 1.0, 0.0 ) ); LatticeExpr<Float> maskinv( iif( (deno) > pblimit , 0.0, 1.0 ) ); LatticeExpr<Float> ratio( ( (*(model(tix))) * mask ) / ( deno + maskinv ) ); itsModels[tix]->copyData(ratio); } } // createMask } void SIImageStoreMultiTerm::multiplyModelByWeight(Float pblimit, const String normtype) { LogIO os( LogOrigin("SIImageStoreMultiTerm","multiplyModelByWeight",WHERE) ); if( itsUseWeight // only when needed && hasSensitivity() )// i.e. only when possible. For an initial starting model, don't need wt anyway. { if( normtype=="flatsky") { os << "Model is already flat sky. No need to multiply back after prediction" << LogIO::POST; return; } itsPBScaleFactor = getPbMax(); for(uInt tix=0;tix<itsNTerms;tix++) { os << LogIO::NORMAL1 << "Multiplying " << itsImageName+String(".model")+String::toString(tix); os << " by [ sqrt(weight) / " << itsPBScaleFactor; os << " ] to take model back to flat noise with unit pb peak." << LogIO::POST; LatticeExpr<Float> deno( sqrt( abs(*(weight(0)) ) ) / itsPBScaleFactor ); LatticeExpr<Float> mask( iif( (deno) > pblimit , 1.0, 0.0 ) ); LatticeExpr<Float> maskinv( iif( (deno) > pblimit , 0.0, 1.0 ) ); LatticeExpr<Float> ratio( ( (*(model(tix))) * mask ) * ( deno + maskinv ) ); itsModels[tix]->copyData(ratio); } } // createMask } void SIImageStoreMultiTerm::restore(GaussianBeam& rbeam, String& usebeam, uInt /*term*/) { LogIO os( LogOrigin("SIImageStoreMultiTerm","restore",WHERE) ); for(uInt tix=0; tix<itsNTerms; tix++) { SIImageStore::restore(rbeam, usebeam, tix); } try { if( itsNTerms > 1) { // Calculate alpha and beta LatticeExprNode leMaxRes = max( *( residual(0) ) ); Float maxres = leMaxRes.getFloat(); Float specthreshold = maxres/10.0; //////////// do something better here..... os << "Calculating spectral parameters for Intensity > peakresidual/10 = " << specthreshold << " Jy/beam" << LogIO::POST; LatticeExpr<Float> mask1(iif(((*(image(0))))>(specthreshold),1.0,0.0)); LatticeExpr<Float> mask0(iif(((*(image(0))))>(specthreshold),0.0,1.0)); ///////////////////////////////////////////////////////// /////// Calculate alpha LatticeExpr<Float> alphacalc( (((*(image(1))))*mask1)/(((*(image(0))))+(mask0)) ); alpha()->copyData(alphacalc); ImageInfo ii = image(0)->imageInfo(); // Set the restoring beam for alpha alpha()->setImageInfo(ii); //alpha()->table().unmarkForDelete(); // Make a mask for the alpha image LatticeExpr<Bool> lemask(iif(((*(image(0))) > specthreshold) , True, False)); createMask( lemask, (alpha()) ); ///////////////////////////////////////////////////////// /////// Calculate alpha error Bool writeerror=True; if(writeerror) { // String alphaerrorname( alpha()->name() + ".error" ); //PagedImage<Float> imalphaerror(itsImageShape,itsCoordSys,alphaerrorname); alphaerror()->set(0.0); // PagedImage<Float> residual1(residualNames[getModelIndex(field,1)]); LatticeExpr<Float> alphacalcerror( abs(alphacalc) * sqrt( ( (*residual(0)*mask1)/(*image(0)+mask0) )*( (*residual(0)*mask1)/(*image(0)+mask0) ) + ( (*residual(1)*mask1)/(*image(1)+mask0) )*( (*residual(1)*mask1)/(*image(1)+mask0) ) ) ); alphaerror()->copyData(alphacalcerror); alphaerror()->setImageInfo(ii); createMask(lemask, alphaerror()); // alphaerror()->table().unmarkForDelete(); os << "Written Spectral Index Error Image : " << alphaerror()->name() << LogIO::POST; }//if writeerror if(itsNTerms>2) // calculate beta too. { beta()->set(0.0); //PagedImage<Float> imtaylor2(restoredNames[getModelIndex(field,2)]); LatticeExpr<Float> betacalc( (*image(2)*mask1)/((*image(0))+(mask0))-0.5*(*alpha())*((*alpha())-1.0) ); beta()->copyData(betacalc); beta()->setImageInfo(ii); //imbeta.setUnits(Unit("Spectral Curvature")); createMask(lemask, beta()); // beta()->table().unmarkForDelete(); os << "Written Spectral Curvature Image : " << beta()->name() << LogIO::POST; } }//if nterms>1 } catch(AipsError &x) { throw( AipsError("Multi-Term Restoration Error : " + x.getMesg() ) ); } } void SIImageStoreMultiTerm::pbcorPlane() { LogIO os( LogOrigin("SIImageStoreMultiTerm","pbcorPlane",WHERE) ); } void SIImageStoreMultiTerm::calcSensitivity() { LogIO os( LogOrigin("SIImageStoreMultiTerm","calcSensitivity",WHERE) ); // Construct Hessian. Matrix<Float> hess(IPosition(2,itsNTerms,itsNTerms)); for(uInt tay1=0;tay1<itsNTerms;tay1++) for(uInt tay2=0;tay2<itsNTerms;tay2++) { //uInt taymin = (tay1<=tay2)? tay1 : tay2; //uInt taymax = (tay1>=tay2)? tay1 : tay2; //uInt ind = (taymax*(taymax+1)/2)+taymin; uInt ind = tay1+tay2; AlwaysAssert( ind < 2*itsNTerms-1, AipsError ); Array<Float> lsumwt; sumwt( ind )->get( lsumwt, False ); // cout << "lsumwt shape : " << lsumwt.shape() << endl; AlwaysAssert( lsumwt.shape().nelements()==4, AipsError ); AlwaysAssert( lsumwt.shape()[0]>0, AipsError ); // hess(tay1,tay2) = lsumwt(IPosition(1,0)); //Always pick sumwt from first facet only. hess(tay1,tay2) = lsumwt(IPosition(4,0,0,0,0)); //Always pick sumwt from first facet only. } os << "Multi-Term Hessian Matrix : " << hess << LogIO::POST; // Invert Hessian. try { Float deter=0.0; Matrix<Float> invhess; invertSymPosDef(invhess,deter,hess); os << "Multi-Term Covariance Matrix : " << invhess << LogIO::POST; // Just print the sqrt of the diagonal elements. for(uInt tix=0;tix<itsNTerms;tix++) { os << "[" << itsImageName << "][Taylor"<< tix << "] Theoretical sensitivity (Jy/bm):" ; if( invhess(tix,tix) > 0.0 ) { os << sqrt(invhess(tix,tix)) << LogIO::POST; } else { os << "none" << LogIO::POST; } } } catch(AipsError &x) { os << LogIO::WARN << "Cannot invert Hessian Matrix : " << x.getMesg() << " || Calculating approximate sensitivity " << LogIO::POST; // Approximate : 1/h^2 for(uInt tix=0;tix<itsNTerms;tix++) { Array<Float> lsumwt; AlwaysAssert( 2*tix < 2*itsNTerms-1, AipsError ); sumwt(2*tix)->get( lsumwt , False ); IPosition shp( lsumwt.shape() ); //cout << "Sumwt shape : " << shp << " : " << lsumwt << endl; //AlwaysAssert( shp.nelements()==4 , AipsError ); os << "[" << itsImageName << "][Taylor"<< tix << "] Approx Theoretical sensitivity (Jy/bm):" ; IPosition it(4,0,0,0,0); for ( it[0]=0; it[0]<shp[0]; it[0]++) for ( it[1]=0; it[1]<shp[1]; it[1]++) for ( it[2]=0; it[2]<shp[2]; it[2]++) for ( it[3]=0; it[3]<shp[3]; it[3]++) { if( shp[0]>1 ){os << "f"<< it[0]+(it[1]*shp[0]) << ":" ;} if( lsumwt( it ) > 1e-07 ) { os << 1.0/(sqrt(lsumwt(it))) << " " ; } else { os << "none" << " "; } } os << LogIO::POST; } } } // Check for non-zero model (this is different from getting model flux, for derived SIIMMT) Bool SIImageStoreMultiTerm::isModelEmpty() { /// There MUST be a more efficient way to do this !!!!! I hope. /// Maybe save this info and change it anytime model() is accessed.... Bool emptymodel=True; for(uInt tix=0;tix<itsNTerms;tix++) { if( fabs( sum(model(tix)->get()) ) > 1e-08 ) emptymodel=False; } return emptymodel; } void SIImageStoreMultiTerm::printImageStats() { LogIO os( LogOrigin("SIImageStoreMultiTerm","printImageStats",WHERE) ); Float minresmask, maxresmask, minres, maxres; findMinMax( residual()->get(), mask()->get(), minres, maxres, minresmask, maxresmask ); os << "[" << itsImageName << "]" ; os << " Peak residual (max,min) " ; if( minresmask!=0.0 || maxresmask!=0.0 ) { os << "within mask : (" << maxresmask << "," << minresmask << ") "; } os << "over full image : (" << maxres << "," << minres << ")" << LogIO::POST; os << "[" << itsImageName << "] Total Model Flux : " ; for(uInt tix=0;tix<itsNTerms;tix++) {os << getModelFlux(tix) << "(tt" << String::toString(tix) << ")"; } os<<LogIO::POST; } SHARED_PTR<SIImageStore> SIImageStoreMultiTerm::getSubImageStore(const Int facet, const Int nfacets, const Int chan, const Int nchanchunks, const Int pol, const Int npolchunks) { return SHARED_PTR<SIImageStore>(new SIImageStoreMultiTerm(itsModels, itsResiduals, itsPsfs, itsWeights, itsImages, itsSumWts, itsMask, itsAlpha, itsBeta, itsAlphaError, itsCoordSys,itsParentImageShape, itsImageName, facet, nfacets,chan,nchanchunks,pol,npolchunks)); } ////////////////////////////////////////////////////////////////////////////////////////////////////// // //------------------------------------------------------------- // Initialize the internals of the object. Perhaps other such // initializations in the constructors can be moved here too. // void SIImageStoreMultiTerm::init() { imageExts.resize(MAX_IMAGE_IDS); imageExts(MASK)=".mask"; imageExts(PSF)=".psf"; imageExts(MODEL)=".model"; imageExts(RESIDUAL)=".residual"; imageExts(WEIGHT)=".weight"; imageExts(IMAGE)=".image"; imageExts(SUMWT)=".sumwt"; imageExts(GRIDWT)=".gridwt"; imageExts(PB)=".pb"; imageExts(FORWARDGRID)=".forward"; imageExts(BACKWARDGRID)=".backward"; itsParentPsfs.resize(itsPsfs.nelements()); itsParentModels.resize(itsModels.nelements()); itsParentResiduals.resize(itsResiduals.nelements()); itsParentWeights.resize(itsWeights.nelements()); itsParentImages.resize(itsImages.nelements()); itsParentSumWts.resize(itsSumWts.nelements()); itsParentPsfs = itsPsfs; itsParentModels=itsModels; itsParentResiduals=itsResiduals; itsParentWeights=itsWeights; itsParentImages=itsImages; itsParentSumWts=itsSumWts; itsParentMask=itsMask; itsParentImageShape = itsImageShape; if( itsNFacets>1 || itsNChanChunks>1 || itsNPolChunks>1 ) { itsImageShape=IPosition(4,0,0,0,0); } } /* Bool SIImageStoreMultiTerm::getUseWeightImage() { if( itsParentSumWts.nelements()==0 || ! itsParentSumWts[0] ) {return False;} else { Bool ret = SIImageStore::getUseWeightImage( *(itsParentSumWts[0]) ); return ret; } } */ ////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////// } //# NAMESPACE CASA - END
[ "darrell@schiebel.us" ]
darrell@schiebel.us
00b50a7b40ed9b05301d87b413cd8fdbbf0be452
cff9a867a30cd0478a659f200e657401555ab13c
/Windows/OldEksamensOPRG/Reeksamen Jan16/e16opg4.h
3881e0e8beee353529297d2072d4d60825c19e91
[]
no_license
AndreasAHN/AHN2018
a1e6d6a33503cfbf56e8c1051c9cb1258563d77e
f41e165674f3ca50e5799433a00863da50eb08ed
refs/heads/master
2020-03-08T00:50:55.082617
2018-09-09T23:07:51
2018-09-09T23:07:51
127,815,266
0
0
null
null
null
null
UTF-8
C++
false
false
293
h
#pragma once #include "e16opg5.h" class Taxa { public: Taxa(int vognNummer, int maxAntalKunder); void setErDrift(bool iDrift); void setErLedig(bool ledig); void udskrivStatus()const; private: int vognNummer_; int maxAntalKunder_; bool erIDrift_; bool erLedig_; };
[ "andreas.hervert@gmail.com" ]
andreas.hervert@gmail.com
301fcb8c103dc5c5f4ecff5181c077e391710f34
ca4471cd7cbc445953244aa71b1999b8c290b5f4
/farm/farm/QuestTable.cpp
8b21b25be89db8b4e0862ed902e7edb9d63ab40c
[]
no_license
YangHun/d3d12-example-farm
e2bed7b3d64f0403504d1977b37ad7f15cbe518d
25b7b19af41fee32b7add4a10320f85d11aec675
refs/heads/master
2021-01-05T01:37:25.601418
2020-03-31T12:58:07
2020-03-31T12:58:07
240,831,755
1
0
null
null
null
null
UTF-8
C++
false
false
323
cpp
#include "stdafx.h" #include "Objects.h" QuestTable::QuestTable() { SetTag("QuestTable"); GetRenderer()->SetMesh("Assets/table.fbx"); GetCollider()->SetBoundFromMesh(GetRenderer()->meshDesc()); } void QuestTable::Update(float dt) { } void QuestTable::Interact() { Notify(nullptr, E_Event::TABLE_INTERACT_CLICKED); }
[ "pitahano@gmail.com" ]
pitahano@gmail.com
309888b30219beb00c58b3c3b8eebb049553e412
fe4ac813edf7cece997d4a02940c1aed40efe4b7
/src/Fryer.h
36daf3ed394299d1d3c95f05a6196a1ac5110d6d
[]
no_license
piotrek-k/SO2_Projekt_2
0d312f1a8c954080f909e04168fbc898b595d128
d5272a1352ce3e59e649a6a452069cf3575b5857
refs/heads/master
2022-10-22T22:09:08.464478
2020-06-15T13:50:07
2020-06-15T13:50:07
258,800,293
0
0
null
null
null
null
UTF-8
C++
false
false
479
h
#ifndef SO2_PROJEKT_FRYER #define SO2_PROJEKT_FRYER #include <mutex> #include <functional> #include "Worker.h" enum FryerState { Inactive, WorkingAndFoodNotYetPrepared, WorkingAndFoodBurnt }; class Worker; class Fryer { private: std::mutex mtx; bool taken = false; public: Fryer(); ~Fryer(); bool TryToLockAndExecute(Worker *w, const std::function<void(Worker *)> &action); bool IsTaken() { return taken; } }; #endif //SO2_PROJEKT_FRYER
[ "kpiotrek3@gmail.com" ]
kpiotrek3@gmail.com
6022ee97664c2fb79d5ad240d6f99ae5bec0aa8c
325d0ecf79bec8e3d630c26195da689ea5bb567e
/nimbro/motion/indep_cpg_gait/src/gaitcode/RobotControl/Percept.h
95c40c6c0f0a26dd072a8fdebae38eede4d85db1
[]
no_license
nvtienanh/Hitechlab_humanoid
ccaac64885967334f41a161f1684ff3a1571ab0f
34c899f70af7390b9fbdb1a1ad03faf864a550be
refs/heads/master
2020-04-22T10:34:21.944422
2016-08-28T06:02:00
2016-08-28T06:02:00
66,521,772
2
0
null
null
null
null
UTF-8
C++
false
false
319
h
#ifndef PERCEPT_H_ #define PERCEPT_H_ #include "Action.h" #include "util/Vec2f.h" // The percept struct contains the raw sensor data received from the robot / simulation. namespace indep_cpg_gait { struct Percept { Vec2f fusedAngle; Vec2f DfusedAngle; Pose pose; }; } #endif // PERCEPT_H_
[ "nvtienanh@gmail.com" ]
nvtienanh@gmail.com
f9da8f7f503cc2ba8e464abac4dd56ee21c23647
3242efa02269cacff87891448dd4c532e3bef882
/InterestingXOR.cpp
a683ead0bbe190148a62d126c93b66e7b76e554b
[]
no_license
m0hit312000/CppPrograms
35419ca81450aa4afdd9ffe79c8870ae1c0530be
da1f2ca1f625833d293c8bd471ca13ef76cc6055
refs/heads/master
2023-04-03T14:48:58.733788
2021-04-13T17:59:21
2021-04-13T17:59:21
286,248,881
0
0
null
null
null
null
UTF-8
C++
false
false
1,425
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i, a, b) for (int i = a; i < b; i++) #define REV(i, a, b) for (int i = a; i >= b; i--) #define vi vector<int> #define vl vector<long long> int main() { ll t; cin >> t; while (t--) { ll c, no1 = 0, no2 = 0; vi a, b, bin; cin >> c; while (c > 0) { bin.push_back(c % 2); c = c / 2; } reverse(bin.begin(), bin.end()); REP(i, 0, bin.size()) { if (i == 0) { if (bin[0] == 1) { a.push_back(1); b.push_back(0); } else if (bin[i] == 0) { a.push_back(0); b.push_back(0); } } else if (bin[i] == 0) { a.push_back(1); b.push_back(1); } else if (bin[i] == 1) { a.push_back(0); b.push_back(1); } } reverse(a.begin(), a.end()); reverse(b.begin(), b.end()); REV(i, a.size() - 1, 0) { no1 += pow(2, i) * a[i]; } REV(i, b.size() - 1, 0) { no2 += pow(2, i) * b[i]; } cout << no1 * no2 << "\n"; } }
[ "mm8085574989@gmail.com" ]
mm8085574989@gmail.com
5334c9e04defb26aa4c0a74167c5981696708821
6ec6ebbd57752e179c3c74cb2b5d2d3668e91110
/rsase/SgBagUML/src/ihm/vuecanevas.h
3b31a2792b274f039f6c16dac0ef57047bddbe4b
[]
no_license
padenot/usdp
6e0562a18d2124f1970fb9f2029353c92fdc4fb4
a3ded795e323e5a2e475ade08839b0f2f41b192b
refs/heads/master
2016-09-05T15:24:53.368597
2010-11-25T16:13:47
2010-11-25T16:13:47
1,106,052
0
0
null
null
null
null
UTF-8
C++
false
false
2,030
h
#ifndef VUE_CANEVAS_H #define VUE_CANEVAS_H #include <QGraphicsItem> class FenetrePrincipale; /** * Classe abstraite, qui permet de définir des implémentation * de méthodes communes au éléments graphiques. */ class VueCanevas: public QGraphicsItem { public: /** * Classe abstraite, qui permet de définir des implémentation * de méthodes communes au éléments graphiques. * @param fenetrePrincipale Un référence sur la fenêtre principale. */ explicit VueCanevas(FenetrePrincipale& fenetrePrincipale); /** * Constructeur prenant un rectangle, qui sera la boite englobante * de l'élément graphique. * @param fenetrePrincipale Une référence sur la fenêtre principale. * @param boundingBox La boundingbox de l'élément graphique. * @return */ VueCanevas(FenetrePrincipale& fenetrePrincipale, QRectF boundingBox); /** * Un accesseur pour la bounding box, permettant d'optimiser le dessin. * @return La boite englobante de l'objet, incluant les marges. */ QRectF boundingRect() const; protected : /** * Un accesseur en écriture pour les coordonnées de l'objet graphique. * @param positionDebut La position du début de l'objet. * @param positionFin La position de fin de l'objet. * @param largeur La largeur de l'objet. * @param ajoutLongueurApresFin Une marge après la fin de l'objet. * @param ajoutLongueurAvantDebut Une marge avant le début de l'objet. */ void definirCoordonnees(QPointF positionDebut, QPointF positionFin, double largeur, double ajoutLongueurApresFin = 0, double ajoutLongueurAvantDebut = 0); /** * @var fenetrePrincipale Référence vers la fenêtre principale. */ FenetrePrincipale& _fenetrePrincipale; /** * Le rectangle englobant pour l'objet, au plus serré (sans les marges). */ QRectF _rect; }; #endif // VUE_CANEVAS_H
[ "golumbeanu.monica@gmail.com" ]
golumbeanu.monica@gmail.com
eeb28be50d77a8af8fb73f4feb40646e0e8c8b7b
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5634697451274240_1/C++/amalykh/Source1.cpp
2165d46058f35b1d19a88b0c49d7480b1e8b6a75
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
831
cpp
#define _CRT_SECURE_NO_WARNINGS #pragma comment(linker, "/STACK:134217728") #include <algorithm> #include <iostream> #include <string> #include <cstring> #include <cstdio> #include <cstdlib> #include <set> #include <vector> #include <map> #include <sstream> #include <queue> #include <ctime> typedef long long ll; #define mp make_pair #define mt(a, b, c) mp(a, mp(b, c)) #define ZERO(x) memset((x), 0, sizeof(x)) using namespace std; int main() { #ifdef XXX freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif int t; scanf("%d", &t); for (int w = 0; w < t; w++) { string s; cin >> s; s.push_back('+'); int ans = 0; for (int i = 1; i < s.size(); i++) if (s[i] != s[i - 1]) ans++; printf("Case #%d: %d\n", w + 1, ans); } return 0; }
[ "alexandra1.back@gmail.com" ]
alexandra1.back@gmail.com
0bbec4e1cd02ba01ea57b6784b06dc62464ea3cf
85ec0860a0a9f5c0c0f0d81ce3cc0baf4b2a812e
/soulng/spg/Domain.hpp
c1bb264bdbc5ebcf3453ee67026124cd6dfda265
[]
no_license
slaakko/soulng
3218185dc808fba63e2574b3a158fa1a9f0b2661
a128a1190ccf71794f1bcbd420357f2c85fd75f1
refs/heads/master
2022-07-27T07:30:20.813581
2022-04-30T14:22:44
2022-04-30T14:22:44
197,632,580
2
0
null
null
null
null
UTF-8
C++
false
false
2,020
hpp
// ================================= // Copyright (c) 2022 Seppo Laakko // Distributed under the MIT license // ================================= #ifndef SOULNG_SPG_DOMAIN_INCLUDED #define SOULNG_SPG_DOMAIN_INCLUDED #include <soulng/spg/ParserFile.hpp> #include <soulng/spg/Tokens.hpp> #include <soulng/util/CodeFormatter.hpp> #include <map> namespace soulng { namespace spg { class Domain { public: Domain(); void SetName(const std::string& name_); void Accept(Visitor& visitor); void AddParserFile(ParserFile* parserFile); const std::vector<ParserFile*>& ParserFiles() const { return parserFiles; } void AddParser(GrammarParser* parser); GrammarParser* GetParser(const std::u32string& parserName) const; const std::string& RuleHeaderFilePath() const { return ruleHeaderFilePath; } void SetRuleHeaderFilePath(const std::string& ruleHeaderFilePath_); const std::string& RuleSourceFilePath() const { return ruleSourceFilePath; } void SetRuleSourceFilePath(const std::string& ruleSourceFilePath_); void SetRecovery() { recovery = true; } bool Recovery() const { return recovery; } bool InverseAdded() const { return inverseAdded; } void SetInverseAdded() { inverseAdded = true; } void SetTokens(Tokens* tokens_) { tokens.reset(tokens_); } Tokens* GetTokens() const { return tokens.get(); } void Write(CodeFormatter& formatter); RuleParser* Start() const { return start; } void SetStart(RuleParser* start_) { start = start_; } void AddRule(RuleParser* rule); const std::vector<RuleParser*>& Rules() const { return rules; } private: std::string name; std::vector<ParserFile*> parserFiles; std::unique_ptr<Tokens> tokens; std::string ruleHeaderFilePath; std::string ruleSourceFilePath; std::map<std::u32string, GrammarParser*> parserMap; bool recovery; bool inverseAdded; RuleParser* start; std::vector<RuleParser*> rules; }; } } // namespae soulng::spg #endif // SOULNG_SPG_DOMAIN_INCLUDED
[ "slaakko@gmail.com" ]
slaakko@gmail.com
44b0f7125194375a06e2ca4d91337b18d02c8c2c
24a0e03c45f95d5bf36422653792f79105bc9491
/Leetcode/198_HouseRobber.cc
4d621482edcc69bf8c484d5084fe6530885b275f
[]
no_license
csc19960608/Wu-Algorithm
f7e58d1d604fef2e4bf005c5a2a99119bdd8550e
facaba3e0fc9b57fff9ce4e2b384796ea8d45a99
refs/heads/master
2021-09-01T17:19:24.724575
2017-12-28T03:03:09
2017-12-28T03:03:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
428
cc
#include<vector> using namespace std; //数组中的最大和序列,要求序列中元素不能相邻 class Solution { public: int rob(vector<int>& nums) { int taken=0; int nontaken=0; int maxprofit=0; for(int i=0;i<nums.size();++i){ taken=nums[i]+nontaken; nontaken=maxprofit; maxprofit=max(taken,nontaken); } return maxprofit; } };
[ "jt26wzz@icloud.com" ]
jt26wzz@icloud.com
9a408cefe6fc301d4dc58a8866cae5221e915263
fe73b179108ab6c0b5eed9c7decee2817a237f5f
/include/tpf/math/tpf_quaternion.inl
1d74aa948af3bef2a6e619a530eea832d56e54b6
[ "MIT" ]
permissive
UniStuttgart-VISUS/tpf
d9c7f275e7b1e1a7609afb5ee69b8b48e779b450
7563000f1f7abca2156b3b1f6393f2db3c1c1f3d
refs/heads/master
2023-08-03T17:36:30.897646
2023-07-24T18:35:34
2023-07-24T18:35:34
159,207,802
0
3
MIT
2023-05-17T16:46:24
2018-11-26T17:31:02
C++
UTF-8
C++
false
false
8,055
inl
#include "tpf_quaternion.h" #include "tpf_math_defines.h" #include "Eigen/Dense" #include <cmath> #include <iostream> namespace tpf { namespace math { template <typename floatp_t> inline quaternion<floatp_t>::quaternion() : real(1.0), imaginary(0.0, 0.0, 0.0) { } template <typename floatp_t> inline quaternion<floatp_t>::quaternion(floatp_t real) : real(real), imaginary(0.0, 0.0, 0.0) { } template <typename floatp_t> inline quaternion<floatp_t>::quaternion(const Eigen::Matrix<floatp_t, 3, 1>& imaginary) : real(1.0), imaginary(imaginary) { } template <typename floatp_t> inline quaternion<floatp_t>::quaternion(floatp_t real, const Eigen::Matrix<floatp_t, 3, 1>& imaginary) : real(real), imaginary(imaginary) { } template <typename floatp_t> inline quaternion<floatp_t>::quaternion(const quaternion<floatp_t>& copy) { this->real = copy.real; this->imaginary = copy.imaginary; } template <typename floatp_t> inline quaternion<floatp_t>& quaternion<floatp_t>::operator=(const quaternion<floatp_t>& copy) { this->real = copy.real; this->imaginary = copy.imaginary; return *this; } template <typename floatp_t> inline quaternion<floatp_t>& quaternion<floatp_t>::operator=(floatp_t new_real) { this->real = new_real; this->imaginary.setZero(); return *this; } template <typename floatp_t> inline quaternion<floatp_t>& quaternion<floatp_t>::operator=(const Eigen::Matrix<floatp_t, 3, 1>& new_imaginary) { this->real = 1.0; this->imaginary = new_imaginary; return *this; } template <typename floatp_t> inline quaternion<floatp_t> quaternion<floatp_t>::operator*(const quaternion<floatp_t>& other) const { quaternion<floatp_t> copy(*this); return copy *= other; } template <typename floatp_t> inline quaternion<floatp_t>& quaternion<floatp_t>::operator*=(const quaternion<floatp_t>& other) { const floatp_t real = this->real * other.real - this->imaginary.dot(other.imaginary); const Eigen::Matrix<floatp_t, 3, 1> imaginary = this->real * other.imaginary + other.real * this->imaginary + this->imaginary.cross(other.imaginary); this->real = real; this->imaginary = imaginary; return *this; } template <typename floatp_t> template <typename U> inline Eigen::Matrix<U, 3, 1> quaternion<floatp_t>::rotate(const Eigen::Matrix<U, 3, 1>& vec) const { return ((*this) * quaternion<floatp_t>(static_cast<floatp_t>(0.0), vec) * this->inverse()).get_imaginary(); } template <typename floatp_t> inline bool quaternion<floatp_t>::operator==(const quaternion& other) const { return equals(this->real, other.real, static_cast<floatp_t>(std::min(this->real, other.real) * 0.00001)) && this->imaginary.isApprox(other.imaginary); } template <typename floatp_t> inline const floatp_t& quaternion<floatp_t>::get_real() const { return this->real; } template <typename floatp_t> inline floatp_t& quaternion<floatp_t>::get_real() { return this->real; } template <typename floatp_t> inline void quaternion<floatp_t>::set_real(floatp_t new_real) { this->real = new_real; } template <typename floatp_t> inline const Eigen::Matrix<floatp_t, 3, 1>& quaternion<floatp_t>::get_imaginary() const { return this->imaginary; } template <typename floatp_t> inline Eigen::Matrix<floatp_t, 3, 1>& quaternion<floatp_t>::get_imaginary() { return this->imaginary; } template <typename floatp_t> inline void quaternion<floatp_t>::set_imaginary(const Eigen::Matrix<floatp_t, 3, 1>& new_imaginary) { this->imaginary = new_imaginary; } template <typename floatp_t> inline quaternion<floatp_t> quaternion<floatp_t>::inverse() const { quaternion<floatp_t> copy(*this); return copy.invert(); } template <typename floatp_t> inline quaternion<floatp_t>& quaternion<floatp_t>::invert() { const floatp_t sqr_norm = squared_norm(); conjugate(); this->real /= sqr_norm; this->imaginary /= sqr_norm; return *this; } template <typename floatp_t> inline quaternion<floatp_t> quaternion<floatp_t>::conjugation() const { quaternion<floatp_t> copy(*this); return copy.conjugate(); } template <typename floatp_t> inline quaternion<floatp_t>& quaternion<floatp_t>::conjugate() { this->imaginary *= -1.0; return *this; } template <typename floatp_t> inline quaternion<floatp_t> quaternion<floatp_t>::normalized() const { quaternion<floatp_t> copy(*this); return copy.normalize(); } template <typename floatp_t> inline quaternion<floatp_t>& quaternion<floatp_t>::normalize() { const floatp_t my_norm = norm(); this->real /= my_norm; this->imaginary /= my_norm; return *this; } template <typename floatp_t> inline floatp_t quaternion<floatp_t>::norm() const { return std::sqrt(squared_norm()); } template <typename floatp_t> inline floatp_t quaternion<floatp_t>::squared_norm() const { return this->real * this->real + this->imaginary.squaredNorm(); } template <typename floatp_t> inline Eigen::Matrix<floatp_t, 3, 1> quaternion<floatp_t>::to_axis() const { return Eigen::Matrix<floatp_t, 3, 1>(static_cast<floatp_t>(2.0L) * std::atan2(this->imaginary.norm(), this->real) * this->imaginary.normalized()); } template <typename floatp_t> inline void quaternion<floatp_t>::from_axis(const Eigen::Matrix<floatp_t, 3, 1>& axis, const floatp_t scaling) { const auto theta = scaling * axis.norm(); this->real = std::cos(theta / static_cast<floatp_t>(2.0)); this->imaginary = axis.normalized() * std::sin(theta / static_cast<floatp_t>(2.0)); } template <typename floatp_t> inline Eigen::Matrix<floatp_t, 3, 3> quaternion<floatp_t>::to_matrix() const { Eigen::Matrix<floatp_t, 3, 3> cross_matrix; cross_matrix.setZero(); cross_matrix(0, 1) = -this->imaginary[2]; cross_matrix(0, 2) = this->imaginary[1]; cross_matrix(1, 0) = this->imaginary[2]; cross_matrix(1, 2) = -this->imaginary[0]; cross_matrix(2, 0) = -this->imaginary[1]; cross_matrix(2, 1) = this->imaginary[0]; const auto s = (1.0 / squared_norm()); return s * ( this->imaginary * this->imaginary.transpose() + this->real * this->real * Eigen::Matrix<floatp_t, 3, 3>::Identity() + 2.0 * this->real * cross_matrix + cross_matrix * cross_matrix); } template <typename floatp_t> inline std::ostream& operator<<(std::ostream& stream, const quaternion<floatp_t>& quaternion) { stream << "[" << quaternion.get_real() << ", (" << quaternion.get_imaginary()[0] << ", " << quaternion.get_imaginary()[1] << ", " << quaternion.get_imaginary()[2] << ")]"; return stream; } } }
[ "alexander.straub@visus.uni-stuttgart.de" ]
alexander.straub@visus.uni-stuttgart.de
5c747cf2c831a3386873e8acc98af24f4874c901
49eb0d08311529b1d2375429a9cbb5582d77fd2d
/src/bench/ccoins_caching.cpp
62a326d2ae05d3718f7de9c61c673e5b179bf074
[ "MIT" ]
permissive
mario1987/deimos
bcbaa7b4ed617a70c37047e6590264941b94a170
72cb8c33b5a6d4e09e4019602db7cea8c686d505
refs/heads/master
2020-03-19T23:11:08.313125
2018-06-11T23:06:30
2018-06-11T23:06:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,476
cpp
// Copyright (c) 2016 The DeiMos Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "bench.h" #include "coins.h" #include "policy/policy.h" #include "wallet/crypter.h" #include <vector> // FIXME: Dedup with SetupDummyInputs in test/transaction_tests.cpp. // // Helper: create two dummy transactions, each with // two outputs. The first has 11 and 50 CENT outputs // paid to a TX_PUBKEY, the second 21 and 22 CENT outputs // paid to a TX_PUBKEYHASH. // static std::vector<CMutableTransaction> SetupDummyInputs(CBasicKeyStore& keystoreRet, CCoinsViewCache& coinsRet) { std::vector<CMutableTransaction> dummyTransactions; dummyTransactions.resize(2); // Add some keys to the keystore: CKey key[4]; for (int i = 0; i < 4; i++) { key[i].MakeNewKey(i % 2); keystoreRet.AddKey(key[i]); } // Create some dummy input transactions dummyTransactions[0].vout.resize(2); dummyTransactions[0].vout[0].nValue = 11 * CENT; dummyTransactions[0].vout[0].scriptPubKey << ToByteVector(key[0].GetPubKey()) << OP_CHECKSIG; dummyTransactions[0].vout[1].nValue = 50 * CENT; dummyTransactions[0].vout[1].scriptPubKey << ToByteVector(key[1].GetPubKey()) << OP_CHECKSIG; coinsRet.ModifyCoins(dummyTransactions[0].GetHash())->FromTx(dummyTransactions[0], 0); dummyTransactions[1].vout.resize(2); dummyTransactions[1].vout[0].nValue = 21 * CENT; dummyTransactions[1].vout[0].scriptPubKey = GetScriptForDestination(key[2].GetPubKey().GetID()); dummyTransactions[1].vout[1].nValue = 22 * CENT; dummyTransactions[1].vout[1].scriptPubKey = GetScriptForDestination(key[3].GetPubKey().GetID()); coinsRet.ModifyCoins(dummyTransactions[1].GetHash())->FromTx(dummyTransactions[1], 0); return dummyTransactions; } // Microbenchmark for simple accesses to a CCoinsViewCache database. Note from // laanwj, "replicating the actual usage patterns of the client is hard though, // many times micro-benchmarks of the database showed completely different // characteristics than e.g. reindex timings. But that's not a requirement of // every benchmark." // (https://github.com/deimos/deimos/issues/7883#issuecomment-224807484) static void CCoinsCaching(benchmark::State& state) { CBasicKeyStore keystore; CCoinsView coinsDummy; CCoinsViewCache coins(&coinsDummy); std::vector<CMutableTransaction> dummyTransactions = SetupDummyInputs(keystore, coins); CMutableTransaction t1; t1.vin.resize(3); t1.vin[0].prevout.hash = dummyTransactions[0].GetHash(); t1.vin[0].prevout.n = 1; t1.vin[0].scriptSig << std::vector<unsigned char>(65, 0); t1.vin[1].prevout.hash = dummyTransactions[1].GetHash(); t1.vin[1].prevout.n = 0; t1.vin[1].scriptSig << std::vector<unsigned char>(65, 0) << std::vector<unsigned char>(33, 4); t1.vin[2].prevout.hash = dummyTransactions[1].GetHash(); t1.vin[2].prevout.n = 1; t1.vin[2].scriptSig << std::vector<unsigned char>(65, 0) << std::vector<unsigned char>(33, 4); t1.vout.resize(2); t1.vout[0].nValue = 90 * CENT; t1.vout[0].scriptPubKey << OP_1; // Benchmark. while (state.KeepRunning()) { bool success = AreInputsStandard(t1, coins); assert(success); CAmount value = coins.GetValueIn(t1); assert(value == (50 + 21 + 22) * CENT); } } BENCHMARK(CCoinsCaching);
[ "support@lipcoins.org" ]
support@lipcoins.org
9ec3dc7990ab8ddafb5fa037a2cb7e18995c33ed
e08ebd3daae7d0c9a578aced6be490ef9c560fdc
/Source/Atomic/IO/Serializer.cpp
3951e0da5b5281242a05282a14a550525b292045
[ "MIT", "BSD-3-Clause", "Zlib", "LicenseRef-scancode-openssl", "LicenseRef-scancode-khronos", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "NTP" ]
permissive
bryant1410/AtomicGameEngine
86070cb6f575c9d6fdb0de12b66ac1ec295e55c8
51286ffc4102dcf2b633d36d5c0cb2dae9817302
refs/heads/master
2021-01-19T19:56:23.085734
2017-04-17T03:41:20
2017-04-17T03:41:20
88,465,101
1
0
null
2017-04-17T03:41:21
2017-04-17T03:41:21
null
UTF-8
C++
false
false
10,781
cpp
// // Copyright (c) 2008-2016 the Urho3D project. // // 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 "../Precompiled.h" #include "../IO/Serializer.h" #include "../DebugNew.h" namespace Atomic { static const float q = 32767.0f; Serializer::~Serializer() { } bool Serializer::WriteInt64(long long value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteInt(int value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteShort(short value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteByte(signed char value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteUInt64(unsigned long long value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteUInt(unsigned value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteUShort(unsigned short value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteUByte(unsigned char value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteBool(bool value) { return WriteUByte((unsigned char)(value ? 1 : 0)) == 1; } bool Serializer::WriteFloat(float value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteDouble(double value) { return Write(&value, sizeof value) == sizeof value; } bool Serializer::WriteIntRect(const IntRect& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteIntVector2(const IntVector2& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteRect(const Rect& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteVector2(const Vector2& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteVector3(const Vector3& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WritePackedVector3(const Vector3& value, float maxAbsCoord) { short coords[3]; float v = 32767.0f / maxAbsCoord; coords[0] = (short)(Clamp(value.x_, -maxAbsCoord, maxAbsCoord) * v + 0.5f); coords[1] = (short)(Clamp(value.y_, -maxAbsCoord, maxAbsCoord) * v + 0.5f); coords[2] = (short)(Clamp(value.z_, -maxAbsCoord, maxAbsCoord) * v + 0.5f); return Write(&coords[0], sizeof coords) == sizeof coords; } bool Serializer::WriteVector4(const Vector4& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteQuaternion(const Quaternion& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WritePackedQuaternion(const Quaternion& value) { short coords[4]; Quaternion norm = value.Normalized(); coords[0] = (short)(Clamp(norm.w_, -1.0f, 1.0f) * q + 0.5f); coords[1] = (short)(Clamp(norm.x_, -1.0f, 1.0f) * q + 0.5f); coords[2] = (short)(Clamp(norm.y_, -1.0f, 1.0f) * q + 0.5f); coords[3] = (short)(Clamp(norm.z_, -1.0f, 1.0f) * q + 0.5f); return Write(&coords[0], sizeof coords) == sizeof coords; } bool Serializer::WriteMatrix3(const Matrix3& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteMatrix3x4(const Matrix3x4& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteMatrix4(const Matrix4& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteColor(const Color& value) { return Write(value.Data(), sizeof value) == sizeof value; } bool Serializer::WriteBoundingBox(const BoundingBox& value) { bool success = true; success &= WriteVector3(value.min_); success &= WriteVector3(value.max_); return success; } bool Serializer::WriteString(const String& value) { const char* chars = value.CString(); // Count length to the first zero, because ReadString() does the same unsigned length = String::CStringLength(chars); return Write(chars, length + 1) == length + 1; } bool Serializer::WriteFileID(const String& value) { bool success = true; unsigned length = Min(value.Length(), 4U); success &= Write(value.CString(), length) == length; for (unsigned i = value.Length(); i < 4; ++i) success &= WriteByte(' '); return success; } bool Serializer::WriteStringHash(const StringHash& value) { return WriteUInt(value.Value()); } bool Serializer::WriteBuffer(const PODVector<unsigned char>& value) { bool success = true; unsigned size = value.Size(); success &= WriteVLE(size); if (size) success &= Write(&value[0], size) == size; return success; } bool Serializer::WriteResourceRef(const ResourceRef& value) { bool success = true; success &= WriteStringHash(value.type_); success &= WriteString(value.name_); return success; } bool Serializer::WriteResourceRefList(const ResourceRefList& value) { bool success = true; success &= WriteStringHash(value.type_); success &= WriteVLE(value.names_.Size()); for (unsigned i = 0; i < value.names_.Size(); ++i) success &= WriteString(value.names_[i]); return success; } bool Serializer::WriteVariant(const Variant& value) { bool success = true; VariantType type = value.GetType(); success &= WriteUByte((unsigned char)type); success &= WriteVariantData(value); return success; } bool Serializer::WriteVariantData(const Variant& value) { switch (value.GetType()) { case VAR_NONE: return true; case VAR_INT: return WriteInt(value.GetInt()); case VAR_BOOL: return WriteBool(value.GetBool()); case VAR_FLOAT: return WriteFloat(value.GetFloat()); case VAR_VECTOR2: return WriteVector2(value.GetVector2()); case VAR_VECTOR3: return WriteVector3(value.GetVector3()); case VAR_VECTOR4: return WriteVector4(value.GetVector4()); case VAR_QUATERNION: return WriteQuaternion(value.GetQuaternion()); case VAR_COLOR: return WriteColor(value.GetColor()); case VAR_STRING: return WriteString(value.GetString()); case VAR_BUFFER: return WriteBuffer(value.GetBuffer()); // Serializing pointers is not supported. Write null case VAR_VOIDPTR: case VAR_PTR: return WriteUInt(0); case VAR_RESOURCEREF: return WriteResourceRef(value.GetResourceRef()); case VAR_RESOURCEREFLIST: return WriteResourceRefList(value.GetResourceRefList()); case VAR_VARIANTVECTOR: return WriteVariantVector(value.GetVariantVector()); case VAR_STRINGVECTOR: return WriteStringVector(value.GetStringVector()); case VAR_VARIANTMAP: return WriteVariantMap(value.GetVariantMap()); case VAR_INTRECT: return WriteIntRect(value.GetIntRect()); case VAR_INTVECTOR2: return WriteIntVector2(value.GetIntVector2()); case VAR_MATRIX3: return WriteMatrix3(value.GetMatrix3()); case VAR_MATRIX3X4: return WriteMatrix3x4(value.GetMatrix3x4()); case VAR_MATRIX4: return WriteMatrix4(value.GetMatrix4()); case VAR_DOUBLE: return WriteDouble(value.GetDouble()); default: return false; } } bool Serializer::WriteVariantVector(const VariantVector& value) { bool success = true; success &= WriteVLE(value.Size()); for (VariantVector::ConstIterator i = value.Begin(); i != value.End(); ++i) success &= WriteVariant(*i); return success; } bool Serializer::WriteStringVector(const StringVector& value) { bool success = true; success &= WriteVLE(value.Size()); for (StringVector::ConstIterator i = value.Begin(); i != value.End(); ++i) success &= WriteString(*i); return success; } bool Serializer::WriteVariantMap(const VariantMap& value) { bool success = true; success &= WriteVLE(value.Size()); for (VariantMap::ConstIterator i = value.Begin(); i != value.End(); ++i) { WriteStringHash(i->first_); WriteVariant(i->second_); } return success; } bool Serializer::WriteVLE(unsigned value) { unsigned char data[4]; if (value < 0x80) return WriteUByte((unsigned char)value); else if (value < 0x4000) { data[0] = (unsigned char)(value | 0x80); data[1] = (unsigned char)(value >> 7); return Write(data, 2) == 2; } else if (value < 0x200000) { data[0] = (unsigned char)(value | 0x80); data[1] = (unsigned char)((value >> 7) | 0x80); data[2] = (unsigned char)(value >> 14); return Write(data, 3) == 3; } else { data[0] = (unsigned char)(value | 0x80); data[1] = (unsigned char)((value >> 7) | 0x80); data[2] = (unsigned char)((value >> 14) | 0x80); data[3] = (unsigned char)(value >> 21); return Write(data, 4) == 4; } } bool Serializer::WriteNetID(unsigned value) { return Write(&value, 3) == 3; } bool Serializer::WriteLine(const String& value) { bool success = true; success &= Write(value.CString(), value.Length()) == value.Length(); success &= WriteUByte(13); success &= WriteUByte(10); return success; } }
[ "josh@galaxyfarfaraway.com" ]
josh@galaxyfarfaraway.com
5d06cfa52ee97d4665de0fbfa8af341bfd3eb822
2a603ffd23cdac093d3bb579d1a0539b59c16b08
/Mondrian.h
ad3a95a862e73f2a574968d1b8f3e6871e8d80a3
[]
no_license
gdiakidis/Mondrian-algorithm
70dc15abedabacad5a72e9a50401f06d8f7b7cee
f274b9681e5060cc313b14d497f4a17b467fa758
refs/heads/master
2022-03-01T11:40:29.261508
2019-09-26T12:09:26
2019-09-26T12:09:26
92,457,498
1
0
null
null
null
null
UTF-8
C++
false
false
763
h
/* * File: Mondrian.h * Author: george * */ #include <iostream> #include <iomanip> #include <fstream> #include <map> #include <vector> using namespace std; #ifndef MONDRIAN_H #define MONDRIAN_H class Mondrian { public: Mondrian(map<int,string> data,int k); vector< vector<int> > InitiateArrays(); void Anonymize(vector<vector<int> > R2data); float find_median(vector< vector<int> > dt,int selectedRow); vector< vector<int> > BubbleSort(vector< vector<int> > dt,int selectedRow); int minf(vector<int> tmp); int maxf(vector<int> tmp); void print_meanAverage(); private: int k; map<int,string> data; vector< vector<int> > Rdata; float total_eq = 0; int total_classes = 0; }; #endif /* MONDRIAN_H */
[ "gdiakidis19@gmail.com" ]
gdiakidis19@gmail.com
d6bfab750726ba66463d716ecab703e2f149d029
153b7c2a47d97c9f4d1b35784d35b74a1a76ae89
/html/HTMLImageLoader.cpp
710c1777083722725b9ac9fa1221f620b5d1a1c0
[]
no_license
planetsong/cs5231-browser-acl
46eabe1969fcfeceb5ecd54058e6dfebb14261d4
17119f1a8563232eb76468e9df19c9282fafacf7
refs/heads/master
2021-01-01T16:14:09.760358
2012-03-27T15:38:24
2012-03-27T15:38:24
32,124,589
0
0
null
null
null
null
UTF-8
C++
false
false
2,936
cpp
/* * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "config.h" #include "HTMLImageLoader.h" #include "CachedImage.h" #include "Element.h" #include "Event.h" #include "EventNames.h" #include "HTMLNames.h" #include "HTMLObjectElement.h" #include "HTMLParserIdioms.h" #include "Settings.h" #if USE(JSC) #include "JSDOMWindowBase.h" #endif namespace WebCore { HTMLImageLoader::HTMLImageLoader(Element* node) : ImageLoader(node) { } HTMLImageLoader::~HTMLImageLoader() { } void HTMLImageLoader::dispatchLoadEvent() { bool errorOccurred = image()->errorOccurred(); if (!errorOccurred && image()->response().httpStatusCode() >= 400) errorOccurred = element()->hasTagName(HTMLNames::objectTag); // An <object> considers a 404 to be an error and should fire onerror. element()->dispatchEvent(Event::create(errorOccurred ? eventNames().errorEvent : eventNames().loadEvent, false, false)); } String HTMLImageLoader::sourceURI(const AtomicString& attr) const { #if ENABLE(DASHBOARD_SUPPORT) Settings* settings = element()->document()->settings(); if (settings && settings->usesDashboardBackwardCompatibilityMode() && attr.length() > 7 && attr.startsWith("url(\"") && attr.endsWith("\")")) return attr.string().substring(5, attr.length() - 7); #endif return stripLeadingAndTrailingHTMLSpaces(attr); } void HTMLImageLoader::notifyFinished(CachedResource*) { CachedImage* cachedImage = image(); Element* elem = element(); ImageLoader::notifyFinished(cachedImage); bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400; #if USE(JSC) if (!loadError) { if (!elem->inDocument()) { JSC::JSGlobalData* globalData = JSDOMWindowBase::commonJSGlobalData(); globalData->heap.reportExtraMemoryCost(cachedImage->encodedSize()); } } #endif if (loadError && elem->hasTagName(HTMLNames::objectTag)) static_cast<HTMLObjectElement*>(elem)->renderFallbackContent(); } }
[ "happyyesg2011@gmail.com@347aa7df-b7d0-cf80-a8c3-eaa8d009e25a" ]
happyyesg2011@gmail.com@347aa7df-b7d0-cf80-a8c3-eaa8d009e25a
17166d98a3c37ea1a43cfedaee2e6284f259f4d9
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/wget/old_hunk_2796.cpp
8fbc6c55b2e02e67b7908b0c76e61772516b5ad3
[]
no_license
ccdxc/logSurvey
eaf28e9c2d6307140b17986d5c05106d1fd8e943
6b80226e1667c1e0760ab39160893ee19b0e9fb1
refs/heads/master
2022-01-07T21:31:55.446839
2018-04-21T14:12:43
2018-04-21T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
283
cpp
PRINT being the host name we're connecting to. */ if (print) { const char *txt_addr = pretty_print_address (ip); if (print && 0 != strcmp (print, txt_addr)) logprintf (LOG_VERBOSE, _("Connecting to %s|%s|:%d... "), escnonprint (print), txt_addr, port);
[ "993273596@qq.com" ]
993273596@qq.com
bb073348928e973ec20c340279d3d360f699f60f
522c568e8920d76a94198599614e9315f575ce23
/Temp/Trigger/Node/Special/WRTriggerSpecialNodeBase.h
91788896bdc3d2c50ec5ac6c47a3464aba39c870
[]
no_license
kyukyu86/Demo
2ba6fe1f2264f9d4820437736c9870a5c59960cb
d2bb86e623ec5f621e860aa5defe335ee672ca53
refs/heads/master
2023-01-07T11:46:08.313633
2020-11-06T08:59:06
2020-11-06T08:59:06
269,510,905
0
0
null
null
null
null
UTF-8
C++
false
false
733
h
#pragma once #include "../WRTriggerBaseNode.h" class WR_API WRTriggerSpecialNodeBase : public WRTriggerBaseNode { public: WRTriggerSpecialNodeBase(/*int32 InUid, const FString& InNodeName, EWRTriggerNodeType::en InNodeType*/); ~WRTriggerSpecialNodeBase(); virtual void Signal(class WRTriggerNodeBase* CallFrom/*, WRTriggerBaseNode* PreNode*/); virtual void ImportDataFromJson(const TSharedPtr<FJsonObject>* InJsonObject); bool SetTransition(const EWRTriggerTransitionType::en Type, class WRTriggerTransitionNodeBase* InTransition); protected: virtual void SendSignalToTriggerNode(class WRTriggerNodeBase* InTriggerNode) {} private: TMap<EWRTriggerTransitionType::en, class WRTriggerTransitionNodeBase*> Transitions; };
[ "pelpin2080@gmail.com" ]
pelpin2080@gmail.com
b0efe47ad575d5e79104c6c78f6dd661368d837b
0c153f489e523afdc33b950a6b9ee21af09e968e
/cpp/src/burgers1d_input_parser.hpp
b0ca5febcc53e48ed2d7d37a30f3beabbe369c6d
[]
no_license
Pressio/pressio-sisc-burgers1d
86f1acb31d40d1aefa83b61bb4e8a7d70621cf1a
671f45b7abd5dc59d574b6d26cc4a5f23ee90306
refs/heads/master
2021-01-26T01:04:20.594259
2020-04-26T11:32:00
2020-04-26T11:32:00
243,249,905
0
0
null
null
null
null
UTF-8
C++
false
false
3,355
hpp
#ifndef BURGERS1DCPP_INPUT_HPP_ #define BURGERS1DCPP_INPUT_HPP_ #include <sstream> struct InputParser{ using scalar_t = double; std::string fileName_ = "empty"; int32_t numCell_ = {}; scalar_t dt_ = {}; scalar_t finalT_ = {}; int32_t numSteps_ = {}; int32_t observerOn_ = 0; int32_t snapshotsFreq_ = {}; // freq of collecting snapshots std::string shapshotsFileName_ = "empty"; std::string basisFileName_ = "empty"; int32_t romOn_ = 0; int32_t romSize_ = {}; InputParser() = default; ~InputParser() = default; int32_t parse(int32_t argc, char *argv[]) { if (argc != 2){ std::cerr << "Usage: " << argv[0] << " inputFile " << std::endl; std::cerr << "invalid number of argments" << std::endl; return 1; } const std::string inputFile = argv[1]; std::ifstream source; source.open( inputFile, std::ios_base::in); std::string line; while (std::getline(source, line) ) { //make a stream for the line itself std::istringstream in(line); // tmp variable to store each entry of the file std::string col1, col2; // column 0, index in >> col1; in >> col2; if (col1 == "numCell"){ numCell_ = std::stoi(col2); } if (col1 == "dt"){ dt_ = std::stod(col2); } if (col1 == "finalTime"){ finalT_ = std::stod(col2); } if (col1 == "observerOn"){ observerOn_ = std::stoi(col2); } if (observerOn_==1){ if (col1 == "shapshotsFreq"){ snapshotsFreq_ = std::stoi(col2); } if (col1 == "shapshotsFileName"){ shapshotsFileName_ = col2; } if (col1 == "basisFileName"){ basisFileName_ = col2; } } if (col1 == "romOn"){ romOn_ = std::stoi(col2); } if (romOn_==1){ if (col1 == "romSize"){ romSize_ = std::stoi(col2); } if (col1 == "basisFileName"){ basisFileName_ = col2; } } } numSteps_ = static_cast<int32_t>(finalT_/dt_); source.close(); std::cout << "Ncell = " << numCell_ << " \n" << "dt = " << dt_ << " \n" << "finalT = " << finalT_ << " \n" << "numSteps = " << numSteps_ << " \n" << "observerOn " << observerOn_ << " \n" << "shapshotsFileName_ = "<< shapshotsFileName_ << " \n" << "snapshotsFreq_ = " << snapshotsFreq_ << " \n" << "romOn_ = " << romOn_ << " \n" << "romSize_ = " << romSize_ << " \n" << "basisFileName_ = " << basisFileName_ << std::endl; if (numCell_==0){ std::cerr << "Invalid numCell" << std::endl; return 1; } if (dt_==0.){ std::cerr << "Invalid dt" << std::endl; return 1; } if (finalT_==0.){ std::cerr << "Invalid finalT" << std::endl; return 1; } if (observerOn_==1){ if (snapshotsFreq_==0){ std::cerr << "Invalid snapshotsFreq" << std::endl; return 1; } if (shapshotsFileName_=="empty"){ std::cerr << "Invalid shapshotsFileName" << std::endl; return 1; } if (basisFileName_=="empty"){ std::cerr << "Invalid basisFileName" << std::endl; return 1; } } if (romOn_==1){ if (romSize_==0){ std::cerr << "Invalid rom size" << std::endl; return 1; } if (basisFileName_=="empty"){ std::cerr << "Invalid basisFileName" << std::endl; return 1; } } return 0; } }; #endif
[ "fnrizzi@sandia.gov" ]
fnrizzi@sandia.gov
28218a366ed51a24a1e96f1be1c923057f2528cd
070e98268ebf06e9bd4520a66302ba8ce6474706
/Cuidar.h
22e731b9b5a950dbf348af5d93815591b3a059cf
[]
no_license
rNexeR/Estructura-Proyecto1
53c689b47cf5266dc2109411693523391ee75a52
fbfd1a794741f4c6c45f5aae4f44982b21f67b0a
refs/heads/master
2021-01-20T11:05:36.662784
2015-06-01T04:42:55
2015-06-01T04:42:55
36,203,555
0
0
null
null
null
null
UTF-8
C++
false
false
852
h
#ifndef CUIDAR_H #define CUIDAR_H #include <QWidget> #include <QTimer> #include <list> #include "tamagotchi.h" namespace Ui { class Cuidar; } class Cuidar : public QWidget { Q_OBJECT public: explicit Cuidar(QWidget *parent = 0); ~Cuidar(); public slots: void setParametros(list<Tamagotchi*>* animales, Tamagotchi* actual); void update(); void closeEvent (QCloseEvent *event); void closeWindow(); void changeButtonsState(bool state); private slots: void on_pushButton_clicked(); void on_pushButton_2_clicked(); void on_pushButton_3_clicked(); void on_pushButton_4_clicked(); void on_pushButton_5_clicked(); void on_pushButton_6_clicked(); private: Ui::Cuidar *ui; QTimer* timer; list<Tamagotchi*>* animales; Tamagotchi* actual; int segundos; }; #endif // CUIDAR_H
[ "rnexer@gmail.com" ]
rnexer@gmail.com
faa04cf0a9dcd98a9f4b7172e0ffb74c3ed51d1f
75d19cc8b24640f0e632176dc48458d8455dbb7b
/code_generator.cpp
39abdad742194ff92afb2c3c2b76c683db3830eb
[]
no_license
pablogadhi/DecafCompiler
8e91ce7bddf3fa3a2843b0d14e808205c565d930
af59ab996774cf23aae7c82b51c4db8474c9a4d3
refs/heads/master
2023-01-20T01:42:07.894232
2020-11-27T01:12:06
2020-11-27T01:12:06
281,763,276
0
0
null
null
null
null
UTF-8
C++
false
false
11,677
cpp
#include "code_generator.h" #include <fstream> #include <iostream> CodeGenerator::CodeGenerator(vector<Triple> code, shared_ptr<SymbolTable> &table) : inter_code(code), symbol_table(table) { init_code(); main_name = dynamic_pointer_cast<Literal>(inter_code[0].arg0())->value(); end_label = dynamic_pointer_cast<Literal>(inter_code.back().arg0())->value(); // The fist 2 instructions are useless, so we remove them inter_code.erase(inter_code.begin()); inter_code.erase(inter_code.begin()); } CodeGenerator::~CodeGenerator() {} void CodeGenerator::init_code() { gen_code += "section .text\n\n"; gen_code += "extern _alloc_mem, _dealloc_mem, _init_brks, _print_int, _input_int\n"; gen_code += "extern _last_brk, _current_brk\n\n"; gen_code += "global _start\n"; } string get_reg(string temp_name) { if (temp_name == "_tmp_0") { return "rbx"; } else if (temp_name == "_tmp_1") { return "rcx"; } return "rdx"; } string CodeGenerator::operand_to_str(shared_ptr<Address> operand, vector<Triple> &pending) { auto as_literal = dynamic_pointer_cast<Literal>(operand); if (as_literal != nullptr) { string literal_val = as_literal->value(); if (as_literal->type() == "string") { if (literal_val[0] != '_') { if (literal_val != main_name) { literal_val = "_" + literal_val; } else { literal_val = "_start"; } } else { literal_val = "." + literal_val.substr(1, literal_val.size() - 1); } } else { Type type; get_where<Type>( symbol_table->types(), [&](Type &t) { return t.name() == as_literal->type(); }, &type); literal_val = size_prefixes[type.size()] + " " + literal_val; } return literal_val; } auto as_temp = dynamic_pointer_cast<Temp>(operand); if (as_temp != nullptr) { // Add pending pops for (auto &p : pending) { auto pending_temp = dynamic_pointer_cast<Temp>(p.arg0()); if (pending_temp->name() == as_temp->name()) { for (int i = pending.size() - 1; i >= 0; i--) { auto p_temp_name = dynamic_pointer_cast<Temp>(pending[i].arg0())->name(); gen_code += " pop " + get_reg(p_temp_name) + "\n"; } pending.clear(); break; } } if (as_temp->as_offset()) { return "[" + get_reg(as_temp->name()) + "]"; } else { return get_reg(as_temp->name()); } } if (operand->value() != -1) { return "[r14+" + to_string(operand->value()) + "]"; } return ""; } string CodeGenerator::convert_reg(string reg, int size) { string base = reg; function<string(string)> word_transform; if (reg.back() == 'x') { base = reg.substr(1, 1); word_transform = [](string reg_b) { return "e" + reg_b + "x"; }; } else { word_transform = [](string reg_b) { return reg_b + "d"; }; } if (size == 1) { return base + "l"; } else if (size == 4) { return word_transform(base); } return base; } void CodeGenerator::translate_to_asm() { shared_ptr<SymbolTable> local_table; string cond_jump = ""; vector<Triple> pending; bool skip_pop = false; for (int i = 0; i < inter_code.size(); i++) { Triple &instr = inter_code[i]; switch (instr.op()) { case Operator::ASSIGN: { auto l_operand = operand_to_str(instr.arg0(), pending); auto r_operand = operand_to_str(instr.arg1(), pending); if (dynamic_pointer_cast<Temp>(instr.arg0()) != nullptr && instr.arg1()->value() != -1) { Symbol symb; get_where<Symbol>( local_table->symbols(), [&](Symbol &s) { return s.offset() == instr.arg1()->value(); }, &symb); l_operand = convert_reg(l_operand, symb.size()); } else if (dynamic_pointer_cast<Temp>(instr.arg1()) != nullptr && instr.arg0()->value() != -1) { Symbol symb; get_where<Symbol>( local_table->symbols(), [&](Symbol &s) { return s.offset() == instr.arg0()->value(); }, &symb); r_operand = convert_reg(r_operand, symb.size()); } gen_code += " mov " + l_operand + ", " + r_operand + "\n"; break; } case Operator::MUL: { auto l_operand = operand_to_str(instr.arg0(), pending); auto r_operand = operand_to_str(instr.arg1(), pending); if (dynamic_pointer_cast<Temp>(instr.arg0()) == nullptr) { int size = 8; if (instr.arg0()->value() != -1) { Symbol symb; get_where<Symbol>( local_table->symbols(), [&](Symbol &s) { return s.offset() == instr.arg0()->value(); }, &symb); size = symb.size(); } gen_code += " mov " + convert_reg("rax", size) + ", " + l_operand + "\n"; } else { gen_code += " mov rax, " + l_operand + "\n"; } if (dynamic_pointer_cast<Temp>(instr.arg1()) == nullptr) { int size = 8; if (instr.arg1()->value() != -1) { Symbol symb; get_where<Symbol>( local_table->symbols(), [&](Symbol &s) { return s.offset() == instr.arg1()->value(); }, &symb); size = symb.size(); } gen_code += " mov " + convert_reg("rbx", size) + ", " + r_operand + "\n"; } else { gen_code += " mov rbx, " + r_operand + "\n"; } gen_code += " mul rbx\n"; gen_code += " mov " + operand_to_str(inter_code[i - 1].arg0(), pending) + ", rax\n"; break; } case Operator::SUM: gen_code += " add " + operand_to_str(instr.arg0(), pending) + ", " + operand_to_str(instr.arg1(), pending) + "\n"; break; case Operator::LESS: cond_jump = "jl"; break; case Operator::LESS_EQ: cond_jump = "jle"; break; case Operator::GREATER: cond_jump = "jg"; break; case Operator::GREATER_EQ: cond_jump = "jge"; break; case Operator::EQ: cond_jump = "je"; break; case Operator::NOT_EQ: cond_jump = "jne"; break; case Operator::MINUS: if (instr.arg1() != nullptr) { gen_code += " sub " + operand_to_str(instr.arg0(), pending) + ", " + operand_to_str(instr.arg1(), pending) + "\n"; } break; case Operator::LABEL: { auto alias = dynamic_pointer_cast<Literal>(instr.arg0())->value(); auto label_str = operand_to_str(instr.arg0(), pending); gen_code += "\n" + label_str + ":\n"; if (label_str[0] == '_') { Method method; get_where<Method>( symbol_table->methods(), [=](Method &m) { return m.alias() == alias; }, &method); local_table = symbol_table->children()[method]; auto last_symb = local_table->symbols().back(); auto mem_to_alloc = last_symb.size() + last_symb.offset(); // Call _init_brks if label is the main one if (alias == main_name) { gen_code += " call _init_brks\n\n"; } // Allocate memory for all variables gen_code += " mov r13, [_last_brk]\n"; gen_code += " push r13\n"; gen_code += " push " + to_string(mem_to_alloc) + "\n"; gen_code += " call _alloc_mem\n"; gen_code += " pop r13\n"; gen_code += " pop r15\n"; gen_code += " mov r14, [_last_brk]\n"; // Store each param in memory auto &symbols = local_table->symbols(); for (int j = method.param_signature().size() - 1; j >= 0; j--) { gen_code += " pop rbx\n"; gen_code += " mov [r14+" + to_string(symbols[j].offset()) + "], " + convert_reg("rbx", symbols[j].size()) + "\n"; } // Init the rest of variables for (int j = method.param_signature().size(); j < symbols.size(); j++) { Type type; recursive_lookup<Type>( local_table, [&](shared_ptr<SymbolTable> table) { return table->types(); }, [&](Type &t) { return t.name() == symbols[j].type(); }, &type); if (type.type() == "basic") { string default_value = basic_init_vals[type.name()]; gen_code += " mov [r14+" + to_string(symbols[j].offset()) + "], " + size_prefixes[type.size()] + " " + default_value + "\n"; } } // Put back addresses on the vector gen_code += " push r15\n"; gen_code += " push r13\n\n"; } else if (alias == end_label) { gen_code += " mov rax, 60\n"; gen_code += " xor rdi, rdi\n"; gen_code += " syscall\n"; } break; } case Operator::IF: gen_code += " cmp " + operand_to_str(instr.arg0(), pending) + ", " + operand_to_str(inter_code[i - 1].arg1(), pending) + "\n"; break; case Operator::JUMP: if (cond_jump != "") { gen_code += " " + cond_jump + " " + operand_to_str(instr.arg0(), pending) + "\n"; cond_jump = ""; } else { gen_code += " jmp " + operand_to_str(instr.arg0(), pending) + "\n"; } break; case Operator::CALL: gen_code += " call " + operand_to_str(instr.arg0(), pending) + "\n"; gen_code += " mov r14, [_last_brk]\n"; if (inter_code[i + 1].op() == Operator::POP) { pending.push_back(inter_code[i + 1]); skip_pop = true; } break; case Operator::PARAM: case Operator::PUSH: { if (inter_code[i + 1].op() == Operator::RET) { string reg = "r12"; if (instr.arg0()->value() != -1) { Symbol symb; get_where<Symbol>( local_table->symbols(), [&](Symbol &s) { return s.offset() == instr.arg0()->value(); }, &symb); reg = convert_reg(reg, symb.size()); } gen_code += " mov " + reg + ", " + operand_to_str(instr.arg0(), pending) + "\n"; } else { if (instr.arg0()->value() != -1) { Symbol symb; get_where<Symbol>( local_table->symbols(), [&](Symbol &s) { return s.offset() == instr.arg0()->value(); }, &symb); gen_code += " mov " + convert_reg("rbx", symb.size()) + ", " + operand_to_str(instr.arg0(), pending) + "\n"; gen_code += " push rbx\n"; } else { gen_code += " push " + operand_to_str(instr.arg0(), pending) + "\n"; } } break; } case Operator::POP: if (!skip_pop) { gen_code += " pop " + operand_to_str(instr.arg0(), pending) + "\n"; } else { skip_pop = false; } break; case Operator::RET: if (inter_code[i + 1].op() != Operator::LABEL || dynamic_pointer_cast<Literal>(inter_code[i + 1].arg0())->value() != end_label) { gen_code += " call _dealloc_mem\n"; gen_code += " pop r15\n"; // TODO Handle void fuctions gen_code += " push r12\n"; gen_code += " push r15\n"; gen_code += " ret\n"; } break; default: break; } } } void CodeGenerator::generate(string file_name) { auto dot_pos = file_name.find("."); auto asm_filename = file_name.substr(0, dot_pos) + ".asm"; cout << asm_filename << endl; ofstream out_file; out_file.open(asm_filename); translate_to_asm(); out_file << gen_code; out_file.close(); }
[ "pablogadhi@gmail.com" ]
pablogadhi@gmail.com
5f1a6d865005f2de48d73017c27afa1380a23910
09ea1901af1caa0cd7a6977209c384e08278a371
/code/Ardupilot/libraries/AP_InertialSensor/AP_InertialSensor_UserInteract_MAVLink.cpp
60272dd0567685b92f08b861cc46d46d48435cee
[]
no_license
sid1980/JAGUAR
e038e048a0542d7f3b67c480d27881f91ef42e4e
2dc262fdc10a600335f71878e092265bc9da77c2
refs/heads/master
2021-12-03T05:19:44.367320
2014-05-01T23:21:27
2014-05-01T23:21:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,586
cpp
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- #include <stdarg.h> #include <AP_HAL.h> #include <GCS_MAVLink.h> #include "AP_InertialSensor_UserInteract_MAVLink.h" extern const AP_HAL::HAL& hal; uint8_t AP_InertialSensor_UserInteract_MAVLink::blocking_read(void) { uint32_t start_ms = hal.scheduler->millis(); /* Wait for a COMMAND_ACK message to be received from the ground station */ while (hal.scheduler->millis() - start_ms < 30000U) { while (!comm_get_available(_chan)) { hal.scheduler->delay(1); } uint8_t c = comm_receive_ch(_chan); mavlink_message_t msg; mavlink_status_t status; if (mavlink_parse_char(_chan, c, &msg, &status)) { if (msg.msgid == MAVLINK_MSG_ID_COMMAND_ACK) { return 0; } } } hal.console->println_P(PSTR("Timed out waiting for user response")); return 0; } void AP_InertialSensor_UserInteract_MAVLink::_printf_P(const prog_char* fmt, ...) { char msg[50]; va_list ap; va_start(ap, fmt); hal.util->vsnprintf_P(msg, sizeof(msg), (const prog_char_t *)fmt, ap); va_end(ap); if (msg[strlen(msg)-1] == '\n') { // STATUSTEXT messages should not add linefeed msg[strlen(msg)-1] = 0; } while (comm_get_txspace(_chan) - MAVLINK_NUM_NON_PAYLOAD_BYTES < (int)sizeof(mavlink_statustext_t)) { hal.scheduler->delay(1); } mavlink_msg_statustext_send(_chan, SEVERITY_USER_RESPONSE, msg); }
[ "jonathan2@Jonathans-MacBook-Pro.local" ]
jonathan2@Jonathans-MacBook-Pro.local
d2c31ceed2b41553302a6a16fbcb17fa362d6fc5
c1ce1b303de794a4dc8f0d2f2d14e9d771d5e754
/ABC/ABC046/D2.cpp
96748638afed303338cb831bb5cee93a07ede7d6
[]
no_license
reiya0104/AtCoder
8790f302e31fa95aaf9ea16e443802d7b9f34bbf
16d6257b82a0807fa07d830e22d1143c32173072
refs/heads/master
2023-05-09T17:29:12.394495
2021-06-21T02:39:16
2021-06-21T02:39:16
342,526,657
0
0
null
null
null
null
UTF-8
C++
false
false
859
cpp
/** * author: reiya0104 * created: 05.04.2021 01:19:38 **/ #include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int, int>; const int INF = 1001001000; int main() { string s; cin >> s; int count_p = 0; int count_g = 0; int count_win = 0; int count_lose = 0; for (int i = 0; i < s.size(); ++i) { if (s.at(i) == 'p') { if (count_p < count_g) { ++count_p; } else { ++count_g; ++count_lose; } } else if (s.at(i) == 'g') { if (count_p < count_g) { ++count_p; ++count_win; } else { ++count_g; } } } int res = count_win - count_lose; cout << res << endl; }
[ "reiya0104@ezweb.ne.jp" ]
reiya0104@ezweb.ne.jp
90687af94347b35f0d7ba217466a338ac19f6054
fb383048bc12afd0b303f1f25816c8ee6910b20c
/cpp_primer/chaper9/927.cpp
71dd776ec2d6246bdca7b05c78d9b5bc72513673
[]
no_license
linw/cpp
cf02aac2df2a07a71dc70593315b11d889d6c237
5bf054eef413ed5e7a80b6c837ee92b51b13a7a3
refs/heads/master
2016-08-08T12:12:06.995979
2012-01-02T13:21:25
2012-01-02T13:21:25
3,087,582
0
0
null
null
null
null
UTF-8
C++
false
false
1,125
cpp
/* * File name: 927.cpp * Author: linwei * E-mail: kinglw8729@gmail.com * Date: 2011-12-5 * */ #include <vector> #include <list> #include <deque> #include <iostream> #include <string> #include <algorithm> using namespace std; int FindAndErase(list<string> &source, const string &s){ int count = 0; list<string>::iterator iter = source.begin(); while(iter != source.end()){ if(*iter == s){ iter = source.erase(iter); count++; } else ++iter; } return count; } int FindAndErase_deque(deque<string> &source, const string &s){ int count = 0; deque<string>::iterator iter = source.begin(); while(iter != source.end()){ if(*iter == s){ iter = source.erase(iter); ++count; } else ++iter; } return count; } int main() { string a[10] = {"linv", "king", "monkey", "linw", "haohao", "apple", "king", "linwei", "chihao", "light"}; list<string> source(a, a + 10); FindAndErase(source, "king"); cout<<"size: "<<source.size()<<endl; return 0; }
[ "kinglw8729@gmail.com" ]
kinglw8729@gmail.com
124f3bc736f3f923884c640177201c11c6d329da
77a0ccdb3c430aea86f50d6888694ce4d91e2d33
/Heracles/TopLevelController.cc
0fe6d3419d39e1954ba7dfe1af96e477fd79746b
[]
no_license
zeronek501/mutilate
216d96a7716b020eb70b11023890d23ab361c35b
86458eaa01ecac8b33cfe89a016d8de973f530ea
refs/heads/master
2020-03-27T01:23:06.206942
2018-09-19T15:38:20
2018-09-19T15:38:20
145,705,671
0
0
null
null
null
null
UTF-8
C++
false
false
6,575
cc
#include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <sys/socket.h> #include <time.h> #include <cstring> #include <string> #include <cstdlib> #include <assert.h> #include <arpa/inet.h> #include <pthread.h> #include <fstream> #include <iostream> #include <vector> #include <vector> #include "CoreMemController.h" #include "Task.h" #include "Util.h" // libzmq is necessary #include <zmq.hpp> #define CAN_GROW 0 #define CANNOT_GROW 1 #define DISABLED 2 #define LOAD_MAX 250000 zmq::context_t *context = NULL; zmq::socket_t *my_socket = NULL; std::string port; int wait_time; int n = 95; double nth; double lat = -1, load = -1; double qps = -1; double target_lat = 2000, slack = -1; CoreMemController *cm; Task *lc, *be; int g_be_status; // pthread pthread_mutex_t l_mutex; // mutex for latency poll pthread_cond_t cond; // Convert string to 0MQ string and send to socket static bool s_send (zmq::socket_t &_socket, const std::string &str) { zmq::message_t message(str.size()); memcpy(message.data(), str.data(), str.size()); return _socket.send(message); } void be_unpause() { system(std::string("docker unpause inmemory").c_str()); } void be_pause() { std::string cmd; int core_num = cm->be_cores->size() - 1; int llc_num = cm->be_llc->size() - 1; if(core_num > 0) { cm->be_cores->remove(core_num); cm->lc_cores->add(core_num); } if(llc_num > 0) { cm->be_llc->remove(llc_num); cm->lc_llc->add(llc_num); } system(std::string("docker pause inmemory").c_str()); } void be_exec() { printf("executing be\n"); int pid; pid = fork(); if(pid == 0) { // child process int mypid = getpid(); s_write("/sys/fs/cgroup/cpuset/be/tasks", std::to_string(mypid)); system("./setting/set_inmemory_solo.sh"); execl("/home/janux/mutilate/Heracles/setting/run_inmemory_solo.sh", "run_inmemory_solo.sh", NULL); } else if(pid == -1) { // fork error printf("fork error!\n"); exit(1); } } void poll(double &_lat, double &_qps) { printf("polling...\n"); zmq::message_t request; my_socket->recv(&request); s_send(*my_socket, "ACK"); memcpy(&_lat, request.data(), sizeof(double)); my_socket->recv(&request); s_send(*my_socket, "ACK"); memcpy(&_qps, request.data(), sizeof(double)); } void enable_be() { printf("enable_be\n"); be_unpause(); g_be_status = CAN_GROW; } void disallow_be_growth() { printf("disallow_be_growth\n"); g_be_status = CANNOT_GROW; } void disable_be() { printf("disable_be\n"); g_be_status = DISABLED; be_pause(); } void enter_cooldown() { printf("cooldown\n"); sleep(300); // sleep 5 min } void lc_init() { printf("lc_init..\n"); // create cgroup cos s_sudo_cmd("mkdir -p /sys/fs/cgroup/cpuset/lc"); s_sudo_cmd("mkdir -p /sys/fs/resctrl/lc"); // allocate cores and ways lc = new Task("lc", "lc"); // fork and exec process and attach the task pids to cgroup and resctrl printf("executing lc\n"); int pid; int status; pid = fork(); if(pid == 0) { // child process int mypid = getpid(); printf("mypid: %d\n", mypid); s_write("/sys/fs/cgroup/cpuset/lc/cpuset.cpus", "0"); s_write("/sys/fs/cgroup/cpuset/lc/cpuset.mems", "0"); s_write("/sys/fs/cgroup/cpuset/lc/tasks", std::to_string(mypid)); s_write("/sys/fs/resctrl/lc/tasks", std::to_string(mypid)); system("sudo pkill -9 memcached"); execlp("memcached", "memcached", "-t", "4", "-c", "32768", "-p", "11212", NULL); } else if(pid == -1) { // fork error printf("fork error!\n"); exit(1); } else { sleep(5); std::string value; std::fstream fs; std::string filepath = std::string("/sys/fs/cgroup/cpuset/lc/tasks"); fs.open(filepath, std::fstream::in); while(!fs.eof()) { fs >> value; printf("%s\n",value.c_str()); lc->pids.push_back(std::stoi(value)); } //waitpid(pid, &status, 0); } } void be_init() { std::string be_cgroup; std::fstream fs; std::string value; printf("be_init..\n"); // docker run and pause -> cgroup is created based on their cid. s_sudo_cmd("mkdir -p /sys/fs/resctrl/be"); system(std::string("./setting/set_inmemory_solo.sh").c_str()); s_read("./cids.txt", be_cgroup); printf("be_cgroup: %s\n", be_cgroup.c_str()); be = new Task(std::string("docker/") + be_cgroup, "be"); // attach task pids. copy to resctrl tasks std::string filepath = std::string("/sys/fs/cgroup/cpuset/") + be->cgroup + std::string("/tasks"); std::string resctrlpath = std::string("/sys/fs/resctrl/be/tasks"); fs.open(filepath, std::fstream::in); while(!fs.eof()) { fs >> value; printf("%s\n",value.c_str()); be->pids.push_back(std::stoi(value)); s_write(resctrlpath, value); } fs.close(); enable_be(); } void *top_control(void *threadid) { printf("top_controlling...\n"); while (true) { poll(lat, qps); load = qps / LOAD_MAX; slack = (target_lat - lat) / target_lat; printf("nth lat: %f, slack: %f, qps: %f, load: %f\n", lat, slack, qps, load); if(slack < 0) { disable_be(); enter_cooldown(); } else if(load > 0.85) { disable_be(); } else if(load < 0.8) { enable_be(); } else if(slack < 0.1) { disallow_be_growth(); if(slack < 0.05) { int num = cm->be_cores->size() - 2; if(num > 0) { cm->be_cores->remove(num); cm->lc_cores->add(num); } } } // else: enable_be()? pthread_cond_signal(&cond); sleep(wait_time); } } void *core_mem_control(void *threadid) { printf("core_mem_controlling...\n"); pthread_mutex_lock(&l_mutex); while(lat == -1) { pthread_cond_wait(&cond, &l_mutex); } pthread_mutex_unlock(&l_mutex); printf("core_mem_repeating...\n"); cm->start_loop(); } void init() { printf("initializing...\n"); int status; // Init LC and BE task lc_init(); be_init(); // Init Controller instances cm = new CoreMemController(lc, be, g_be_status, slack, qps); // Init socket settings context = new zmq::context_t(1); my_socket = new zmq::socket_t(*context, ZMQ_REP); port = "10123"; // arbitrarily set wait_time = 15; my_socket->bind((std::string("tcp://*:") + port).c_str()); sleep(500); /* // Create pthreads pthread_t top_level, core_mem; if(pthread_create(&top_level, NULL, top_control, NULL) < 0) { perror("thread create error:"); exit(0); } if(pthread_create(&core_mem, NULL, core_mem_control, NULL) < 0) { perror("thread create error:"); exit(0); } pthread_join(core_mem, (void **)&status); printf("Core Thread End %d\n", status); pthread_join(top_level, (void **)&status); printf("Top Thread End %d\n", status); */ } int main(int argc, char **argv) { init(); }
[ "zeronek501@gmail.com" ]
zeronek501@gmail.com
efcdc63f79623dc31404dcce42d30b8a24b9dfe1
6dfd52d6fba36acc5a3c5ecaa497de97bc976e4e
/SdlBreakout/SdlBreakout/SerializableLevel.h
c8b90f3f369355da5da0f51c23873fd656353d7b
[]
no_license
Autoquark/SdlBreakout
4a0939abd80efa1c58dfb334f0990f6e0ebf9638
d63d274f0832436eb6cd3baa43a7ab854dcd4c29
refs/heads/master
2023-02-26T08:03:59.280927
2021-02-04T15:19:44
2021-02-04T15:19:44
221,943,204
0
0
null
2021-02-04T13:58:42
2019-11-15T14:44:36
C++
UTF-8
C++
false
false
261
h
#pragma once #include "stdafx.h" #include <nlohmann/json.hpp> #include "LegendEntry.h" struct SerializableLevel { public: std::vector<std::string> grid; std::vector<LegendEntry> legend; NLOHMANN_DEFINE_TYPE_INTRUSIVE(SerializableLevel, grid, legend) };
[ "github@autoquark.33mail.com" ]
github@autoquark.33mail.com
548d04068851caef4819a597f02ddbd4bffe7d39
afee22fe8845a736b9916b64cecfe686f2491065
/ContainerWithMostWater/ContainerWithMostWater.cpp
1771fc1109ed39641372a1d0cd7493bdba442f46
[]
no_license
felixfqiu/leetcode-havefun
40e6e5225fc713304db1b9c346abc8f0482f6e1c
996a167763696f488c6889d20311b590aaf158d1
refs/heads/master
2021-01-12T12:17:57.648499
2016-12-27T09:26:15
2016-12-27T09:26:15
72,419,580
0
0
null
null
null
null
GB18030
C++
false
false
664
cpp
// ContainerWithMostWater.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <vector> using namespace std; int min(int a, int b) { return a < b ? a : b; } int max(int a, int b) { return a > b ? a : b; } int area(vector<int>& height, int l, int r) { int h = min(height[r], height[l]); return (r - l) * h; } int maxArea(vector<int>& height) { vector<int>& h = height; int l = 0; int r = height.size() - 1; int s = 0; while (r > l) { s = max(area(height, l, r), s); height[l] < height[r] ? l++ : r--; } return s; } int main() { vector<int> height{2,3,4,5,18,17,6}; int area = maxArea(height); return 0; }
[ "felixfqiu@gmail.com" ]
felixfqiu@gmail.com
f95280e4c2b1b36071b352e2817a8521e69a53f4
72736ca51d4b27665c45c349d5cac6f1355d75a7
/source/engine/include/whery/db/base/FieldManipulator.h
fc3163bf17ead852a52e8b6e870c15c7f298bdf4
[]
no_license
sgolodetz/whery
0c1535eb8e94afa70562240efdb5636c803bf0ec
6b469ef3d2a8198fffe07ba5788b71642c8f5ed2
refs/heads/master
2020-05-26T23:59:17.496633
2013-07-02T15:08:06
2013-07-02T15:08:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,570
h
/** * whery: FieldManipulator.h * Copyright Stuart Golodetz, 2013. All rights reserved. */ #ifndef H_WHERY_FIELDMANIPULATOR #define H_WHERY_FIELDMANIPULATOR #include <functional> #include <string> #include <boost/uuid/uuid.hpp> namespace whery { /** \brief An instance of a class deriving from this one is used to manipulate fields of a particular type at some location in memory (e.g. an int field manipulator treats the pointed-to memory as an int). Field manipulators hold no state - their member functions accept pointers to the memory on which to work. (The intention is to separate the concerns of field manipulation and field storage - the latter may vary, but the manipulation of individual fields must be consistent.) As a result, we only actually need a single instance of each type of field manipulator. */ class FieldManipulator { //#################### DESTRUCTOR #################### protected: /** Protected to prevent deletion via a FieldManipulator pointer. */ ~FieldManipulator(); //#################### PUBLIC ABSTRACT METHODS #################### public: /** Returns the size (in bytes) of the alignment boundary required for fields of the manipulated type. For example, a 32-bit int would need to be aligned on a 4-byte boundary. \return The size (in bytes) of the alignment boundary required for fields of the manipulated type. */ virtual unsigned int alignment_requirement() const = 0; /** Compares the field at location (as manipulated by this manipulator) with the field at otherLocation (as manipulated by otherManipulator). The value of the field at otherLocation is first converted to the type of the field at location, if possible, after which the two are compared using std::less. If the type conversion fails, then the two fields cannot be compared, and an exception will be thrown. \param location The memory location of the field on which this manipulator should operate. \param otherManipulator The manipulator to use for the other field being compared. \param otherLocation The memory location of the other field being compared. \return -1, if the field at location is ordered before that at otherLocation; 1, if the field at location is ordered after that at otherLocation; 0, otherwise. \throw std::bad_cast If the type conversion fails. */ virtual int compare_to(const char *location, const FieldManipulator& otherManipulator, const char *otherLocation) const = 0; /** Sets the field at location (as manipulated by this manipulator) to the value of the field at otherLocation (as manipulated by otherManipulator), after first converting it to the right type. If the type conversion fails, an exception will be thrown. \param location The memory location of the field on which this manipulator should operate. \param sourceManipulator The manipulator to use for the source field. \param sourceLocation The memory location of the source field. \throw std::bad_cast If the type conversion fails. */ virtual void set_from(char *location, const FieldManipulator& sourceManipulator, const char *sourceLocation) const = 0; /** Returns the size (in bytes) of the manipulated type. For example, a 32-bit int would have size 4. \return The size (in bytes) of the manipulated type. */ virtual unsigned int size() const = 0; //#################### PUBLIC METHODS #################### /** Gets the value of the field at location as a double, performing type conversion where necessary. If the type conversion fails, an exception will be thrown. \param location The location of the field. \return The value of the field as a double. \throw std::bad_cast If the type conversion fails. */ virtual double get_double(const char *location) const; /** Gets the value of the field at location as an int, performing type conversion where necessary. If the type conversion fails, an exception will be thrown. \param location The location of the field. \return The value of the field as an int. \throw std::bad_cast If the type conversion fails. */ virtual int get_int(const char *location) const; /** Gets the value of the field at location as a std::string, performing type conversion where necessary. If the type conversion fails, an exception will be thrown. \param location The location of the field. \return The value of the field as a std::string. \throw std::bad_cast If the type conversion fails. */ virtual std::string get_string(const char *location) const; /** Gets the value of the field at location as a Boost UUID, performing type conversion where necessary. If the type conversion fails, an exception will be thrown. \param location The location of the field. \return The value of the field as a Boost UUID. \throw std::bad_cast If the type conversion fails. */ virtual boost::uuids::uuid get_uuid(const char *location) const; /** Sets the field at location to the specified value, performing type conversion where necessary. If the type conversion fails, an exception will be thrown. \param location The location of the field. \param value The value to which to set the field. \throw std::bad_cast If the type conversion fails. */ virtual void set_double(char *location, double value) const; /** Sets the field at location to the specified value, performing type conversion where necessary. If the type conversion fails, an exception will be thrown. \param location The location of the field. \param value The value to which to set the field. \throw std::bad_cast If the type conversion fails. */ virtual void set_int(char *location, int value) const; /** Sets the field at location to the specified value, performing type conversion where necessary. If the type conversion fails, an exception will be thrown. \param location The location of the field. \param value The value to which to set the field. \throw std::bad_cast If the type conversion fails. */ virtual void set_uuid(char *location, const boost::uuids::uuid& value) const; //#################### PROTECTED METHODS #################### protected: /** Compares two values of type T using std::less<T>. \param lhs The left-hand operand of the comparison. \param rhs The right-hand operand of the comparison. \return -1, if lhs < rhs; 1, if rhs < lhs; 0, otherwise. */ template <typename T> static int compare_with_less(const T& lhs, const T& rhs) { std::less<T> comp; if(comp(lhs, rhs)) return -1; else if(comp(rhs, lhs)) return 1; else return 0; } }; } #endif
[ "sgolodetz@gxstudios.net" ]
sgolodetz@gxstudios.net
09dcc8a764c08c29d4457e586332837afd88cfba
45d19fe4f3cea15d7c2c667feb334d49bca5872c
/Src/FactoryPattern/MethodFactory/cproductafactory.cpp
42e559be60deb727a3ef6892461bb8501824adc9
[ "MIT" ]
permissive
whuer-xiaojie/Design_Patterns_C_Plus_Plus
a9c198b3719331658fe83fb37883beb9fe2ecef2
467459e4f62ee5b0e4ce682c55a8f7f8ae986167
refs/heads/master
2022-04-11T12:40:19.497613
2020-04-05T06:47:29
2020-04-05T06:47:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,422
cpp
/* * MIT License * * Copyright (c) 2018 Whuer_XiaoJie <1939346428@qq.com> * * 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 "cproductafactory.h" #include "../Product/cproductbase.h" #include "../Product/cproducta.h" CProductAFactory::CProductAFactory() { } CProductAFactory::~CProductAFactory() { } CProductBase* CProductAFactory::createProduct() { return new CProductA(); }
[ "xiojie@sansi.com" ]
xiojie@sansi.com
a785177706e2aa861621b094cfb1dfb22d4fc193
776f5892f1395bb8d30731a60466e4c756a44c8c
/contests/abc215/abc215_a/main.cc
e6ced2ebc38afff7d078d7e50f18e17b54418988
[]
no_license
kkishi/atcoder
fae494af4b47a9f39f05e7536e93d5c4dd21555b
f21d22095699dbf064c0d084a5ce5a09a252dc6b
refs/heads/master
2023-08-31T18:37:13.293499
2023-08-27T21:33:43
2023-08-27T21:33:43
264,760,383
0
0
null
2023-03-10T05:24:07
2020-05-17T21:30:14
C++
UTF-8
C++
false
false
119
cc
#include <bits/stdc++.h> #include "atcoder.h" void Main() { strings(s); wt(s == "Hello,World!" ? "AC" : "WA"); }
[ "keisuke.kishimoto@gmail.com" ]
keisuke.kishimoto@gmail.com
011fd9b76c660019c9df6404fe3698a102b5343f
7cce8432ca971ae442f093a7b1c72d078c5ec69d
/ex1/fcfs.cpp
8496304e93083e61147a3f8b9c515c830c4c6698
[]
no_license
sauravsb99/SSLAB
b1bd7929c7efd5bdd6464c5bde765d0e1e4050b0
24e85b53c0f7d7ea247b8daad0314d6bf125a5f0
refs/heads/master
2020-07-08T08:18:01.849268
2019-11-25T19:51:51
2019-11-25T19:51:51
203,615,291
0
1
null
2019-10-18T10:12:16
2019-08-21T15:40:54
C++
UTF-8
C++
false
false
3,315
cpp
#include<bits/stdc++.h> using namespace std; void print(int n, vector<int> v){ for(int i=0;i<n;i++){ cout << v.at(i) << "\t"; } cout << "\n"; } void gantt(int n, vector<int> process, vector<int> cmplt_time, vector<int> burst_time){ int count = 0; int scale = 1; cout << "\n|"; while(count < 5){ for(int i=0;i<(burst_time[count]*scale)/2+1;i++) cout << " "; cout << "P" << process[count] << "(" << cmplt_time[count] << ")"; for(int i=0;i<(burst_time[count]*scale)/2+1;i++) cout << " "; cout << "|"; count++; } cout << "\n\n"; } vector<int> cal_cmplt(int n, vector<int> process, vector<int> burst_time, vector<int> arrival_time){ vector<int> cmplt_time; int total_time = 0; for(int i=0;i<n;i++){ if(arrival_time[i]<=total_time){ total_time += burst_time.at(i); cmplt_time.push_back(total_time); } } return cmplt_time; } void srt(int n, vector<int> &process, vector<int> &burst_time, vector<int> &arrival_time){ int temp,pos; for(int i=0;i<n-1;i++){ pos = i; for(int j=i;j<n;j++){ if(arrival_time.at(j)<arrival_time.at(pos)){ pos = j; } } temp = arrival_time.at(pos); arrival_time.at(pos) = arrival_time.at(i); arrival_time.at(i) = temp; temp = process.at(pos); process.at(pos) = process.at(i); process.at(i) = temp; temp = burst_time.at(pos); burst_time.at(pos) = burst_time.at(i); burst_time.at(i) = temp; } } float cal_avg_wait(int n, vector<int> burst_time, vector<int> cmplt_time, vector<int> arrival_time){ float sum = 0.0; for(int i=0;i<n;i++){ sum += cmplt_time.at(i) - burst_time.at(i) - arrival_time[i]; } return sum/n; } float cal_avg_turn(int n, vector<int> burst_time, vector<int> cmplt_time, vector<int> arrival_time){ float sum = 0.0f; for(int i=0;i<n;i++){ sum += cmplt_time.at(i) - arrival_time[i]; } return sum/n; } int main(){ int p, a, b; vector<int> cmplt_time; vector<int> burst_time, arrival_time, process, wait_time; cout << "Enter the number of processes: "; cin >> p; for(int i=0;i<p;i++){ cout << "Enter arrival time and burst time for process " << i + 1 << ":"; cin >> a >> b; burst_time.push_back(b); arrival_time.push_back(a); process.push_back(i+1); } srt(p,process,burst_time,arrival_time); cmplt_time = cal_cmplt(p,process,burst_time,arrival_time); cout << "The process order:\t"; print(p,process); cout << "The arrival time:\t"; print(p,arrival_time); cout << "The burst time:\t\t"; print(p,burst_time); cout << "The turnaround time:\t"; print(p,cmplt_time); cout << "The waiting time is:\t"; for(int i=0;i<p;i++){ wait_time.push_back(cmplt_time[i]-burst_time[i] - arrival_time[i]); } print(p,wait_time); cout << "The average waiting time:\t" << cal_avg_wait(p,burst_time,cmplt_time,arrival_time) << "\n"; cout << "The average turnaround time:\t" << cal_avg_turn(p,burst_time,cmplt_time,arrival_time) << "\n"; gantt(p,process,cmplt_time,burst_time); return 0; }
[ "sauravsb99@gmail.com" ]
sauravsb99@gmail.com
8b0f3a717b1f94baf2fc7b9ead11a9c1c1c16fd3
65025edce8120ec0c601bd5e6485553697c5c132
/Engine/app/terrainfeature/components/TerrainNodeTree.h
f333a0ef2690cbee6aabeb01dda2d3d4967bae0c
[ "MIT" ]
permissive
stonejiang/genesis-3d
babfc99cfc9085527dff35c7c8662d931fbb1780
df5741e7003ba8e21d21557d42f637cfe0f6133c
refs/heads/master
2020-12-25T18:22:32.752912
2013-12-13T07:45:17
2013-12-13T07:45:17
15,157,071
4
4
null
null
null
null
UTF-8
C++
false
false
3,149
h
/**************************************************************************** Copyright (c) 2011-2013,WebJet Business Division,CYOU http://www.genesis-3d.com.cn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #ifndef __TerrainNodeTree_H__ #define __TerrainNodeTree_H__ #include "terrainfeature/components/TerrainNode.h" #include "util/mipmaparray.h" #include "terrainsystem/TerrainDataSource.h" namespace App { struct NodePos { int x; int y; }; class TerrainNodeTree: public Core::RefCounted { __DeclareSubClass(TerrainNodeTree, Core::RefCounted); public: TerrainNodeTree(); virtual ~TerrainNodeTree(); /// Reset terrain node tree to default, 0 node void Reset(); /// Get tree's depth. [ 0,GetDepth() ) SizeT GetDepth() const; /// get some level node count in X dir SizeT GetRowSize(int depth) const; /// get some level node count in Y dir SizeT GetColSize(int depth) const; /// Using heightMap to rebuild all terrain node. Offset is all node's offset void RebuildAllNodes(const GPtr<Terrain::TerrainDataSource>& terrainDataSource); /// Get root node, return NULL if invalid TerrainNode* GetRootNode(); /// Get node in pos(row,col) in level, return NULL if invalid TerrainNode* GetNode(IndexT row, IndexT col, IndexT level); protected: typedef Util::MipmapArray<TerrainNode*> TerrainTree; TerrainTree m_TerrainTree; }; //------------------------------------------------------------------------ inline SizeT TerrainNodeTree::GetDepth() const { return m_TerrainTree.GetMipCount(); } //------------------------------------------------------------------------ inline SizeT TerrainNodeTree::GetRowSize(int depth) const { if ( depth < m_TerrainTree.GetMipCount() ) { return m_TerrainTree.RowSize(depth); } return 0; } //------------------------------------------------------------------------ inline SizeT TerrainNodeTree::GetColSize(int depth) const { if ( depth < m_TerrainTree.GetMipCount() ) { return m_TerrainTree.ColSize(depth); } return 0; } } #endif // __TerrainNodeTree_H__
[ "jiangtao@tao-studio.net" ]
jiangtao@tao-studio.net
ce06b533c875b6b62d9c235f533ad9c498715e0a
2fa764b33e15edd3b53175456f7df61a594f0bb5
/appseed/image_png/axis_image_png/ca_os_ca_dll.cpp
84dfe81c394f01da52525afb42d8f6449b426468
[]
no_license
PeterAlfonsLoch/app
5f6ac8f92d7f468bc99e0811537380fcbd828f65
268d0c7083d9be366529e4049adedc71d90e516e
refs/heads/master
2021-01-01T17:44:15.914503
2017-07-23T16:58:08
2017-07-23T16:58:08
98,142,329
1
0
null
2017-07-24T02:44:10
2017-07-24T02:44:10
null
UTF-8
C++
false
false
447
cpp
#include "StdAfx.h" extern "C" int APIENTRY DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) { // remove this if you use lpReserved UNREFERENCED_PARAMETER(lpReserved); if (dwReason == DLL_PROCESS_ATTACH) { ::OutputDebugString("::ca2:: ca.dll :: initializing!\n"); } else if (dwReason == DLL_PROCESS_DETACH) { ::OutputDebugString("::ca2:: ca.dll :: terminating!\n"); } return 1; // ok }
[ "camilo@ca2.email" ]
camilo@ca2.email
26ce4798b5ae425da2a001d2e5e11ff940735bf0
95d11da11488128cc5b983236c5b821a3c4fb9aa
/cocos2d-x-2.1.4/extensions/CCBReader/actCatmullRomToLoader.h
170b543947a8c80963277f9ba042cedbe6e82c9c
[]
no_license
masteage/AceCocosBuilder
0874fb6e85d2057847926ee11bd289d3f7e92c4b
4a09d428f67898754b167a14584592777e8c2dfd
refs/heads/master
2021-01-11T21:42:50.851594
2017-01-12T01:21:12
2017-01-12T01:21:12
78,837,294
0
0
null
2017-01-13T09:58:06
2017-01-13T09:58:06
null
UTF-8
C++
false
false
875
h
// // actCatmullRomToLoader.h // ScrollViewTest // // Created by 허정목 on 2014. 1. 13.. // // #ifndef ScrollViewTest_actCatmullRomToLoader_h #define ScrollViewTest_actCatmullRomToLoader_h #include "actCatmullRomTo.h" USING_NS_CC; USING_NS_CC_EXT; NS_CC_EXT_BEGIN /* Forward declaration. */ class CCBReader; class actCatmullRomToLoader : public CCNodeLoader { public: CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(actCatmullRomToLoader, loader); protected: CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(actCatmullRomTo); virtual void onHandlePropTypeFloat(CCNode * pNode, CCNode * pParent, const char* pPropertyName, float pFloat, CCBReader * pCCBReader); virtual void onHandlePropTypeString(CCNode * pNode, CCNode * pParent, const char * pPropertyName, const char * pString, CCBReader * pCCBReader); }; NS_CC_EXT_END #endif
[ "hsahn@aceproject.co.kr" ]
hsahn@aceproject.co.kr
c6b7aa14ae9c9c5bb80a90d2894fd236d82d26e6
43e28ce11f5ddd07407a87385809c5e3933f348f
/mhdlc/src/vpp_interface.cc
7fe8cdf210e1e1d85cd01dbdd6982bb5c101632f
[]
no_license
xinmeng/metahdl
5d3421a5f06521d821d089efd94958abf78816f3
b9465b3b44c1069382286365211ffb328a0b657f
refs/heads/master
2022-06-29T18:15:11.937153
2015-07-01T06:31:52
2015-07-01T06:31:52
32,431,363
7
0
null
null
null
null
UTF-8
C++
false
false
1,555
cc
/* Copyright (C) 1996 Himanshu M. Thaker This file is part of vpp. Vpp is distributed in the hope that it will be useful, but without any warranty. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Everyone is granted permission to copy, modify and redistribute vpp, but only under the conditions described in the document "vpp copying permission notice". An exact copy of the document is supposed to have been given to you along with vpp so that you can know how you may redistribute it all. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. */ /* * Program : vpp * Author : Himanshu M. Thaker * Date : Apr. 16, 1995 * Description : */ #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <stdlib.h> #include "common.h" #include "yacc_stuff.h" #include "proto.h" #include <string.h> #include <stdio.h> #include <string> using namespace std; extern FILE *yyout; extern char *current_file; extern int yyerror_count; extern int yy_flex_debug; #include "Mfunc.hh" int preprocess(FILE *in, const string &f, FILE *out) { yyin = in; yyout = out; current_file = (char*) malloc(f.length()+1); strcpy(current_file, f.c_str()); nl_count = 1; do_comment_count(TRUE, nl_count); yy_flex_debug = DebugPPLexer; yyparse(); return yyerror_count; }
[ "zinces@cd89b550-3133-0410-a459-13e4e5e64c7f" ]
zinces@cd89b550-3133-0410-a459-13e4e5e64c7f
e5c5610babe44fe01c020471e3db3bfa1ededfe0
e299f83b4dee33bdb986ac0de214b18380d63cf2
/builder.cpp
4a757aaa9a97ca1e32b8a96c00faae9ec537ad57
[]
no_license
GabrielInTheWorld/pva-exam
85bce2ff45866fe7afaffe8b8f957debb9205c76
bf80210642f2bd02cb03f4c6ec234e479b4a4ab5
refs/heads/master
2020-11-25T10:51:45.004052
2020-02-12T14:48:28
2020-02-12T14:48:28
228,627,369
0
0
null
null
null
null
UTF-8
C++
false
false
1,270
cpp
#include "builder.h" // Gebaut von Michael Sieb con_set Builder::buildPeriodicFreeUnorderedSet(concurrent_vector<string>* wordList, const int& k) { this->k = k; con_set result; auto callback = [&](int index) { string word = (*wordList)[index]; if ( !checkIfPeriod(word) ) { result.insert(word); } }; parallel_for(0, (int)wordList->size(), callback); return result; } // Gebaut von Gabriel Meyer bool Builder::checkIfPeriod(const string& word) { bool isPeriodic = true; concurrent_queue<int> q; const int MIDDLE = k / 2 + 1; auto findDivider = [&](int index) { if ( k % index == 0 ) { q.push(index); } }; parallel_for(1, MIDDLE, findDivider); int i = 0; while ( !q.empty() ) { if ( q.try_pop(i) ) { isPeriodic = true; string substr = word.substr(0, i); int subLength = (int)substr.length(); auto callback = [&](int index) { isPeriodic = isPeriodic && substr == word.substr(subLength * index, i); }; parallel_for(1, k / subLength, callback); if ( isPeriodic ) { break; } } } return isPeriodic; }
[ "meyergabriel@live.de" ]
meyergabriel@live.de
dcd186ddfe6d860424fc18a1d4c3cd1de105af0f
0329788a6657e212944fd1dffb818111e62ee2b0
/docs/snippets/cpp/VS_Snippets_Winforms/DataFormats_StringFormat/CPP/dataformats_stringformat.cpp
d2f936944f9f4651cb74a304e99588fc63474495
[ "CC-BY-4.0", "MIT" ]
permissive
MicrosoftDocs/visualstudio-docs
3e506da16412dfee1f83e82a600c7ce0041c0f33
bff072c38fcfc60cd02c9d1d4a7959ae26a8e23c
refs/heads/main
2023-09-01T16:13:32.046442
2023-09-01T14:26:34
2023-09-01T14:26:34
73,740,273
1,050
1,984
CC-BY-4.0
2023-09-14T17:04:58
2016-11-14T19:36:53
Python
UTF-8
C++
false
false
1,502
cpp
// System::Windows::Forms::DataFormats::StringFormat /* * The following example demonstrates the 'StringFormat' field of 'DataFormats' class. * It stores a String Object^ in Clipboard using the Clipboard's 'SetDataObject' method. * It retrieves the String Object^ stored in the Clipboard by using the GetDataObject method * which returns the 'IDataObject^'. It checks the String^ data is available or not * by using the 'GetDataPresent' method of 'IDataObject^'. If data is there then it * displays the data to the console. */ #using <System.dll> #using <System.Drawing.dll> #using <System.Windows.Forms.dll> using namespace System; using namespace System::Drawing::Imaging; using namespace System::Windows::Forms; int main() { // <Snippet1> try { String^ myString = "This is a String from the ClipBoard"; // Sets the data to the Clipboard. Clipboard::SetDataObject( myString ); IDataObject^ myDataObject = Clipboard::GetDataObject(); // Checks whether the data is present or not in the Clipboard. if ( myDataObject->GetDataPresent( DataFormats::StringFormat ) ) { String^ clipString = (String^)(myDataObject->GetData( DataFormats::StringFormat )); Console::WriteLine( clipString ); } else { Console::WriteLine( "No String information was contained in the clipboard." ); } } catch ( Exception^ e ) { Console::WriteLine( e->Message ); } // </Snippet1> }
[ "v-zhecai@microsoft.com" ]
v-zhecai@microsoft.com
b9fda0763151afdc938f441196f0e12fb639fdee
d928ac698895ec2a276b2549ce8c0f2cf39d4e03
/CodeForces/CF650Div3/650Div3D.cpp
113147712deccfc9ec5f4a8f2bdfe5f84405519e
[]
no_license
BlowHail/record-in-oj
bb066c979a804f8c957290544c74b8f3da28c2e8
2182145cbb03b4f8382eb927d2291b92e5c01b59
refs/heads/master
2023-03-18T23:44:56.351907
2021-03-13T06:33:50
2021-03-13T06:33:50
287,764,353
1
0
null
null
null
null
UTF-8
C++
false
false
1,541
cpp
#include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <string> #include <stack> #include <queue> #include <cmath> #define ll long long #define pi 3.1415927 #define inf 0x3f3f3f3f #define mod 1000000007 using namespace std; struct node { int a,b; }a[55],b[55]; string s; int aa[55],out[55]; int main () { int T,n,m,i,t,j,k,p; cin>>T; while (T--) { cin>>s; p=s.length(); cin>>n; for(i=0;i<n;++i) { cin>>a[i].a; a[i].b=0; } memset(aa,0,sizeof(aa)); memset(out,0,sizeof(out)); for(i=0;i<p;++i) aa[s[i]-96]++; p=26; while(p) { //cout<<"!!"<<endl; int cnt=0; for(i=0;i<n;++i) if(a[i].a==0&&a[i].b==0) cnt++; for(i=p;i>=1;i--) if(aa[i]>=cnt) { p=i-1; break; } memset(b,0,sizeof(b)); for(i=0;i<n;++i) if(a[i].a==0 && a[i].b==0) { out[i]=p+97; a[i].b=1; for(j=0;j<n;++j) if(a[j].a>0) b[j].a+=abs(j-i); } for(j=0;j<n;++j) a[j].a-=b[j].a; } for(i=0;i<n;++i) printf("%c",out[i]); cout<<endl; } return 0; }
[ "1144062115@qq.com" ]
1144062115@qq.com
a49bfa733aa6ac2df42f767294880fc4cbd4657b
1300358e915ec390bfd4eef88c1ead89b8bf3ba2
/quote_tunnels/my_tunnel_lib_sgit/src/sgit_data_formater.cpp
7ee996a325c97798826597d76a88a1f34d438a85
[]
no_license
19199883/gangof4
d04e7a5fb4b556a7ee29410e83b7761fb25fecbd
24370d709056fae7ff7085581a4d72478ce6ad3e
refs/heads/master
2020-05-21T19:15:21.073690
2019-10-30T10:26:25
2019-10-30T10:26:25
64,183,829
0
5
null
null
null
null
UTF-8
C++
false
false
33,809
cpp
#include "sgit_data_formater.h" #include <iostream> #include <sstream> using namespace std; static std::string indent_string = " "; static std::string newline_string = "\n"; std::string DatatypeFormater::ToString(const CSgitFtdcReqUserLoginField *pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcReqUserLoginField ///Login Request" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; ss << indent_string << "Password=" << pdata->Password << endl; ss << indent_string << "UserProductInfo=" << pdata->UserProductInfo << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcQryTradingAccountField *pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcQryTradingAccountField ///Capital account query" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcQryOrderField *pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcQryOrderField ///Order query" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "InstrumentID=" << pdata->InstrumentID << endl; ss << indent_string << "ExchangeID=" << pdata->ExchangeID << endl; ss << indent_string << "OrderSysID=" << pdata->OrderSysID << endl; ss << indent_string << "InsertTimeStart=" << pdata->InsertTimeStart << endl; ss << indent_string << "InsertTimeEnd=" << pdata->InsertTimeEnd << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcQryInvestorPositionField *pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcQryInvestorPositionField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "InstrumentID=" << pdata->InstrumentID << endl; return ss.str(); } std::string ToString(const CSgitFtdcQryInvestorPositionDetailField *p) { char buf[2048]; if (p) { snprintf(buf, sizeof(buf), "structName=CSgitFtdcQryInvestorPositionDetailField\n" " BrokerID=%s\n" " InvestorID=%s\n" " InstrumentID=%s\n", p->BrokerID, //请求ID p->InvestorID, //资金账户ID p->InstrumentID //合约代码 ); } else { snprintf(buf, sizeof(buf), "structName=CSgitFtdcQryInvestorPositionDetailField <null>"); } return buf; } std::string DatatypeFormater::ToString(const CSgitFtdcRspUserLoginField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcRspUserLoginField ///Login Respond" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "TradingDay=" << pdata->TradingDay << endl; ss << indent_string << "LoginTime=" << pdata->LoginTime << endl; ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; ss << indent_string << "SystemName=" << pdata->SystemName << endl; ss << indent_string << "FrontID=" << pdata->FrontID << endl; ss << indent_string << "SessionID=" << pdata->SessionID << endl; ss << indent_string << "MaxOrderRef=" << pdata->MaxOrderRef << endl; ss << indent_string << "SHFETime=" << pdata->SHFETime << endl; ss << indent_string << "DCETime=" << pdata->DCETime << endl; ss << indent_string << "CZCETime=" << pdata->CZCETime << endl; ss << indent_string << "FFEXTime=" << pdata->FFEXTime << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcUserLogoutField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcUserLogoutField ///Logout Request" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcUserPasswordUpdateField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcUserPasswordUpdateField ///Password change" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; ss << indent_string << "OldPassword=" << pdata->OldPassword << endl; ss << indent_string << "NewPassword=" << pdata->NewPassword << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcInputOrderField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcInputOrderField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "InstrumentID=" << pdata->InstrumentID << endl; ss << indent_string << "OrderRef=" << pdata->OrderRef << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; ss << indent_string << "OrderPriceType=" << pdata->OrderPriceType << endl; ss << indent_string << "Direction=" << pdata->Direction << endl; ss << indent_string << "CombOffsetFlag=" << pdata->CombOffsetFlag << endl; ss << indent_string << "CombHedgeFlag=" << pdata->CombHedgeFlag << endl; ss << indent_string << "LimitPrice=" << pdata->LimitPrice << endl; ss << indent_string << "VolumeTotalOriginal=" << pdata->VolumeTotalOriginal << endl; ss << indent_string << "TimeCondition=" << pdata->TimeCondition << endl; ss << indent_string << "GTDDate=" << pdata->GTDDate << endl; ss << indent_string << "VolumeCondition=" << pdata->VolumeCondition << endl; ss << indent_string << "MinVolume=" << pdata->MinVolume << endl; ss << indent_string << "ContingentCondition=" << pdata->ContingentCondition << endl; ss << indent_string << "StopPrice=" << pdata->StopPrice << endl; ss << indent_string << "ForceCloseReason=" << pdata->ForceCloseReason << endl; ss << indent_string << "IsAutoSuspend=" << pdata->IsAutoSuspend << endl; ss << indent_string << "BusinessUnit=" << pdata->BusinessUnit << endl; ss << indent_string << "RequestID=" << pdata->RequestID << endl; ss << indent_string << "UserForceClose=" << pdata->UserForceClose << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcInputOrderActionField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcInputOrderActionField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "OrderActionRef=" << pdata->OrderActionRef << endl; ss << indent_string << "OrderRef=" << pdata->OrderRef << endl; ss << indent_string << "RequestID=" << pdata->RequestID << endl; ss << indent_string << "FrontID=" << pdata->FrontID << endl; ss << indent_string << "SessionID=" << pdata->SessionID << endl; ss << indent_string << "ExchangeID=" << pdata->ExchangeID << endl; ss << indent_string << "OrderSysID=" << pdata->OrderSysID << endl; ss << indent_string << "ActionFlag=" << pdata->ActionFlag << endl; ss << indent_string << "LimitPrice=" << pdata->LimitPrice << endl; ss << indent_string << "VolumeChange=" << pdata->VolumeChange << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; ss << indent_string << "InstrumentID=" << pdata->InstrumentID << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcOrderActionField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcOrderActionField " << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "OrderActionRef=" << pdata->OrderActionRef << endl; ss << indent_string << "OrderRef=" << pdata->OrderRef << endl; ss << indent_string << "RequestID=" << pdata->RequestID << endl; ss << indent_string << "FrontID=" << pdata->FrontID << endl; ss << indent_string << "SessionID=" << pdata->SessionID << endl; ss << indent_string << "ExchangeID=" << pdata->ExchangeID << endl; ss << indent_string << "OrderSysID=" << pdata->OrderSysID << endl; ss << indent_string << "ActionFlag=" << pdata->ActionFlag << endl; ss << indent_string << "LimitPrice=" << pdata->LimitPrice << endl; ss << indent_string << "VolumeChange=" << pdata->VolumeChange << endl; ss << indent_string << "ActionDate=" << pdata->ActionDate << endl; ss << indent_string << "ActionTime=" << pdata->ActionTime << endl; ss << indent_string << "TraderID=" << pdata->TraderID << endl; ss << indent_string << "InstallID=" << pdata->InstallID << endl; ss << indent_string << "OrderLocalID=" << pdata->OrderLocalID << endl; ss << indent_string << "ActionLocalID=" << pdata->ActionLocalID << endl; ss << indent_string << "ParticipantID=" << pdata->ParticipantID << " ///会员代码: " << endl; ss << indent_string << "ClientID=" << pdata->ClientID << endl; ss << indent_string << "BusinessUnit=" << pdata->BusinessUnit << endl; ss << indent_string << "OrderActionStatus=" << pdata->OrderActionStatus << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; ss << indent_string << "StatusMsg=" << pdata->StatusMsg << endl; ss << indent_string << "InstrumentID=" << pdata->InstrumentID << endl; return ss.str(); } #if 0 std::string DatatypeFormater::ToString(const CSgitFtdcOrderField* p) { char buf[2048]; if (p) { snprintf(buf, sizeof(buf), "structName=CSgitFtdcOrderField\n" "\tBrokerID=%s\n" "\tInvestorID=%s\n" "\tInstrumentID=%s\n" "\tOrderRef=%s\n" "\tUserID=%s\n" "\tOrderPriceType=0x%02x\n" "\tDirection=0x%02x\n" "\tCombOffsetFlag=%s\n" "\tCombHedgeFlag=%s\n" "\tLimitPrice=%.4f\n" "\tVolumeTotalOriginal=%d\n" "\tTimeCondition=0x%02x\n" "\tGTDDate=%s\n" "\tVolumeCondition=0x%02x\n" "\tMinVolume=%d\n" "\tContingentCondition=0x%02x\n" "\tStopPrice=%.4f\n" "\tForceCloseReason=0x%02x\n" "\tIsAutoSuspend=%d\n" "\tBusinessUnit=%s\n" "\tRequestID=%d\n" "\tOrderLocalID=%s\n" "\tExchangeID=%s\n" "\tParticipantID=%s\n" "\tClientID=%s\n" "\tExchangeInstID=%s\n" "\tTraderID=%s\n" "\tInstallID=%d\n" "\tOrderSubmitStatus=0x%02x\n" "\tNotifySequence=%d\n" "\tTradingDay=%s\n" "\tSettlementID=%d\n" "\tOrderSysID=%s\n" "\tOrderSource=0x%02x\n" "\tOrderStatus=0x%02x\n" "\tOrderType=0x%02x\n" "\tVolumeTraded=%d\n" "\tVolumeTotal=%d\n" "\tInsertDate=%s\n" "\tInsertTime=%s\n" "\tActiveTime=%s\n" "\tSuspendTime=%s\n" "\tUpdateTime=%s\n" "\tCancelTime=%s\n" "\tActiveTraderID=%s\n" "\tClearingPartID=%s\n" "\tSequenceNo=%d\n" "\tFrontID=%d\n" "\tSessionID=%d\n" "\tUserProductInfo=%s\n" "\tStatusMsg=%s\n" "\tUserForceClose=%d\n" "\tActiveUserID=%s\n" "\tBrokerOrderSeq=%d\n" "\tRelativeOrderSysID=%s\n", p->BrokerID, p->InvestorID, p->InstrumentID, p->OrderRef, p->UserID, p->OrderPriceType, p->Direction, p->CombOffsetFlag, p->CombHedgeFlag, p->LimitPrice, p->VolumeTotalOriginal, p->TimeCondition, p->GTDDate, p->VolumeCondition, p->MinVolume, p->ContingentCondition, p->StopPrice, p->ForceCloseReason, p->IsAutoSuspend, p->BusinessUnit, p->RequestID, p->OrderLocalID, p->ExchangeID, p->ParticipantID, p->ClientID, p->ExchangeInstID, p->TraderID, p->InstallID, p->OrderSubmitStatus, p->NotifySequence, p->TradingDay, p->SettlementID, p->OrderSysID, p->OrderSource, p->OrderStatus, p->OrderType, p->VolumeTraded, p->VolumeTotal, p->InsertDate, p->InsertTime, p->ActiveTime, p->SuspendTime, p->UpdateTime, p->CancelTime, p->ActiveTraderID, p->ClearingPartID, p->SequenceNo, p->FrontID, p->SessionID, p->UserProductInfo, p->StatusMsg, p->UserForceClose, p->ActiveUserID, p->BrokerOrderSeq, p->RelativeOrderSysID ); } else { snprintf(buf, sizeof(buf), "structName=CSgitFtdcOrderField <null>"); } return buf; } #else // too much fields, delete useless fields std::string DatatypeFormater::ToString(const CSgitFtdcOrderField* p) { char buf[2048]; if (p) { snprintf(buf, sizeof(buf), "structName=CSgitFtdcOrderField\n" "\tBrokerID=%s\n" "\tInvestorID=%s\n" "\tInstrumentID=%s\n" "\tOrderRef=%s\n" "\tUserID=%s\n" "\tOrderPriceType=0x%02x\n" "\tDirection=0x%02x\n" "\tCombOffsetFlag=%s\n" "\tCombHedgeFlag=%s\n" "\tLimitPrice=%.4f\n" "\tVolumeTotalOriginal=%d\n" "\tTimeCondition=0x%02x\n" "\tGTDDate=%s\n" "\tVolumeCondition=0x%02x\n" "\tMinVolume=%d\n" "\tContingentCondition=0x%02x\n" "\tStopPrice=%.4f\n" "\tForceCloseReason=0x%02x\n" "\tOrderSysID=%s\n" "\tOrderSource=0x%02x\n" "\tOrderStatus=0x%02x\n" "\tOrderType=0x%02x\n" "\tVolumeTraded=%d\n" "\tVolumeTotal=%d\n" "\tInsertDate=%s\n" "\tInsertTime=%s\n" "\tActiveTime=%s\n", p->BrokerID, p->InvestorID, p->InstrumentID, p->OrderRef, p->UserID, p->OrderPriceType, p->Direction, p->CombOffsetFlag, p->CombHedgeFlag, p->LimitPrice, p->VolumeTotalOriginal, p->TimeCondition, p->GTDDate, p->VolumeCondition, p->MinVolume, p->ContingentCondition, p->StopPrice, p->ForceCloseReason, p->OrderSysID, p->OrderSource, p->OrderStatus, p->OrderType, p->VolumeTraded, p->VolumeTotal, p->InsertDate, p->InsertTime, p->ActiveTime ); } else { snprintf(buf, sizeof(buf), "structName=CSgitFtdcOrderField <null>"); } return buf; } #endif std::string DatatypeFormater::ToString(const CSgitFtdcTradeField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcTradeField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "InstrumentID=" << pdata->InstrumentID << endl; ss << indent_string << "OrderRef=" << pdata->OrderRef << endl; ss << indent_string << "UserID=" << pdata->UserID << endl; ss << indent_string << "ExchangeID=" << pdata->ExchangeID << endl; ss << indent_string << "TradeID=" << pdata->TradeID << endl; ss << indent_string << "Direction=" << pdata->Direction << endl; ss << indent_string << "OrderSysID=" << pdata->OrderSysID << endl; ss << indent_string << "ParticipantID=" << pdata->ParticipantID << endl; ss << indent_string << "ClientID=" << pdata->ClientID << endl; //ss << indent_string << "TradingRole=" << pdata->TradingRole << " ///交易角色: " << endl; ss << indent_string << "TradingRole="; pdata->TradingRole == '\0' ? ss << "<null>" : ss << pdata->TradingRole << endl; ss << indent_string << "ExchangeInstID=" << pdata->ExchangeInstID << endl; ss << indent_string << "OffsetFlag=" << pdata->OffsetFlag << endl; ss << indent_string << "HedgeFlag=" << pdata->HedgeFlag << endl; ss << indent_string << "Price=" << pdata->Price << endl; ss << indent_string << "Volume=" << pdata->Volume << endl; ss << indent_string << "TradeDate=" << pdata->TradeDate << endl; ss << indent_string << "TradeTime=" << pdata->TradeTime << endl; //ss << indent_string << "TradeType=" << pdata->TradeType << " ///成交类型: " << endl; ss << indent_string << "TradeType="; pdata->TradeType == '\0' ? ss << "<null>" : ss << pdata->TradeType << endl; //ss << indent_string << "PriceSource=" << pdata->PriceSource << " ///成交价来源: " << endl; ss << indent_string << "PriceSource="; pdata->PriceSource == '\0' ? ss << "<null>" : ss << pdata->PriceSource << endl; ss << indent_string << "TraderID=" << pdata->TraderID << endl; ss << indent_string << "OrderLocalID=" << pdata->OrderLocalID << endl; ss << indent_string << "ClearingPartID=" << pdata->ClearingPartID << endl; ss << indent_string << "BusinessUnit=" << pdata->BusinessUnit << endl; ss << indent_string << "SequenceNo=" << pdata->SequenceNo << endl; ss << indent_string << "TradingDay=" << pdata->TradingDay << endl; ss << indent_string << "SettlementID=" << pdata->SettlementID << endl; ss << indent_string << "BrokerOrderSeq=" << pdata->BrokerOrderSeq << endl; ss << indent_string << "TradeSource=" << pdata->TradeSource << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcSettlementInfoConfirmField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcSettlementInfoConfirmField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "ConfirmDate=" << pdata->ConfirmDate << endl; ss << indent_string << "ConfirmTime=" << pdata->ConfirmTime << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcInvestorPositionField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcInvestorPositionField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "InstrumentID=" << pdata->InstrumentID << endl; ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "PosiDirection=" << pdata->PosiDirection << endl; ss << indent_string << "HedgeFlag=" << pdata->HedgeFlag << endl; ss << indent_string << "PositionDate=" << (int) pdata->PositionDate << endl; ss << indent_string << "YdPosition=" << pdata->YdPosition << endl; ss << indent_string << "Position=" << pdata->Position << endl; ss << indent_string << "LongFrozen=" << pdata->LongFrozen << endl; ss << indent_string << "ShortFrozen=" << pdata->ShortFrozen << endl; ss << indent_string << "LongFrozenAmount=" << pdata->LongFrozenAmount << endl; ss << indent_string << "ShortFrozenAmount=" << pdata->ShortFrozenAmount << endl; ss << indent_string << "OpenVolume=" << pdata->OpenVolume << endl; ss << indent_string << "CloseVolume=" << pdata->CloseVolume << endl; ss << indent_string << "OpenAmount=" << pdata->OpenAmount << endl; ss << indent_string << "CloseAmount=" << pdata->CloseAmount << endl; ss << indent_string << "PositionCost=" << pdata->PositionCost << endl; ss << indent_string << "PreMargin=" << pdata->PreMargin << endl; ss << indent_string << "UseMargin=" << pdata->UseMargin << endl; ss << indent_string << "FrozenMargin=" << pdata->FrozenMargin << endl; ss << indent_string << "FrozenCash=" << pdata->FrozenCash << endl; ss << indent_string << "FrozenCommission=" << pdata->FrozenCommission << endl; ss << indent_string << "CashIn=" << pdata->CashIn << endl; ss << indent_string << "Commission=" << pdata->Commission << endl; ss << indent_string << "CloseProfit=" << pdata->CloseProfit << endl; ss << indent_string << "PositionProfit=" << pdata->PositionProfit << endl; ss << indent_string << "PreSettlementPrice=" << pdata->PreSettlementPrice << endl; ss << indent_string << "SettlementPrice=" << pdata->SettlementPrice << endl; ss << indent_string << "TradingDay=" << pdata->TradingDay << endl; ss << indent_string << "SettlementID=" << pdata->SettlementID << endl; ss << indent_string << "OpenCost=" << pdata->OpenCost << endl; ss << indent_string << "ExchangeMargin=" << pdata->ExchangeMargin << endl; ss << indent_string << "CombPosition=" << pdata->CombPosition << endl; ss << indent_string << "CombLongFrozen=" << pdata->CombLongFrozen << endl; ss << indent_string << "CombShortFrozen=" << pdata->CombShortFrozen << endl; ss << indent_string << "CloseProfitByDate=" << pdata->CloseProfitByDate << endl; ss << indent_string << "CloseProfitByTrade=" << pdata->CloseProfitByTrade << endl; ss << indent_string << "TodayPosition=" << pdata->TodayPosition << endl; ss << indent_string << "MarginRateByMoney=" << pdata->MarginRateByMoney << endl; ss << indent_string << "MarginRateByVolume=" << pdata->MarginRateByVolume << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcRspInfoField* pdata) { stringstream ss; ss << newline_string << indent_string << "structName=CSgitFtdcRspInfoField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "ErrorID=" << pdata->ErrorID << endl; ss << indent_string << "ErrorMsg=" << pdata->ErrorMsg << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcTradingAccountField *pdata) { stringstream ss; ss << std::fixed << newline_string << "structName=CSgitFtdcTradingAccountField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "AccountID=" << pdata->AccountID << endl; ss << indent_string << "PreMortgage=" << pdata->PreMortgage << endl; ss << indent_string << "PreCredit=" << pdata->PreCredit << endl; ss << indent_string << "PreDeposit=" << pdata->PreDeposit << endl; ss << indent_string << "PreBalance=" << pdata->PreBalance << endl; ss << indent_string << "PreMargin=" << pdata->PreMargin << endl; ss << indent_string << "InterestBase=" << pdata->InterestBase << endl; ss << indent_string << "Interest=" << pdata->Interest << endl; ss << indent_string << "Deposit=" << pdata->Deposit << endl; ss << indent_string << "Withdraw=" << pdata->Withdraw << endl; ss << indent_string << "FrozenMargin=" << pdata->FrozenMargin << endl; ss << indent_string << "FrozenCash=" << pdata->FrozenCash << endl; ss << indent_string << "FrozenCommission=" << pdata->FrozenCommission << endl; ss << indent_string << "CurrMargin=" << pdata->CurrMargin << endl; ss << indent_string << "CashIn=" << pdata->CashIn << endl; ss << indent_string << "Commission=" << pdata->Commission << endl; ss << indent_string << "CloseProfit=" << pdata->CloseProfit << endl; ss << indent_string << "PositionProfit=" << pdata->PositionProfit << endl; ss << indent_string << "Balance=" << pdata->Balance << endl; ss << indent_string << "Available=" << pdata->Available << endl; ss << indent_string << "WithdrawQuota=" << pdata->WithdrawQuota << endl; ss << indent_string << "Reserve=" << pdata->Reserve << endl; ss << indent_string << "TradingDay=" << pdata->TradingDay << endl; ss << indent_string << "SettlementID=" << pdata->SettlementID << endl; ss << indent_string << "Credit=" << pdata->Credit << endl; ss << indent_string << "Mortgage=" << pdata->Mortgage << endl; ss << indent_string << "ExchangeMargin=" << pdata->ExchangeMargin << endl; ss << indent_string << "DeliveryMargin=" << pdata->DeliveryMargin << endl; ss << indent_string << "ExchangeDeliveryMargin=" << pdata->ExchangeDeliveryMargin << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcSettlementInfoField *pdata) { stringstream ss; ss << std::fixed << newline_string << "structName=CSgitFtdcSettlementInfoField" << endl; if (!pdata) { ss << "<null>" << endl; return ss.str(); } ss << indent_string << "TradingDay=" << pdata->TradingDay << endl; ss << indent_string << "SettlementID=" << pdata->SettlementID << endl; ss << indent_string << "BrokerID=" << pdata->BrokerID << endl; ss << indent_string << "InvestorID=" << pdata->InvestorID << endl; ss << indent_string << "SequenceNo=" << pdata->SequenceNo << endl; ss << indent_string << "Content=" << pdata->Content << endl; return ss.str(); } std::string DatatypeFormater::ToString(const CSgitFtdcInvestorPositionDetailField *p) { char buf[2048]; if (p) { snprintf(buf, sizeof(buf), "structName=CSgitFtdcInvestorPositionDetailField\n" " InstrumentID=%s\n" " BrokerID=%s\n" " InvestorID=%s\n" " HedgeFlag=0x%02x\n" " Direction=0x%02x\n" " OpenDate=%s\n" " TradeID=%s\n" " Volume=%d\n" " OpenPrice=%.4f\n" " TradingDay=%s\n" " SettlementID=%d\n" " TradeType=0x%02x\n" " CombInstrumentID=%s\n" " ExchangeID=%s\n" " CloseProfitByDate=%.4f\n" " CloseProfitByTrade=%.4f\n" " PositionProfitByDate=%.4f\n" " PositionProfitByTrade=%.4f\n" " Margin=%.4f\n" " ExchMargin=%.4f\n" " MarginRateByMoney=%.4f\n" " MarginRateByVolume=%.4f\n" " LastSettlementPrice=%.4f\n" " SettlementPrice=%.4f\n" " CloseVolume=%d\n" " CloseAmount=%.4f\n", p->InstrumentID, //合约代码 p->BrokerID, //经纪公司代码 p->InvestorID, //投资者代码 p->HedgeFlag, //投机套保标志 p->Direction, //买卖 p->OpenDate, //开仓日期 p->TradeID, //成交编号 p->Volume, //数量 p->OpenPrice, //开仓价 p->TradingDay, //交易日 p->SettlementID, //结算编号 p->TradeType, //成交类型 p->CombInstrumentID, //组合合约代码 p->ExchangeID, //交易所代码 p->CloseProfitByDate, //逐日盯市平仓盈亏 p->CloseProfitByTrade, //逐笔对冲平仓盈亏 p->PositionProfitByDate, //逐日盯市持仓盈亏 p->PositionProfitByTrade, //逐笔对冲持仓盈亏 p->Margin, //投资者保证金 p->ExchMargin, //交易所保证金 p->MarginRateByMoney, //保证金率 p->MarginRateByVolume, //保证金率(按手数) p->LastSettlementPrice, //昨结算价 p->SettlementPrice, //结算价 p->CloseVolume, //平仓量 p->CloseAmount //平仓金额 ); } else { snprintf(buf, sizeof(buf), "structName=CSgitFtdcInvestorPositionDetailField <null>"); } return buf; } std::string DatatypeFormater::ToString(const CSgitFtdcInstrumentField *p) { char buf[2048]; if (p) { snprintf(buf, sizeof(buf), "structName=CSgitFtdcInstrumentField\n" " InstrumentID=%s\n" " ExchangeID=%s\n" " InstrumentName=%s\n" " ExchangeInstID=%s\n" " ProductID=%s\n" " ProductClass=0X%02X\n" " DeliveryYear=%04d\n" " DeliveryMonth=%02d\n" " MaxMarketOrderVolume=%d\n" " MinMarketOrderVolume=%d\n" " MaxLimitOrderVolume=%d\n" " MinLimitOrderVolume=%d\n" " VolumeMultiple=%d\n" " PriceTick=%.4f\n" " CreateDate=%s\n" " OpenDate=%s\n" " ExpireDate=%s\n" " StartDelivDate=%s\n" " EndDelivDate=%s\n" " InstLifePhase=0X%02X\n" " IsTrading=%d\n" " PositionType=0X%02X\n" " PositionDateType=0X%02X\n" " LongMarginRatio=%.8f\n" " ShortMarginRatio=%.8f\n", p->InstrumentID, //合约代码 p->ExchangeID, //交易所代码 p->InstrumentName, //合约名称 p->ExchangeInstID, //合约在交易所的代码 p->ProductID, //产品代码 p->ProductClass, //产品类型 p->DeliveryYear, //交割年份 p->DeliveryMonth, //交割月 p->MaxMarketOrderVolume, //市价单最大下单量 p->MinMarketOrderVolume, //市价单最小下单量 p->MaxLimitOrderVolume, //限价单最大下单量 p->MinLimitOrderVolume, //限价单最小下单量 p->VolumeMultiple, //合约数量乘数 p->PriceTick, //最小变动价位 p->CreateDate, //创建日 p->OpenDate, //上市日 p->ExpireDate, //到期日 p->StartDelivDate, //开始交割日 p->EndDelivDate, //结束交割日 p->InstLifePhase, //合约生命周期状态 p->IsTrading, //当前是否交易 p->PositionType, //持仓类型 p->PositionDateType, //持仓日期类型 p->LongMarginRatio, //多头保证金率 p->ShortMarginRatio //空头保证金率 ); } else { snprintf(buf, sizeof(buf), "structName=CSgitFtdcInstrumentField <null>"); } return buf; }
[ "17199883@qq.com" ]
17199883@qq.com
70a29f23a162ca0421588a64f4192f1375f1291b
780f8160ad80d0b5001951aae657909903eaba3b
/Win/terrainExtData.cpp
28647c6b061f34c990fd61810f2ed1496ded6fd8
[]
no_license
JMY1000/Mineways
52440d4b6882c9546081b734178d09054eb0f3a4
d7af95d213fc6508caf426acc5d3976877fff0b3
refs/heads/master
2021-05-16T01:13:15.683280
2017-10-15T20:45:24
2017-10-15T20:45:24
107,047,854
0
0
null
2017-10-15T20:44:51
2017-10-15T20:44:50
null
UTF-8
C++
false
false
1,962,696
cpp
#include "stdafx.h" int gTerrainExtWidth = 256; int gTerrainExtHeight = 544; unsigned char gTerrainExt[] = { 148,148,148,255, 195,195,195,255, 147,147,147,255, 134,134,134,255, 134,134,134,255, 143,143,143,255, 127,127,127,255, 140,140,140,255, 158,158,158,255, 150,150,150,255, 138,138,138,255, 135,135,135,255, 137,137,137,255, 167,167,167,255, 112,112,112,255, 141,141,141,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 116,180,74,255, 118,182,76,255, 115,179,73,255, 102,166,60,255, 102,166,60,255, 111,175,69,255, 95,159,53,255, 108,172,66,255, 126,190,84,255, 118,182,76,255, 106,170,64,255, 103,167,61,255, 105,169,63,255, 97,161,55,255, 80,144,38,255, 109,173,67,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 200,200,200,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 200,200,200,255, 205,205,205,255, 205,205,205,255, 193,193,193,255, 205,205,205,255, 200,200,200,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 168,168,168,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 146,146,146,255, 120,120,120,255, 146,146,146,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 155,86,67,255, 146,80,62,255, 155,86,67,255, 172,153,148,255, 155,86,67,255, 157,87,69,255, 143,80,63,255, 165,91,71,255, 155,86,67,255, 170,94,74,255, 141,78,61,255, 175,157,151,255, 155,86,67,255, 165,91,71,255, 155,86,67,255, 155,86,67,255, 219,68,26,255, 201,62,23,255, 183,56,21,255, 167,52,19,255, 219,68,26,255, 201,62,23,255, 183,56,21,255, 167,52,19,255, 219,68,26,255, 201,62,23,255, 183,56,21,255, 167,52,19,255, 219,68,26,255, 201,62,23,255, 183,56,21,255, 167,52,19,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,2,187,187, 107,17,206,206, 115,22,209,209, 101,14,203,203, 97,11,201,201, 71,1,183,183, 72,1,184,184, 100,13,202,202, 81,4,191,191, 62,0,173,173, 98,12,201,201, 130,36,216,216, 81,4,191,191, 56,0,164,164, 60,0,171,171, 85,5,193,193, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,255, 140,140,140,255, 160,160,160,255, 151,151,151,255, 153,153,153,255, 128,128,128,255, 153,153,153,255, 130,130,130,255, 127,127,127,255, 169,169,169,255, 166,166,166,255, 147,147,147,255, 195,195,195,255, 140,140,140,255, 135,135,135,255, 139,139,139,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 135,135,135,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 89,61,41,255, 89,61,41,255, 117,181,75,255, 108,172,66,255, 138,185,90,255, 129,176,81,255, 131,178,83,255, 89,61,41,255, 104,168,62,255, 98,162,56,255, 95,159,53,255, 147,194,99,255, 144,191,96,255, 115,179,73,255, 97,161,55,255, 108,172,66,255, 103,167,61,255, 107,171,65,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 115,94,57,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 159,132,77,255, 180,144,90,255, 188,152,98,255, 159,132,77,255, 200,200,200,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 128,128,128,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 128,128,128,255, 124,69,54,255, 124,69,54,255, 134,74,58,255, 183,165,159,255, 177,98,77,255, 124,69,54,255, 110,61,48,255, 103,57,45,255, 124,69,54,255, 118,66,50,255, 131,73,57,255, 175,157,151,255, 155,86,67,255, 127,70,55,255, 124,69,54,255, 126,69,54,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 221,221,221,255, 255,255,255,255, 221,221,221,255, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 157,67,226,226, 135,41,218,218, 102,14,203,203, 138,44,219,219, 117,24,210,210, 58,0,167,167, 59,0,169,169, 80,4,191,191, 66,0,178,178, 56,0,164,164, 80,4,190,190, 74,2,185,185, 65,0,178,178, 72,1,184,184, 78,3,188,188, 84,5,193,193, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,173,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 163,163,163,255, 141,141,141,255, 125,125,125,255, 132,132,132,255, 137,137,137,255, 136,136,136,255, 144,144,144,255, 144,144,144,255, 148,148,148,255, 159,159,159,255, 168,168,168,255, 173,173,173,255, 135,135,135,255, 119,119,119,255, 128,128,128,255, 182,182,182,255, 127,127,127,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 141,188,93,255, 89,61,41,255, 156,203,108,255, 100,164,58,255, 105,169,63,255, 89,61,41,255, 112,176,70,255, 89,61,41,255, 116,180,74,255, 127,191,85,255, 146,193,98,255, 151,198,103,255, 89,61,41,255, 87,151,45,255, 96,160,54,255, 89,61,41,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 115,94,57,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 200,200,200,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 135,135,135,255, 135,135,135,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 135,135,135,255, 124,69,54,255, 140,77,60,255, 107,60,47,255, 175,157,151,255, 155,86,67,255, 127,70,55,255, 124,69,54,255, 115,63,49,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 175,157,151,255, 130,73,56,255, 143,80,63,255, 124,69,54,255, 141,78,61,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 86,86,86,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 86,86,86,255, 0,0,0,255, 0,0,0,255, 86,86,86,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 86,86,86,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 255,255,255,255, 221,221,221,255, 206,206,206,255, 0,0,0,0, 0,0,0,0, 237,237,237,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,29,213,213, 107,17,206,206, 156,66,226,226, 105,16,205,205, 64,0,176,176, 57,0,165,165, 84,5,193,193, 119,26,211,211, 120,27,212,212, 85,6,194,194, 101,13,203,203, 110,19,207,207, 66,0,178,178, 55,0,161,161, 79,3,190,190, 111,20,208,208, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,173,63,255, 87,173,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,173,63,255, 64,143,47,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,255, 133,133,133,255, 138,138,138,255, 151,151,151,255, 145,145,145,255, 153,153,153,255, 125,125,125,255, 146,146,146,255, 127,127,127,255, 131,131,131,255, 141,141,141,255, 151,151,151,255, 143,143,143,255, 139,139,139,255, 167,167,167,255, 125,125,125,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 150,108,74,255, 108,108,108,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 108,108,108,255, 89,61,41,255, 89,61,41,255, 113,177,71,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 95,159,53,255, 89,61,41,255, 109,173,67,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 200,200,200,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 135,135,135,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 160,142,136,255, 159,140,135,255, 156,138,132,255, 177,159,153,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 155,136,131,255, 158,138,132,255, 160,140,134,255, 158,138,132,255, 181,163,157,255, 158,138,132,255, 158,138,132,255, 155,136,131,255, 163,145,139,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 86,86,86,255, 168,52,20,255, 145,45,17,255, 86,86,86,255, 145,45,17,255, 86,86,86,255, 0,0,0,255, 145,45,17,255, 145,45,17,255, 86,86,86,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 237,237,237,255, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 237,237,237,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 77,3,188,188, 101,14,203,203, 108,18,206,206, 61,0,173,173, 57,0,165,165, 87,6,195,195, 138,44,219,219, 103,15,204,204, 114,22,209,209, 72,2,184,184, 88,6,195,195, 158,68,226,226, 101,13,203,203, 62,0,174,174, 56,0,164,164, 93,9,198,198, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 38,111,31,255, 64,143,47,255, 0,0,0,0, 87,173,63,255, 87,173,63,255, 64,143,47,255, 0,0,0,0, 64,143,47,255, 127,97,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 162,162,162,255, 131,131,131,255, 173,173,173,255, 131,131,131,255, 172,172,172,255, 174,174,174,255, 136,136,136,255, 172,172,172,255, 186,186,186,255, 117,117,117,255, 128,128,128,255, 167,167,167,255, 171,171,171,255, 126,126,126,255, 136,136,136,255, 141,141,141,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 185,133,92,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 108,108,108,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 185,133,92,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 108,108,108,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 200,200,200,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 135,135,135,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 137,76,59,255, 155,86,67,255, 155,86,67,255, 155,86,67,255, 155,86,67,255, 146,80,62,255, 155,86,67,255, 175,157,151,255, 165,91,71,255, 165,91,71,255, 159,88,69,255, 155,86,67,255, 155,86,67,255, 155,86,67,255, 155,86,67,255, 174,154,150,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 86,86,86,255, 219,68,26,255, 86,86,86,255, 168,52,20,255, 86,86,86,255, 219,68,26,255, 0,0,0,255, 0,0,0,255, 86,86,86,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 237,237,237,255, 221,221,221,255, 0,0,0,0, 206,206,206,255, 237,237,237,255, 0,0,0,0, 221,221,221,255, 0,0,0,0, 221,221,221,255, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,0,170,170, 78,3,189,189, 56,0,163,163, 56,0,162,162, 101,14,203,203, 133,38,217,217, 100,13,202,202, 57,0,166,166, 66,0,178,178, 65,0,177,177, 57,0,166,166, 87,6,195,195, 125,31,214,214, 102,14,203,203, 62,0,174,174, 57,0,165,165, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,173,63,255, 127,97,57,255, 31,101,25,255, 16,82,16,255, 0,0,0,0, 64,143,47,255, 16,82,16,255, 76,50,20,255, 90,63,30,255, 90,63,30,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 153,153,153,255, 152,152,152,255, 120,120,120,255, 166,166,166,255, 129,129,129,255, 150,150,150,255, 149,149,149,255, 155,155,155,255, 135,135,135,255, 149,149,149,255, 136,136,136,255, 131,131,131,255, 120,120,120,255, 136,136,136,255, 142,142,142,255, 148,148,148,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 127,127,127,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 197,197,197,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 135,135,135,255, 128,128,128,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 135,135,135,255, 155,86,67,255, 124,69,54,255, 154,85,66,255, 124,69,54,255, 106,59,46,255, 124,69,54,255, 121,67,53,255, 175,157,151,255, 155,86,67,255, 124,69,54,255, 115,63,49,255, 124,69,54,255, 109,61,47,255, 124,69,54,255, 124,69,54,255, 177,159,153,255, 219,219,219,255, 219,219,219,255, 219,219,219,255, 206,206,206,255, 219,219,219,255, 219,219,219,255, 219,219,219,255, 219,219,219,255, 206,206,206,255, 219,219,219,255, 219,219,219,255, 206,206,206,255, 206,206,206,255, 219,219,219,255, 219,219,219,255, 206,206,206,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 0,0,0,255, 0,0,0,255, 145,45,17,255, 86,86,86,255, 142,142,142,255, 86,86,86,255, 86,86,86,255, 0,0,0,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,5,11,255, 186,5,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,0,176,176, 69,1,181,181, 61,0,172,172, 98,11,201,201, 151,58,224,224, 99,12,202,202, 58,0,167,167, 56,0,164,164, 57,0,166,166, 73,2,185,185, 58,0,167,167, 55,0,159,159, 81,4,191,191, 135,41,218,218, 115,23,209,209, 57,0,166,166, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,143,47,255, 112,83,46,255, 16,82,16,255, 16,82,16,255, 0,0,0,0, 16,82,16,255, 127,97,57,255, 90,63,30,255, 76,50,20,255, 76,50,20,255, 127,97,57,255, 0,0,0,0, 0,0,0,0, 126,126,126,255, 156,156,156,255, 165,165,165,255, 144,144,144,255, 146,146,146,255, 131,131,131,255, 138,138,138,255, 127,127,127,255, 132,132,132,255, 135,135,135,255, 181,181,181,255, 172,172,172,255, 145,145,145,255, 167,167,167,255, 151,151,151,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 128,128,128,255, 127,127,127,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 205,205,205,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 146,146,146,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 155,86,67,255, 98,55,42,255, 136,76,58,255, 110,61,48,255, 124,69,54,255, 101,55,43,255, 124,69,54,255, 181,161,155,255, 167,94,71,255, 110,61,48,255, 131,73,57,255, 118,66,50,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 174,155,150,255, 206,206,206,255, 219,219,219,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 219,219,219,255, 0,0,0,255, 206,206,206,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 219,219,219,255, 206,206,206,255, 219,68,26,255, 142,142,142,255, 86,86,86,255, 86,86,86,255, 219,68,26,255, 142,142,142,255, 0,0,0,255, 86,86,86,255, 0,0,0,255, 86,86,86,255, 0,0,0,255, 86,86,86,255, 86,86,86,255, 0,0,0,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 206,206,206,255, 221,221,221,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,5,11,255, 98,2,4,255, 143,3,5,255, 186,5,11,255, 209,6,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,30,214,214, 101,13,203,203, 80,4,190,190, 138,44,219,219, 115,22,209,209, 58,0,168,168, 58,0,168,168, 73,2,185,185, 74,2,185,185, 82,4,192,192, 93,9,198,198, 64,0,176,176, 57,0,166,166, 84,5,193,193, 136,42,218,218, 91,8,197,197, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 112,83,46,255, 127,97,57,255, 76,50,20,255, 127,97,57,255, 90,63,30,255, 76,50,20,255, 16,82,16,255, 0,0,0,0, 87,173,63,255, 64,143,47,255, 0,0,0,0, 143,143,143,255, 135,135,135,255, 157,157,157,255, 139,139,139,255, 144,144,144,255, 124,124,124,255, 164,164,164,255, 132,132,132,255, 151,151,151,255, 173,173,173,255, 135,135,135,255, 129,129,129,255, 143,143,143,255, 160,160,160,255, 127,127,127,255, 169,169,169,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 168,168,168,255, 135,135,135,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 120,120,120,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 135,135,135,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 135,135,135,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 156,138,132,255, 157,137,133,255, 160,140,134,255, 158,138,132,255, 177,159,153,255, 158,138,132,255, 158,138,132,255, 155,136,131,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 177,159,153,255, 206,206,206,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 0,0,0,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 206,206,206,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 86,86,86,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 86,86,86,255, 145,45,17,255, 168,52,20,255, 0,0,0,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 206,206,206,255, 255,255,255,255, 237,237,237,255, 206,206,206,255, 237,237,237,255, 221,221,221,255, 237,237,237,255, 237,237,237,255, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 209,6,9,255, 209,6,9,255, 58,1,2,255, 72,1,2,255, 145,2,5,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,10,199,199, 70,1,182,182, 65,0,177,177, 94,9,199,199, 78,3,189,189, 63,0,175,175, 71,1,183,183, 62,0,174,174, 110,19,207,207, 97,11,200,200, 111,20,207,207, 107,17,206,206, 59,0,170,170, 58,0,168,168, 75,2,187,187, 88,7,195,195, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,173,63,255, 16,82,16,255, 0,0,0,0, 86,59,27,255, 90,63,30,255, 87,173,63,255, 87,173,63,255, 0,0,0,0, 0,0,0,0, 87,173,63,255, 64,143,47,255, 16,82,16,255, 0,0,0,0, 167,167,167,255, 155,155,155,255, 182,182,182,255, 170,170,170,255, 172,172,172,255, 129,129,129,255, 173,173,173,255, 156,156,156,255, 179,179,179,255, 170,170,170,255, 130,130,130,255, 146,146,146,255, 133,133,133,255, 147,147,147,255, 158,158,158,255, 126,126,126,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 115,94,57,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 200,200,200,255, 205,205,205,255, 205,205,205,255, 193,193,193,255, 205,205,205,255, 197,197,197,255, 200,200,200,255, 200,200,200,255, 200,200,200,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 176,176,176,255, 135,135,135,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 146,146,146,255, 159,88,69,255, 155,86,67,255, 155,86,67,255, 175,157,151,255, 151,83,65,255, 155,86,67,255, 163,91,71,255, 178,99,78,255, 159,88,69,255, 155,86,67,255, 155,86,67,255, 175,157,151,255, 155,86,67,255, 155,86,67,255, 178,99,78,255, 126,69,54,255, 206,206,206,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 0,0,0,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 206,206,206,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 86,86,86,255, 219,68,26,255, 86,86,86,255, 86,86,86,255, 0,0,0,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 255,255,255,255, 237,237,237,255, 221,221,221,255, 206,206,206,255, 221,221,221,255, 237,237,237,255, 221,221,221,255, 221,221,221,255, 255,255,255,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,7,15,255, 247,7,15,255, 186,5,11,255, 145,2,5,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,211,2,255, 241,249,2,255, 0,0,0,0, 241,249,2,255, 182,188,1,255, 241,249,2,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 113,21,209,209, 79,3,190,190, 68,1,181,181, 91,8,198,198, 77,3,188,188, 73,2,185,185, 68,1,181,181, 56,0,163,163, 113,21,209,209, 138,44,219,219, 154,62,225,225, 84,5,193,193, 62,0,174,174, 58,0,168,168, 105,16,205,205, 98,12,201,201, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,143,47,255, 0,0,0,0, 127,97,57,255, 116,86,49,255, 116,86,49,255, 64,143,47,255, 31,101,25,255, 16,82,16,255, 76,50,20,255, 0,0,0,0, 16,82,16,255, 0,0,0,0, 0,0,0,0, 151,151,151,255, 130,130,130,255, 183,183,183,255, 141,141,141,255, 140,140,140,255, 152,152,152,255, 170,170,170,255, 128,128,128,255, 135,135,135,255, 145,145,145,255, 146,146,146,255, 169,169,169,255, 142,142,142,255, 179,179,179,255, 143,143,143,255, 129,129,129,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 127,127,127,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 200,200,200,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 135,135,135,255, 135,135,135,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 135,135,135,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 173,153,149,255, 148,82,64,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 134,74,58,255, 137,76,59,255, 121,67,53,255, 171,152,147,255, 155,86,67,255, 136,76,58,255, 124,69,54,255, 124,69,54,255, 206,206,206,255, 175,175,175,255, 175,175,175,255, 0,0,0,255, 206,206,206,255, 175,175,175,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 206,206,206,255, 206,206,206,255, 0,0,0,255, 175,175,175,255, 175,175,175,255, 206,206,206,255, 219,68,26,255, 142,142,142,255, 86,86,86,255, 86,86,86,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 142,142,142,255, 145,45,17,255, 0,0,0,255, 86,86,86,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 237,237,237,255, 206,206,206,255, 237,237,237,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 209,6,9,255, 18,114,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,211,2,255, 204,211,2,255, 241,249,2,255, 142,147,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 90,8,197,197, 68,1,180,180, 80,4,190,190, 131,37,216,216, 124,31,214,214, 64,0,176,176, 60,0,171,171, 75,2,187,187, 83,5,192,192, 116,24,210,210, 110,19,207,207, 113,21,208,208, 93,9,199,199, 71,1,183,183, 85,6,194,194, 81,4,191,191, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,143,47,255, 116,87,49,255, 76,50,20,255, 90,63,30,255, 127,97,57,255, 16,82,16,255, 90,63,30,255, 90,63,30,255, 116,86,49,255, 127,97,57,255, 87,173,63,255, 0,0,0,0, 155,155,155,255, 158,158,158,255, 151,151,151,255, 165,165,165,255, 130,130,130,255, 182,182,182,255, 142,142,142,255, 147,147,147,255, 192,192,192,255, 121,121,121,255, 167,167,167,255, 131,131,131,255, 143,143,143,255, 136,136,136,255, 151,151,151,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 135,135,135,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 135,135,135,255, 121,85,58,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 200,200,200,255, 168,168,168,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 135,135,135,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 135,135,135,255, 137,76,59,255, 124,69,54,255, 136,76,58,255, 182,163,158,255, 155,86,67,255, 124,69,54,255, 95,53,41,255, 124,69,54,255, 107,60,47,255, 130,73,56,255, 124,69,54,255, 174,154,150,255, 155,86,67,255, 124,69,54,255, 134,74,58,255, 124,69,54,255, 175,175,175,255, 175,175,175,255, 206,206,206,255, 175,175,175,255, 175,175,175,255, 206,206,206,255, 175,175,175,255, 175,175,175,255, 175,175,175,255, 206,206,206,255, 175,175,175,255, 175,175,175,255, 206,206,206,255, 175,175,175,255, 175,175,175,255, 175,175,175,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 142,142,142,255, 86,86,86,255, 145,45,17,255, 0,0,0,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,249,2,255, 241,249,2,255, 182,188,1,255, 142,147,0,255, 142,147,0,255, 204,211,2,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,1,183,183, 64,0,176,176, 55,0,158,158, 77,3,188,188, 133,39,217,217, 136,42,218,218, 77,3,188,188, 76,2,187,187, 110,19,207,207, 98,12,201,201, 152,60,224,224, 135,40,218,218, 66,0,178,178, 57,0,166,166, 71,1,183,183, 66,0,179,179, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,173,63,255, 31,101,25,255, 76,50,20,255, 0,0,0,0, 87,173,63,255, 16,82,16,255, 76,50,20,255, 76,50,20,255, 87,173,63,255, 16,82,16,255, 0,0,0,0, 16,82,16,255, 64,143,47,255, 132,132,132,255, 173,173,173,255, 134,134,134,255, 163,163,163,255, 151,151,151,255, 132,132,132,255, 146,146,146,255, 137,137,137,255, 151,151,151,255, 146,146,146,255, 140,140,140,255, 123,123,123,255, 179,179,179,255, 127,127,127,255, 125,125,125,255, 138,138,138,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 108,108,108,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 108,108,108,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 115,94,57,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 193,193,193,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 120,120,120,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 158,138,132,255, 158,138,132,255, 153,133,127,255, 177,159,153,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 158,138,132,255, 156,138,132,255, 178,160,154,255, 157,137,133,255, 160,142,136,255, 155,136,131,255, 158,138,132,255, 182,56,21,255, 160,49,19,255, 139,43,16,255, 120,37,14,255, 182,56,21,255, 160,49,19,255, 139,43,16,255, 120,37,14,255, 182,56,21,255, 160,49,19,255, 139,43,16,255, 120,37,14,255, 182,56,21,255, 160,49,19,255, 139,43,16,255, 120,37,14,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 0,0,0,255, 145,45,17,255, 0,0,0,255, 145,45,17,255, 0,0,0,255, 86,86,86,255, 145,45,17,255, 0,0,0,255, 86,86,86,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 237,237,237,255, 0,0,0,0, 206,206,206,255, 237,237,237,255, 221,221,221,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 88,7,196,196, 113,21,208,208, 66,0,178,178, 60,0,172,172, 88,7,196,196, 151,59,224,224, 145,52,222,222, 84,5,193,193, 100,13,202,202, 145,52,222,222, 127,33,215,215, 70,1,182,182, 56,0,164,164, 77,3,188,188, 136,42,218,218, 86,6,194,194, 0,0,0,0, 0,0,0,0, 87,173,63,255, 64,143,47,255, 16,82,16,255, 16,82,16,255, 0,0,0,0, 64,143,47,255, 16,82,16,255, 127,97,57,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,82,16,255, 186,186,186,255, 151,151,151,255, 129,129,129,255, 138,138,138,255, 153,153,153,255, 145,145,145,255, 133,133,133,255, 122,122,122,255, 138,138,138,255, 145,145,145,255, 138,138,138,255, 125,125,125,255, 159,159,159,255, 165,165,165,255, 121,121,121,255, 151,151,151,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 200,200,200,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 135,135,135,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 157,87,69,255, 159,88,69,255, 170,94,74,255, 155,86,67,255, 155,86,67,255, 155,86,67,255, 146,80,62,255, 171,151,147,255, 148,82,64,255, 178,99,78,255, 155,86,67,255, 155,86,67,255, 151,83,65,255, 155,86,67,255, 157,87,69,255, 184,164,158,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 86,86,86,255, 219,68,26,255, 219,68,26,255, 86,86,86,255, 168,52,20,255, 86,86,86,255, 0,0,0,255, 0,0,0,255, 86,86,86,255, 86,86,86,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 219,68,26,255, 219,68,26,255, 219,68,26,255, 168,52,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 237,237,237,255, 221,221,221,255, 0,0,0,0, 221,221,221,255, 221,221,221,255, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,221,221,255, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 16,99,0,255, 22,135,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,5,193,193, 138,44,219,219, 131,37,217,217, 69,1,181,181, 61,0,172,172, 74,2,185,185, 139,45,219,219, 114,22,209,209, 112,21,208,208, 134,39,217,217, 74,2,186,186, 56,0,162,162, 79,3,190,190, 134,40,217,217, 145,51,222,222, 82,4,192,192, 0,0,0,0, 0,0,0,0, 64,143,47,255, 16,82,16,255, 0,0,0,0, 16,82,16,255, 0,0,0,0, 76,50,20,255, 127,97,57,255, 87,173,63,255, 38,111,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,129,129,255, 168,168,168,255, 118,118,118,255, 146,146,146,255, 125,125,125,255, 153,153,153,255, 129,129,129,255, 195,195,195,255, 161,161,161,255, 147,147,147,255, 168,168,168,255, 155,155,155,255, 160,160,160,255, 136,136,136,255, 168,168,168,255, 174,174,174,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 116,88,68,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 116,88,68,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 180,144,90,255, 159,132,77,255, 115,94,57,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 200,200,200,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 135,135,135,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 155,86,67,255, 124,69,54,255, 121,67,53,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 106,59,46,255, 171,151,147,255, 155,86,67,255, 121,67,53,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 126,69,54,255, 128,71,56,255, 175,157,151,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 86,86,86,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 86,86,86,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 86,86,86,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 206,206,206,255, 237,237,237,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 221,221,221,255, 255,255,255,255, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 18,114,0,255, 22,135,0,255, 0,0,0,0, 22,135,0,255, 0,0,0,0, 22,135,0,255, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,99,0,255, 22,135,0,255, 22,135,0,255, 16,99,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,2,185,185, 75,2,187,187, 138,44,219,219, 131,37,216,216, 66,0,178,178, 55,0,157,157, 78,3,189,189, 79,3,190,190, 87,6,195,195, 67,0,179,179, 56,0,164,164, 77,3,188,188, 121,28,212,212, 137,43,219,219, 70,1,183,183, 63,0,176,176, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,97,57,255, 116,87,49,255, 76,50,20,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 163,163,163,255, 161,161,161,255, 192,192,192,255, 123,123,123,255, 179,179,179,255, 171,171,171,255, 148,148,148,255, 147,147,147,255, 126,126,126,255, 149,149,149,255, 149,149,149,255, 135,135,135,255, 169,169,169,255, 157,157,157,255, 139,139,139,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 200,200,200,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 135,135,135,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 155,86,67,255, 106,59,46,255, 134,74,58,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 176,156,152,255, 155,86,67,255, 124,69,54,255, 124,69,54,255, 124,69,54,255, 130,73,56,255, 124,69,54,255, 128,71,56,255, 175,157,151,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 193,60,23,255, 168,52,20,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 219,68,26,255, 142,142,142,255, 142,142,142,255, 145,45,17,255, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 255,255,255,255, 221,221,221,255, 206,206,206,255, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 18,114,0,255, 0,0,0,0, 17,111,0,255, 18,114,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,99,0,255, 22,135,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 71,1,183,183, 68,1,181,181, 94,10,199,199, 166,79,229,229, 123,30,213,213, 64,0,177,177, 61,0,173,173, 79,3,190,190, 77,3,188,188, 58,0,167,167, 70,1,182,182, 132,38,217,217, 112,21,208,208, 66,0,179,179, 56,0,163,163, 67,0,179,179, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,97,57,255, 90,63,30,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 133,133,133,255, 150,150,150,255, 136,136,136,255, 137,137,137,255, 164,164,164,255, 152,152,152,255, 148,148,148,255, 147,147,147,255, 142,142,142,255, 191,191,191,255, 124,124,124,255, 169,169,169,255, 132,132,132,255, 144,144,144,255, 136,136,136,255, 158,158,158,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 124,98,62,255, 105,84,51,255, 105,84,51,255, 124,98,62,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 76,61,38,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 163,163,163,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 120,120,120,255, 146,146,146,255, 146,146,146,255, 135,135,135,255, 135,135,135,255, 135,135,135,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 120,120,120,255, 146,146,146,255, 146,146,146,255, 135,135,135,255, 135,135,135,255, 135,135,135,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 158,138,132,255, 157,137,133,255, 152,134,128,255, 158,140,134,255, 158,138,132,255, 158,140,134,255, 158,138,132,255, 177,159,153,255, 160,140,134,255, 158,138,132,255, 155,136,131,255, 158,138,132,255, 160,140,134,255, 158,138,132,255, 158,138,132,255, 172,153,148,255, 196,60,23,255, 178,55,21,255, 160,49,19,255, 145,45,17,255, 196,60,23,255, 178,55,21,255, 160,49,19,255, 145,45,17,255, 196,60,23,255, 178,55,21,255, 160,49,19,255, 145,45,17,255, 196,60,23,255, 178,55,21,255, 160,49,19,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 168,52,20,255, 145,45,17,255, 145,45,17,255, 145,45,17,255, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 18,114,0,255, 16,99,0,255, 18,114,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,0,159,159, 85,5,193,193, 97,11,200,200, 105,16,205,205, 108,17,206,206, 84,5,193,193, 80,3,190,190, 123,29,213,213, 105,16,205,205, 78,3,189,189, 115,22,209,209, 115,23,210,210, 64,0,177,177, 58,0,167,167, 66,0,178,178, 64,0,177,177, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 112,83,46,255, 90,63,30,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,125,125,255, 100,100,100,255, 98,98,98,255, 176,176,176,255, 169,169,169,255, 127,127,127,255, 112,112,112,255, 169,169,169,255, 162,162,162,255, 126,126,126,255, 100,100,100,255, 82,82,82,255, 90,90,90,255, 109,109,109,255, 166,166,166,255, 176,176,176,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 7,7,7,255, 151,151,151,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 199,190,141,255, 226,216,168,255, 225,215,167,255, 219,213,156,255, 230,221,172,255, 218,212,156,255, 210,204,148,255, 216,210,154,255, 226,220,165,255, 221,215,160,255, 216,208,155,255, 223,213,164,255, 220,209,161,255, 247,245,210,255, 202,196,141,255, 217,210,155,255, 131,126,125,255, 95,92,89,255, 165,161,161,255, 145,140,139,255, 129,127,127,255, 114,112,110,255, 129,127,127,255, 163,162,161,255, 140,140,140,255, 140,140,140,255, 90,88,84,255, 145,140,139,255, 145,140,139,255, 129,127,127,255, 129,127,127,255, 88,86,80,255, 70,57,38,255, 105,84,51,255, 108,87,54,255, 155,123,76,255, 61,48,29,255, 109,88,55,255, 149,117,70,255, 65,52,33,255, 102,81,48,255, 104,83,50,255, 103,82,49,255, 124,98,62,255, 109,88,55,255, 124,98,62,255, 105,84,51,255, 156,124,77,255, 106,85,52,255, 105,84,51,255, 60,47,28,255, 105,84,51,255, 105,84,51,255, 103,82,49,255, 60,47,28,255, 60,47,28,255, 60,47,28,255, 105,84,51,255, 106,85,52,255, 60,47,28,255, 110,89,56,255, 105,84,51,255, 108,87,54,255, 109,88,55,255, 190,190,190,255, 180,180,180,255, 181,181,181,255, 186,186,186,255, 191,191,191,255, 195,195,195,255, 196,196,196,255, 195,195,195,255, 195,195,195,255, 195,195,195,255, 196,196,196,255, 184,184,184,255, 185,185,185,255, 185,185,185,255, 185,185,185,255, 186,186,186,255, 216,175,45,255, 216,173,45,255, 218,177,45,255, 224,187,47,255, 227,196,51,255, 232,204,57,255, 234,208,58,255, 234,206,57,255, 235,201,55,255, 236,199,56,255, 235,210,64,255, 234,214,68,255, 237,217,73,255, 239,220,78,255, 240,221,82,255, 234,204,57,255, 0,173,160,255, 0,173,160,255, 0,173,160,255, 0,173,160,255, 0,173,160,255, 0,188,178,255, 0,194,184,255, 0,191,181,255, 0,189,179,255, 0,188,178,255, 0,196,186,255, 0,199,190,255, 10,202,194,255, 25,206,198,255, 30,207,199,255, 0,189,179,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 98,98,98,255, 169,169,169,255, 172,172,172,255, 135,135,135,255, 103,103,103,255, 169,169,169,255, 134,134,134,255, 176,176,176,255, 141,141,141,255, 142,142,142,255, 98,98,98,255, 99,99,99,255, 163,163,163,255, 127,127,127,255, 127,127,127,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 51,51,51,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 7,7,7,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 222,215,161,255, 216,210,154,255, 224,213,170,255, 231,219,177,255, 191,180,136,255, 210,204,148,255, 208,202,146,255, 211,204,149,255, 226,223,190,255, 230,218,175,255, 255,255,223,255, 220,214,158,255, 222,211,163,255, 216,210,154,255, 223,213,164,255, 233,227,171,255, 95,92,89,255, 88,86,82,255, 165,161,159,255, 144,139,136,255, 91,88,85,255, 118,115,112,255, 145,140,139,255, 109,107,105,255, 126,126,126,255, 90,88,84,255, 90,88,84,255, 129,127,127,255, 129,127,127,255, 171,170,169,255, 103,101,99,255, 129,127,127,255, 63,50,31,255, 101,80,47,255, 111,90,57,255, 56,43,24,255, 63,50,31,255, 152,120,73,255, 65,52,33,255, 102,81,48,255, 153,121,74,255, 61,48,29,255, 104,83,50,255, 154,122,75,255, 76,61,38,255, 124,98,62,255, 76,61,38,255, 149,117,70,255, 105,84,51,255, 180,144,90,255, 177,141,87,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 174,138,84,255, 177,141,87,255, 180,144,90,255, 180,144,90,255, 185,149,95,255, 186,150,96,255, 180,144,90,255, 100,79,46,255, 202,202,202,255, 232,232,232,255, 232,232,232,255, 234,234,234,255, 237,237,237,255, 238,238,238,255, 237,237,237,255, 237,237,237,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 189,189,189,255, 231,200,69,255, 253,234,100,255, 254,234,95,255, 255,238,91,255, 254,245,90,255, 254,247,89,255, 254,247,87,255, 254,246,88,255, 254,244,88,255, 255,243,90,255, 255,246,89,255, 255,246,87,255, 255,245,85,255, 255,243,81,255, 255,243,78,255, 234,204,57,255, 0,189,179,255, 100,222,217,255, 100,222,217,255, 110,224,219,255, 130,228,224,255, 135,229,225,255, 130,228,224,255, 130,228,224,255, 125,227,223,255, 125,227,223,255, 130,228,224,255, 130,228,224,255, 125,227,223,255, 120,226,222,255, 115,225,220,255, 0,191,181,255, 0,0,0,0, 43,38,31,255, 51,46,37,255, 51,46,37,255, 51,46,37,255, 55,49,39,255, 55,49,39,255, 54,48,38,255, 51,46,37,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,128,32,255, 57,61,13,255, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,98,98,255, 160,160,160,255, 122,122,122,255, 127,127,127,255, 127,127,127,255, 82,82,82,255, 169,169,169,255, 146,146,146,255, 127,127,127,255, 127,127,127,255, 133,133,133,255, 86,86,86,255, 100,100,100,255, 98,98,98,255, 151,151,151,255, 131,131,131,255, 87,87,87,255, 7,7,7,255, 51,51,51,255, 51,51,51,255, 7,7,7,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 151,151,151,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 87,87,87,255, 87,87,87,255, 226,214,170,255, 238,226,182,255, 249,238,194,255, 214,207,152,255, 216,208,153,255, 214,208,152,255, 219,213,157,255, 219,213,157,255, 220,214,158,255, 226,220,165,255, 230,218,175,255, 232,220,177,255, 217,207,158,255, 207,200,144,255, 210,204,148,255, 248,236,193,255, 145,140,139,255, 129,127,127,255, 144,139,136,255, 144,139,136,255, 90,88,84,255, 129,127,127,255, 111,107,105,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 114,112,110,255, 129,127,127,255, 171,170,169,255, 159,157,157,255, 99,97,93,255, 145,140,139,255, 58,45,26,255, 94,75,47,255, 100,79,46,255, 65,52,33,255, 104,83,50,255, 153,121,74,255, 62,49,30,255, 103,82,49,255, 152,120,73,255, 60,47,28,255, 103,82,49,255, 124,98,62,255, 76,61,38,255, 124,98,62,255, 76,61,38,255, 153,121,74,255, 60,47,28,255, 182,146,92,255, 157,130,75,255, 158,131,76,255, 159,132,77,255, 151,124,69,255, 159,132,77,255, 155,128,73,255, 167,140,85,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 162,135,80,255, 181,145,91,255, 105,84,51,255, 196,196,196,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 189,189,189,255, 232,208,69,255, 255,254,110,255, 255,254,110,255, 255,254,110,255, 255,254,110,255, 252,252,84,255, 251,252,85,255, 251,251,86,255, 251,250,88,255, 252,248,89,255, 254,250,85,255, 255,249,79,255, 254,246,73,255, 251,243,66,255, 250,241,59,255, 234,206,47,255, 0,195,185,255, 140,231,227,255, 140,231,227,255, 140,231,227,255, 145,232,228,255, 140,231,227,255, 140,231,227,255, 140,231,227,255, 135,229,225,255, 135,229,225,255, 140,231,227,255, 135,229,225,255, 120,226,222,255, 105,223,218,255, 90,220,214,255, 0,191,181,255, 0,0,0,0, 55,49,39,255, 132,98,47,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 144,102,42,255, 127,95,34,255, 132,98,47,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 69,61,49,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 69,61,49,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,128,32,255, 0,0,0,0, 0,0,0,0, 41,53,9,255, 45,120,22,255, 55,128,32,255, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,98,98,255, 98,98,98,255, 155,155,155,255, 125,125,125,255, 113,113,113,255, 86,86,86,255, 127,127,127,255, 129,129,129,255, 143,143,143,255, 127,127,127,255, 86,86,86,255, 88,88,88,255, 165,165,165,255, 98,98,98,255, 98,98,98,255, 83,83,83,255, 87,87,87,255, 151,151,151,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 7,7,7,255, 87,87,87,255, 151,151,151,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 204,199,143,255, 214,206,152,255, 216,208,155,255, 221,215,160,255, 208,201,147,255, 223,217,161,255, 209,202,147,255, 221,212,163,255, 176,170,114,255, 214,207,151,255, 217,210,155,255, 226,220,165,255, 232,223,174,255, 231,222,173,255, 218,212,156,255, 191,184,129,255, 118,115,112,255, 129,127,127,255, 144,139,136,255, 90,88,84,255, 90,88,84,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 151,151,151,255, 123,123,121,255, 114,112,110,255, 145,140,139,255, 128,127,126,255, 99,97,93,255, 92,89,86,255, 145,140,139,255, 109,88,55,255, 69,56,37,255, 99,78,45,255, 64,51,32,255, 124,98,62,255, 124,98,62,255, 62,49,30,255, 104,83,50,255, 152,120,73,255, 60,47,28,255, 104,83,50,255, 152,120,73,255, 61,48,29,255, 156,124,77,255, 66,53,34,255, 124,98,62,255, 105,84,51,255, 180,144,90,255, 163,136,81,255, 183,147,93,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 184,148,94,255, 188,152,98,255, 185,149,95,255, 189,153,99,255, 159,132,77,255, 180,144,90,255, 60,47,28,255, 183,183,183,255, 222,222,222,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 224,224,224,255, 224,224,224,255, 224,224,224,255, 224,224,224,255, 217,217,217,255, 216,216,216,255, 214,214,214,255, 214,214,214,255, 177,177,177,255, 234,210,69,255, 255,254,110,255, 255,254,110,255, 255,254,110,255, 255,254,110,255, 253,253,81,255, 254,255,83,255, 254,253,85,255, 253,251,88,255, 252,249,88,255, 254,248,78,255, 255,248,72,255, 255,247,71,255, 255,248,69,255, 255,248,67,255, 233,207,50,255, 0,197,188,255, 145,232,228,255, 145,232,228,255, 140,231,227,255, 140,231,227,255, 145,232,228,255, 155,234,230,255, 150,233,229,255, 145,232,228,255, 135,229,225,255, 130,228,224,255, 130,228,224,255, 125,227,223,255, 125,227,223,255, 125,227,223,255, 0,191,181,255, 0,0,0,0, 53,47,38,255, 142,97,38,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 146,99,35,255, 54,47,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 133,92,31,255, 139,98,36,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,128,32,255, 57,61,13,255, 39,105,19,255, 39,105,19,255, 41,53,9,255, 39,105,19,255, 57,61,13,255, 45,120,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 180,69,0,255, 180,69,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 178,65,0,255, 180,68,0,255, 180,69,0,255, 0,0,0,0, 0,0,0,0, 153,153,153,255, 169,169,169,255, 86,86,86,255, 86,86,86,255, 86,86,86,255, 86,86,86,255, 104,104,104,255, 127,127,127,255, 80,80,80,255, 85,85,85,255, 169,169,169,255, 154,154,154,255, 127,127,127,255, 127,127,127,255, 98,98,98,255, 111,111,111,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 7,7,7,255, 228,222,167,255, 214,207,151,255, 232,220,177,255, 214,207,151,255, 232,220,177,255, 232,220,177,255, 230,217,174,255, 232,220,177,255, 208,199,149,255, 205,199,144,255, 210,204,148,255, 230,218,175,255, 215,203,159,255, 194,188,132,255, 238,228,182,255, 201,194,139,255, 177,170,167,255, 129,127,127,255, 114,112,110,255, 129,127,127,255, 129,127,127,255, 145,140,139,255, 129,127,127,255, 151,151,151,255, 116,116,116,255, 91,88,85,255, 129,127,127,255, 145,140,139,255, 114,112,110,255, 140,137,136,255, 129,127,127,255, 129,127,127,255, 106,85,52,255, 65,52,33,255, 108,87,54,255, 103,82,49,255, 124,98,62,255, 124,98,62,255, 108,87,54,255, 103,82,49,255, 110,89,56,255, 66,53,34,255, 106,85,52,255, 154,122,75,255, 61,48,29,255, 154,122,75,255, 60,47,28,255, 124,98,62,255, 76,61,38,255, 179,143,89,255, 157,130,75,255, 188,152,98,255, 180,144,90,255, 185,149,95,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 183,147,93,255, 180,144,90,255, 184,148,94,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 105,84,51,255, 196,196,196,255, 240,240,240,255, 238,238,238,255, 239,239,239,255, 238,238,238,255, 240,240,240,255, 239,239,239,255, 239,239,239,255, 239,239,239,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 190,190,190,255, 234,209,69,255, 255,253,87,255, 255,254,110,255, 253,253,82,255, 253,251,76,255, 255,254,78,255, 255,253,78,255, 255,252,82,255, 255,251,86,255, 255,250,88,255, 254,248,78,255, 254,247,71,255, 253,246,70,255, 253,245,69,255, 253,245,69,255, 234,210,57,255, 0,196,186,255, 150,233,229,255, 140,231,227,255, 145,232,228,255, 135,229,225,255, 150,233,229,255, 145,232,228,255, 145,232,228,255, 145,232,228,255, 145,232,228,255, 130,228,224,255, 125,227,223,255, 120,226,222,255, 115,225,220,255, 115,225,220,255, 0,195,185,255, 0,0,0,0, 55,49,39,255, 127,95,34,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 164,114,39,255, 144,102,42,255, 55,49,39,255, 0,0,0,0, 0,0,0,0, 68,60,48,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 42,37,29,255, 0,0,0,0, 0,0,0,0, 68,60,48,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 136,89,25,255, 84,62,22,255, 84,62,22,255, 136,89,25,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 42,37,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,120,22,255, 47,48,8,255, 57,61,13,255, 39,105,19,255, 57,61,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 184,75,0,255, 187,80,0,255, 181,70,0,255, 179,67,0,255, 182,71,0,255, 181,69,0,255, 179,67,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 175,175,175,255, 124,124,124,255, 114,114,114,255, 174,174,174,255, 162,162,162,255, 173,173,173,255, 98,98,98,255, 86,86,86,255, 104,104,104,255, 191,191,191,255, 158,158,158,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 135,135,135,255, 104,104,104,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 7,7,7,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 7,7,7,255, 87,87,87,255, 205,199,143,255, 223,216,160,255, 207,200,146,255, 255,255,241,255, 211,204,149,255, 233,227,172,255, 222,215,161,255, 221,209,167,255, 214,208,152,255, 241,234,180,255, 220,214,158,255, 197,190,134,255, 207,200,146,255, 209,203,147,255, 218,212,156,255, 194,188,132,255, 170,158,152,255, 94,90,86,255, 117,114,111,255, 129,127,127,255, 118,115,112,255, 145,140,139,255, 114,112,110,255, 129,127,127,255, 91,88,85,255, 91,88,85,255, 129,127,127,255, 129,127,127,255, 117,114,111,255, 129,127,127,255, 129,127,127,255, 177,170,167,255, 108,87,54,255, 94,75,47,255, 108,87,54,255, 102,81,48,255, 154,122,75,255, 104,83,50,255, 102,81,48,255, 106,85,52,255, 107,86,53,255, 61,48,29,255, 105,84,51,255, 143,111,64,255, 62,49,30,255, 124,98,62,255, 64,51,32,255, 103,82,49,255, 60,47,28,255, 180,144,90,255, 156,129,74,255, 188,152,98,255, 180,144,90,255, 159,132,77,255, 163,136,81,255, 164,137,82,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 185,149,95,255, 155,128,73,255, 180,144,90,255, 105,84,51,255, 196,196,196,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 190,190,190,255, 234,210,67,255, 254,254,90,255, 253,253,83,255, 255,241,68,255, 255,241,68,255, 255,249,73,255, 255,249,74,255, 255,249,76,255, 255,249,80,255, 254,249,81,255, 253,251,79,255, 253,251,77,255, 253,250,76,255, 252,249,74,255, 252,248,73,255, 234,209,58,255, 0,196,186,255, 155,234,230,255, 145,232,228,255, 105,223,218,255, 105,223,218,255, 130,228,224,255, 130,228,224,255, 135,229,225,255, 135,229,225,255, 135,229,225,255, 135,229,225,255, 135,229,225,255, 135,229,225,255, 125,227,223,255, 125,227,223,255, 0,195,185,255, 0,0,0,0, 51,46,37,255, 127,95,34,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 127,95,34,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 121,88,37,255, 84,62,22,255, 97,65,22,255, 84,62,22,255, 127,95,34,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 39,105,19,255, 57,61,13,255, 55,128,32,255, 55,128,32,255, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,73,0,255, 190,86,1,255, 195,97,2,255, 199,104,3,255, 190,86,1,255, 180,68,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,119,119,255, 135,135,135,255, 94,94,94,255, 156,156,156,255, 130,130,130,255, 122,122,122,255, 126,126,126,255, 98,98,98,255, 98,98,98,255, 98,98,98,255, 127,127,127,255, 141,141,141,255, 136,136,136,255, 145,145,145,255, 94,94,94,255, 90,90,90,255, 151,151,151,255, 151,151,151,255, 87,87,87,255, 99,99,99,255, 87,87,87,255, 51,51,51,255, 151,151,151,255, 151,151,151,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 7,7,7,255, 188,182,126,255, 223,211,169,255, 203,191,148,255, 219,213,157,255, 191,184,130,255, 226,219,163,255, 216,208,155,255, 210,204,148,255, 214,207,152,255, 214,208,152,255, 232,220,177,255, 255,247,204,255, 220,213,159,255, 230,218,175,255, 221,215,160,255, 217,205,162,255, 123,115,111,255, 94,90,86,255, 129,127,127,255, 151,151,151,255, 151,151,151,255, 98,96,94,255, 114,112,110,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 118,115,112,255, 129,127,127,255, 129,127,127,255, 144,136,132,255, 129,127,127,255, 82,79,76,255, 104,83,50,255, 124,98,62,255, 76,61,38,255, 108,87,54,255, 151,119,72,255, 98,77,44,255, 104,83,50,255, 60,47,28,255, 145,113,66,255, 60,47,28,255, 124,98,62,255, 89,71,44,255, 55,42,23,255, 124,98,62,255, 62,49,30,255, 110,89,56,255, 60,47,28,255, 180,144,90,255, 159,132,77,255, 186,150,96,255, 182,146,92,255, 157,130,75,255, 186,150,96,255, 187,151,97,255, 191,155,101,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 184,148,94,255, 159,132,77,255, 180,144,90,255, 60,47,28,255, 185,185,185,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 219,219,219,255, 224,224,224,255, 224,224,224,255, 224,224,224,255, 224,224,224,255, 217,217,217,255, 217,217,217,255, 217,217,217,255, 216,216,216,255, 217,217,217,255, 177,177,177,255, 231,211,64,255, 251,252,90,255, 250,250,84,255, 255,249,74,255, 255,249,74,255, 253,245,70,255, 255,248,73,255, 255,249,74,255, 255,249,76,255, 255,250,78,255, 249,251,73,255, 249,253,72,255, 252,252,72,255, 253,248,70,255, 254,243,66,255, 234,206,54,255, 0,196,186,255, 145,232,228,255, 135,229,225,255, 130,228,224,255, 130,228,224,255, 115,225,220,255, 130,228,224,255, 130,228,224,255, 135,229,225,255, 135,229,225,255, 130,228,224,255, 135,229,225,255, 135,229,225,255, 125,227,223,255, 110,224,219,255, 0,193,183,255, 0,0,0,0, 55,49,39,255, 149,108,46,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 171,121,45,255, 149,108,46,255, 55,49,39,255, 0,0,0,0, 0,0,0,0, 65,59,47,255, 54,47,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 55,49,39,255, 51,46,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 51,46,37,255, 51,46,37,255, 31,28,23,255, 0,0,0,0, 0,0,0,0, 65,59,47,255, 51,46,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 44,39,31,255, 44,39,30,255, 44,39,30,255, 44,39,30,255, 54,48,38,255, 54,48,38,255, 51,46,37,255, 51,46,37,255, 31,28,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,128,32,255, 55,128,32,255, 0,0,0,0, 55,128,32,255, 44,108,24,255, 47,48,8,255, 57,61,13,255, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 184,75,0,255, 184,76,0,255, 191,88,1,255, 204,115,4,255, 205,117,5,255, 205,119,5,255, 205,117,5,255, 200,106,3,255, 181,70,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,121,121,255, 119,119,119,255, 116,116,116,255, 86,86,86,255, 77,77,77,255, 76,76,76,255, 86,86,86,255, 137,137,137,255, 167,167,167,255, 129,129,129,255, 93,93,93,255, 99,99,99,255, 114,114,114,255, 83,83,83,255, 93,93,93,255, 103,103,103,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 7,7,7,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 218,212,156,255, 214,208,152,255, 230,218,174,255, 216,210,154,255, 219,213,157,255, 209,202,147,255, 229,222,168,255, 251,244,189,255, 221,215,160,255, 208,196,153,255, 214,208,152,255, 211,204,149,255, 223,217,161,255, 224,213,170,255, 238,234,204,255, 230,218,175,255, 94,90,86,255, 129,127,127,255, 143,138,137,255, 151,151,151,255, 116,116,116,255, 89,87,85,255, 129,127,127,255, 183,181,182,255, 183,181,182,255, 97,94,91,255, 145,140,139,255, 144,136,132,255, 144,136,132,255, 144,136,132,255, 89,87,83,255, 129,127,127,255, 107,86,53,255, 154,122,75,255, 62,49,30,255, 107,86,53,255, 155,123,76,255, 61,48,29,255, 154,122,75,255, 65,52,33,255, 153,121,74,255, 58,45,26,255, 124,98,62,255, 76,61,38,255, 102,81,48,255, 124,98,62,255, 63,50,31,255, 110,89,56,255, 60,47,28,255, 181,145,91,255, 159,132,77,255, 201,165,111,255, 180,144,90,255, 159,132,77,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 187,151,97,255, 161,134,79,255, 173,137,83,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 116,95,62,255, 196,196,196,255, 241,241,241,255, 238,238,238,255, 237,237,237,255, 233,233,233,255, 233,233,233,255, 233,233,233,255, 233,233,233,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 189,189,189,255, 232,212,62,255, 253,253,98,255, 253,250,90,255, 255,249,74,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 254,243,69,255, 250,247,65,255, 251,251,65,255, 253,251,67,255, 253,247,64,255, 252,241,59,255, 233,206,52,255, 0,196,186,255, 155,234,230,255, 140,231,227,255, 130,228,224,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 110,224,219,255, 115,225,220,255, 125,227,223,255, 130,228,224,255, 115,225,220,255, 95,221,215,255, 0,191,181,255, 0,0,0,0, 54,47,37,255, 146,99,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 146,99,35,255, 54,47,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 119,90,48,255, 115,86,46,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 105,82,41,255, 105,82,41,255, 105,82,41,255, 117,84,41,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 119,90,48,255, 115,86,46,255, 119,90,48,255, 119,90,48,255, 97,73,39,255, 69,53,26,255, 69,53,26,255, 69,53,26,255, 117,84,41,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,108,24,255, 57,61,13,255, 57,61,13,255, 41,53,9,255, 44,108,24,255, 49,53,9,255, 57,61,13,255, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 198,102,2,255, 200,107,3,255, 201,109,3,255, 208,124,6,255, 213,136,11,255, 215,140,13,255, 208,124,7,255, 200,107,3,255, 184,75,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,98,98,255, 169,169,169,255, 169,169,169,255, 169,169,169,255, 129,129,129,255, 93,93,93,255, 172,172,172,255, 150,150,150,255, 169,169,169,255, 169,169,169,255, 144,144,144,255, 108,108,108,255, 155,155,155,255, 140,140,140,255, 101,101,101,255, 98,98,98,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 7,7,7,255, 151,151,151,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 224,217,162,255, 223,211,169,255, 237,225,182,255, 231,219,175,255, 224,212,169,255, 211,204,149,255, 232,220,177,255, 223,211,169,255, 213,204,154,255, 255,254,210,255, 193,186,131,255, 220,213,159,255, 214,206,152,255, 219,207,164,255, 221,211,163,255, 219,213,157,255, 129,127,127,255, 165,161,159,255, 120,116,112,255, 129,127,127,255, 89,87,85,255, 129,127,127,255, 140,137,136,255, 111,110,105,255, 88,86,82,255, 82,79,74,255, 129,127,127,255, 101,97,93,255, 89,87,83,255, 89,87,83,255, 89,87,83,255, 145,140,139,255, 105,84,51,255, 153,121,74,255, 63,50,31,255, 112,91,58,255, 148,116,69,255, 65,52,33,255, 105,84,51,255, 64,51,32,255, 105,84,51,255, 66,53,34,255, 147,115,68,255, 60,47,28,255, 108,87,54,255, 107,86,53,255, 63,50,31,255, 124,98,62,255, 105,84,51,255, 180,144,90,255, 172,145,90,255, 188,152,98,255, 180,144,90,255, 159,132,77,255, 186,150,96,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 158,131,76,255, 180,144,90,255, 188,152,98,255, 156,129,74,255, 184,148,94,255, 105,84,51,255, 197,197,197,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 189,189,189,255, 234,212,65,255, 255,251,99,255, 255,253,101,255, 255,249,74,255, 255,253,107,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 255,241,68,255, 251,239,58,255, 247,233,53,255, 232,200,47,255, 0,197,188,255, 150,233,229,255, 160,235,232,255, 130,228,224,255, 160,235,232,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 105,223,218,255, 85,219,213,255, 60,213,207,255, 0,187,176,255, 0,0,0,0, 55,49,39,255, 149,108,46,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 149,108,46,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 69,60,47,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 146,99,35,255, 146,99,35,255, 146,99,35,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 130,91,38,255, 42,37,29,255, 0,0,0,0, 0,0,0,0, 69,60,47,255, 146,99,35,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 115,79,30,255, 97,65,22,255, 97,65,22,255, 119,80,28,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 130,91,38,255, 42,37,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,108,24,255, 55,128,32,255, 57,61,13,255, 57,61,13,255, 31,41,7,255, 57,61,13,255, 0,0,0,0, 55,128,32,255, 44,108,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 191,88,1,255, 199,104,2,255, 197,100,2,255, 192,91,1,255, 193,92,1,255, 200,107,3,255, 207,121,6,255, 218,149,17,255, 228,175,38,255, 222,159,24,255, 200,108,3,255, 191,89,1,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,98,98,255, 127,127,127,255, 135,135,135,255, 127,127,127,255, 141,141,141,255, 80,80,80,255, 102,102,102,255, 114,114,114,255, 169,169,169,255, 169,169,169,255, 108,108,108,255, 127,127,127,255, 78,78,78,255, 98,98,98,255, 169,169,169,255, 169,169,169,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 7,7,7,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 151,151,151,255, 87,87,87,255, 193,187,132,255, 216,209,155,255, 228,216,173,255, 217,210,155,255, 216,210,154,255, 221,210,166,255, 208,199,149,255, 210,204,148,255, 218,212,156,255, 220,213,159,255, 220,213,159,255, 238,232,177,255, 218,212,156,255, 224,213,169,255, 215,205,157,255, 234,227,172,255, 129,127,127,255, 120,116,112,255, 85,83,77,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 117,114,111,255, 140,137,136,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 140,137,136,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 145,140,139,255, 105,84,51,255, 156,124,77,255, 70,57,38,255, 103,82,49,255, 109,88,55,255, 148,116,69,255, 66,53,34,255, 106,85,52,255, 106,85,52,255, 57,44,25,255, 149,117,70,255, 66,53,34,255, 107,86,53,255, 149,117,70,255, 65,52,33,255, 124,98,62,255, 105,84,51,255, 183,147,93,255, 156,129,74,255, 188,152,98,255, 179,143,89,255, 154,127,72,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 190,154,100,255, 159,132,77,255, 180,144,90,255, 189,153,99,255, 157,130,75,255, 180,144,90,255, 105,84,51,255, 183,183,183,255, 222,222,222,255, 220,220,220,255, 220,220,220,255, 224,224,224,255, 224,224,224,255, 224,224,224,255, 221,221,221,255, 221,221,221,255, 224,224,224,255, 217,217,217,255, 217,217,217,255, 214,214,214,255, 214,214,214,255, 220,220,220,255, 177,177,177,255, 234,211,73,255, 255,250,105,255, 255,254,108,255, 255,249,74,255, 255,251,100,255, 254,251,96,255, 254,251,93,255, 254,252,91,255, 253,253,91,255, 253,254,89,255, 252,255,88,255, 254,255,87,255, 254,253,86,255, 255,250,83,255, 255,247,79,255, 234,206,58,255, 0,198,189,255, 150,233,229,255, 165,236,233,255, 130,228,224,255, 150,233,229,255, 150,233,229,255, 145,232,228,255, 150,233,229,255, 150,233,229,255, 150,233,229,255, 155,234,230,255, 155,234,230,255, 150,233,229,255, 140,231,227,255, 130,228,224,255, 0,193,183,255, 0,0,0,0, 51,46,37,255, 127,95,34,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 127,95,34,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 149,108,46,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 149,108,46,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,53,9,255, 57,61,13,255, 57,61,13,255, 57,61,13,255, 57,61,13,255, 57,61,13,255, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 196,99,2,255, 211,131,9,255, 200,107,3,255, 201,108,3,255, 217,145,15,255, 227,173,36,255, 226,169,33,255, 225,166,29,255, 242,215,110,255, 253,251,236,255, 237,199,74,255, 217,147,16,255, 218,148,17,255, 194,94,1,255, 0,0,0,0, 82,82,82,255, 91,91,91,255, 137,137,137,255, 127,127,127,255, 80,80,80,255, 98,98,98,255, 98,98,98,255, 105,105,105,255, 90,90,90,255, 127,127,127,255, 127,127,127,255, 80,80,80,255, 97,97,97,255, 169,169,169,255, 169,169,169,255, 130,130,130,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 51,51,51,255, 51,51,51,255, 151,151,151,255, 151,151,151,255, 51,51,51,255, 7,7,7,255, 51,51,51,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 223,217,162,255, 224,212,168,255, 169,163,108,255, 229,217,174,255, 199,192,137,255, 237,225,182,255, 215,209,153,255, 219,207,164,255, 241,230,186,255, 241,234,178,255, 230,224,169,255, 214,207,151,255, 218,212,156,255, 251,251,234,255, 214,208,151,255, 218,212,156,255, 114,112,110,255, 140,137,136,255, 129,127,127,255, 140,137,136,255, 151,151,151,255, 151,151,151,255, 114,112,110,255, 140,137,136,255, 144,136,132,255, 144,136,132,255, 89,87,83,255, 140,137,136,255, 114,112,110,255, 140,137,136,255, 170,158,152,255, 170,158,152,255, 69,56,37,255, 124,98,62,255, 64,51,32,255, 106,85,52,255, 103,82,49,255, 150,118,71,255, 58,45,26,255, 100,79,46,255, 62,49,30,255, 94,75,47,255, 159,127,80,255, 64,51,32,255, 106,85,52,255, 155,123,76,255, 67,54,35,255, 149,117,70,255, 102,81,48,255, 177,141,87,255, 159,132,77,255, 183,147,93,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 185,149,95,255, 189,153,99,255, 159,132,77,255, 180,144,90,255, 104,83,50,255, 197,197,197,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 236,236,236,255, 236,236,236,255, 236,236,236,255, 236,236,236,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 188,188,188,255, 234,211,79,255, 255,252,115,255, 255,254,116,255, 255,254,114,255, 255,253,110,255, 255,253,107,255, 254,254,105,255, 254,255,103,255, 253,255,101,255, 253,254,99,255, 254,254,94,255, 255,254,94,255, 255,253,94,255, 255,247,86,255, 254,239,76,255, 232,195,51,255, 0,198,189,255, 165,236,233,255, 170,237,234,255, 170,237,234,255, 165,236,233,255, 160,235,232,255, 165,236,233,255, 165,236,233,255, 160,235,232,255, 160,235,232,255, 155,234,230,255, 160,235,232,255, 155,234,230,255, 135,229,225,255, 100,222,217,255, 0,184,173,255, 0,0,0,0, 55,49,39,255, 144,102,42,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 144,102,42,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 65,59,47,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 127,95,34,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 65,59,47,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 127,95,34,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,42,42,255, 254,42,42,255, 254,42,42,255, 226,18,18,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,153,120,255, 204,153,120,255, 204,153,120,255, 145,109,85,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,61,13,255, 55,128,32,255, 31,41,7,255, 0,0,0,0, 55,128,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 185,77,0,255, 202,111,4,255, 221,155,21,255, 225,167,30,255, 227,173,37,255, 232,185,51,255, 232,186,52,255, 247,231,158,255, 241,212,102,255, 244,223,130,255, 239,205,85,255, 246,229,150,255, 235,194,65,255, 211,132,9,255, 0,0,0,0, 86,86,86,255, 97,97,97,255, 86,86,86,255, 90,90,90,255, 98,98,98,255, 162,162,162,255, 174,174,174,255, 130,130,130,255, 115,115,115,255, 81,81,81,255, 98,98,98,255, 98,98,98,255, 175,175,175,255, 133,133,133,255, 145,145,145,255, 127,127,127,255, 7,7,7,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 7,7,7,255, 206,199,144,255, 229,217,174,255, 229,223,166,255, 201,189,145,255, 221,215,160,255, 214,207,152,255, 220,213,159,255, 216,208,153,255, 221,215,160,255, 220,213,159,255, 216,210,154,255, 255,250,194,255, 210,204,148,255, 210,204,148,255, 209,202,147,255, 187,179,126,255, 117,114,111,255, 182,180,181,255, 180,178,179,255, 140,137,136,255, 98,96,94,255, 82,79,74,255, 140,137,136,255, 129,127,127,255, 101,97,93,255, 89,87,83,255, 89,87,83,255, 140,137,136,255, 114,112,110,255, 140,137,136,255, 123,115,111,255, 103,99,93,255, 62,49,30,255, 124,98,62,255, 63,50,31,255, 103,82,49,255, 111,90,57,255, 154,122,75,255, 66,53,34,255, 154,122,75,255, 56,43,24,255, 94,75,47,255, 157,125,78,255, 61,48,29,255, 108,87,54,255, 151,119,72,255, 60,47,28,255, 155,123,76,255, 60,47,28,255, 179,143,89,255, 159,132,77,255, 188,152,98,255, 179,143,89,255, 182,146,92,255, 180,144,90,255, 179,143,89,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 185,149,95,255, 188,152,98,255, 164,137,82,255, 180,144,90,255, 101,80,47,255, 198,198,198,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 187,187,187,255, 234,211,82,255, 255,253,120,255, 255,253,120,255, 255,254,119,255, 255,254,117,255, 255,254,115,255, 255,255,113,255, 255,254,110,255, 254,252,107,255, 254,251,105,255, 255,252,98,255, 255,247,89,255, 252,237,79,255, 249,228,71,255, 248,222,64,255, 230,188,47,255, 0,199,190,255, 170,237,234,255, 170,237,234,255, 170,237,234,255, 170,237,234,255, 170,237,234,255, 170,237,234,255, 165,236,233,255, 160,235,232,255, 155,234,230,255, 155,234,230,255, 135,229,225,255, 95,221,215,255, 60,213,207,255, 35,208,200,255, 0,178,166,255, 0,0,0,0, 54,47,37,255, 142,97,38,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 142,97,38,255, 54,47,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 144,102,42,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 144,102,42,255, 40,36,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,42,42,255, 255,255,255,255, 226,18,18,255, 226,18,18,255, 196,29,38,255, 154,23,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,153,120,255, 204,153,120,255, 145,109,85,255, 145,109,85,255, 145,109,85,255, 114,86,67,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,128,32,255, 44,108,24,255, 47,48,8,255, 44,108,24,255, 45,120,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,114,4,255, 231,184,51,255, 219,151,18,255, 214,138,12,255, 210,130,8,255, 214,138,12,255, 253,249,226,255, 255,255,255,255, 255,255,255,255, 223,160,25,255, 220,153,20,255, 232,186,53,255, 218,148,16,255, 193,93,1,255, 0,0,0,0, 98,98,98,255, 158,158,158,255, 153,153,153,255, 151,151,151,255, 89,89,89,255, 125,125,125,255, 163,163,163,255, 143,143,143,255, 171,171,171,255, 169,169,169,255, 98,98,98,255, 98,98,98,255, 169,169,169,255, 132,132,132,255, 132,132,132,255, 90,90,90,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 151,151,151,255, 151,151,151,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 238,226,182,255, 221,215,160,255, 211,204,149,255, 239,231,178,255, 223,217,161,255, 210,203,149,255, 226,218,164,255, 190,183,127,255, 199,191,137,255, 220,213,159,255, 216,208,155,255, 209,202,147,255, 224,213,169,255, 229,217,174,255, 208,201,145,255, 214,206,152,255, 140,137,136,255, 168,167,166,255, 98,96,92,255, 129,127,127,255, 140,137,136,255, 129,127,127,255, 171,170,169,255, 111,109,105,255, 140,137,136,255, 129,127,127,255, 129,127,127,255, 140,137,136,255, 151,151,151,255, 129,127,127,255, 103,99,93,255, 129,127,127,255, 59,46,27,255, 154,122,75,255, 57,44,25,255, 102,81,48,255, 107,86,53,255, 154,122,75,255, 56,43,24,255, 106,85,52,255, 63,50,31,255, 101,80,47,255, 151,119,72,255, 60,47,28,255, 106,85,52,255, 98,77,44,255, 64,51,32,255, 152,120,73,255, 60,47,28,255, 180,144,90,255, 159,132,77,255, 191,155,101,255, 189,153,99,255, 183,147,93,255, 187,151,97,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 191,155,101,255, 188,152,98,255, 186,150,96,255, 159,132,77,255, 181,145,91,255, 60,47,28,255, 183,183,183,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 220,220,220,255, 225,225,225,255, 225,225,225,255, 224,224,224,255, 224,224,224,255, 216,216,216,255, 216,216,216,255, 216,216,216,255, 214,214,214,255, 217,217,217,255, 177,177,177,255, 234,212,81,255, 255,254,115,255, 254,252,112,255, 253,252,112,255, 255,253,114,255, 255,255,114,255, 255,255,111,255, 255,252,108,255, 253,250,105,255, 253,248,101,255, 255,242,87,255, 254,232,74,255, 246,220,61,255, 244,214,57,255, 246,212,55,255, 232,187,46,255, 0,199,190,255, 170,237,234,255, 160,235,232,255, 160,235,232,255, 165,236,233,255, 170,237,234,255, 170,237,234,255, 160,235,232,255, 150,233,229,255, 140,231,227,255, 120,226,222,255, 80,218,212,255, 25,206,198,255, 5,201,193,255, 0,200,191,255, 0,178,166,255, 0,0,0,0, 55,49,39,255, 149,108,46,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 149,108,46,255, 55,49,39,255, 0,0,0,0, 0,0,0,0, 69,60,47,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 142,97,38,255, 42,37,29,255, 0,0,0,0, 0,0,0,0, 69,60,47,255, 162,107,35,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 142,97,38,255, 42,37,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,42,42,255, 226,18,18,255, 226,18,18,255, 226,18,18,255, 226,18,18,255, 206,206,206,255, 154,23,28,255, 154,23,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,109,85,255, 145,109,85,255, 145,109,85,255, 145,109,85,255, 114,86,67,255, 114,86,67,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,128,32,255, 57,61,13,255, 57,61,13,255, 41,53,9,255, 45,120,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 195,95,1,255, 198,103,2,255, 198,103,2,255, 187,81,0,255, 193,93,1,255, 234,192,63,255, 255,255,255,255, 255,255,255,255, 242,216,112,255, 233,189,57,255, 200,106,3,255, 193,93,1,255, 195,97,2,255, 196,98,2,255, 0,0,0,0, 162,162,162,255, 166,166,166,255, 142,142,142,255, 135,135,135,255, 104,104,104,255, 97,97,97,255, 80,80,80,255, 102,102,102,255, 116,116,116,255, 132,132,132,255, 125,125,125,255, 98,98,98,255, 122,122,122,255, 136,136,136,255, 127,127,127,255, 86,86,86,255, 87,87,87,255, 151,151,151,255, 51,51,51,255, 151,151,151,255, 7,7,7,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 7,7,7,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 222,216,166,255, 230,218,175,255, 204,199,143,255, 179,173,118,255, 209,202,147,255, 210,204,148,255, 211,204,149,255, 244,232,189,255, 224,213,170,255, 246,233,190,255, 230,218,175,255, 223,217,162,255, 227,221,164,255, 214,208,152,255, 230,218,175,255, 213,201,158,255, 165,161,159,255, 117,114,111,255, 129,127,127,255, 129,127,127,255, 117,114,111,255, 140,137,136,255, 171,170,169,255, 111,110,105,255, 140,137,136,255, 114,112,110,255, 151,151,151,255, 116,116,116,255, 82,79,74,255, 114,112,110,255, 140,137,136,255, 129,127,127,255, 65,52,33,255, 109,88,55,255, 94,75,47,255, 108,87,54,255, 104,83,50,255, 124,98,62,255, 76,61,38,255, 110,89,56,255, 109,88,55,255, 99,78,45,255, 103,82,49,255, 61,48,29,255, 106,85,52,255, 148,116,69,255, 156,124,77,255, 58,45,26,255, 60,47,28,255, 180,144,90,255, 153,126,71,255, 159,132,77,255, 164,137,82,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 154,127,72,255, 160,133,78,255, 159,132,77,255, 163,136,81,255, 167,140,85,255, 164,137,82,255, 178,142,88,255, 60,47,28,255, 198,198,198,255, 242,242,242,255, 240,240,240,255, 239,239,239,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 238,238,238,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 186,186,186,255, 234,213,75,255, 254,255,100,255, 251,252,97,255, 251,251,97,255, 254,254,100,255, 255,254,101,255, 255,254,100,255, 255,252,98,255, 253,248,95,255, 252,244,89,255, 251,231,71,255, 252,224,62,255, 250,220,58,255, 250,216,56,255, 252,214,55,255, 233,185,44,255, 0,199,190,255, 165,236,233,255, 150,233,229,255, 145,232,228,255, 160,235,232,255, 160,235,232,255, 160,235,232,255, 155,234,230,255, 140,231,227,255, 120,226,222,255, 70,215,209,255, 45,210,203,255, 30,207,199,255, 15,203,195,255, 15,203,195,255, 0,177,165,255, 0,0,0,0, 55,49,39,255, 132,98,47,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 55,49,39,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 149,108,46,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 149,108,46,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,206,206,255, 226,18,18,255, 196,29,38,255, 206,206,206,255, 196,29,38,255, 154,23,28,255, 154,23,28,255, 150,150,150,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,109,85,255, 114,86,67,255, 114,86,67,255, 114,86,67,255, 114,86,67,255, 114,86,67,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,120,22,255, 57,61,13,255, 31,41,7,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 213,137,11,255, 187,81,0,255, 178,65,0,255, 193,92,1,255, 194,94,1,255, 242,214,107,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 217,146,15,255, 185,78,0,255, 180,68,0,255, 0,0,0,0, 0,0,0,0, 102,102,102,255, 140,140,140,255, 162,162,162,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 126,126,126,255, 93,93,93,255, 95,95,95,255, 92,92,92,255, 127,127,127,255, 98,98,98,255, 108,108,108,255, 86,86,86,255, 86,86,86,255, 101,101,101,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 151,151,151,255, 151,151,151,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 226,214,170,255, 216,205,162,255, 215,207,152,255, 207,201,145,255, 222,211,167,255, 213,201,157,255, 220,214,158,255, 225,219,163,255, 200,193,140,255, 223,216,162,255, 187,180,126,255, 214,208,152,255, 230,218,175,255, 203,191,147,255, 207,201,145,255, 224,213,170,255, 120,116,112,255, 114,112,110,255, 171,170,169,255, 137,136,133,255, 114,112,110,255, 140,137,136,255, 111,110,105,255, 88,86,82,255, 129,127,127,255, 114,112,110,255, 151,151,151,255, 98,96,94,255, 129,127,127,255, 117,114,111,255, 129,127,127,255, 144,139,136,255, 58,45,26,255, 103,82,49,255, 151,119,72,255, 64,51,32,255, 107,86,53,255, 124,98,62,255, 76,61,38,255, 62,49,30,255, 146,114,67,255, 104,83,50,255, 152,120,73,255, 59,46,27,255, 101,80,47,255, 124,98,62,255, 61,48,29,255, 103,82,49,255, 76,61,38,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 183,147,93,255, 173,137,83,255, 174,138,84,255, 180,144,90,255, 180,144,90,255, 171,135,81,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 105,84,51,255, 197,197,197,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 230,230,230,255, 185,185,185,255, 234,213,68,255, 255,253,86,255, 253,251,83,255, 253,247,81,255, 254,247,82,255, 255,248,83,255, 255,246,84,255, 255,245,85,255, 255,243,84,255, 254,241,81,255, 252,224,64,255, 252,215,54,255, 246,208,48,255, 245,204,45,255, 246,202,44,255, 230,180,40,255, 0,198,189,255, 150,233,229,255, 140,231,227,255, 125,227,223,255, 130,228,224,255, 135,229,225,255, 130,228,224,255, 125,227,223,255, 120,226,222,255, 110,224,219,255, 50,211,204,255, 15,203,195,255, 0,197,188,255, 0,194,184,255, 0,193,183,255, 0,172,159,255, 0,0,0,0, 42,37,29,255, 54,47,37,255, 56,47,37,255, 53,47,38,255, 53,47,38,255, 56,47,37,255, 53,47,38,255, 54,47,37,255, 54,47,37,255, 54,47,37,255, 53,47,38,255, 50,45,38,255, 53,47,38,255, 51,46,37,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 70,62,50,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 43,38,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 196,29,38,255, 154,23,28,255, 154,23,28,255, 154,23,28,255, 154,23,28,255, 154,23,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,91,82,255, 73,64,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 43,74,12,255, 47,48,8,255, 31,41,7,255, 43,74,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,109,3,255, 255,255,255,255, 255,255,255,255, 208,125,7,255, 190,86,1,255, 210,130,8,255, 255,255,255,255, 251,243,204,255, 255,255,255,255, 232,185,51,255, 237,201,79,255, 255,255,255,255, 255,255,255,255, 212,135,10,255, 188,83,0,255, 134,134,134,255, 84,84,84,255, 119,119,119,255, 135,135,135,255, 127,127,127,255, 86,86,86,255, 103,103,103,255, 163,163,163,255, 127,127,127,255, 127,127,127,255, 80,80,80,255, 105,105,105,255, 163,163,163,255, 169,169,169,255, 98,98,98,255, 129,129,129,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 7,7,7,255, 151,151,151,255, 151,151,151,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 87,87,87,255, 51,51,51,255, 51,51,51,255, 51,51,51,255, 87,87,87,255, 87,87,87,255, 214,206,152,255, 227,221,166,255, 214,208,152,255, 193,187,132,255, 255,255,209,255, 223,216,160,255, 199,193,137,255, 237,225,182,255, 218,212,156,255, 241,230,186,255, 209,202,147,255, 222,211,163,255, 223,212,164,255, 219,213,157,255, 214,208,152,255, 198,192,137,255, 89,87,83,255, 140,137,136,255, 128,127,126,255, 85,83,77,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 140,137,136,255, 129,127,127,255, 140,137,136,255, 129,127,127,255, 129,127,127,255, 129,127,127,255, 140,137,136,255, 129,127,127,255, 117,115,111,255, 94,75,47,255, 104,83,50,255, 124,98,62,255, 62,49,30,255, 100,79,46,255, 105,84,51,255, 104,83,50,255, 64,51,32,255, 105,84,51,255, 108,87,54,255, 103,82,49,255, 55,42,23,255, 103,82,49,255, 105,84,51,255, 101,80,47,255, 124,98,62,255, 105,84,51,255, 111,90,57,255, 60,47,28,255, 108,87,54,255, 105,84,51,255, 104,83,50,255, 60,47,28,255, 106,85,52,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 60,47,28,255, 60,47,28,255, 60,47,28,255, 105,84,51,255, 191,191,191,255, 186,186,186,255, 186,186,186,255, 185,185,185,255, 185,185,185,255, 185,185,185,255, 184,184,184,255, 183,183,183,255, 188,188,188,255, 189,189,189,255, 188,188,188,255, 188,188,188,255, 180,180,180,255, 180,180,180,255, 180,180,180,255, 181,181,181,255, 238,216,61,255, 238,215,60,255, 238,214,60,255, 238,212,59,255, 237,210,58,255, 237,209,58,255, 240,208,56,255, 238,205,53,255, 239,205,55,255, 242,209,58,255, 253,205,54,255, 255,204,53,255, 255,203,53,255, 253,199,51,255, 251,195,49,255, 250,191,48,255, 0,193,183,255, 0,193,183,255, 0,193,183,255, 0,193,183,255, 0,193,183,255, 0,193,183,255, 0,199,190,255, 0,193,183,255, 0,194,184,255, 5,201,193,255, 0,198,189,255, 0,198,189,255, 0,197,188,255, 0,194,184,255, 0,190,180,255, 0,187,176,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 42,37,29,255, 42,37,29,255, 44,37,29,255, 42,37,30,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 42,37,29,255, 42,37,30,255, 39,35,30,255, 42,37,30,255, 33,29,23,255, 0,0,0,0, 0,0,0,0, 42,37,29,255, 42,37,29,255, 44,37,29,255, 42,37,30,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 42,37,29,255, 42,37,30,255, 39,35,30,255, 42,37,30,255, 33,29,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,64,66,255, 87,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,91,82,255, 73,64,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 43,74,12,255, 43,74,12,255, 47,48,8,255, 34,38,6,255, 24,31,5,255, 24,31,5,255, 32,48,8,255, 43,74,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 255,255,255,255, 255,255,255,255, 251,243,202,255, 207,122,6,255, 185,77,0,255, 227,172,36,255, 252,246,217,255, 199,105,3,255, 191,88,1,255, 198,103,2,255, 229,179,43,255, 255,255,255,255, 222,159,24,255, 195,97,2,255, 0,0,0,0, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 173,173,173,255, 173,173,173,255, 173,173,173,255, 163,163,163,255, 146,146,146,255, 129,129,129,255, 59,101,59,255, 58,98,58,255, 104,104,104,255, 173,173,173,255, 173,173,173,255, 173,173,173,255, 131,131,131,255, 104,104,104,255, 176,176,176,255, 142,142,142,255, 16,16,24,255, 16,16,24,255, 16,16,24,255, 15,15,22,255, 14,14,22,255, 16,16,24,255, 14,14,23,255, 15,15,22,255, 16,16,24,255, 9,9,14,255, 15,15,23,255, 16,16,28,255, 17,17,33,255, 16,16,23,255, 9,9,14,255, 16,16,24,255, 148,148,148,255, 150,150,150,255, 147,147,147,255, 134,134,134,255, 134,134,134,255, 143,143,143,255, 127,127,127,255, 140,140,140,255, 158,158,158,255, 150,150,150,255, 138,138,138,255, 135,135,135,255, 137,137,137,255, 129,129,129,255, 112,112,112,255, 141,141,141,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,20,12,255, 25,20,12,255, 14,11,6,255, 25,20,12,255, 25,20,12,255, 25,19,11,255, 14,11,6,255, 14,11,6,255, 14,11,6,255, 25,20,12,255, 25,20,12,255, 14,11,6,255, 26,21,13,255, 25,20,12,255, 26,21,13,255, 26,21,13,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 188,152,98,255, 44,34,19,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 117,142,17,255, 94,114,13,255, 44,34,19,255, 44,34,19,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 44,34,19,255, 159,132,77,255, 173,173,173,255, 173,173,173,255, 112,112,112,255, 129,129,129,255, 75,75,75,255, 58,98,58,255, 68,145,68,255, 68,145,68,255, 58,98,58,255, 129,129,129,255, 136,136,136,255, 129,129,129,255, 143,143,143,255, 56,81,56,255, 117,117,117,255, 154,154,154,255, 14,14,22,255, 17,17,23,255, 9,9,14,255, 9,9,14,255, 10,10,15,255, 16,16,16,255, 15,15,29,255, 16,16,24,255, 8,8,13,255, 54,42,80,255, 16,16,24,255, 16,16,24,255, 16,16,29,255, 8,8,12,255, 60,48,86,255, 16,16,24,255, 149,149,149,255, 140,140,140,255, 160,160,160,255, 151,151,151,255, 153,153,153,255, 0,0,0,0, 136,136,136,255, 130,130,130,255, 127,127,127,255, 169,169,169,255, 166,166,166,255, 147,147,147,255, 129,129,129,255, 140,140,140,255, 135,135,135,255, 139,139,139,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,146,146,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,20,12,255, 180,144,90,255, 177,141,87,255, 43,35,21,255, 175,114,70,255, 175,114,70,255, 175,114,70,255, 175,114,70,255, 171,110,66,255, 173,112,68,255, 175,114,70,255, 175,114,70,255, 44,36,23,255, 186,150,96,255, 180,144,90,255, 24,19,11,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 127,127,127,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 252,238,75,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 255,255,181,255, 252,238,75,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 188,153,128,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 216,175,147,255, 188,153,128,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 55,55,55,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 63,63,63,255, 55,55,55,255, 127,127,127,255, 127,127,127,255, 188,152,98,255, 188,22,22,255, 145,17,17,255, 44,34,19,255, 49,91,142,255, 42,78,122,255, 117,142,17,255, 94,114,13,255, 54,42,21,255, 54,42,21,255, 54,42,21,255, 117,142,17,255, 94,114,13,255, 63,46,24,255, 65,49,26,255, 159,132,77,255, 58,97,58,255, 129,129,129,255, 129,129,129,255, 55,75,55,255, 58,98,58,255, 68,145,68,255, 173,173,173,255, 62,119,62,255, 79,79,79,255, 55,71,55,255, 139,139,139,255, 129,129,129,255, 55,79,55,255, 58,98,58,255, 58,98,58,255, 133,133,133,255, 16,16,24,255, 9,9,15,255, 58,46,84,255, 60,48,86,255, 60,48,86,255, 14,14,22,255, 14,14,21,255, 9,9,14,255, 60,48,86,255, 30,24,43,255, 18,18,27,255, 13,13,21,255, 8,8,12,255, 60,48,86,255, 30,24,43,255, 16,16,25,255, 163,163,163,255, 0,0,0,0, 178,178,178,255, 132,132,132,255, 137,137,137,255, 0,0,0,0, 144,144,144,255, 0,0,0,0, 148,148,148,255, 159,159,159,255, 168,168,168,255, 173,173,173,255, 0,0,0,0, 119,119,119,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 146,146,146,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 69,61,49,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 69,61,49,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 51,46,37,255, 0,0,0,0, 14,11,6,255, 182,146,92,255, 38,31,18,255, 161,106,62,255, 162,107,62,255, 157,102,57,255, 162,107,62,255, 160,104,60,255, 167,112,67,255, 162,107,62,255, 162,107,62,255, 162,107,62,255, 162,107,62,255, 39,32,19,255, 181,145,91,255, 25,20,12,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 92,92,92,255, 92,92,92,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 255,255,181,255, 248,175,43,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 216,175,147,255, 175,142,119,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 63,63,63,255, 52,52,52,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 105,84,51,255, 181,181,181,255, 137,137,137,255, 17,142,107,255, 49,91,142,255, 42,78,122,255, 117,142,17,255, 94,114,13,255, 188,22,22,255, 145,17,17,255, 54,42,21,255, 117,142,17,255, 94,114,13,255, 17,142,107,255, 12,107,80,255, 115,94,57,255, 59,109,59,255, 56,88,56,255, 55,76,55,255, 58,98,58,255, 180,180,180,255, 59,104,59,255, 146,146,146,255, 129,129,129,255, 82,82,82,255, 58,98,58,255, 55,79,55,255, 85,85,85,255, 58,98,58,255, 166,166,166,255, 179,179,179,255, 58,98,58,255, 13,13,18,255, 9,9,14,255, 30,24,43,255, 33,27,46,255, 14,14,22,255, 16,16,17,255, 16,16,16,255, 70,58,96,255, 30,24,43,255, 30,24,43,255, 15,15,22,255, 16,16,24,255, 8,8,14,255, 15,15,23,255, 16,16,24,255, 16,16,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,145,145,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 0,0,0,0, 141,141,141,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,255, 118,118,118,255, 0,0,0,0, 152,152,152,255, 145,145,145,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 118,118,118,255, 0,0,0,0, 146,146,146,255, 0,0,0,0, 183,183,183,255, 118,118,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 164,114,39,255, 84,62,22,255, 84,62,22,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 40,36,29,255, 0,0,0,0, 25,20,12,255, 43,35,21,255, 164,109,65,255, 83,54,34,255, 77,45,25,255, 84,56,35,255, 84,56,35,255, 84,56,35,255, 77,45,25,255, 75,43,24,255, 84,56,35,255, 83,55,34,255, 84,56,35,255, 162,107,62,255, 43,35,21,255, 14,11,6,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 110,110,110,255, 38,38,38,255, 51,51,51,255, 50,50,50,255, 35,35,35,255, 41,41,41,255, 33,33,33,255, 66,66,66,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 135,135,135,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 95,95,95,255, 200,200,200,255, 197,197,197,255, 81,81,81,255, 111,111,111,255, 111,111,111,255, 111,111,111,255, 197,197,197,255, 200,200,200,255, 95,95,95,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 135,135,135,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 188,152,98,255, 188,22,22,255, 145,17,17,255, 17,142,107,255, 49,91,142,255, 42,78,122,255, 73,73,73,255, 63,63,63,255, 188,22,22,255, 145,17,17,255, 63,46,24,255, 117,142,17,255, 94,114,13,255, 181,181,181,255, 137,137,137,255, 188,152,98,255, 175,175,175,255, 173,173,173,255, 104,104,104,255, 58,98,58,255, 173,173,173,255, 134,134,134,255, 134,134,134,255, 85,85,85,255, 58,98,58,255, 66,137,66,255, 155,155,155,255, 65,133,65,255, 57,93,57,255, 127,127,127,255, 167,167,167,255, 104,104,104,255, 14,14,18,255, 9,9,11,255, 30,24,43,255, 16,16,25,255, 16,16,20,255, 16,16,20,255, 13,13,20,255, 16,16,24,255, 15,15,15,255, 13,13,20,255, 16,16,27,255, 9,9,18,255, 30,24,43,255, 15,15,26,255, 16,16,25,255, 17,17,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 149,149,149,255, 149,149,149,255, 0,0,0,0, 152,152,152,255, 118,118,118,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 118,118,118,255, 146,146,146,255, 0,0,0,0, 0,0,0,0, 144,144,144,255, 145,145,145,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 68,60,48,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 136,89,25,255, 136,89,25,255, 136,89,25,255, 136,89,25,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 42,37,29,255, 0,0,0,0, 18,14,9,255, 174,113,69,255, 161,105,61,255, 84,56,35,255, 158,90,51,255, 163,94,52,255, 82,53,33,255, 175,114,70,255, 175,114,70,255, 75,43,24,255, 158,90,51,255, 177,116,73,255, 84,56,35,255, 162,107,62,255, 175,114,70,255, 25,20,12,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 76,76,76,255, 53,53,53,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 55,55,55,255, 83,83,83,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 105,105,105,255, 143,143,143,255, 123,123,123,255, 123,123,123,255, 91,91,91,255, 105,105,105,255, 137,137,137,255, 149,149,149,255, 148,148,148,255, 115,115,115,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 56,56,56,255, 114,114,114,255, 142,142,142,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 111,111,111,255, 81,81,81,255, 132,132,132,255, 132,132,132,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 121,121,121,255, 112,112,112,255, 36,36,36,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 105,105,105,255, 143,143,143,255, 123,123,123,255, 123,123,123,255, 89,89,89,255, 90,90,90,255, 137,137,137,255, 149,149,149,255, 148,148,148,255, 115,115,115,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 255,255,255,255, 255,255,181,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 255,255,255,255, 255,255,181,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 226,192,170,255, 216,175,147,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 226,192,170,255, 216,175,147,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 69,69,69,255, 63,63,63,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 69,69,69,255, 63,63,63,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 127,127,127,255, 159,132,77,255, 188,22,22,255, 145,17,17,255, 17,142,107,255, 49,91,142,255, 42,78,122,255, 73,73,73,255, 63,63,63,255, 65,49,26,255, 188,22,22,255, 145,17,17,255, 117,142,17,255, 94,114,13,255, 17,142,107,255, 12,107,80,255, 159,132,77,255, 119,119,119,255, 134,134,134,255, 127,127,127,255, 58,98,58,255, 60,113,60,255, 138,138,138,255, 129,129,129,255, 55,80,55,255, 67,141,67,255, 192,192,192,255, 124,124,124,255, 62,122,62,255, 108,108,108,255, 103,103,103,255, 55,75,55,255, 56,81,56,255, 16,16,24,255, 16,16,24,255, 16,16,21,255, 9,9,19,255, 9,9,11,255, 9,9,14,255, 8,8,13,255, 9,9,14,255, 16,16,24,255, 14,14,21,255, 9,9,15,255, 16,16,24,255, 16,16,25,255, 16,16,24,255, 14,14,21,255, 15,15,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 118,118,118,255, 0,0,0,0, 148,148,148,255, 0,0,0,0, 139,139,139,255, 118,118,118,255, 0,0,0,0, 134,134,134,255, 118,118,118,255, 155,155,155,255, 152,152,152,255, 183,183,183,255, 0,0,0,0, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 121,88,37,255, 121,88,37,255, 84,62,22,255, 84,62,22,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 43,38,31,255, 0,0,0,0, 14,11,6,255, 175,114,70,255, 160,105,60,255, 84,56,35,255, 175,114,70,255, 162,107,62,255, 67,39,22,255, 145,84,47,255, 162,107,62,255, 76,50,29,255, 141,80,45,255, 158,90,51,255, 83,55,34,255, 160,104,60,255, 175,114,70,255, 25,20,12,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 41,41,41,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 163,163,163,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 111,111,111,255, 124,124,124,255, 125,125,125,255, 120,120,120,255, 88,88,88,255, 145,145,145,255, 145,145,145,255, 124,124,124,255, 131,131,131,255, 123,123,123,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 197,197,197,255, 101,101,101,255, 197,197,197,255, 176,176,176,255, 111,111,111,255, 81,81,81,255, 197,197,197,255, 176,176,176,255, 121,121,121,255, 197,197,197,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 111,111,111,255, 124,124,124,255, 125,125,125,255, 92,92,92,255, 33,33,33,255, 33,33,33,255, 94,94,94,255, 124,124,124,255, 131,131,131,255, 123,123,123,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 255,255,255,255, 255,255,181,255, 252,238,75,255, 252,238,75,255, 248,175,43,255, 127,127,127,255, 127,127,127,255, 252,238,75,255, 248,175,43,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 226,192,170,255, 216,175,147,255, 188,153,128,255, 188,153,128,255, 175,142,119,255, 127,127,127,255, 127,127,127,255, 188,153,128,255, 175,142,119,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 69,69,69,255, 63,63,63,255, 55,55,55,255, 55,55,55,255, 52,52,52,255, 127,127,127,255, 127,127,127,255, 55,55,55,255, 52,52,52,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 188,152,98,255, 188,22,22,255, 145,17,17,255, 17,142,107,255, 49,91,142,255, 42,78,122,255, 117,142,17,255, 94,114,13,255, 63,46,24,255, 188,22,22,255, 145,17,17,255, 117,142,17,255, 94,114,13,255, 17,142,107,255, 12,107,80,255, 188,152,98,255, 129,129,129,255, 129,129,129,255, 61,117,61,255, 58,98,58,255, 58,104,58,255, 55,79,55,255, 82,82,82,255, 59,101,59,255, 58,101,58,255, 63,125,63,255, 160,160,160,255, 61,117,61,255, 119,119,119,255, 129,129,129,255, 61,116,61,255, 100,100,100,255, 16,16,24,255, 17,17,17,255, 17,17,28,255, 16,16,25,255, 60,48,86,255, 60,48,86,255, 60,48,86,255, 60,48,86,255, 15,15,20,255, 9,9,13,255, 60,48,86,255, 14,14,21,255, 8,8,13,255, 9,9,12,255, 8,8,15,255, 15,15,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 118,118,118,255, 0,0,0,0, 147,147,147,255, 0,0,0,0, 135,135,135,255, 118,118,118,255, 0,0,0,0, 118,118,118,255, 144,144,144,255, 118,118,118,255, 0,0,0,0, 183,183,183,255, 0,0,0,0, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,59,47,255, 54,47,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 55,49,39,255, 51,46,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 51,46,37,255, 51,46,37,255, 44,39,31,255, 44,39,31,255, 44,39,30,255, 44,39,30,255, 54,47,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 55,49,39,255, 51,46,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 51,46,37,255, 51,46,37,255, 31,28,23,255, 0,0,0,0, 14,11,6,255, 175,114,70,255, 162,107,62,255, 84,55,35,255, 82,54,33,255, 75,49,28,255, 84,55,35,255, 84,55,35,255, 78,46,26,255, 84,56,35,255, 76,50,29,255, 74,42,24,255, 83,54,34,255, 162,107,62,255, 175,114,70,255, 14,11,6,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 41,41,41,255, 0,0,0,255, 13,13,13,255, 15,15,15,255, 18,18,18,255, 16,16,16,255, 19,19,19,255, 21,21,21,255, 0,0,0,255, 166,166,166,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 111,111,111,255, 116,116,116,255, 89,89,89,255, 104,104,104,255, 121,121,121,255, 113,113,113,255, 133,133,133,255, 143,143,143,255, 127,127,127,255, 130,130,130,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 197,197,197,255, 121,121,121,255, 197,197,197,255, 168,168,168,255, 197,197,197,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 132,132,132,255, 197,197,197,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 111,111,111,255, 116,116,116,255, 89,89,89,255, 33,33,33,255, 20,20,20,255, 20,20,20,255, 33,33,33,255, 94,94,94,255, 127,127,127,255, 130,130,130,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 129,129,129,255, 129,129,129,255, 55,76,55,255, 57,94,57,255, 67,141,67,255, 173,173,173,255, 58,98,58,255, 57,93,57,255, 58,99,58,255, 57,90,57,255, 81,81,81,255, 136,136,136,255, 129,129,129,255, 82,82,82,255, 58,101,58,255, 188,188,188,255, 16,16,29,255, 16,16,24,255, 8,8,8,255, 13,13,20,255, 16,16,24,255, 27,21,40,255, 30,24,43,255, 23,17,36,255, 19,19,28,255, 9,9,11,255, 30,24,43,255, 8,8,12,255, 48,36,74,255, 60,48,86,255, 30,24,43,255, 16,16,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 152,152,152,255, 118,118,118,255, 146,146,146,255, 118,118,118,255, 134,134,134,255, 140,140,140,255, 134,134,134,255, 118,118,118,255, 146,146,146,255, 118,118,118,255, 0,0,0,0, 147,147,147,255, 0,0,0,0, 118,118,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 119,90,48,255, 115,86,46,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 105,82,41,255, 105,82,41,255, 105,82,41,255, 117,84,41,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 97,73,39,255, 97,73,39,255, 69,53,26,255, 69,53,26,255, 119,90,48,255, 115,86,46,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 105,82,41,255, 105,82,41,255, 105,82,41,255, 117,84,41,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 43,38,31,255, 0,0,0,0, 14,11,6,255, 175,115,71,255, 162,107,62,255, 88,59,39,255, 175,114,70,255, 162,107,62,255, 84,56,35,255, 175,114,70,255, 175,114,70,255, 84,55,35,255, 163,108,63,255, 171,110,66,255, 84,56,35,255, 162,107,62,255, 175,114,70,255, 28,23,15,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 38,38,38,255, 113,113,113,255, 182,182,182,255, 170,170,170,255, 169,169,169,255, 170,170,170,255, 166,166,166,255, 165,165,165,255, 107,107,107,255, 168,168,168,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 101,101,101,255, 140,140,140,255, 143,143,143,255, 105,105,105,255, 100,100,100,255, 106,106,106,255, 91,91,91,255, 88,88,88,255, 124,124,124,255, 135,135,135,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 47,47,47,255, 92,92,92,255, 197,197,197,255, 176,176,176,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 82,82,82,255, 58,58,58,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 101,101,101,255, 94,94,94,255, 33,33,33,255, 20,20,20,255, 0,0,0,255, 0,0,0,255, 20,20,20,255, 33,33,33,255, 142,142,142,255, 135,135,135,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 127,127,127,255, 255,255,181,255, 252,238,75,255, 104,104,104,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 255,255,255,255, 255,255,181,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 216,175,147,255, 188,153,128,255, 104,104,104,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 226,192,170,255, 216,175,147,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 63,63,63,255, 55,55,55,255, 104,104,104,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 69,69,69,255, 63,63,63,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 127,127,127,255, 54,70,54,255, 58,98,58,255, 181,181,181,255, 68,145,68,255, 61,117,61,255, 59,107,59,255, 173,173,173,255, 165,165,165,255, 61,116,61,255, 58,100,58,255, 57,89,57,255, 56,83,56,255, 69,69,69,255, 192,192,192,255, 173,173,173,255, 15,15,22,255, 9,9,14,255, 60,48,86,255, 30,24,43,255, 15,15,23,255, 17,17,26,255, 36,30,49,255, 30,24,43,255, 16,16,25,255, 15,15,22,255, 16,16,29,255, 8,8,13,255, 27,21,40,255, 30,24,43,255, 15,15,22,255, 18,18,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 118,118,118,255, 145,145,145,255, 118,118,118,255, 134,134,134,255, 142,142,142,255, 0,0,0,0, 139,139,139,255, 150,150,150,255, 158,158,158,255, 152,152,152,255, 147,147,147,255, 155,155,155,255, 146,146,146,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,60,47,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 146,99,35,255, 146,99,35,255, 146,99,35,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 115,79,30,255, 97,65,22,255, 97,65,22,255, 119,80,28,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 146,99,35,255, 146,99,35,255, 146,99,35,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 130,91,38,255, 42,37,29,255, 0,0,0,0, 25,20,12,255, 175,114,70,255, 152,91,51,255, 84,56,35,255, 175,114,70,255, 162,107,62,255, 84,55,35,255, 175,114,70,255, 175,114,70,255, 84,56,35,255, 161,106,62,255, 175,114,70,255, 84,56,35,255, 160,105,60,255, 177,116,73,255, 25,20,12,255, 47,47,47,255, 68,68,68,255, 120,120,120,255, 131,131,131,255, 94,94,94,255, 80,80,80,255, 79,79,79,255, 91,91,91,255, 89,89,89,255, 85,85,85,255, 80,80,80,255, 76,76,76,255, 119,119,119,255, 93,93,93,255, 120,120,120,255, 59,59,59,255, 47,47,47,255, 68,68,68,255, 120,120,120,255, 140,140,140,255, 158,158,158,255, 120,120,120,255, 118,118,118,255, 149,149,149,255, 145,145,145,255, 135,135,135,255, 121,121,121,255, 111,111,111,255, 106,106,106,255, 93,93,93,255, 120,120,120,255, 59,59,59,255, 47,47,47,255, 68,68,68,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 35,35,35,255, 33,33,33,255, 157,157,157,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 59,59,59,255, 47,47,47,255, 68,68,68,255, 112,112,112,255, 139,139,139,255, 96,96,96,255, 33,33,33,255, 20,20,20,255, 0,0,0,255, 0,0,0,255, 20,20,20,255, 33,33,33,255, 139,139,139,255, 93,93,93,255, 75,75,75,255, 120,120,120,255, 59,59,59,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 255,255,181,255, 248,175,43,255, 248,175,43,255, 248,175,43,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 216,175,147,255, 175,142,119,255, 175,142,119,255, 175,142,119,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 63,63,63,255, 52,52,52,255, 52,52,52,255, 52,52,52,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 127,127,127,255, 159,132,77,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 39,30,17,255, 44,34,19,255, 44,34,19,255, 44,34,19,255, 39,30,17,255, 39,30,17,255, 49,91,142,255, 42,78,122,255, 44,34,19,255, 159,132,77,255, 139,139,139,255, 104,104,104,255, 173,173,173,255, 176,176,176,255, 62,122,62,255, 56,81,56,255, 173,173,173,255, 113,113,113,255, 181,181,181,255, 63,126,63,255, 144,144,144,255, 58,98,58,255, 105,105,105,255, 188,188,188,255, 129,129,129,255, 129,129,129,255, 14,14,21,255, 16,16,24,255, 16,16,24,255, 16,16,30,255, 16,16,25,255, 16,16,23,255, 16,16,24,255, 34,28,47,255, 15,15,24,255, 13,13,20,255, 15,15,20,255, 7,7,17,255, 30,24,43,255, 14,14,21,255, 16,16,24,255, 16,16,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,145,145,255, 118,118,118,255, 0,0,0,0, 118,118,118,255, 118,118,118,255, 145,145,145,255, 135,135,135,255, 118,118,118,255, 0,0,0,0, 118,118,118,255, 118,118,118,255, 146,146,146,255, 118,118,118,255, 143,143,143,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 149,108,46,255, 40,36,29,255, 0,0,0,0, 25,20,12,255, 177,116,72,255, 139,77,44,255, 77,45,25,255, 81,53,32,255, 74,49,28,255, 84,56,35,255, 84,56,35,255, 77,45,25,255, 84,56,35,255, 76,50,29,255, 82,53,33,255, 84,56,35,255, 161,105,61,255, 175,114,70,255, 25,20,12,255, 75,75,75,255, 142,142,142,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 200,200,200,255, 205,205,205,255, 205,205,205,255, 193,193,193,255, 205,205,205,255, 200,200,200,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 142,142,142,255, 63,63,63,255, 75,75,75,255, 142,142,142,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 200,200,200,255, 205,205,205,255, 205,205,205,255, 193,193,193,255, 205,205,205,255, 200,200,200,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 142,142,142,255, 63,63,63,255, 75,75,75,255, 142,142,142,255, 197,197,197,255, 168,168,168,255, 176,176,176,255, 157,157,157,255, 33,33,33,255, 0,0,0,255, 0,0,0,255, 33,33,33,255, 200,200,200,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 142,142,142,255, 63,63,63,255, 41,41,41,255, 82,82,82,255, 144,144,144,255, 146,146,146,255, 126,126,126,255, 89,89,89,255, 33,33,33,255, 20,20,20,255, 20,20,20,255, 33,33,33,255, 142,142,142,255, 106,106,106,255, 107,107,107,255, 151,151,151,255, 80,80,80,255, 48,48,48,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 252,238,75,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 188,153,128,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 55,55,55,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 188,152,98,255, 39,30,17,255, 54,42,21,255, 54,42,21,255, 188,22,22,255, 145,17,17,255, 63,46,24,255, 63,46,24,255, 54,42,21,255, 168,155,10,255, 137,126,8,255, 44,34,19,255, 49,91,142,255, 42,78,122,255, 54,42,21,255, 159,132,77,255, 104,104,104,255, 66,138,66,255, 124,124,124,255, 129,129,129,255, 129,129,129,255, 79,79,79,255, 173,173,173,255, 147,147,147,255, 129,129,129,255, 61,117,61,255, 135,135,135,255, 82,82,82,255, 58,100,58,255, 104,104,104,255, 153,153,153,255, 133,133,133,255, 16,16,16,255, 16,16,24,255, 17,17,26,255, 15,15,23,255, 15,15,22,255, 16,16,24,255, 15,15,26,255, 15,15,28,255, 16,16,24,255, 9,9,14,255, 14,14,22,255, 16,16,35,255, 16,16,24,255, 9,9,18,255, 16,16,24,255, 16,16,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 144,144,144,255, 118,118,118,255, 0,0,0,0, 118,118,118,255, 0,0,0,0, 118,118,118,255, 139,139,139,255, 118,118,118,255, 0,0,0,0, 118,118,118,255, 141,141,141,255, 144,144,144,255, 118,118,118,255, 140,140,140,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,59,47,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 127,95,34,255, 40,36,29,255, 0,0,0,0, 24,19,11,255, 173,112,68,255, 162,107,62,255, 75,43,24,255, 158,90,51,255, 162,107,62,255, 76,50,29,255, 162,107,62,255, 141,80,45,255, 66,37,21,255, 162,107,62,255, 178,117,73,255, 84,56,35,255, 162,107,62,255, 175,114,70,255, 25,20,12,255, 75,75,75,255, 121,121,121,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 127,127,127,255, 66,66,66,255, 66,66,66,255, 61,61,61,255, 66,66,66,255, 127,127,127,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 121,121,121,255, 48,48,48,255, 75,75,75,255, 121,121,121,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 121,121,121,255, 48,48,48,255, 75,75,75,255, 121,121,121,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 157,157,157,255, 33,33,33,255, 19,19,19,255, 16,16,16,255, 33,33,33,255, 200,200,200,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 121,121,121,255, 48,48,48,255, 45,45,45,255, 80,80,80,255, 119,119,119,255, 122,122,122,255, 122,122,122,255, 86,86,86,255, 94,94,94,255, 33,33,33,255, 33,33,33,255, 141,141,141,255, 125,125,125,255, 89,89,89,255, 107,107,107,255, 106,106,106,255, 105,105,105,255, 41,41,41,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 255,255,181,255, 248,175,43,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 216,175,147,255, 175,142,119,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 63,63,63,255, 52,52,52,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 115,94,57,255, 135,54,8,255, 119,48,7,255, 99,40,5,255, 188,22,22,255, 145,17,17,255, 54,42,21,255, 65,49,26,255, 94,114,13,255, 181,181,181,255, 137,137,137,255, 145,17,17,255, 49,91,142,255, 42,78,122,255, 17,142,107,255, 115,94,57,255, 58,98,58,255, 58,98,58,255, 65,135,65,255, 127,127,127,255, 116,116,116,255, 82,82,82,255, 129,129,129,255, 131,131,131,255, 145,145,145,255, 129,129,129,255, 55,79,55,255, 57,93,57,255, 67,142,67,255, 58,98,58,255, 58,98,58,255, 82,82,82,255, 16,16,32,255, 9,9,14,255, 10,10,15,255, 16,16,24,255, 15,15,22,255, 15,15,22,255, 16,16,24,255, 15,15,22,255, 9,9,14,255, 60,48,86,255, 15,15,23,255, 16,16,25,255, 8,8,13,255, 64,52,90,255, 30,24,43,255, 16,16,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,255, 157,157,157,255, 0,0,0,0, 118,118,118,255, 0,0,0,0, 118,118,118,255, 144,144,144,255, 118,118,118,255, 0,0,0,0, 118,118,118,255, 138,138,138,255, 142,142,142,255, 118,118,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 144,102,42,255, 40,36,29,255, 0,0,0,0, 14,11,6,255, 174,113,69,255, 162,107,62,255, 84,56,35,255, 158,89,50,255, 176,115,71,255, 82,53,33,255, 174,113,69,255, 175,114,70,255, 82,53,33,255, 158,90,51,255, 178,117,73,255, 84,56,35,255, 165,110,65,255, 175,114,70,255, 24,19,11,255, 75,75,75,255, 127,127,127,255, 168,168,168,255, 121,121,121,255, 63,63,63,255, 59,59,59,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 61,61,61,255, 61,61,61,255, 118,118,118,255, 163,163,163,255, 118,118,118,255, 50,50,50,255, 75,75,75,255, 127,127,127,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 118,118,118,255, 50,50,50,255, 75,75,75,255, 127,127,127,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 19,19,19,255, 19,19,19,255, 200,200,200,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 118,118,118,255, 50,50,50,255, 56,56,56,255, 114,114,114,255, 136,136,136,255, 122,122,122,255, 115,115,115,255, 89,89,89,255, 122,122,122,255, 141,141,141,255, 142,142,142,255, 122,122,122,255, 89,89,89,255, 100,100,100,255, 142,142,142,255, 106,106,106,255, 112,112,112,255, 36,36,36,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 255,255,181,255, 255,255,255,255, 255,255,181,255, 252,238,75,255, 252,238,75,255, 248,175,43,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 216,175,147,255, 226,192,170,255, 216,175,147,255, 188,153,128,255, 188,153,128,255, 175,142,119,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 63,63,63,255, 69,69,69,255, 63,63,63,255, 55,55,55,255, 55,55,55,255, 52,52,52,255, 116,116,116,255, 127,127,127,255, 188,152,98,255, 135,54,8,255, 119,48,7,255, 99,40,5,255, 188,22,22,255, 145,17,17,255, 49,91,142,255, 54,42,21,255, 94,114,13,255, 181,181,181,255, 137,137,137,255, 145,17,17,255, 49,91,142,255, 42,78,122,255, 17,142,107,255, 188,152,98,255, 173,173,173,255, 173,173,173,255, 55,79,55,255, 55,79,55,255, 55,79,55,255, 55,79,55,255, 59,102,59,255, 129,129,129,255, 56,87,56,255, 55,79,55,255, 173,173,173,255, 156,156,156,255, 61,117,61,255, 129,129,129,255, 58,98,58,255, 58,98,58,255, 16,16,24,255, 60,48,86,255, 58,46,84,255, 33,27,46,255, 15,15,23,255, 15,15,15,255, 17,14,29,255, 14,14,21,255, 9,9,9,255, 58,46,84,255, 30,24,43,255, 16,16,24,255, 16,16,25,255, 16,16,20,255, 15,15,21,255, 15,15,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,255, 118,118,118,255, 154,154,154,255, 118,118,118,255, 137,137,137,255, 118,118,118,255, 148,148,148,255, 118,118,118,255, 164,164,164,255, 118,118,118,255, 137,137,137,255, 118,118,118,255, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,60,47,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 142,97,38,255, 42,37,29,255, 0,0,0,0, 14,11,6,255, 43,35,21,255, 162,107,62,255, 85,56,36,255, 84,56,35,255, 75,43,24,255, 84,55,35,255, 84,56,35,255, 84,56,35,255, 84,56,35,255, 85,56,36,255, 84,56,35,255, 84,55,35,255, 162,107,62,255, 44,35,22,255, 14,11,6,255, 75,75,75,255, 127,127,127,255, 127,127,127,255, 61,61,61,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 66,66,66,255, 176,176,176,255, 127,127,127,255, 45,45,45,255, 75,75,75,255, 127,127,127,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 127,127,127,255, 45,45,45,255, 75,75,75,255, 127,127,127,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 176,176,176,255, 200,200,200,255, 200,200,200,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 176,176,176,255, 127,127,127,255, 45,45,45,255, 43,43,43,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 110,110,110,255, 122,122,122,255, 96,96,96,255, 88,88,88,255, 144,144,144,255, 136,136,136,255, 122,122,122,255, 122,122,122,255, 56,56,56,255, 36,36,36,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 255,255,181,255, 248,175,43,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 248,175,43,255, 248,175,43,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 216,175,147,255, 175,142,119,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 175,142,119,255, 175,142,119,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 63,63,63,255, 52,52,52,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 52,52,52,255, 52,52,52,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 180,144,90,255, 135,54,8,255, 119,48,7,255, 99,40,5,255, 188,22,22,255, 145,17,17,255, 49,91,142,255, 94,114,13,255, 54,42,21,255, 168,155,10,255, 137,126,8,255, 145,17,17,255, 49,91,142,255, 42,78,122,255, 17,142,107,255, 180,144,90,255, 180,180,180,255, 126,126,126,255, 60,109,60,255, 179,179,179,255, 66,140,66,255, 178,178,178,255, 58,98,58,255, 82,82,82,255, 59,102,59,255, 199,199,199,255, 161,161,161,255, 129,129,129,255, 145,145,145,255, 129,129,129,255, 137,137,137,255, 81,81,81,255, 15,15,33,255, 16,16,24,255, 30,24,43,255, 30,24,43,255, 16,16,31,255, 7,7,11,255, 30,24,43,255, 16,16,24,255, 9,9,14,255, 35,29,48,255, 30,24,43,255, 30,24,43,255, 16,16,25,255, 16,16,26,255, 15,15,26,255, 18,18,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,148,148,255, 166,166,166,255, 159,159,159,255, 118,118,118,255, 139,139,139,255, 118,118,118,255, 151,151,151,255, 145,145,145,255, 164,164,164,255, 118,118,118,255, 138,138,138,255, 118,118,118,255, 146,146,146,255, 133,133,133,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 149,108,46,255, 43,38,31,255, 0,0,0,0, 14,11,6,255, 180,144,90,255, 37,30,17,255, 162,107,62,255, 165,110,65,255, 162,107,62,255, 162,107,62,255, 162,107,62,255, 159,104,59,255, 163,107,63,255, 162,107,62,255, 164,109,65,255, 167,112,67,255, 39,33,19,255, 178,142,88,255, 14,11,6,255, 74,74,74,255, 118,118,118,255, 63,63,63,255, 0,0,0,255, 17,17,17,255, 24,24,24,255, 24,24,24,255, 24,24,24,255, 25,25,25,255, 23,23,23,255, 25,25,25,255, 17,17,17,255, 0,0,0,255, 178,178,178,255, 113,113,113,255, 50,50,50,255, 74,74,74,255, 118,118,118,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 113,113,113,255, 50,50,50,255, 74,74,74,255, 118,118,118,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 168,168,168,255, 113,113,113,255, 50,50,50,255, 50,50,50,255, 97,97,97,255, 115,115,115,255, 147,147,147,255, 140,140,140,255, 147,147,147,255, 106,106,106,255, 89,89,89,255, 110,110,110,255, 157,157,157,255, 137,137,137,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 97,97,97,255, 35,35,35,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 188,152,98,255, 135,54,8,255, 119,48,7,255, 99,40,5,255, 188,22,22,255, 145,17,17,255, 49,91,142,255, 94,114,13,255, 65,49,26,255, 168,155,10,255, 137,126,8,255, 145,17,17,255, 49,91,142,255, 42,78,122,255, 17,142,107,255, 188,152,98,255, 121,121,121,255, 137,137,137,255, 56,85,56,255, 159,159,159,255, 132,132,132,255, 124,124,124,255, 128,128,128,255, 58,98,58,255, 58,98,58,255, 58,98,58,255, 129,129,129,255, 143,143,143,255, 138,138,138,255, 146,146,146,255, 85,85,85,255, 55,79,55,255, 16,16,25,255, 16,16,23,255, 16,16,24,255, 30,24,43,255, 17,17,25,255, 16,16,24,255, 12,12,19,255, 15,15,23,255, 9,9,15,255, 26,20,39,255, 30,24,43,255, 30,24,43,255, 30,24,43,255, 16,16,25,255, 15,15,23,255, 12,12,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 129,129,129,255, 118,118,118,255, 155,155,155,255, 129,129,129,255, 118,118,118,255, 145,145,145,255, 116,116,116,255, 145,145,145,255, 118,118,118,255, 116,116,116,255, 118,118,118,255, 116,116,116,255, 129,129,129,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 43,38,31,255, 0,0,0,0, 18,14,9,255, 180,144,90,255, 180,144,90,255, 43,35,21,255, 175,114,70,255, 177,116,72,255, 171,110,66,255, 171,110,66,255, 175,114,70,255, 175,114,70,255, 169,108,65,255, 175,114,70,255, 43,35,21,255, 180,144,90,255, 180,144,90,255, 25,20,12,255, 77,77,77,255, 127,127,127,255, 63,63,63,255, 17,17,17,255, 40,40,40,255, 38,38,38,255, 42,42,42,255, 42,42,42,255, 40,40,40,255, 40,40,40,255, 40,40,40,255, 40,40,40,255, 18,18,18,255, 183,183,183,255, 127,127,127,255, 45,45,45,255, 77,77,77,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 118,118,118,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 45,45,45,255, 77,77,77,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 113,113,113,255, 113,113,113,255, 121,121,121,255, 121,121,121,255, 113,113,113,255, 113,113,113,255, 113,113,113,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 45,45,45,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 124,98,62,255, 105,84,51,255, 105,84,51,255, 124,98,62,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 76,61,38,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 124,124,124,255, 121,121,121,255, 119,119,119,255, 57,91,57,255, 55,73,55,255, 55,72,55,255, 55,79,55,255, 58,98,58,255, 68,145,68,255, 131,131,131,255, 101,101,101,255, 58,99,58,255, 56,87,56,255, 57,89,57,255, 56,82,56,255, 108,108,108,255, 16,16,24,255, 15,15,21,255, 16,16,24,255, 15,15,29,255, 16,16,25,255, 17,17,26,255, 16,16,24,255, 16,16,24,255, 16,16,25,255, 17,17,28,255, 16,16,20,255, 17,17,26,255, 16,16,24,255, 16,16,24,255, 15,15,23,255, 16,16,30,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 149,149,149,255, 126,126,126,255, 118,118,118,255, 126,126,126,255, 116,116,116,255, 116,116,116,255, 126,126,126,255, 118,118,118,255, 126,126,126,255, 126,126,126,255, 126,126,126,255, 118,118,118,255, 129,129,129,255, 116,116,116,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 42,37,29,255, 42,37,29,255, 44,37,29,255, 42,37,30,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 42,37,29,255, 42,37,30,255, 39,35,30,255, 42,37,30,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 44,37,29,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 42,37,29,255, 42,37,30,255, 39,35,30,255, 42,37,30,255, 33,29,23,255, 0,0,0,0, 25,20,12,255, 26,21,13,255, 14,11,6,255, 26,21,13,255, 25,20,12,255, 80,38,22,255, 73,33,19,255, 80,38,22,255, 80,38,22,255, 80,38,22,255, 80,38,22,255, 25,20,12,255, 14,11,6,255, 14,11,6,255, 14,11,6,255, 25,20,12,255, 63,63,63,255, 97,97,97,255, 50,50,50,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 38,38,38,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 165,165,165,255, 97,97,97,255, 50,50,50,255, 63,63,63,255, 50,50,50,255, 50,50,50,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 45,45,45,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 50,50,50,255, 50,50,50,255, 63,63,63,255, 48,48,48,255, 50,50,50,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 48,48,48,255, 48,48,48,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 200,203,95,255, 196,197,91,255, 184,186,78,255, 203,204,90,255, 160,163,57,255, 208,209,83,255, 201,202,90,255, 201,202,90,255, 210,211,105,255, 197,198,92,255, 125,124,49,255, 210,212,96,255, 208,212,106,255, 202,198,92,255, 207,209,77,255, 205,201,97,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 0,0,0,0, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 254,254,254,255, 192,245,254,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 151,151,151,255, 0,0,0,0, 173,173,173,255, 159,159,159,255, 90,90,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 0,0,0,0, 171,171,171,255, 185,133,92,255, 150,108,74,255, 148,106,73,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 82,59,40,255, 150,108,74,255, 92,65,44,255, 121,85,58,255, 48,33,22,255, 121,85,58,255, 66,46,31,255, 185,133,92,255, 102,72,48,255, 185,133,92,255, 159,159,159,255, 152,152,152,255, 160,160,160,255, 156,156,156,255, 144,144,144,255, 156,156,156,255, 151,151,151,255, 148,148,148,255, 148,148,148,255, 148,148,148,255, 148,148,148,255, 154,154,154,255, 141,141,141,255, 143,143,143,255, 142,142,142,255, 96,96,96,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,20,12,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 45,36,23,255, 180,119,75,255, 91,47,28,255, 88,45,26,255, 180,119,75,255, 45,36,23,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 25,20,12,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 45,36,23,255, 180,119,75,255, 91,47,28,255, 88,45,26,255, 180,119,75,255, 45,36,23,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 193,195,87,255, 140,139,54,255, 225,223,95,255, 192,195,91,255, 194,196,86,255, 222,224,110,255, 138,139,55,255, 183,184,74,255, 209,210,78,255, 207,208,88,255, 202,201,90,255, 201,197,89,255, 207,208,90,255, 205,207,97,255, 120,122,60,255, 198,199,95,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 179,214,219,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 135,135,135,255, 0,0,0,0, 187,187,187,255, 153,153,153,255, 0,0,0,0, 84,84,84,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 78,78,78,255, 0,0,0,0, 179,179,179,255, 180,180,180,255, 80,80,80,255, 0,0,0,0, 84,84,84,255, 121,85,58,255, 150,108,74,255, 83,57,38,255, 111,78,53,255, 121,85,58,255, 135,97,66,255, 103,103,103,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 82,59,40,255, 121,85,58,255, 163,117,81,255, 150,108,74,255, 89,61,41,255, 89,61,41,255, 156,156,156,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 121,121,121,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 123,123,123,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,20,12,255, 188,152,98,255, 180,144,90,255, 115,94,57,255, 180,144,90,255, 180,144,90,255, 38,32,18,255, 88,45,26,255, 88,45,26,255, 38,32,18,255, 159,132,77,255, 180,144,90,255, 159,132,77,255, 180,144,90,255, 188,152,98,255, 25,20,12,255, 25,20,12,255, 188,152,98,255, 180,144,90,255, 115,94,57,255, 180,144,90,255, 180,144,90,255, 38,32,18,255, 88,45,26,255, 88,45,26,255, 38,32,18,255, 159,132,77,255, 180,144,90,255, 159,132,77,255, 180,144,90,255, 188,152,98,255, 25,20,12,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,205,97,255, 208,206,76,255, 200,201,95,255, 209,207,95,255, 208,207,82,255, 205,207,89,255, 185,186,76,255, 189,190,76,255, 211,213,85,255, 201,198,95,255, 193,194,80,255, 215,216,98,255, 140,141,57,255, 195,198,90,255, 233,234,112,255, 208,206,92,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 119,206,251,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 199,231,254,255, 119,206,251,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 151,3,3,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 255,0,0,255, 151,3,3,255, 127,127,127,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 143,143,143,255, 0,0,0,0, 81,81,81,255, 175,175,175,255, 162,162,162,255, 0,0,0,0, 158,158,158,255, 170,170,170,255, 95,95,95,255, 177,177,177,255, 148,148,148,255, 0,0,0,0, 176,176,176,255, 171,171,171,255, 185,133,92,255, 79,55,37,255, 121,85,58,255, 68,46,31,255, 149,107,74,255, 92,65,44,255, 66,46,31,255, 121,85,58,255, 100,72,50,255, 66,46,31,255, 92,65,44,255, 121,85,58,255, 83,57,38,255, 88,60,40,255, 185,133,92,255, 121,85,58,255, 144,144,144,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 136,136,136,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 136,136,136,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 115,115,115,255, 107,107,107,255, 93,93,93,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 181,181,181,255, 126,126,126,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 69,61,49,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 65,59,47,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 65,59,47,255, 65,59,47,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 69,61,49,255, 65,59,47,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 70,62,50,255, 51,46,37,255, 0,0,0,0, 25,20,12,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 125,88,49,255, 159,132,77,255, 180,144,90,255, 43,35,21,255, 45,36,23,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 115,94,57,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 25,20,12,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 125,88,49,255, 159,132,77,255, 180,144,90,255, 43,35,21,255, 45,36,23,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 115,94,57,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 34,53,34,255, 57,90,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,205,91,255, 192,196,88,255, 206,208,92,255, 135,136,56,255, 181,182,80,255, 206,208,92,255, 216,217,95,255, 139,140,54,255, 213,215,89,255, 202,203,87,255, 191,192,88,255, 130,131,55,255, 179,181,55,255, 195,196,76,255, 198,200,90,255, 205,209,97,255, 254,254,254,255, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 179,214,219,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 199,231,254,255, 93,236,245,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 255,0,0,255, 143,3,3,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 138,138,138,255, 0,0,0,0, 171,171,171,255, 154,154,154,255, 79,79,79,255, 175,175,175,255, 139,139,139,255, 0,0,0,0, 173,173,173,255, 154,154,154,255, 150,108,74,255, 103,103,103,255, 185,133,92,255, 84,59,40,255, 150,108,74,255, 89,61,41,255, 94,66,45,255, 152,109,75,255, 121,87,59,255, 114,82,56,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 100,72,50,255, 150,108,74,255, 121,85,58,255, 151,151,151,255, 115,115,115,255, 127,127,127,255, 136,136,136,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 136,136,136,255, 110,110,110,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 181,181,181,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 40,36,29,255, 0,0,0,0, 25,20,12,255, 105,84,51,255, 105,84,51,255, 74,60,36,255, 74,60,36,255, 115,94,57,255, 115,94,57,255, 27,22,13,255, 27,22,13,255, 115,94,57,255, 67,54,33,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 25,20,12,255, 25,20,12,255, 105,84,51,255, 105,84,51,255, 74,60,36,255, 74,60,36,255, 115,94,57,255, 115,94,57,255, 27,22,13,255, 27,22,13,255, 115,94,57,255, 67,54,33,255, 40,30,11,255, 40,30,11,255, 40,30,11,255, 115,94,57,255, 25,20,12,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 110,110,110,255, 38,38,38,255, 51,51,51,255, 50,50,50,255, 35,35,35,255, 41,41,41,255, 33,33,33,255, 66,66,66,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 135,135,135,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 34,53,34,255, 46,73,46,255, 34,53,34,255, 34,53,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,196,86,255, 209,210,80,255, 204,201,96,255, 190,191,75,255, 156,157,55,255, 208,207,88,255, 194,195,73,255, 191,192,86,255, 200,202,90,255, 185,186,84,255, 194,198,76,255, 203,205,77,255, 212,213,93,255, 204,205,89,255, 236,238,92,255, 200,196,94,255, 254,254,254,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 179,214,219,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 0,0,0,0, 161,161,161,255, 160,160,160,255, 0,0,0,0, 0,0,0,0, 165,165,165,255, 82,82,82,255, 0,0,0,0, 153,153,153,255, 141,141,141,255, 0,0,0,0, 0,0,0,0, 141,141,141,255, 0,0,0,0, 147,147,147,255, 138,138,138,255, 147,106,72,255, 78,55,37,255, 134,97,66,255, 144,104,71,255, 85,58,39,255, 150,108,74,255, 95,66,45,255, 121,85,58,255, 150,108,74,255, 74,51,34,255, 111,78,53,255, 108,108,108,255, 121,85,58,255, 144,104,71,255, 60,41,27,255, 121,85,58,255, 148,148,148,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 115,115,115,255, 127,127,127,255, 136,136,136,255, 116,116,116,255, 93,93,93,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 148,100,40,255, 0,0,0,0, 0,0,0,0, 148,100,40,255, 148,100,40,255, 91,52,6,255, 91,52,6,255, 148,100,40,255, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 97,97,97,255, 126,126,126,255, 97,97,97,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 68,60,48,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 42,37,29,255, 0,0,0,0, 25,20,12,255, 159,132,77,255, 159,132,77,255, 125,88,49,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 38,32,18,255, 45,36,23,255, 159,132,77,255, 125,88,49,255, 115,94,57,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 25,20,12,255, 25,20,12,255, 159,132,77,255, 159,132,77,255, 125,88,49,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 38,32,18,255, 45,36,23,255, 159,132,77,255, 125,88,49,255, 40,30,11,255, 112,89,56,255, 40,30,11,255, 112,89,56,255, 25,20,12,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 76,76,76,255, 53,53,53,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 55,55,55,255, 83,83,83,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 105,105,105,255, 143,143,143,255, 123,123,123,255, 123,123,123,255, 91,91,91,255, 105,105,105,255, 137,137,137,255, 149,149,149,255, 148,148,148,255, 115,115,115,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 80,54,26,255, 19,8,3,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,203,90,255, 189,185,83,255, 201,202,86,255, 201,202,90,255, 209,210,94,255, 190,191,83,255, 209,211,77,255, 201,203,93,255, 127,128,60,255, 202,203,87,255, 200,201,95,255, 201,202,90,255, 147,148,46,255, 209,206,99,255, 206,207,99,255, 158,161,61,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 255,255,255,255, 199,231,254,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 255,255,255,255, 199,231,254,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 255,0,0,255, 170,4,4,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 255,0,0,255, 170,4,4,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 127,127,127,255, 0,0,0,0, 176,176,176,255, 134,134,134,255, 0,0,0,0, 79,79,79,255, 141,141,141,255, 93,93,93,255, 0,0,0,0, 82,82,82,255, 154,154,154,255, 0,0,0,0, 87,87,87,255, 0,0,0,0, 91,91,91,255, 0,0,0,0, 132,132,132,255, 120,84,57,255, 69,47,32,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 59,41,27,255, 89,61,41,255, 89,61,41,255, 116,81,55,255, 120,84,57,255, 121,85,58,255, 92,65,44,255, 121,85,58,255, 111,78,53,255, 100,72,50,255, 147,147,147,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 115,115,115,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 106,106,106,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,52,6,255, 148,100,40,255, 0,0,0,0, 0,0,0,0, 148,100,40,255, 148,100,40,255, 148,100,40,255, 91,52,6,255, 91,52,6,255, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 126,126,126,255, 126,126,126,255, 181,181,181,255, 126,126,126,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 43,38,31,255, 0,0,0,0, 25,20,12,255, 159,132,77,255, 115,94,57,255, 40,30,11,255, 180,144,90,255, 40,30,11,255, 188,152,98,255, 38,32,18,255, 43,35,21,255, 180,144,90,255, 153,104,58,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 25,20,12,255, 25,20,12,255, 159,132,77,255, 115,94,57,255, 40,30,11,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 38,32,18,255, 43,35,21,255, 180,144,90,255, 153,104,58,255, 40,30,11,255, 40,30,11,255, 40,30,11,255, 99,82,48,255, 25,20,12,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 41,41,41,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 163,163,163,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 111,111,111,255, 124,124,124,255, 125,125,125,255, 120,120,120,255, 88,88,88,255, 145,145,145,255, 145,145,145,255, 124,124,124,255, 131,131,131,255, 123,123,123,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,90,57,255, 46,73,46,255, 0,0,0,0, 57,90,57,255, 46,29,10,255, 19,8,3,255, 0,0,0,0, 57,90,57,255, 46,73,46,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 210,206,100,255, 135,136,54,255, 204,205,89,255, 221,220,103,255, 136,137,49,255, 197,198,92,255, 198,202,92,255, 201,198,95,255, 216,218,92,255, 204,206,88,255, 196,197,89,255, 185,189,71,255, 230,226,106,255, 220,221,97,255, 199,201,89,255, 202,198,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 179,214,219,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 255,255,255,255, 199,231,254,255, 119,206,251,255, 119,206,251,255, 93,236,245,255, 127,127,127,255, 127,127,127,255, 119,206,251,255, 93,236,245,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 184,5,5,255, 170,4,4,255, 151,3,3,255, 151,3,3,255, 143,3,3,255, 127,127,127,255, 127,127,127,255, 151,3,3,255, 143,3,3,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 83,83,83,255, 148,148,148,255, 0,0,0,0, 80,80,80,255, 88,88,88,255, 0,0,0,0, 162,162,162,255, 167,167,167,255, 0,0,0,0, 0,0,0,0, 101,101,101,255, 0,0,0,0, 0,0,0,0, 82,82,82,255, 89,89,89,255, 92,92,92,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 84,84,84,255, 118,83,56,255, 120,84,57,255, 185,133,92,255, 185,133,92,255, 120,84,57,255, 139,100,69,255, 182,131,90,255, 110,77,52,255, 150,108,74,255, 121,85,58,255, 114,82,56,255, 141,141,141,255, 114,114,114,255, 120,120,120,255, 116,116,116,255, 110,110,110,255, 110,110,110,255, 110,110,110,255, 110,110,110,255, 116,116,116,255, 116,116,116,255, 112,112,112,255, 101,101,101,255, 108,108,108,255, 116,116,116,255, 114,114,114,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,52,6,255, 148,100,40,255, 91,52,6,255, 148,100,40,255, 91,52,6,255, 91,52,6,255, 0,0,0,0, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 97,97,97,255, 126,126,126,255, 97,97,97,255, 97,97,97,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,59,47,255, 54,47,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 55,49,39,255, 51,46,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 51,46,37,255, 51,46,37,255, 54,48,38,255, 54,48,38,255, 55,49,39,255, 51,46,37,255, 54,47,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 55,49,39,255, 51,46,37,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 54,48,38,255, 51,46,37,255, 51,46,37,255, 31,28,23,255, 0,0,0,0, 25,20,12,255, 188,152,98,255, 188,152,98,255, 40,30,11,255, 117,94,61,255, 40,30,11,255, 117,94,61,255, 38,32,18,255, 38,32,18,255, 159,132,77,255, 74,60,36,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 25,20,12,255, 188,152,98,255, 188,152,98,255, 40,30,11,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 38,32,18,255, 38,32,18,255, 159,132,77,255, 74,60,36,255, 216,216,216,255, 216,216,216,255, 181,181,181,255, 117,94,61,255, 25,20,12,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 41,41,41,255, 0,0,0,255, 13,13,13,255, 15,15,15,255, 18,18,18,255, 16,16,16,255, 19,19,19,255, 21,21,21,255, 0,0,0,255, 166,166,166,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 111,111,111,255, 116,116,116,255, 89,89,89,255, 104,104,104,255, 121,121,121,255, 113,113,113,255, 133,133,133,255, 143,143,143,255, 127,127,127,255, 130,130,130,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 0,0,0,0, 0,0,0,0, 57,90,57,255, 46,73,46,255, 57,90,57,255, 57,90,57,255, 46,73,46,255, 19,8,3,255, 46,29,10,255, 57,90,57,255, 46,73,46,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 194,195,77,255, 153,149,55,255, 230,229,112,255, 207,208,88,255, 216,217,95,255, 208,209,99,255, 193,194,84,255, 209,210,80,255, 201,200,77,255, 200,201,95,255, 201,202,98,255, 211,210,97,255, 172,176,60,255, 208,209,87,255, 210,211,97,255, 200,205,77,255, 254,254,254,255, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 179,214,219,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 162,162,162,255, 182,182,182,255, 0,0,0,0, 166,166,166,255, 181,181,181,255, 88,88,88,255, 175,175,175,255, 145,145,145,255, 0,0,0,0, 168,168,168,255, 187,187,187,255, 83,83,83,255, 0,0,0,0, 82,82,82,255, 0,0,0,0, 98,98,98,255, 101,71,48,255, 121,85,58,255, 185,133,92,255, 100,72,50,255, 114,82,56,255, 136,98,67,255, 113,79,54,255, 66,46,31,255, 150,108,74,255, 87,60,40,255, 126,91,62,255, 120,84,57,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 91,91,91,255, 93,93,93,255, 97,97,97,255, 98,98,98,255, 96,96,96,255, 96,96,96,255, 95,95,95,255, 93,93,93,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,52,6,255, 148,100,40,255, 91,52,6,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 126,126,126,255, 126,126,126,255, 181,181,181,255, 126,126,126,255, 126,126,126,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 119,90,48,255, 115,86,46,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 105,82,41,255, 105,82,41,255, 105,82,41,255, 117,84,41,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 105,82,41,255, 119,90,48,255, 115,86,46,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 105,82,41,255, 105,82,41,255, 105,82,41,255, 117,84,41,255, 119,90,48,255, 119,90,48,255, 119,90,48,255, 43,38,31,255, 0,0,0,0, 25,20,12,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 216,216,216,255, 105,84,51,255, 105,84,51,255, 27,22,13,255, 27,22,13,255, 115,94,57,255, 105,84,51,255, 67,54,33,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 25,20,12,255, 25,20,12,255, 115,94,57,255, 105,84,51,255, 40,30,11,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 27,22,13,255, 27,22,13,255, 115,94,57,255, 105,84,51,255, 255,255,255,255, 216,216,216,255, 181,181,181,255, 71,58,35,255, 25,20,12,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 38,38,38,255, 113,113,113,255, 182,182,182,255, 170,170,170,255, 169,169,169,255, 170,170,170,255, 166,166,166,255, 165,165,165,255, 107,107,107,255, 168,168,168,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 101,101,101,255, 140,140,140,255, 143,143,143,255, 105,105,105,255, 100,100,100,255, 106,106,106,255, 91,91,91,255, 88,88,88,255, 124,124,124,255, 135,135,135,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 0,0,0,0, 57,90,57,255, 34,53,34,255, 80,54,26,255, 80,54,26,255, 0,0,0,0, 46,73,46,255, 46,29,10,255, 46,29,10,255, 34,53,34,255, 0,0,0,0, 0,0,0,0, 57,90,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 198,200,86,255, 212,213,89,255, 213,211,83,255, 208,209,85,255, 205,209,95,255, 200,202,90,255, 194,195,83,255, 135,136,56,255, 220,221,101,255, 181,182,76,255, 136,136,60,255, 197,198,90,255, 189,190,72,255, 201,197,91,255, 215,217,105,255, 200,204,94,255, 254,254,254,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 179,214,219,255, 127,127,127,255, 199,231,254,255, 119,206,251,255, 104,104,104,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 255,255,255,255, 199,231,254,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 255,0,0,255, 151,3,3,255, 104,104,104,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 255,0,0,255, 170,4,4,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 184,184,184,255, 143,143,143,255, 0,0,0,0, 155,155,155,255, 148,148,148,255, 84,84,84,255, 151,151,151,255, 145,145,145,255, 0,0,0,0, 148,148,148,255, 145,145,145,255, 0,0,0,0, 0,0,0,0, 187,187,187,255, 158,158,158,255, 86,86,86,255, 130,94,64,255, 119,83,57,255, 82,57,39,255, 114,82,56,255, 121,85,58,255, 112,80,55,255, 121,85,58,255, 68,46,31,255, 97,68,46,255, 125,90,61,255, 150,108,74,255, 99,69,47,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 66,46,31,255, 148,148,148,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 156,156,156,255, 156,156,156,255, 150,150,150,255, 95,95,95,255, 164,164,164,255, 157,157,157,255, 155,155,155,255, 141,141,141,255, 152,152,152,255, 156,156,156,255, 144,144,144,255, 156,156,156,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 148,100,40,255, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 97,97,97,255, 126,126,126,255, 97,97,97,255, 97,97,97,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,60,47,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 146,99,35,255, 146,99,35,255, 146,99,35,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 146,99,35,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 146,99,35,255, 146,99,35,255, 146,99,35,255, 142,97,38,255, 142,97,38,255, 142,97,38,255, 130,91,38,255, 42,37,29,255, 0,0,0,0, 25,20,12,255, 188,152,98,255, 188,152,98,255, 216,216,216,255, 117,94,61,255, 216,216,216,255, 99,82,48,255, 45,36,23,255, 45,36,23,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 25,20,12,255, 188,152,98,255, 188,152,98,255, 40,30,11,255, 181,181,181,255, 115,94,57,255, 159,132,77,255, 45,36,23,255, 45,36,23,255, 180,144,90,255, 180,144,90,255, 112,89,56,255, 216,216,216,255, 181,181,181,255, 117,94,61,255, 25,20,12,255, 47,47,47,255, 68,68,68,255, 120,120,120,255, 131,131,131,255, 94,94,94,255, 141,141,141,255, 140,140,140,255, 148,148,148,255, 146,146,146,255, 144,144,144,255, 141,141,141,255, 76,76,76,255, 119,119,119,255, 93,93,93,255, 120,120,120,255, 59,59,59,255, 47,47,47,255, 68,68,68,255, 112,112,112,255, 139,139,139,255, 163,163,163,255, 112,112,112,255, 110,110,110,255, 151,151,151,255, 146,146,146,255, 132,132,132,255, 114,114,114,255, 100,100,100,255, 93,93,93,255, 75,75,75,255, 120,120,120,255, 59,59,59,255, 0,0,0,0, 0,0,0,0, 57,90,57,255, 80,54,26,255, 57,90,57,255, 57,90,57,255, 34,53,34,255, 80,54,26,255, 80,54,26,255, 57,90,57,255, 34,53,34,255, 80,54,26,255, 80,54,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 199,198,73,255, 199,201,89,255, 204,206,86,255, 135,135,59,255, 201,206,76,255, 197,198,94,255, 210,211,105,255, 194,196,96,255, 199,200,94,255, 139,140,46,255, 185,186,76,255, 197,199,87,255, 219,220,100,255, 136,137,55,255, 157,154,57,255, 182,183,77,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 199,231,254,255, 93,236,245,255, 93,236,245,255, 93,236,245,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 170,4,4,255, 143,3,3,255, 143,3,3,255, 143,3,3,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 127,127,127,255, 141,141,141,255, 78,78,78,255, 0,0,0,0, 89,89,89,255, 141,141,141,255, 0,0,0,0, 154,154,154,255, 0,0,0,0, 86,86,86,255, 0,0,0,0, 149,149,149,255, 0,0,0,0, 86,86,86,255, 172,172,172,255, 146,146,146,255, 0,0,0,0, 121,85,58,255, 150,108,74,255, 69,48,32,255, 121,85,58,255, 66,46,31,255, 87,60,40,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 168,120,83,255, 184,132,91,255, 185,133,92,255, 66,46,31,255, 114,82,56,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 111,111,111,255, 93,93,93,255, 148,148,148,255, 136,136,136,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 0,0,0,0, 148,100,40,255, 148,100,40,255, 148,100,40,255, 148,100,40,255, 148,100,40,255, 91,52,6,255, 148,100,40,255, 148,100,40,255, 91,52,6,255, 148,100,40,255, 148,100,40,255, 148,100,40,255, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 126,126,126,255, 126,126,126,255, 181,181,181,255, 126,126,126,255, 126,126,126,255, 97,97,97,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 149,108,46,255, 40,36,29,255, 0,0,0,0, 25,20,12,255, 159,132,77,255, 159,132,77,255, 181,181,181,255, 99,82,48,255, 181,181,181,255, 112,89,56,255, 43,35,21,255, 38,32,18,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 25,20,12,255, 25,20,12,255, 159,132,77,255, 181,181,181,255, 216,216,216,255, 181,181,181,255, 117,94,61,255, 180,144,90,255, 43,35,21,255, 38,32,18,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 255,255,255,255, 181,181,181,255, 99,82,48,255, 25,20,12,255, 75,75,75,255, 142,142,142,255, 197,197,197,255, 217,217,217,255, 217,217,217,255, 229,229,229,255, 243,243,243,255, 243,243,243,255, 240,240,240,255, 243,243,243,255, 229,229,229,255, 217,217,217,255, 217,217,217,255, 197,197,197,255, 142,142,142,255, 63,63,63,255, 41,41,41,255, 82,82,82,255, 144,144,144,255, 146,146,146,255, 126,126,126,255, 91,91,91,255, 144,144,144,255, 112,112,112,255, 148,148,148,255, 128,128,128,255, 129,129,129,255, 106,106,106,255, 107,107,107,255, 151,151,151,255, 80,80,80,255, 48,48,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 80,54,26,255, 46,29,10,255, 80,54,26,255, 46,29,10,255, 57,90,57,255, 80,54,26,255, 46,29,10,255, 19,8,3,255, 57,90,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 199,201,89,255, 202,206,94,255, 202,203,87,255, 225,227,95,255, 196,197,95,255, 205,207,79,255, 120,121,57,255, 212,213,93,255, 223,224,116,255, 204,206,94,255, 223,224,102,255, 220,222,94,255, 200,198,88,255, 232,234,120,255, 180,181,73,255, 199,200,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 119,206,251,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 151,3,3,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,75,75,255, 88,88,88,255, 0,0,0,0, 169,169,169,255, 171,171,171,255, 0,0,0,0, 0,0,0,0, 88,88,88,255, 153,153,153,255, 0,0,0,0, 0,0,0,0, 66,46,31,255, 150,108,74,255, 120,84,57,255, 185,133,92,255, 174,125,86,255, 86,60,41,255, 185,133,92,255, 150,108,74,255, 71,49,33,255, 139,100,69,255, 185,133,92,255, 150,108,74,255, 114,82,56,255, 82,59,40,255, 103,103,103,255, 121,85,58,255, 136,136,136,255, 136,136,136,255, 121,121,121,255, 115,115,115,255, 121,121,121,255, 136,136,136,255, 118,118,118,255, 96,96,96,255, 151,151,151,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 136,136,136,255, 121,121,121,255, 121,121,121,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,52,6,255, 91,52,6,255, 91,52,6,255, 0,0,0,0, 148,100,40,255, 148,100,40,255, 91,52,6,255, 91,52,6,255, 0,0,0,0, 91,52,6,255, 91,52,6,255, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 97,97,97,255, 181,181,181,255, 97,97,97,255, 97,97,97,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,59,47,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 127,95,34,255, 40,36,29,255, 0,0,0,0, 25,20,12,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 30,21,11,255, 38,32,18,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 153,104,58,255, 180,144,90,255, 180,144,90,255, 25,20,12,255, 25,20,12,255, 180,144,90,255, 112,89,56,255, 112,89,56,255, 181,181,181,255, 117,94,61,255, 159,132,77,255, 30,21,11,255, 38,32,18,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 216,216,216,255, 181,181,181,255, 112,89,56,255, 25,20,12,255, 75,75,75,255, 121,121,121,255, 203,203,203,255, 218,218,218,255, 236,236,236,255, 224,224,224,255, 66,66,66,255, 66,66,66,255, 61,61,61,255, 66,66,66,255, 224,224,224,255, 236,236,236,255, 209,209,209,255, 198,198,198,255, 121,121,121,255, 48,48,48,255, 45,45,45,255, 80,80,80,255, 119,119,119,255, 122,122,122,255, 122,122,122,255, 86,86,86,255, 144,144,144,255, 131,131,131,255, 122,122,122,255, 122,122,122,255, 125,125,125,255, 89,89,89,255, 107,107,107,255, 106,106,106,255, 105,105,105,255, 41,41,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,90,57,255, 57,90,57,255, 80,54,26,255, 46,29,10,255, 57,90,57,255, 34,53,34,255, 46,29,10,255, 34,53,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 132,131,58,255, 205,207,83,255, 200,202,90,255, 221,223,109,255, 197,201,89,255, 193,197,87,255, 212,213,89,255, 207,209,95,255, 204,205,91,255, 197,198,90,255, 202,198,92,255, 123,124,60,255, 209,210,94,255, 199,200,96,255, 215,217,89,255, 199,201,89,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 179,214,219,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 199,231,254,255, 93,236,245,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 255,0,0,255, 143,3,3,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 173,173,173,255, 0,0,0,0, 173,173,173,255, 180,180,180,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 153,153,153,255, 0,0,0,0, 171,171,171,255, 135,135,135,255, 0,0,0,0, 81,81,81,255, 169,169,169,255, 126,91,62,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 161,116,80,255, 101,71,48,255, 94,67,46,255, 99,99,99,255, 150,108,74,255, 126,90,62,255, 68,46,31,255, 89,61,41,255, 94,67,46,255, 121,85,58,255, 89,61,41,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 136,136,136,255, 136,136,136,255, 127,127,127,255, 110,110,110,255, 95,95,95,255, 156,156,156,255, 136,136,136,255, 115,115,115,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 91,52,6,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 126,126,126,255, 126,126,126,255, 181,181,181,255, 126,126,126,255, 126,126,126,255, 97,97,97,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 144,102,42,255, 40,36,29,255, 0,0,0,0, 25,20,12,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 17,14,8,255, 27,22,13,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 67,54,33,255, 105,84,51,255, 105,84,51,255, 25,20,12,255, 25,20,12,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 65,52,31,255, 65,52,31,255, 105,84,51,255, 17,14,8,255, 27,22,13,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 41,33,20,255, 181,181,181,255, 65,52,31,255, 25,20,12,255, 75,75,75,255, 171,171,171,255, 214,214,214,255, 222,222,222,255, 63,63,63,255, 59,59,59,255, 252,0,0,255, 205,0,0,255, 252,0,0,255, 205,0,0,255, 61,61,61,255, 61,61,61,255, 222,222,222,255, 212,212,212,255, 165,165,165,255, 50,50,50,255, 56,56,56,255, 114,114,114,255, 136,136,136,255, 122,122,122,255, 115,115,115,255, 89,89,89,255, 122,122,122,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 89,89,89,255, 100,100,100,255, 142,142,142,255, 106,106,106,255, 112,112,112,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,90,57,255, 80,54,26,255, 57,90,57,255, 46,29,10,255, 80,54,26,255, 57,90,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,154,50,255, 228,229,107,255, 203,202,87,255, 140,141,55,255, 180,181,83,255, 199,201,89,255, 201,202,90,255, 221,223,109,255, 133,134,54,255, 180,181,83,255, 204,206,94,255, 200,202,88,255, 208,206,92,255, 188,189,67,255, 143,144,50,255, 215,217,91,255, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 179,214,219,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 199,231,254,255, 255,255,255,255, 199,231,254,255, 119,206,251,255, 119,206,251,255, 93,236,245,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 170,4,4,255, 255,0,0,255, 170,4,4,255, 151,3,3,255, 151,3,3,255, 143,3,3,255, 116,116,116,255, 127,127,127,255, 138,138,138,255, 0,0,0,0, 178,178,178,255, 153,153,153,255, 0,0,0,0, 172,172,172,255, 179,179,179,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 148,148,148,255, 144,144,144,255, 0,0,0,0, 78,78,78,255, 164,164,164,255, 121,85,58,255, 74,51,34,255, 150,108,74,255, 121,85,58,255, 112,80,55,255, 128,92,63,255, 185,133,92,255, 115,81,55,255, 82,57,39,255, 121,85,58,255, 101,71,48,255, 120,84,57,255, 121,85,58,255, 97,68,46,255, 184,132,91,255, 152,109,75,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 136,136,136,255, 136,136,136,255, 121,121,121,255, 105,105,105,255, 93,93,93,255, 148,148,148,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 0,0,0,0, 0,0,0,0, 91,52,6,255, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 97,97,97,255, 181,181,181,255, 97,97,97,255, 97,97,97,255, 126,126,126,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,60,47,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 142,97,38,255, 42,37,29,255, 0,0,0,0, 25,20,12,255, 188,152,98,255, 188,152,98,255, 164,115,63,255, 188,152,98,255, 159,132,77,255, 188,152,98,255, 30,21,11,255, 38,32,18,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 153,104,58,255, 115,94,57,255, 188,152,98,255, 25,20,12,255, 25,20,12,255, 188,152,98,255, 188,152,98,255, 164,115,63,255, 188,152,98,255, 159,132,77,255, 188,152,98,255, 30,21,11,255, 38,32,18,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 153,104,58,255, 255,255,255,255, 117,94,61,255, 25,20,12,255, 137,137,137,255, 195,195,195,255, 224,224,224,255, 61,61,61,255, 205,0,0,255, 205,0,0,255, 252,161,0,255, 205,0,0,255, 252,161,0,255, 252,0,0,255, 205,0,0,255, 205,0,0,255, 66,66,66,255, 236,236,236,255, 171,171,171,255, 45,45,45,255, 43,43,43,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 110,110,110,255, 122,122,122,255, 96,96,96,255, 88,88,88,255, 144,144,144,255, 136,136,136,255, 122,122,122,255, 122,122,122,255, 56,56,56,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 34,53,34,255, 57,90,57,255, 46,29,10,255, 46,29,10,255, 34,53,34,255, 34,53,34,255, 57,90,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 216,218,92,255, 217,218,78,255, 203,199,93,255, 188,189,83,255, 187,188,82,255, 221,219,93,255, 198,200,88,255, 145,147,55,255, 188,190,80,255, 209,210,100,255, 181,180,79,255, 199,201,91,255, 207,208,88,255, 200,201,95,255, 198,200,88,255, 197,198,92,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 179,214,219,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 199,231,254,255, 93,236,245,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 93,236,245,255, 93,236,245,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 255,0,0,255, 143,3,3,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 143,3,3,255, 143,3,3,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 147,147,147,255, 0,0,0,0, 90,90,90,255, 146,146,146,255, 0,0,0,0, 165,165,165,255, 139,139,139,255, 0,0,0,0, 0,0,0,0, 81,81,81,255, 0,0,0,0, 148,148,148,255, 79,79,79,255, 174,174,174,255, 171,171,171,255, 0,0,0,0, 121,85,58,255, 114,82,56,255, 72,50,34,255, 101,71,48,255, 90,68,52,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 92,65,44,255, 55,38,25,255, 175,125,87,255, 74,51,34,255, 121,85,58,255, 185,133,92,255, 114,82,56,255, 114,82,56,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 115,115,115,255, 105,105,105,255, 97,97,97,255, 147,147,147,255, 136,136,136,255, 136,136,136,255, 127,127,127,255, 136,136,136,255, 121,121,121,255, 136,136,136,255, 115,115,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 167,110,31,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 149,108,46,255, 43,38,31,255, 0,0,0,0, 25,20,12,255, 159,132,77,255, 115,94,57,255, 164,115,63,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 38,32,18,255, 45,36,23,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 25,20,12,255, 25,20,12,255, 159,132,77,255, 115,94,57,255, 164,115,63,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 38,32,18,255, 45,36,23,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 99,82,48,255, 99,82,48,255, 25,20,12,255, 137,137,137,255, 222,222,222,255, 63,63,63,255, 252,0,0,255, 252,161,0,255, 252,161,0,255, 252,161,0,255, 252,0,0,255, 252,252,0,255, 252,161,0,255, 252,0,0,255, 252,0,0,255, 252,0,0,255, 236,236,236,255, 162,162,162,255, 50,50,50,255, 50,50,50,255, 97,97,97,255, 115,115,115,255, 147,147,147,255, 140,140,140,255, 147,147,147,255, 106,106,106,255, 89,89,89,255, 110,110,110,255, 157,157,157,255, 137,137,137,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 97,97,97,255, 35,35,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 34,53,34,255, 80,54,26,255, 19,8,3,255, 57,90,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 200,202,90,255, 198,194,92,255, 148,151,63,255, 178,179,67,255, 220,222,94,255, 182,183,77,255, 216,215,98,255, 202,201,90,255, 209,210,100,255, 188,189,83,255, 216,217,97,255, 201,202,78,255, 135,139,49,255, 222,220,94,255, 202,203,87,255, 194,195,85,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 102,102,102,255, 0,0,0,0, 0,0,0,0, 90,90,90,255, 92,92,92,255, 134,134,134,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,100,100,255, 80,80,80,255, 149,149,149,255, 0,0,0,0, 178,178,178,255, 146,146,146,255, 88,88,88,255, 150,108,74,255, 121,85,58,255, 76,52,35,255, 185,133,92,255, 95,66,45,255, 48,33,22,255, 121,85,58,255, 89,61,41,255, 100,72,50,255, 162,117,80,255, 121,85,58,255, 137,99,67,255, 66,46,31,255, 66,46,31,255, 150,108,74,255, 150,108,74,255, 105,105,105,255, 105,105,105,255, 105,105,105,255, 110,110,110,255, 106,106,106,255, 116,116,116,255, 120,120,120,255, 98,98,98,255, 138,138,138,255, 108,108,108,255, 119,119,119,255, 114,114,114,255, 110,110,110,255, 110,110,110,255, 105,105,105,255, 105,105,105,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,100,40,255, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,62,50,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 43,38,31,255, 0,0,0,0, 25,20,12,255, 188,152,98,255, 159,132,77,255, 125,88,49,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 38,32,18,255, 45,36,23,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 25,20,12,255, 188,152,98,255, 159,132,77,255, 125,88,49,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 38,32,18,255, 45,36,23,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 25,20,12,255, 139,139,139,255, 224,224,224,255, 63,63,63,255, 252,161,0,255, 252,252,0,255, 252,252,0,255, 252,252,0,255, 252,161,0,255, 252,161,0,255, 252,252,0,255, 252,252,0,255, 252,161,0,255, 252,161,0,255, 237,237,237,255, 171,171,171,255, 45,45,45,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 80,54,26,255, 19,8,3,255, 46,29,10,255, 46,73,46,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 218,216,104,255, 198,199,83,255, 187,188,78,255, 196,197,79,255, 154,157,59,255, 206,202,94,255, 199,201,89,255, 202,200,88,255, 227,228,112,255, 221,223,99,255, 218,217,82,255, 210,212,94,255, 213,214,94,255, 197,198,92,255, 200,202,90,255, 158,161,61,255, 192,245,254,255, 179,214,219,255, 179,214,219,255, 179,214,219,255, 179,214,219,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 179,214,219,255, 179,214,219,255, 0,0,0,0, 179,214,219,255, 179,214,219,255, 179,214,219,255, 179,214,219,255, 192,245,254,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 163,163,163,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 154,154,154,255, 0,0,0,0, 83,83,83,255, 171,171,171,255, 175,175,175,255, 82,82,82,255, 0,0,0,0, 0,0,0,0, 143,143,143,255, 87,87,87,255, 175,175,175,255, 150,108,74,255, 121,85,58,255, 110,79,55,255, 150,108,74,255, 117,84,57,255, 92,65,44,255, 135,135,135,255, 121,85,58,255, 82,59,40,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 114,82,56,255, 114,82,56,255, 66,46,31,255, 89,61,41,255, 96,96,96,255, 96,96,96,255, 95,95,95,255, 95,95,95,255, 95,95,95,255, 95,95,95,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 94,94,94,255, 98,98,98,255, 96,96,96,255, 95,95,95,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,52,6,255, 148,100,40,255, 91,52,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 42,37,29,255, 42,37,29,255, 44,37,29,255, 42,37,30,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 42,37,29,255, 42,37,30,255, 39,35,30,255, 42,37,30,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 44,37,29,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,30,255, 44,37,29,255, 42,37,30,255, 42,37,29,255, 42,37,29,255, 42,37,29,255, 42,37,30,255, 39,35,30,255, 42,37,30,255, 33,29,23,255, 0,0,0,0, 27,22,13,255, 115,94,57,255, 115,94,57,255, 124,98,62,255, 105,84,51,255, 105,84,51,255, 124,98,62,255, 25,20,12,255, 27,22,13,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 76,61,38,255, 105,84,51,255, 105,84,51,255, 27,22,13,255, 27,22,13,255, 115,94,57,255, 115,94,57,255, 124,98,62,255, 105,84,51,255, 105,84,51,255, 124,98,62,255, 25,20,12,255, 27,22,13,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 76,61,38,255, 105,84,51,255, 105,84,51,255, 27,22,13,255, 130,130,130,255, 217,217,217,255, 50,50,50,255, 252,0,0,255, 252,161,0,255, 252,0,0,255, 252,161,0,255, 252,252,0,255, 252,0,0,255, 252,161,0,255, 252,252,0,255, 252,161,0,255, 252,0,0,255, 233,233,233,255, 152,152,152,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 19,8,3,255, 19,8,3,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 218,223,224,255, 224,228,228,255, 215,220,221,255, 217,222,223,255, 232,235,235,255, 245,247,247,255, 219,224,225,255, 222,226,227,255, 240,242,242,255, 243,244,245,255, 211,217,218,255, 216,221,222,255, 235,238,238,255, 235,238,238,255, 216,221,222,255, 213,218,219,255, 24,31,36,255, 27,42,53,255, 26,33,38,255, 27,42,53,255, 20,35,46,255, 31,38,43,255, 33,48,59,255, 14,29,40,255, 25,40,51,255, 27,42,53,255, 26,33,38,255, 27,42,53,255, 30,45,56,255, 40,47,52,255, 27,42,53,255, 26,33,38,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 9,66,16,255, 17,128,30,255, 17,128,30,255, 20,141,36,255, 16,130,30,255, 18,140,33,255, 13,97,24,255, 9,66,16,255, 17,127,32,255, 17,127,32,255, 18,134,32,255, 18,134,32,255, 17,128,30,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 130,136,147,255, 160,167,177,255, 160,166,177,255, 159,166,176,255, 157,163,173,255, 159,165,176,255, 155,162,172,255, 158,164,175,255, 162,169,180,255, 160,167,177,255, 158,163,175,255, 157,163,174,255, 154,160,171,255, 155,162,172,255, 151,158,169,255, 158,164,175,255, 0,0,0,0, 229,239,218,255, 150,193,102,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 41,36,34,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 52,46,42,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 39,34,32,255, 41,36,34,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 52,46,42,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 39,34,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,99,100,255, 140,115,119,255, 140,115,119,255, 104,96,107,255, 105,94,96,255, 154,123,129,255, 140,115,119,255, 109,102,115,255, 104,96,107,255, 105,94,96,255, 115,99,103,255, 99,93,94,255, 128,107,111,255, 109,99,100,255, 131,112,117,255, 154,123,129,255, 109,99,100,255, 140,115,119,255, 140,115,119,255, 104,96,107,255, 105,94,96,255, 154,123,129,255, 140,115,119,255, 109,102,115,255, 104,96,107,255, 105,94,96,255, 115,99,103,255, 99,93,94,255, 128,107,111,255, 109,99,100,255, 131,112,117,255, 154,123,129,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 233,236,236,255, 239,241,242,255, 254,254,254,255, 254,254,254,255, 248,249,249,255, 243,244,245,255, 228,231,232,255, 227,230,231,255, 217,222,223,255, 213,218,219,255, 222,226,227,255, 227,230,231,255, 208,214,215,255, 214,219,220,255, 224,228,228,255, 229,233,233,255, 27,42,53,255, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 23,38,49,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 89,61,41,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 227,243,243,255, 0,0,0,0, 13,97,24,255, 13,97,24,255, 0,0,0,255, 4,40,8,255, 13,97,24,255, 4,40,8,255, 0,0,0,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 0,0,0,255, 4,40,8,255, 13,97,24,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 16,126,29,255, 16,130,30,255, 15,114,26,255, 20,141,36,255, 11,85,20,255, 0,0,0,255, 9,66,16,255, 16,116,29,255, 17,127,32,255, 20,141,36,255, 18,134,32,255, 17,128,30,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 0,0,0,0, 160,167,178,255, 158,164,175,255, 161,166,182,255, 165,168,185,255, 146,151,167,255, 155,162,172,255, 154,161,171,255, 155,162,172,255, 147,153,164,255, 164,168,184,255, 175,185,206,255, 160,166,177,255, 155,162,172,255, 158,164,175,255, 157,163,174,255, 165,172,182,255, 0,0,0,0, 130,168,89,255, 105,135,71,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 229,239,218,255, 150,193,102,255, 0,0,0,0, 53,47,43,255, 121,85,67,255, 131,87,66,255, 132,82,60,255, 131,87,66,255, 131,87,66,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 131,87,66,255, 116,80,57,255, 131,87,66,255, 121,85,67,255, 49,44,40,255, 53,47,43,255, 121,85,67,255, 131,87,66,255, 132,82,60,255, 131,87,66,255, 131,87,66,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 131,87,66,255, 116,80,57,255, 131,87,66,255, 121,85,67,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 132,113,118,255, 111,104,118,255, 96,89,95,255, 104,96,107,255, 103,93,95,255, 131,112,116,255, 135,135,135,255, 96,89,95,255, 89,86,86,255, 154,123,129,255, 105,96,99,255, 128,107,111,255, 128,107,111,255, 105,96,99,255, 43,29,19,255, 43,29,19,255, 132,113,118,255, 111,104,118,255, 96,89,95,255, 104,96,107,255, 103,93,95,255, 131,112,116,255, 135,135,135,255, 96,89,95,255, 89,86,86,255, 154,123,129,255, 105,96,99,255, 128,107,111,255, 128,107,111,255, 105,96,99,255, 115,99,103,255, 115,99,103,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,141,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 248,249,249,255, 250,250,250,255, 227,230,231,255, 230,233,234,255, 253,253,253,255, 250,250,250,255, 236,239,239,255, 227,230,231,255, 243,244,245,255, 250,250,250,255, 242,244,244,255, 242,244,244,255, 253,253,253,255, 254,254,254,255, 243,244,245,255, 239,241,242,255, 20,27,32,255, 27,42,53,255, 26,33,38,255, 27,42,53,255, 25,40,51,255, 38,45,50,255, 25,40,51,255, 27,42,53,255, 22,37,48,255, 27,42,53,255, 19,26,31,255, 26,41,52,255, 27,42,53,255, 24,31,36,255, 13,28,39,255, 26,33,38,255, 238,255,255,255, 255,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 238,255,255,255, 89,61,41,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 89,61,41,255, 238,255,255,255, 89,61,41,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 89,61,41,255, 255,255,255,255, 238,255,255,255, 89,61,41,255, 0,0,0,0, 13,97,24,255, 18,133,34,255, 11,85,20,255, 17,131,31,255, 16,124,29,255, 16,126,29,255, 11,85,20,255, 20,141,36,255, 17,131,31,255, 17,136,32,255, 14,105,26,255, 18,133,34,255, 17,131,31,255, 13,97,24,255, 0,0,0,0, 0,0,0,255, 0,0,0,255, 15,107,27,255, 16,126,29,255, 15,117,27,255, 20,141,36,255, 13,99,24,255, 8,57,16,255, 9,66,16,255, 16,116,29,255, 17,127,32,255, 18,134,32,255, 18,134,32,255, 13,89,22,255, 0,0,0,255, 0,0,0,255, 0,0,0,0, 13,97,24,255, 219,220,157,255, 218,219,157,255, 219,220,157,255, 219,220,157,255, 219,220,157,255, 219,220,157,255, 218,219,157,255, 219,220,157,255, 219,220,157,255, 220,221,159,255, 221,222,160,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 162,166,182,255, 168,172,187,255, 173,177,193,255, 157,163,174,255, 158,163,174,255, 157,163,174,255, 159,166,176,255, 159,166,176,255, 160,166,177,255, 162,169,180,255, 164,168,184,255, 165,169,185,255, 150,157,167,255, 154,160,170,255, 155,162,172,255, 172,176,193,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 145,239,50,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 117,193,40,255, 0,0,0,0, 130,168,89,255, 105,135,71,255, 0,0,0,0, 53,47,43,255, 136,92,70,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 91,56,40,255, 148,95,68,255, 95,60,44,255, 155,102,75,255, 95,60,44,255, 148,95,68,255, 91,53,36,255, 155,102,75,255, 136,92,70,255, 49,44,40,255, 53,47,43,255, 136,92,70,255, 130,87,57,255, 130,87,57,255, 130,87,57,255, 130,87,57,255, 148,95,68,255, 116,80,57,255, 116,80,57,255, 155,102,75,255, 155,102,75,255, 148,95,68,255, 149,90,62,255, 155,102,75,255, 136,92,70,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 117,112,132,255, 104,96,107,255, 105,94,96,255, 86,84,85,255, 109,99,100,255, 99,93,94,255, 104,96,107,255, 105,94,96,255, 154,123,129,255, 128,107,111,255, 128,107,111,255, 58,41,28,255, 115,99,103,255, 115,99,103,255, 89,64,44,255, 104,96,107,255, 117,112,132,255, 104,96,107,255, 105,94,96,255, 86,84,85,255, 109,99,100,255, 99,93,94,255, 104,96,107,255, 105,94,96,255, 154,123,129,255, 128,107,111,255, 128,107,111,255, 128,107,111,255, 115,99,103,255, 115,99,103,255, 154,123,129,255, 104,96,107,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,116,45,255, 81,116,45,255, 100,141,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,141,56,255, 100,141,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 233,236,236,255, 224,228,228,255, 245,246,246,255, 250,250,250,255, 227,230,231,255, 225,228,229,255, 232,235,235,255, 250,250,250,255, 219,224,225,255, 228,231,232,255, 250,250,250,255, 250,250,250,255, 233,236,236,255, 224,228,228,255, 254,254,254,255, 249,250,250,255, 27,42,53,255, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 32,47,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,47,58,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 31,46,57,255, 255,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 89,61,41,255, 108,108,108,255, 89,61,41,255, 89,61,41,255, 255,255,255,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 255,255,255,255, 89,61,41,255, 238,255,255,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 0,0,0,0, 0,0,0,255, 11,85,20,255, 20,148,36,255, 17,131,31,255, 18,133,34,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 17,131,31,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 17,131,31,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 4,40,8,255, 14,102,25,255, 16,126,29,255, 15,117,27,255, 18,134,32,255, 16,116,29,255, 13,97,24,255, 0,0,0,255, 11,84,21,255, 17,127,32,255, 20,141,36,255, 20,141,36,255, 15,118,27,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 220,221,159,255, 210,214,158,255, 211,215,159,255, 210,215,159,255, 209,213,157,255, 210,215,159,255, 210,215,159,255, 210,215,159,255, 210,215,159,255, 210,215,159,255, 212,216,160,255, 220,220,158,255, 13,97,24,255, 0,0,0,0, 152,159,170,255, 157,162,174,255, 158,163,175,255, 160,167,177,255, 154,160,172,255, 161,167,178,255, 155,161,172,255, 154,160,171,255, 155,162,172,255, 157,163,173,255, 158,164,175,255, 162,169,180,255, 159,165,176,255, 158,164,175,255, 159,165,176,255, 146,152,163,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 117,193,40,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 145,239,50,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 51,45,42,255, 128,82,62,255, 70,41,30,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 145,88,64,255, 132,82,60,255, 52,44,41,255, 51,45,42,255, 128,82,62,255, 145,88,64,255, 149,90,62,255, 149,90,62,255, 149,90,62,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 145,88,64,255, 145,88,64,255, 145,88,64,255, 145,88,64,255, 132,82,60,255, 52,44,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 86,86,86,255, 0,0,0,0, 86,86,86,255, 150,150,150,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 111,104,118,255, 113,99,113,255, 119,103,106,255, 99,93,94,255, 105,96,99,255, 95,90,91,255, 106,99,111,255, 117,112,132,255, 92,87,88,255, 72,52,35,255, 58,41,28,255, 105,96,99,255, 125,106,110,255, 110,103,116,255, 111,104,118,255, 104,96,107,255, 111,104,118,255, 113,99,113,255, 119,103,106,255, 99,93,94,255, 105,96,99,255, 95,90,91,255, 106,99,111,255, 117,112,132,255, 92,87,88,255, 140,115,119,255, 99,93,94,255, 105,96,99,255, 125,106,110,255, 110,103,116,255, 111,104,118,255, 104,96,107,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,227,186,255, 81,116,45,255, 0,0,0,0, 81,116,45,255, 100,141,56,255, 100,141,56,255, 0,0,0,0, 81,116,45,255, 100,141,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 239,241,242,255, 229,233,233,255, 219,224,225,255, 233,236,236,255, 245,247,247,255, 245,246,246,255, 211,217,218,255, 209,215,216,255, 222,226,227,255, 235,238,238,255, 222,226,227,255, 214,219,220,255, 245,247,247,255, 245,247,247,255, 216,221,222,255, 211,217,218,255, 27,42,53,255, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 17,32,43,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 255,255,255,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 150,108,74,255, 121,85,58,255, 150,108,74,255, 185,133,92,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 108,108,108,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 0,0,0,0, 4,40,8,255, 18,133,34,255, 17,131,31,255, 14,105,26,255, 19,139,33,255, 19,139,33,255, 14,105,26,255, 17,136,32,255, 17,131,31,255, 17,136,32,255, 14,105,26,255, 17,136,32,255, 17,131,31,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 15,117,27,255, 17,128,30,255, 17,127,32,255, 18,134,32,255, 17,128,30,255, 13,97,24,255, 4,40,8,255, 14,102,25,255, 17,128,30,255, 20,141,36,255, 20,141,36,255, 16,116,29,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 219,220,157,255, 212,216,160,255, 220,221,159,255, 222,222,160,255, 222,222,160,255, 222,222,160,255, 220,221,159,255, 222,222,160,255, 220,221,159,255, 221,222,160,255, 210,215,159,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 163,170,181,255, 157,163,173,255, 165,169,185,255, 157,163,173,255, 165,169,185,255, 165,169,185,255, 164,167,184,255, 165,169,185,255, 165,168,184,255, 153,159,170,255, 155,162,172,255, 164,168,184,255, 157,161,177,255, 148,154,165,255, 161,167,178,255, 151,157,168,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 229,239,218,255, 150,193,102,255, 117,193,40,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 53,47,43,255, 116,80,57,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 95,60,44,255, 155,102,75,255, 80,51,33,255, 155,102,75,255, 80,51,33,255, 130,87,57,255, 91,53,36,255, 148,95,68,255, 91,56,40,255, 131,87,66,255, 53,47,43,255, 53,47,43,255, 116,80,57,255, 130,87,57,255, 130,87,57,255, 130,87,57,255, 155,102,75,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 130,87,57,255, 149,90,62,255, 148,95,68,255, 148,95,68,255, 131,87,66,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 86,86,86,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 86,86,86,255, 0,0,0,0, 140,115,119,255, 104,96,107,255, 72,52,35,255, 89,64,44,255, 95,90,91,255, 72,52,35,255, 58,41,28,255, 104,96,107,255, 111,98,100,255, 43,29,19,255, 104,96,107,255, 109,97,109,255, 106,96,107,255, 107,99,111,255, 43,29,19,255, 58,41,28,255, 140,115,119,255, 104,96,107,255, 111,98,100,255, 109,99,100,255, 95,90,91,255, 105,96,99,255, 128,107,111,255, 104,96,107,255, 111,98,100,255, 115,99,103,255, 104,96,107,255, 109,97,109,255, 106,96,107,255, 107,99,111,255, 97,89,90,255, 107,96,99,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,116,45,255, 207,227,186,255, 207,227,186,255, 162,201,120,255, 81,116,45,255, 81,116,45,255, 0,0,0,0, 81,116,45,255, 81,116,45,255, 207,227,186,255, 100,141,56,255, 0,0,0,0, 0,0,0,0, 214,219,220,255, 210,216,217,255, 220,225,225,255, 250,250,250,255, 219,224,225,255, 209,215,216,255, 218,223,224,255, 224,228,228,255, 219,224,225,255, 209,215,216,255, 224,228,228,255, 227,230,231,255, 212,218,219,255, 222,226,227,255, 217,222,223,255, 225,229,230,255, 26,33,38,255, 27,42,53,255, 26,33,38,255, 30,45,56,255, 27,42,53,255, 33,40,45,255, 27,42,53,255, 27,42,53,255, 27,42,53,255, 31,46,57,255, 26,33,38,255, 33,48,59,255, 27,42,53,255, 26,33,38,255, 27,42,53,255, 26,33,38,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 227,243,243,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 121,85,58,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 0,0,0,0, 13,97,24,255, 17,131,31,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 16,126,29,255, 17,131,31,255, 16,124,29,255, 17,128,30,255, 17,136,32,255, 18,133,34,255, 17,136,32,255, 11,85,20,255, 0,0,0,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 15,107,27,255, 17,128,30,255, 17,127,32,255, 17,127,32,255, 17,127,32,255, 13,97,24,255, 9,66,16,255, 16,116,29,255, 17,128,30,255, 18,138,32,255, 18,134,32,255, 15,117,27,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 219,220,158,255, 210,214,158,255, 222,222,160,255, 219,220,157,255, 220,221,159,255, 219,220,157,255, 220,221,159,255, 219,220,157,255, 220,221,159,255, 222,222,160,255, 210,215,159,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 153,159,170,255, 161,167,177,255, 154,160,171,255, 175,185,214,255, 155,162,172,255, 165,172,183,255, 160,167,178,255, 160,164,181,255, 157,163,174,255, 169,175,187,255, 160,166,177,255, 149,155,166,255, 154,160,171,255, 155,161,172,255, 159,165,176,255, 148,154,165,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 130,168,89,255, 105,135,71,255, 0,0,0,0, 0,0,0,0, 229,239,218,255, 150,193,102,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 49,44,40,255, 116,80,57,255, 149,90,62,255, 71,45,32,255, 148,95,68,255, 71,45,32,255, 155,102,75,255, 63,41,27,255, 148,95,68,255, 71,45,32,255, 148,95,68,255, 71,45,32,255, 130,87,57,255, 63,41,27,255, 116,80,57,255, 49,44,40,255, 49,44,40,255, 116,80,57,255, 149,90,62,255, 148,95,68,255, 148,95,68,255, 148,95,68,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 148,95,68,255, 148,95,68,255, 130,87,57,255, 130,87,57,255, 116,80,57,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 104,104,104,255, 104,104,104,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 86,86,86,255, 0,0,0,0, 58,41,28,255, 115,99,103,255, 111,104,118,255, 72,52,35,255, 99,93,94,255, 72,52,35,255, 43,29,19,255, 96,89,95,255, 96,89,95,255, 104,96,107,255, 106,98,109,255, 43,29,19,255, 58,41,28,255, 58,41,28,255, 58,41,28,255, 89,64,44,255, 99,93,94,255, 115,99,103,255, 111,104,118,255, 111,98,100,255, 99,93,94,255, 140,115,119,255, 96,89,95,255, 96,89,95,255, 96,89,95,255, 104,96,107,255, 106,98,109,255, 100,92,93,255, 89,86,86,255, 89,86,86,255, 130,111,116,255, 109,99,100,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,227,186,255, 162,201,120,255, 56,80,31,255, 56,80,31,255, 207,227,186,255, 81,116,45,255, 0,0,0,0, 81,116,45,255, 81,116,45,255, 162,201,120,255, 81,116,45,255, 0,0,0,0, 0,0,0,0, 254,254,254,255, 254,254,254,255, 247,248,248,255, 245,246,246,255, 232,235,235,255, 232,235,235,255, 229,233,233,255, 235,238,238,255, 248,249,249,255, 254,254,254,255, 240,242,242,255, 228,231,232,255, 254,254,254,255, 254,254,254,255, 243,244,245,255, 236,239,239,255, 27,42,53,255, 0,0,0,0, 16,31,42,255, 0,0,0,0, 0,0,0,0, 25,40,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 12,27,38,255, 0,0,0,0, 27,42,53,255, 255,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 185,133,92,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 0,0,0,0, 4,40,8,255, 15,118,27,255, 19,144,34,255, 17,131,31,255, 17,136,32,255, 18,133,34,255, 17,131,31,255, 14,105,26,255, 0,0,0,255, 16,126,29,255, 17,131,31,255, 17,131,31,255, 17,131,31,255, 13,97,24,255, 0,0,0,0, 0,0,0,255, 0,0,0,255, 16,116,29,255, 15,120,28,255, 17,128,30,255, 16,126,29,255, 17,127,32,255, 13,97,24,255, 9,66,16,255, 16,116,29,255, 18,134,32,255, 16,124,29,255, 18,134,32,255, 11,84,21,255, 0,0,0,255, 0,0,0,255, 0,0,0,0, 13,97,24,255, 219,220,157,255, 210,214,158,255, 222,222,160,255, 219,220,157,255, 210,215,159,255, 212,216,160,255, 210,215,159,255, 210,215,159,255, 219,220,157,255, 220,221,159,255, 210,214,158,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 145,152,162,255, 161,165,182,255, 152,156,172,255, 159,166,176,255, 146,152,164,255, 162,168,179,255, 158,163,175,255, 155,162,172,255, 157,163,174,255, 157,163,174,255, 165,169,185,255, 175,181,198,255, 160,166,177,255, 164,168,184,255, 160,167,177,255, 158,162,178,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 130,168,89,255, 105,135,71,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 145,239,50,255, 53,47,43,255, 136,92,70,255, 95,60,44,255, 148,95,68,255, 95,60,44,255, 155,102,75,255, 95,60,44,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 91,53,36,255, 155,102,75,255, 95,60,44,255, 155,102,75,255, 136,92,70,255, 53,47,43,255, 53,47,43,255, 136,92,70,255, 155,102,75,255, 148,95,68,255, 155,102,75,255, 155,102,75,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 149,90,62,255, 155,102,75,255, 155,102,75,255, 155,102,75,255, 136,92,70,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 89,64,44,255, 43,29,19,255, 104,96,107,255, 104,96,107,255, 111,99,112,255, 104,96,107,255, 104,96,107,255, 89,64,44,255, 89,64,44,255, 58,41,28,255, 108,100,113,255, 89,64,44,255, 121,85,58,255, 72,52,35,255, 58,41,28,255, 150,108,74,255, 109,99,100,255, 95,90,91,255, 104,96,107,255, 104,96,107,255, 111,99,112,255, 104,96,107,255, 104,96,107,255, 119,103,106,255, 119,103,106,255, 105,94,96,255, 108,100,113,255, 95,89,90,255, 99,93,94,255, 105,96,99,255, 99,93,94,255, 105,96,99,255, 0,0,0,0, 0,0,0,0, 81,116,45,255, 100,141,56,255, 0,0,0,0, 81,116,45,255, 207,227,186,255, 207,227,186,255, 207,227,186,255, 56,80,31,255, 207,227,186,255, 162,201,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 224,228,228,255, 224,228,228,255, 254,254,254,255, 254,254,254,255, 243,244,245,255, 240,242,242,255, 250,250,250,255, 249,250,250,255, 217,222,223,255, 222,226,227,255, 245,246,246,255, 250,250,250,255, 240,242,242,255, 239,241,242,255, 250,251,251,255, 249,250,250,255, 27,42,53,255, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 31,46,57,255, 0,0,0,0, 22,37,48,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 185,133,92,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 0,0,0,0, 0,0,0,255, 11,85,20,255, 17,128,30,255, 14,105,26,255, 19,146,35,255, 17,136,32,255, 17,131,31,255, 17,136,32,255, 14,105,26,255, 17,131,31,255, 18,133,34,255, 14,105,26,255, 17,131,31,255, 4,40,8,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 20,141,36,255, 16,116,29,255, 17,128,30,255, 16,116,29,255, 20,141,36,255, 13,97,24,255, 0,0,0,255, 12,83,21,255, 18,134,32,255, 15,120,28,255, 18,134,32,255, 13,100,22,255, 8,57,16,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 219,220,157,255, 210,215,159,255, 221,222,160,255, 220,221,159,255, 210,214,158,255, 221,222,160,255, 222,222,160,255, 210,215,159,255, 219,220,157,255, 220,221,159,255, 210,215,159,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 159,165,176,255, 157,163,174,255, 164,168,184,255, 158,164,175,255, 159,166,176,255, 155,161,172,255, 164,170,181,255, 174,180,191,255, 160,167,177,255, 154,158,174,255, 157,163,174,255, 155,162,172,255, 161,167,178,255, 161,166,182,255, 155,162,172,255, 164,168,184,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 117,193,40,255, 52,44,41,255, 132,82,60,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 145,88,64,255, 132,82,60,255, 52,44,41,255, 52,44,41,255, 132,82,60,255, 145,88,64,255, 145,88,64,255, 145,88,64,255, 145,88,64,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 145,88,64,255, 145,88,64,255, 145,88,64,255, 145,88,64,255, 132,82,60,255, 52,44,41,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 104,104,104,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 89,64,44,255, 58,41,28,255, 89,64,44,255, 99,99,103,255, 106,98,109,255, 72,52,35,255, 105,94,96,255, 58,41,28,255, 72,52,35,255, 89,61,41,255, 106,98,110,255, 72,52,35,255, 121,85,58,255, 58,41,28,255, 72,52,35,255, 150,108,74,255, 109,99,100,255, 99,93,94,255, 95,89,90,255, 99,99,103,255, 106,98,109,255, 111,98,100,255, 105,94,96,255, 128,107,111,255, 105,96,99,255, 95,90,91,255, 106,98,110,255, 106,96,99,255, 99,93,94,255, 99,93,94,255, 105,96,99,255, 105,96,99,255, 0,0,0,0, 0,0,0,0, 81,116,45,255, 81,116,45,255, 100,141,56,255, 0,0,0,0, 0,0,0,0, 100,141,56,255, 100,141,56,255, 207,227,186,255, 56,80,31,255, 0,0,0,0, 81,116,45,255, 100,141,56,255, 0,0,0,0, 0,0,0,0, 243,244,245,255, 242,244,244,255, 214,219,220,255, 222,226,227,255, 249,250,250,255, 240,242,242,255, 219,224,225,255, 225,228,229,255, 222,226,227,255, 227,230,231,255, 222,226,227,255, 212,218,219,255, 232,235,235,255, 228,231,232,255, 215,220,221,255, 214,219,220,255, 32,47,58,255, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 27,42,53,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 251,255,255,255, 251,255,255,255, 251,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 227,243,243,255, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 0,0,0,0, 13,97,24,255, 17,136,32,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 16,126,29,255, 14,105,26,255, 17,128,30,255, 17,131,31,255, 17,131,31,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 0,0,0,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 20,141,36,255, 15,117,27,255, 17,131,31,255, 15,117,27,255, 17,128,30,255, 13,97,24,255, 4,40,8,255, 14,102,25,255, 19,139,33,255, 16,116,29,255, 17,128,30,255, 15,117,27,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 219,220,157,255, 214,218,162,255, 222,222,160,255, 219,220,157,255, 210,215,159,255, 221,222,160,255, 222,222,160,255, 211,215,159,255, 219,220,157,255, 222,222,160,255, 210,214,158,255, 220,221,159,255, 13,97,24,255, 0,0,0,0, 161,167,178,255, 161,165,182,255, 167,171,187,255, 165,168,184,255, 161,165,182,255, 155,162,172,255, 165,169,185,255, 161,165,182,255, 170,174,190,255, 175,184,200,255, 147,153,164,255, 160,166,177,255, 157,162,174,255, 159,163,179,255, 155,162,172,255, 159,166,176,255, 145,239,50,255, 229,239,218,255, 150,193,102,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 53,47,43,255, 136,92,70,255, 155,102,75,255, 95,60,44,255, 155,102,75,255, 91,53,36,255, 130,87,57,255, 95,60,44,255, 155,102,75,255, 91,56,40,255, 148,95,68,255, 91,56,40,255, 155,102,75,255, 95,60,44,255, 136,92,70,255, 49,44,40,255, 53,47,43,255, 136,92,70,255, 155,102,75,255, 155,102,75,255, 155,102,75,255, 149,90,62,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 148,95,68,255, 148,95,68,255, 155,102,75,255, 155,102,75,255, 136,92,70,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 150,108,74,255, 58,41,28,255, 121,85,58,255, 150,108,74,255, 104,95,106,255, 150,108,74,255, 58,41,28,255, 89,61,41,255, 58,41,28,255, 111,104,118,255, 72,52,35,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 43,29,19,255, 121,85,58,255, 105,96,99,255, 99,93,94,255, 99,93,94,255, 130,111,116,255, 104,95,106,255, 111,98,100,255, 131,111,115,255, 115,99,103,255, 128,107,111,255, 111,104,118,255, 111,98,100,255, 126,107,111,255, 99,93,94,255, 99,93,94,255, 115,99,103,255, 99,93,94,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,116,45,255, 0,0,0,0, 56,80,31,255, 81,116,45,255, 81,116,45,255, 81,116,45,255, 207,227,186,255, 56,80,31,255, 207,227,186,255, 0,0,0,0, 81,116,45,255, 0,0,0,0, 0,0,0,0, 222,226,227,255, 228,231,232,255, 225,229,230,255, 248,249,249,255, 209,215,216,255, 211,217,218,255, 228,231,232,255, 238,240,241,255, 219,224,225,255, 239,241,242,255, 254,254,254,255, 254,254,254,255, 230,233,234,255, 242,244,244,255, 254,254,254,255, 254,254,254,255, 27,42,53,255, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 32,47,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 23,38,49,255, 0,0,0,0, 0,0,0,0, 23,38,49,255, 0,0,0,0, 27,42,53,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 150,108,74,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 0,0,0,0, 13,97,24,255, 17,136,32,255, 17,131,31,255, 14,105,26,255, 18,133,34,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 17,131,31,255, 17,128,30,255, 18,133,34,255, 14,105,26,255, 17,131,31,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 20,141,36,255, 16,119,30,255, 17,127,32,255, 18,140,33,255, 12,86,21,255, 0,0,0,255, 9,66,16,255, 15,114,26,255, 18,140,33,255, 15,118,27,255, 18,140,33,255, 15,117,27,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 218,219,157,255, 210,215,159,255, 220,221,159,255, 219,220,157,255, 210,215,159,255, 210,215,159,255, 210,215,159,255, 210,215,159,255, 220,221,159,255, 221,222,160,255, 210,215,159,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 147,154,165,255, 140,146,157,255, 163,167,183,255, 158,164,175,255, 158,164,175,255, 160,164,180,255, 165,168,184,255, 155,162,172,255, 159,165,176,255, 160,166,177,255, 160,166,177,255, 168,174,185,255, 159,165,176,255, 161,166,182,255, 149,155,166,255, 166,172,183,255, 117,193,40,255, 130,168,89,255, 105,135,71,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 229,239,218,255, 150,193,102,255, 0,0,0,0, 49,44,40,255, 116,80,57,255, 130,87,57,255, 63,41,27,255, 130,87,57,255, 74,48,34,255, 148,95,68,255, 71,45,32,255, 130,87,57,255, 63,41,27,255, 130,87,57,255, 71,42,29,255, 155,102,75,255, 63,41,27,255, 116,80,57,255, 49,44,40,255, 49,44,40,255, 116,80,57,255, 130,87,57,255, 130,87,57,255, 130,87,57,255, 155,102,75,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 130,87,57,255, 149,90,62,255, 155,102,75,255, 130,87,57,255, 116,80,57,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 150,108,74,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 99,93,94,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 58,41,28,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 58,41,28,255, 150,108,74,255, 93,87,90,255, 93,87,90,255, 121,106,109,255, 127,109,113,255, 99,93,94,255, 96,89,95,255, 127,109,113,255, 128,107,111,255, 128,107,111,255, 104,96,107,255, 104,96,107,255, 105,94,96,255, 109,99,100,255, 154,123,129,255, 128,107,111,255, 111,104,118,255, 0,0,0,0, 0,0,0,0, 100,141,56,255, 207,227,186,255, 207,227,186,255, 162,201,120,255, 56,80,31,255, 81,116,45,255, 207,227,186,255, 207,227,186,255, 162,201,120,255, 207,227,186,255, 81,116,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 249,250,250,255, 250,251,251,255, 243,244,245,255, 243,244,245,255, 254,254,254,255, 250,250,250,255, 243,244,245,255, 240,242,242,255, 250,251,251,255, 248,249,249,255, 227,230,231,255, 235,238,238,255, 239,241,242,255, 232,235,235,255, 216,221,222,255, 233,236,236,255, 14,21,26,255, 27,42,53,255, 18,25,30,255, 27,42,53,255, 27,42,53,255, 23,30,35,255, 20,35,46,255, 27,42,53,255, 38,53,64,255, 26,41,52,255, 26,33,38,255, 27,42,53,255, 21,36,47,255, 26,33,38,255, 35,50,61,255, 18,25,30,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 227,243,243,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 150,108,74,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 135,135,135,255, 121,85,58,255, 0,0,0,0, 0,0,0,255, 11,85,20,255, 17,131,31,255, 18,133,34,255, 17,128,30,255, 17,131,31,255, 17,136,32,255, 17,128,30,255, 14,105,26,255, 16,126,29,255, 14,105,26,255, 17,136,32,255, 17,131,31,255, 13,97,24,255, 0,0,0,0, 0,0,0,255, 9,66,16,255, 18,134,32,255, 15,117,27,255, 17,128,30,255, 18,140,33,255, 12,98,21,255, 8,57,16,255, 9,66,16,255, 17,125,31,255, 19,142,34,255, 15,117,27,255, 20,141,36,255, 12,86,21,255, 0,0,0,255, 0,0,0,255, 0,0,0,0, 13,97,24,255, 219,220,158,255, 210,215,159,255, 222,222,160,255, 219,220,158,255, 220,221,159,255, 219,220,157,255, 219,220,157,255, 219,220,157,255, 220,221,159,255, 222,222,160,255, 212,216,160,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 161,167,178,255, 161,165,181,255, 136,143,154,255, 164,167,184,255, 150,156,167,255, 167,171,187,255, 157,164,174,255, 159,163,179,255, 169,173,189,255, 169,175,186,255, 164,171,182,255, 157,163,173,255, 159,165,176,255, 157,163,174,255, 157,163,173,255, 159,165,176,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 117,193,40,255, 229,239,218,255, 150,193,102,255, 0,0,0,0, 145,239,50,255, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 130,168,89,255, 105,135,71,255, 0,0,0,0, 53,47,43,255, 131,87,66,255, 91,56,40,255, 148,95,68,255, 95,60,44,255, 155,102,75,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 91,56,40,255, 148,95,68,255, 91,56,40,255, 148,95,68,255, 131,87,66,255, 49,44,40,255, 53,47,43,255, 131,87,66,255, 148,95,68,255, 148,95,68,255, 155,102,75,255, 155,102,75,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 148,95,68,255, 148,95,68,255, 148,95,68,255, 148,95,68,255, 131,87,66,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 104,104,104,255, 150,150,150,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 150,108,74,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 89,64,44,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 135,135,135,255, 121,85,58,255, 109,97,100,255, 93,87,90,255, 105,96,107,255, 117,112,132,255, 117,112,132,255, 104,96,107,255, 154,123,129,255, 105,96,99,255, 120,105,108,255, 136,115,119,255, 117,112,132,255, 89,86,86,255, 105,96,99,255, 140,115,119,255, 123,109,124,255, 104,96,107,255, 0,0,0,0, 81,116,45,255, 81,116,45,255, 0,0,0,0, 81,116,45,255, 100,141,56,255, 56,80,31,255, 56,80,31,255, 81,116,45,255, 100,141,56,255, 0,0,0,0, 162,201,120,255, 81,116,45,255, 100,141,56,255, 0,0,0,0, 0,0,0,0, 216,221,222,255, 219,224,225,255, 238,240,241,255, 238,240,241,255, 224,228,228,255, 225,228,229,255, 245,247,247,255, 242,244,244,255, 217,222,223,255, 219,224,225,255, 222,226,227,255, 239,241,242,255, 210,216,217,255, 210,216,217,255, 225,229,230,255, 239,241,242,255, 20,35,46,255, 0,0,0,0, 30,45,56,255, 0,0,0,0, 0,0,0,0, 36,51,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 27,42,53,255, 255,255,255,255, 227,243,243,255, 227,243,243,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 108,108,108,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 0,0,0,0, 13,97,24,255, 17,136,32,255, 17,131,31,255, 19,139,33,255, 14,105,26,255, 17,131,31,255, 18,133,34,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 0,0,0,255, 14,105,26,255, 17,131,31,255, 0,0,0,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 18,134,32,255, 15,117,27,255, 17,127,32,255, 20,141,36,255, 15,118,27,255, 13,97,24,255, 9,66,16,255, 17,125,31,255, 20,141,36,255, 16,116,29,255, 20,141,36,255, 13,99,24,255, 8,57,16,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 219,220,157,255, 210,215,159,255, 222,223,161,255, 221,222,160,255, 220,221,159,255, 221,222,159,255, 222,222,160,255, 222,223,161,255, 222,222,160,255, 221,222,160,255, 210,215,159,255, 220,220,158,255, 13,97,24,255, 0,0,0,0, 153,159,170,255, 164,167,184,255, 164,170,180,255, 151,155,171,255, 160,167,177,255, 157,163,174,255, 160,166,177,255, 158,163,174,255, 160,167,177,255, 160,166,177,255, 158,164,175,255, 175,182,193,255, 155,162,172,255, 155,162,172,255, 155,161,172,255, 145,150,162,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 130,168,89,255, 105,135,71,255, 0,0,0,0, 117,193,40,255, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 52,44,41,255, 128,82,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 128,82,62,255, 52,44,41,255, 52,44,41,255, 128,82,62,255, 149,90,62,255, 149,90,62,255, 145,88,64,255, 145,88,64,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 149,90,62,255, 149,90,62,255, 145,88,64,255, 145,88,64,255, 128,82,62,255, 52,44,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 127,127,127,255, 104,104,104,255, 127,127,127,255, 150,150,150,255, 127,127,127,255, 150,150,150,255, 127,127,127,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 108,108,108,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 140,115,119,255, 89,86,86,255, 103,93,95,255, 111,104,118,255, 111,98,100,255, 117,112,132,255, 104,96,107,255, 92,87,88,255, 98,99,99,255, 105,96,99,255, 111,104,118,255, 105,94,96,255, 115,99,103,255, 140,115,119,255, 104,96,107,255, 86,84,85,255, 0,0,0,0, 81,116,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 162,201,120,255, 207,227,186,255, 81,116,45,255, 81,116,45,255, 0,0,0,0, 81,116,45,255, 81,116,45,255, 81,116,45,255, 100,141,56,255, 0,0,0,0, 225,228,229,255, 224,228,228,255, 209,215,216,255, 211,217,218,255, 249,250,250,255, 253,253,253,255, 214,219,220,255, 209,215,216,255, 232,235,235,255, 245,247,247,255, 235,238,238,255, 242,244,244,255, 254,254,254,255, 254,254,254,255, 239,241,242,255, 212,218,219,255, 27,42,53,255, 0,0,0,0, 28,43,54,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 27,42,53,255, 238,255,255,255, 255,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 238,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 0,0,0,0, 13,97,24,255, 19,139,33,255, 17,131,31,255, 14,105,26,255, 0,0,0,255, 17,131,31,255, 18,133,34,255, 17,136,32,255, 14,105,26,255, 17,131,31,255, 14,105,26,255, 20,141,36,255, 18,133,34,255, 13,97,24,255, 0,0,0,0, 0,0,0,255, 0,0,0,255, 14,105,26,255, 15,114,26,255, 17,127,32,255, 20,141,36,255, 15,114,26,255, 13,97,24,255, 0,0,0,255, 12,93,23,255, 20,141,36,255, 16,116,29,255, 16,126,29,255, 15,117,27,255, 13,97,24,255, 0,0,0,255, 0,0,0,0, 13,97,24,255, 219,220,157,255, 209,214,157,255, 210,215,159,255, 212,216,160,255, 210,215,159,255, 210,215,159,255, 210,215,158,255, 210,215,159,255, 212,216,160,255, 212,217,160,255, 212,216,160,255, 219,220,158,255, 13,97,24,255, 0,0,0,0, 168,172,187,255, 160,167,177,255, 155,162,172,255, 168,174,186,255, 161,167,178,255, 155,161,172,255, 162,168,179,255, 146,152,162,255, 150,156,167,255, 160,166,177,255, 158,163,175,255, 155,161,172,255, 161,166,182,255, 164,167,184,255, 154,160,171,255, 157,162,174,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 53,47,43,255, 136,92,70,255, 155,102,75,255, 95,60,44,255, 155,102,75,255, 80,51,33,255, 155,102,75,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 148,95,68,255, 91,53,36,255, 136,92,70,255, 53,47,43,255, 53,47,43,255, 136,92,70,255, 155,102,75,255, 155,102,75,255, 155,102,75,255, 130,87,57,255, 116,80,57,255, 24,21,20,255, 24,21,20,255, 116,80,57,255, 130,87,57,255, 130,87,57,255, 148,95,68,255, 149,90,62,255, 136,92,70,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 150,150,150,255, 150,150,150,255, 127,127,127,255, 150,150,150,255, 104,104,104,255, 150,150,150,255, 104,104,104,255, 127,127,127,255, 150,150,150,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 128,107,111,255, 115,99,103,255, 105,97,108,255, 105,94,96,255, 105,96,99,255, 92,87,88,255, 108,100,113,255, 90,85,88,255, 99,93,94,255, 128,107,111,255, 104,96,107,255, 104,96,107,255, 104,96,107,255, 105,98,109,255, 117,112,132,255, 95,89,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,141,56,255, 100,141,56,255, 207,227,186,255, 162,201,120,255, 0,0,0,0, 81,116,45,255, 0,0,0,0, 81,116,45,255, 81,116,45,255, 0,0,0,0, 242,244,244,255, 240,242,242,255, 253,253,253,255, 254,254,254,255, 249,250,250,255, 243,244,245,255, 235,238,238,255, 227,230,231,255, 209,215,216,255, 230,233,234,255, 242,244,244,255, 250,250,250,255, 229,233,233,255, 230,233,234,255, 250,250,250,255, 254,254,254,255, 26,33,38,255, 24,39,50,255, 26,33,38,255, 27,42,53,255, 27,42,53,255, 26,33,38,255, 27,42,53,255, 27,42,53,255, 27,42,53,255, 31,46,57,255, 27,34,39,255, 23,38,49,255, 27,42,53,255, 19,26,31,255, 27,42,53,255, 26,33,38,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 238,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 0,0,0,0, 13,97,24,255, 11,85,20,255, 17,131,31,255, 19,139,33,255, 14,105,26,255, 11,85,20,255, 15,118,27,255, 19,139,33,255, 11,85,20,255, 17,131,31,255, 18,133,34,255, 11,85,20,255, 11,85,20,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 4,40,8,255, 14,112,25,255, 17,125,31,255, 17,128,30,255, 18,134,32,255, 15,120,28,255, 13,97,24,255, 4,40,8,255, 14,109,25,255, 17,127,32,255, 16,116,29,255, 18,140,33,255, 20,141,36,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 219,220,157,255, 219,220,157,255, 219,220,157,255, 219,220,157,255, 220,221,159,255, 218,219,156,255, 219,220,157,255, 217,218,156,255, 219,220,157,255, 219,220,157,255, 219,220,157,255, 219,220,157,255, 13,97,24,255, 0,0,0,0, 175,183,200,255, 164,168,184,255, 152,159,170,255, 141,147,158,255, 155,161,172,255, 155,162,172,255, 155,162,172,255, 170,174,191,255, 161,166,182,255, 171,175,191,255, 164,168,184,255, 161,167,178,255, 163,169,179,255, 157,163,174,255, 164,168,184,255, 156,160,177,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 229,239,218,255, 150,193,102,255, 0,0,0,0, 117,193,40,255, 170,219,116,255, 130,168,89,255, 0,0,0,0, 52,46,42,255, 116,80,57,255, 149,90,62,255, 74,48,34,255, 155,102,75,255, 74,48,34,255, 155,102,75,255, 63,41,27,255, 155,102,75,255, 71,45,32,255, 148,95,68,255, 63,41,27,255, 130,87,57,255, 63,41,27,255, 116,80,57,255, 52,46,42,255, 52,46,42,255, 116,80,57,255, 149,90,62,255, 155,102,75,255, 155,102,75,255, 155,102,75,255, 155,102,75,255, 116,80,57,255, 116,80,57,255, 148,95,68,255, 148,95,68,255, 130,87,57,255, 130,87,57,255, 130,87,57,255, 116,80,57,255, 52,46,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 86,86,86,255, 150,150,150,255, 150,150,150,255, 104,104,104,255, 104,104,104,255, 127,127,127,255, 86,86,86,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 116,88,68,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 99,93,94,255, 111,104,118,255, 104,96,107,255, 89,86,86,255, 99,94,95,255, 132,113,118,255, 106,96,99,255, 107,99,111,255, 104,96,107,255, 96,89,95,255, 119,103,106,255, 97,89,90,255, 105,94,96,255, 119,103,106,255, 111,104,118,255, 111,98,100,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,116,45,255, 162,201,120,255, 56,80,31,255, 207,227,186,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 253,253,253,255, 252,252,252,255, 233,236,236,255, 228,231,232,255, 250,250,250,255, 235,238,238,255, 239,241,242,255, 245,246,246,255, 254,254,254,255, 248,249,249,255, 222,226,227,255, 222,226,227,255, 236,239,239,255, 242,244,244,255, 225,228,229,255, 217,222,223,255, 17,32,43,255, 0,0,0,0, 32,47,58,255, 0,0,0,0, 0,0,0,0, 27,42,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 30,45,56,255, 0,0,0,0, 0,0,0,0, 21,36,47,255, 0,0,0,0, 27,42,53,255, 255,255,255,255, 238,255,255,255, 255,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 0,0,0,0, 13,97,24,255, 0,0,0,255, 4,40,8,255, 13,97,24,255, 13,97,24,255, 0,0,0,255, 13,97,24,255, 4,40,8,255, 0,0,0,255, 13,97,24,255, 13,97,24,255, 0,0,0,255, 4,40,8,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 9,66,16,255, 17,127,32,255, 20,141,36,255, 15,117,27,255, 18,134,32,255, 13,89,22,255, 0,0,0,255, 9,66,16,255, 17,127,32,255, 20,141,36,255, 16,116,29,255, 18,134,32,255, 16,116,29,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 13,97,24,255, 0,0,0,0, 162,166,182,255, 158,162,178,255, 157,163,174,255, 154,160,171,255, 160,165,181,255, 156,160,176,255, 160,166,177,255, 162,168,179,255, 141,148,158,255, 161,167,178,255, 145,151,162,255, 157,163,174,255, 164,168,184,255, 152,156,172,255, 154,160,171,255, 161,166,182,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 130,168,89,255, 105,135,71,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 53,47,43,255, 121,85,67,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 136,92,70,255, 136,92,70,255, 116,80,57,255, 136,92,70,255, 136,92,70,255, 116,80,57,255, 131,87,66,255, 136,92,70,255, 136,92,70,255, 121,85,67,255, 53,47,43,255, 53,47,43,255, 121,85,67,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 136,92,70,255, 136,92,70,255, 116,80,57,255, 136,92,70,255, 136,92,70,255, 116,80,57,255, 131,87,66,255, 136,92,70,255, 136,92,70,255, 121,85,67,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 86,86,86,255, 86,86,86,255, 86,86,86,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 140,115,119,255, 104,96,107,255, 86,84,85,255, 109,99,100,255, 99,93,94,255, 115,99,103,255, 128,110,114,255, 96,89,95,255, 105,94,96,255, 105,94,96,255, 128,107,111,255, 115,99,103,255, 132,113,118,255, 128,107,111,255, 111,104,118,255, 111,104,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 162,201,120,255, 207,227,186,255, 56,80,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 213,218,219,255, 219,224,225,255, 249,250,250,255, 236,239,239,255, 217,222,223,255, 225,228,229,255, 250,250,250,255, 253,253,253,255, 229,233,233,255, 224,228,228,255, 240,242,242,255, 249,250,250,255, 217,222,223,255, 219,224,225,255, 248,249,249,255, 250,250,250,255, 26,33,38,255, 27,42,53,255, 26,33,38,255, 27,42,53,255, 27,42,53,255, 30,37,42,255, 27,42,53,255, 27,42,53,255, 30,45,56,255, 27,42,53,255, 15,22,27,255, 27,42,53,255, 27,42,53,255, 34,41,46,255, 27,42,53,255, 30,37,42,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 238,255,255,255, 238,255,255,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 227,243,243,255, 238,255,255,255, 255,255,255,255, 227,243,243,255, 238,255,255,255, 227,243,243,255, 255,255,255,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 135,135,135,255, 150,108,74,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 9,66,16,255, 17,127,32,255, 18,134,32,255, 16,116,29,255, 17,128,30,255, 15,110,28,255, 8,57,16,255, 9,66,16,255, 17,128,30,255, 17,127,32,255, 15,113,28,255, 17,128,30,255, 16,126,29,255, 13,97,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 157,162,174,255, 163,169,180,255, 157,163,174,255, 147,154,165,255, 175,185,200,255, 161,167,177,255, 150,157,167,255, 167,171,187,255, 159,165,176,255, 169,173,189,255, 155,161,172,255, 155,162,172,255, 157,163,174,255, 159,166,176,255, 157,163,174,255, 150,156,167,255, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 0,0,0,0, 170,219,116,255, 130,168,89,255, 0,0,0,0, 40,35,32,255, 52,44,41,255, 52,44,41,255, 53,44,41,255, 51,45,42,255, 51,45,42,255, 53,44,41,255, 51,45,42,255, 52,44,41,255, 52,44,41,255, 52,44,41,255, 51,45,42,255, 48,43,41,255, 51,45,42,255, 51,45,42,255, 49,44,40,255, 40,35,32,255, 52,44,41,255, 52,44,41,255, 53,44,41,255, 51,45,42,255, 51,45,42,255, 53,44,41,255, 51,45,42,255, 52,44,41,255, 52,44,41,255, 52,44,41,255, 51,45,42,255, 48,43,41,255, 51,45,42,255, 51,45,42,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 135,135,135,255, 150,108,74,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 140,115,119,255, 104,96,107,255, 117,112,132,255, 111,98,100,255, 140,115,119,255, 128,107,111,255, 103,104,104,255, 109,97,100,255, 111,104,118,255, 109,97,100,255, 128,107,111,255, 128,107,111,255, 140,115,119,255, 140,115,119,255, 105,94,96,255, 96,89,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 162,201,120,255, 207,227,186,255, 162,201,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 170,143,71,255, 170,143,71,255, 170,143,71,255, 170,143,71,255, 176,151,81,255, 176,151,81,255, 175,148,77,255, 170,143,71,255, 176,151,81,255, 176,151,81,255, 176,151,81,255, 176,151,81,255, 176,151,81,255, 176,151,81,255, 137,104,50,255, 167,167,167,255, 163,163,163,255, 166,166,166,255, 173,173,173,255, 181,181,181,255, 190,190,190,255, 192,192,192,255, 190,190,190,255, 188,188,188,255, 190,190,190,255, 193,193,193,255, 195,195,195,255, 196,196,196,255, 197,197,197,255, 198,198,198,255, 187,187,187,255, 0,0,0,0, 0,0,0,0, 142,115,60,255, 92,72,37,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 172,136,82,255, 105,81,47,255, 0,0,0,0, 0,0,0,0, 87,60,27,255, 87,60,27,255, 91,60,28,255, 82,57,25,255, 82,57,25,255, 91,60,28,255, 82,57,25,255, 87,60,27,255, 87,60,27,255, 87,60,27,255, 82,57,25,255, 73,53,24,255, 82,57,25,255, 82,57,25,255, 87,60,27,255, 87,60,27,255, 0,0,0,0, 0,0,0,0, 108,109,111,255, 77,75,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 114,104,97,255, 75,74,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,109,101,255, 80,79,80,255, 0,0,0,0, 0,0,0,0, 119,64,23,255, 76,41,13,255, 113,61,22,255, 110,60,21,255, 71,38,12,255, 70,38,12,255, 105,57,20,255, 104,56,20,255, 68,36,12,255, 51,25,7,255, 105,57,20,255, 70,38,12,255, 88,48,16,255, 110,60,21,255, 74,39,12,255, 116,63,22,255, 159,107,66,255, 99,63,36,255, 159,107,66,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 127,85,51,255, 159,107,66,255, 99,63,36,255, 159,107,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,197,4,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,99,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 143,107,53,255, 122,91,43,255, 143,107,53,255, 143,107,53,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 143,107,53,255, 137,104,50,255, 143,107,53,255, 145,109,56,255, 106,67,31,255, 190,190,190,255, 192,192,192,255, 191,191,191,255, 186,186,186,255, 194,194,194,255, 195,195,195,255, 193,193,193,255, 193,193,193,255, 192,192,192,255, 192,192,192,255, 193,193,193,255, 194,194,194,255, 192,192,192,255, 193,193,193,255, 194,194,194,255, 165,165,165,255, 0,0,0,0, 164,128,74,255, 164,128,74,255, 72,55,29,255, 142,115,60,255, 142,115,60,255, 164,128,74,255, 164,128,74,255, 172,136,82,255, 172,136,82,255, 172,136,82,255, 164,128,74,255, 142,115,60,255, 101,77,43,255, 164,128,74,255, 0,0,0,0, 106,67,31,255, 145,109,56,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 143,107,53,255, 143,107,53,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 143,107,53,255, 122,91,43,255, 145,109,56,255, 145,109,56,255, 106,67,31,255, 0,0,0,0, 0,0,0,0, 170,164,155,255, 106,104,106,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 163,164,164,255, 104,105,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,109,100,255, 74,73,72,255, 0,0,0,0, 0,0,0,0, 77,41,13,255, 55,27,8,255, 90,48,16,255, 87,47,16,255, 85,46,15,255, 68,36,11,255, 49,24,7,255, 100,54,19,255, 66,35,11,255, 49,24,7,255, 82,45,15,255, 68,36,11,255, 69,37,12,255, 71,38,12,255, 54,26,8,255, 113,61,22,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,182,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 150,182,0,255, 37,128,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,102,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 138,119,17,255, 22,25,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,106,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 120,83,39,255, 120,83,39,255, 120,83,39,255, 120,83,39,255, 128,87,42,255, 143,107,53,255, 130,89,44,255, 130,89,44,255, 130,89,44,255, 128,87,42,255, 103,74,34,255, 145,109,56,255, 145,109,56,255, 106,67,31,255, 193,193,193,255, 196,196,196,255, 187,187,187,255, 187,187,187,255, 187,187,187,255, 187,187,187,255, 188,188,188,255, 195,195,195,255, 189,189,189,255, 189,189,189,255, 189,189,189,255, 188,188,188,255, 181,181,181,255, 192,192,192,255, 191,191,191,255, 165,165,165,255, 0,0,0,0, 100,79,42,255, 142,115,60,255, 92,72,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 91,70,37,255, 91,70,37,255, 100,79,42,255, 105,81,47,255, 100,79,42,255, 0,0,0,0, 87,60,27,255, 118,87,41,255, 99,71,33,255, 103,74,34,255, 103,74,34,255, 103,74,34,255, 122,91,43,255, 145,109,56,255, 145,109,56,255, 103,74,34,255, 103,74,34,255, 99,71,33,255, 99,71,33,255, 118,87,41,255, 122,91,43,255, 87,60,27,255, 0,0,0,0, 0,0,0,0, 171,164,156,255, 127,128,127,255, 119,118,118,255, 111,111,111,255, 163,163,164,255, 171,171,173,255, 93,92,94,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 111,111,110,255, 80,75,68,255, 0,0,0,0, 0,0,0,0, 114,61,22,255, 54,26,8,255, 107,58,21,255, 104,56,20,255, 82,45,15,255, 65,35,11,255, 47,23,7,255, 78,42,14,255, 78,42,14,255, 47,23,7,255, 98,52,19,255, 65,35,11,255, 67,36,11,255, 69,36,12,255, 71,38,12,255, 90,49,16,255, 159,107,66,255, 69,41,21,255, 159,107,66,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 99,63,36,255, 99,63,36,255, 127,85,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 89,179,11,255, 24,111,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 130,154,9,255, 60,110,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,108,20,255, 36,36,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 135,116,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 135,116,17,255, 42,42,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 156,119,59,255, 118,87,41,255, 99,71,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,115,56,255, 103,74,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 144,109,53,255, 122,91,43,255, 87,60,27,255, 184,184,184,255, 188,188,188,255, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 198,198,198,255, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 194,194,194,255, 188,188,188,255, 161,161,161,255, 0,0,0,0, 0,0,0,0, 91,70,37,255, 72,55,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,70,37,255, 68,51,27,255, 0,0,0,0, 0,0,0,0, 117,70,34,255, 137,104,50,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 122,91,43,255, 137,104,50,255, 130,89,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 165,136,69,255, 143,107,53,255, 117,70,34,255, 0,0,0,0, 0,0,0,0, 155,146,137,255, 90,90,90,255, 90,91,90,255, 76,77,76,255, 92,92,93,255, 155,146,138,255, 90,91,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 110,109,111,255, 80,78,82,255, 0,0,0,0, 0,0,0,0, 91,50,17,255, 71,38,12,255, 105,57,20,255, 49,49,49,255, 80,44,14,255, 63,33,10,255, 62,33,10,255, 93,50,18,255, 75,41,14,255, 45,22,7,255, 76,41,14,255, 78,42,14,255, 65,35,11,255, 67,36,11,255, 51,25,8,255, 108,58,21,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 85,85,85,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 3,200,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 95,203,2,255, 21,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 89,158,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 95,173,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,181,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,123,14,255, 0,0,0,0, 0,0,0,0, 124,106,19,255, 0,0,0,0, 146,164,6,255, 57,54,0,255, 0,0,0,0, 0,0,0,0, 147,125,14,255, 0,0,0,0, 57,54,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,53,53,255, 120,83,39,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 130,89,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 165,136,69,255, 143,107,53,255, 117,70,34,255, 79,79,79,255, 188,188,188,255, 187,187,187,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,202,202,255, 190,190,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,202,202,255, 193,193,193,255, 169,169,169,255, 0,0,0,0, 0,0,0,0, 142,115,60,255, 92,72,37,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,128,74,255, 101,77,43,255, 0,0,0,0, 0,0,0,0, 106,67,31,255, 137,104,50,255, 103,74,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 143,107,53,255, 145,109,56,255, 128,87,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 137,104,50,255, 106,67,31,255, 0,0,0,0, 0,0,0,0, 129,119,110,255, 97,98,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 123,113,104,255, 92,92,92,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,110,110,255, 77,77,78,255, 0,0,0,0, 0,0,0,0, 90,48,16,255, 70,38,12,255, 84,45,15,255, 81,44,15,255, 63,33,10,255, 61,33,10,255, 90,49,17,255, 72,39,13,255, 72,39,13,255, 43,21,6,255, 90,49,17,255, 44,44,44,255, 78,42,14,255, 65,35,11,255, 50,24,7,255, 106,57,20,255, 127,85,51,255, 99,63,36,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 127,85,51,255, 69,41,21,255, 159,107,66,255, 85,85,85,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,167,2,255, 29,140,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,175,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,138,18,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 92,195,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,183,10,255, 18,82,0,255, 0,0,0,0, 0,0,0,0, 101,194,6,255, 0,0,0,0, 159,196,0,255, 24,100,3,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,171,14,255, 27,110,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 158,178,0,255, 71,69,3,255, 0,0,0,0, 146,124,14,255, 43,43,0,255, 146,165,5,255, 50,88,3,255, 122,106,21,255, 0,0,0,0, 144,160,7,255, 0,0,0,0, 0,0,0,0, 113,96,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 111,111,111,255, 137,104,50,255, 103,74,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 128,87,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 137,104,50,255, 106,67,31,255, 129,129,129,255, 195,195,195,255, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,201,201,255, 188,188,188,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 200,200,200,255, 192,192,192,255, 167,167,167,255, 0,0,0,0, 164,128,74,255, 100,79,42,255, 101,77,43,255, 172,136,82,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 142,115,60,255, 142,115,60,255, 100,79,42,255, 172,136,82,255, 142,115,60,255, 92,72,37,255, 164,128,74,255, 0,0,0,0, 117,70,34,255, 145,109,56,255, 130,89,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 137,104,50,255, 122,91,43,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,138,73,255, 145,109,56,255, 117,70,34,255, 0,0,0,0, 0,0,0,0, 95,95,95,255, 67,68,65,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,90,84,255, 68,69,69,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,129,129,255, 77,79,76,255, 0,0,0,0, 0,0,0,0, 72,38,12,255, 70,37,12,255, 101,54,20,255, 64,34,10,255, 62,33,10,255, 59,32,10,255, 42,21,6,255, 85,46,16,255, 55,29,9,255, 56,30,9,255, 87,47,17,255, 44,21,7,255, 76,41,14,255, 64,34,10,255, 101,54,20,255, 105,57,20,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 69,41,21,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 159,107,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,144,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 3,201,0,255, 14,100,3,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 95,200,3,255, 20,103,4,255, 0,0,0,0, 0,0,0,0, 82,157,17,255, 0,0,0,0, 87,170,15,255, 10,58,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 95,199,3,255, 30,125,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,171,14,255, 0,0,0,0, 0,0,0,0, 97,177,12,255, 36,124,10,255, 151,184,0,255, 73,128,16,255, 0,0,0,0, 0,0,0,0, 85,148,17,255, 0,0,0,0, 24,99,3,255, 0,0,0,0, 0,0,0,0, 93,80,19,255, 0,0,0,0, 147,167,5,255, 64,106,9,255, 131,112,18,255, 0,0,0,0, 72,70,3,255, 137,154,10,255, 50,89,3,255, 128,112,19,255, 42,42,0,255, 160,184,0,255, 0,0,0,0, 0,0,0,0, 136,117,18,255, 27,30,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 255,216,0,255, 255,143,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 165,136,69,255, 167,138,73,255, 167,138,73,255, 160,131,64,255, 137,104,50,255, 137,104,50,255, 160,131,64,255, 148,115,56,255, 167,138,73,255, 167,138,73,255, 145,109,56,255, 117,70,34,255, 193,193,193,255, 196,196,196,255, 196,196,196,255, 195,195,195,255, 203,203,203,255, 202,202,202,255, 204,204,204,255, 201,201,201,255, 194,194,194,255, 194,194,194,255, 201,201,201,255, 197,197,197,255, 204,204,204,255, 203,203,203,255, 193,193,193,255, 167,167,167,255, 0,0,0,0, 100,79,42,255, 172,136,82,255, 101,77,43,255, 91,70,37,255, 91,70,37,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 91,70,37,255, 91,70,37,255, 172,136,82,255, 105,81,47,255, 100,79,42,255, 0,0,0,0, 87,60,27,255, 137,104,50,255, 122,91,43,255, 167,138,73,255, 167,138,73,255, 167,138,73,255, 160,131,64,255, 145,109,56,255, 137,104,50,255, 145,109,56,255, 165,136,69,255, 160,131,64,255, 160,131,64,255, 160,131,64,255, 137,104,50,255, 87,60,27,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 101,101,98,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 105,104,103,255, 75,76,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 103,103,103,255, 0,0,0,0, 0,0,0,0, 108,58,21,255, 84,46,15,255, 100,54,19,255, 78,42,14,255, 61,32,10,255, 43,21,6,255, 41,20,6,255, 66,36,12,255, 53,28,9,255, 39,20,6,255, 85,46,16,255, 72,39,13,255, 75,41,14,255, 64,33,10,255, 100,54,19,255, 84,46,15,255, 159,107,66,255, 127,85,51,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 69,41,21,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,204,6,255, 4,72,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 3,198,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,170,1,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 5,210,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,186,9,255, 0,0,0,0, 0,0,0,0, 95,200,3,255, 14,81,0,255, 84,165,15,255, 18,97,2,255, 0,0,0,0, 0,0,0,0, 87,173,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 139,166,5,255, 24,99,3,255, 106,210,0,255, 0,0,0,0, 26,106,5,255, 139,168,3,255, 62,113,11,255, 106,210,0,255, 0,0,0,0, 138,165,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 142,124,16,255, 0,4,0,255, 161,189,0,255, 53,93,5,255, 147,168,3,255, 52,49,0,255, 0,0,0,0, 122,136,14,255, 45,78,0,255, 156,173,1,255, 50,48,0,255, 125,142,13,255, 0,0,0,0, 121,106,20,255, 0,0,0,0, 59,56,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 255,255,151,255, 255,255,255,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,124,61,255, 122,91,43,255, 99,71,33,255, 99,71,33,255, 99,71,33,255, 99,71,33,255, 99,71,33,255, 122,91,43,255, 103,74,34,255, 103,74,34,255, 103,74,34,255, 99,71,33,255, 99,71,33,255, 118,87,41,255, 122,91,43,255, 87,60,27,255, 185,185,185,255, 191,191,191,255, 182,182,182,255, 181,181,181,255, 179,179,179,255, 179,179,179,255, 179,179,179,255, 186,186,186,255, 180,180,180,255, 180,180,180,255, 181,181,181,255, 181,181,181,255, 181,181,181,255, 186,186,186,255, 185,185,185,255, 161,161,161,255, 0,0,0,0, 0,0,0,0, 91,70,37,255, 68,51,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,70,37,255, 68,51,27,255, 0,0,0,0, 0,0,0,0, 106,67,31,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 137,104,50,255, 145,109,56,255, 122,91,43,255, 145,109,56,255, 145,109,56,255, 143,107,53,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 106,67,31,255, 131,132,131,255, 164,164,164,255, 171,171,171,255, 110,111,111,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,105,107,255, 80,80,80,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 125,126,124,255, 130,120,111,255, 121,111,102,255, 108,58,21,255, 51,24,7,255, 81,44,15,255, 78,42,14,255, 61,32,10,255, 43,21,6,255, 41,20,6,255, 80,43,15,255, 50,26,8,255, 39,19,5,255, 68,37,12,255, 72,39,13,255, 61,32,10,255, 63,33,10,255, 100,54,19,255, 84,46,15,255, 159,107,66,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,191,10,255, 24,144,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,192,0,255, 28,137,14,255, 0,0,0,0, 0,0,0,0, 0,167,2,255, 0,0,0,0, 75,154,17,255, 15,103,4,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,195,0,255, 33,151,18,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,169,14,255, 25,114,7,255, 96,199,4,255, 0,0,0,0, 32,131,12,255, 92,188,9,255, 15,90,0,255, 89,179,11,255, 0,0,0,0, 83,163,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 156,192,0,255, 48,91,4,255, 137,162,7,255, 42,144,16,255, 0,0,0,0, 150,182,0,255, 49,94,5,255, 151,184,0,255, 42,144,16,255, 143,171,2,255, 0,0,0,0, 0,0,0,0, 100,183,10,255, 0,0,0,0, 148,168,4,255, 67,65,1,255, 160,184,0,255, 71,119,13,255, 160,184,0,255, 53,94,5,255, 0,0,0,0, 137,154,9,255, 25,55,0,255, 150,169,3,255, 61,100,7,255, 160,184,0,255, 0,0,0,0, 151,171,3,255, 39,40,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,62,255, 76,61,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 130,89,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,138,73,255, 130,89,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,138,73,255, 145,109,56,255, 106,67,31,255, 193,193,193,255, 197,197,197,255, 192,192,192,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,201,201,255, 186,186,186,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 199,199,199,255, 188,188,188,255, 163,163,163,255, 0,0,0,0, 0,0,0,0, 172,136,82,255, 105,81,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 172,136,82,255, 105,81,47,255, 0,0,0,0, 0,0,0,0, 106,67,31,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 137,104,50,255, 145,109,56,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 143,107,53,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 106,67,31,255, 75,77,76,255, 94,93,97,255, 146,146,147,255, 90,90,89,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 113,105,95,255, 78,79,80,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 143,142,141,255, 90,87,90,255, 91,94,95,255, 77,77,77,255, 88,48,16,255, 51,25,7,255, 81,44,15,255, 78,42,14,255, 61,32,10,255, 58,31,10,255, 41,20,6,255, 82,44,15,255, 53,28,9,255, 39,20,6,255, 85,46,16,255, 58,31,10,255, 61,32,10,255, 47,23,7,255, 81,44,15,255, 69,36,12,255, 127,85,51,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 99,63,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,132,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,177,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,7,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,190,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,2,255, 0,0,0,0, 0,0,0,0, 0,187,1,255, 14,100,3,255, 83,193,7,255, 10,77,0,255, 0,0,0,0, 0,0,0,0, 0,163,5,255, 0,0,0,0, 27,133,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,192,7,255, 18,96,2,255, 92,195,5,255, 32,130,12,255, 0,0,0,0, 117,146,12,255, 26,117,8,255, 82,158,16,255, 21,107,5,255, 94,197,5,255, 0,0,0,0, 0,0,0,0, 89,177,12,255, 0,0,0,0, 100,183,10,255, 0,0,0,0, 151,185,0,255, 69,124,15,255, 132,157,9,255, 47,88,3,255, 0,0,0,0, 139,168,3,255, 60,110,10,255, 138,164,6,255, 62,113,11,255, 147,173,1,255, 0,0,0,0, 79,138,18,255, 0,0,0,0, 30,113,7,255, 165,191,0,255, 54,94,5,255, 156,174,1,255, 67,113,11,255, 136,151,11,255, 67,113,11,255, 0,0,0,0, 151,171,2,255, 45,78,0,255, 157,175,0,255, 53,94,5,255, 122,137,14,255, 0,0,0,0, 122,136,14,255, 59,97,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 147,115,68,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,143,71,255, 137,104,50,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 165,136,69,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 137,104,50,255, 106,67,31,255, 192,192,192,255, 195,195,195,255, 189,189,189,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 205,205,205,255, 188,188,188,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,201,201,255, 193,193,193,255, 166,166,166,255, 0,0,0,0, 164,128,74,255, 142,115,60,255, 92,72,37,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 142,115,60,255, 142,115,60,255, 142,115,60,255, 164,128,74,255, 164,128,74,255, 172,136,82,255, 92,72,37,255, 164,128,74,255, 0,0,0,0, 106,67,31,255, 137,104,50,255, 120,83,39,255, 120,83,39,255, 120,83,39,255, 128,87,42,255, 143,107,53,255, 137,104,50,255, 118,87,41,255, 120,83,39,255, 120,83,39,255, 103,74,34,255, 130,89,44,255, 137,104,50,255, 137,104,50,255, 106,67,31,255, 0,0,0,0, 0,0,0,0, 141,140,141,255, 100,94,86,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 105,106,103,255, 75,76,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 140,141,141,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 88,48,16,255, 51,25,8,255, 101,54,20,255, 64,34,10,255, 62,33,10,255, 73,40,13,255, 58,30,9,255, 85,46,16,255, 68,37,12,255, 56,30,9,255, 87,47,17,255, 59,32,10,255, 62,33,10,255, 47,23,7,255, 101,54,20,255, 85,47,15,255, 127,85,51,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 127,85,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,159,17,255, 2,57,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,165,12,255, 14,111,6,255, 0,0,0,0, 0,0,0,0, 0,197,8,255, 0,0,0,0, 73,179,11,255, 22,137,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,7,255, 19,127,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,192,7,255, 23,120,9,255, 0,174,2,255, 0,0,0,0, 24,123,10,255, 81,178,12,255, 24,123,10,255, 0,174,2,255, 0,0,0,0, 81,179,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,183,10,255, 0,0,0,0, 91,183,10,255, 29,121,9,255, 95,205,1,255, 30,125,10,255, 0,0,0,0, 146,192,0,255, 28,69,0,255, 86,166,15,255, 14,82,0,255, 92,195,5,255, 0,0,0,0, 86,166,15,255, 0,0,0,0, 21,106,5,255, 148,176,0,255, 30,113,7,255, 115,135,15,255, 63,115,12,255, 139,167,5,255, 45,83,2,255, 0,0,0,0, 128,149,12,255, 49,94,5,255, 138,164,6,255, 46,88,3,255, 143,171,3,255, 0,0,0,0, 147,174,1,255, 13,58,0,255, 0,0,0,0, 135,149,12,255, 72,122,14,255, 135,149,12,255, 62,102,8,255, 158,180,0,255, 44,75,0,255, 0,0,0,0, 136,151,12,255, 59,97,6,255, 123,138,14,255, 62,102,8,255, 122,136,14,255, 0,0,0,0, 118,129,15,255, 25,55,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,117,70,255, 66,53,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 143,107,53,255, 128,87,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 165,136,69,255, 143,107,53,255, 106,67,31,255, 194,194,194,255, 197,197,197,255, 191,191,191,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,204,204,255, 189,189,189,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 203,203,203,255, 191,191,191,255, 162,162,162,255, 0,0,0,0, 100,79,42,255, 164,128,74,255, 101,77,43,255, 91,70,37,255, 91,70,37,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 164,128,74,255, 101,77,43,255, 100,79,42,255, 0,0,0,0, 106,67,31,255, 143,107,53,255, 128,87,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 145,109,56,255, 137,104,50,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 165,136,69,255, 143,107,53,255, 106,67,31,255, 0,0,0,0, 0,0,0,0, 96,96,95,255, 74,67,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,125,125,255, 74,77,75,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,98,97,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 90,48,16,255, 70,38,12,255, 103,55,20,255, 99,54,19,255, 78,42,14,255, 61,33,10,255, 44,21,7,255, 72,39,13,255, 72,39,13,255, 58,31,10,255, 44,21,7,255, 93,50,18,255, 63,33,10,255, 99,54,19,255, 63,63,63,255, 70,38,12,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 159,107,66,255, 111,111,111,255, 99,63,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,180,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,208,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,190,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,187,10,255, 0,0,0,0, 0,0,0,0, 0,153,13,255, 21,135,13,255, 74,188,9,255, 11,107,5,255, 0,0,0,0, 0,0,0,0, 0,174,11,255, 0,0,0,0, 22,137,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,183,10,255, 23,121,9,255, 79,170,15,255, 16,107,5,255, 0,0,0,0, 112,147,12,255, 16,106,5,255, 83,188,9,255, 16,107,5,255, 82,183,10,255, 0,0,0,0, 0,0,0,0, 7,224,0,255, 0,0,0,0, 87,173,13,255, 25,113,7,255, 123,154,10,255, 25,113,7,255, 142,186,0,255, 34,138,14,255, 0,0,0,0, 140,179,0,255, 64,124,15,255, 146,192,0,255, 16,91,0,255, 91,183,10,255, 0,0,0,0, 89,179,11,255, 16,91,0,255, 0,0,0,0, 138,165,5,255, 57,103,8,255, 134,159,9,255, 22,55,0,255, 129,151,11,255, 49,93,5,255, 0,0,0,0, 128,149,12,255, 36,72,0,255, 118,140,14,255, 46,88,3,255, 137,163,6,255, 0,0,0,0, 139,166,5,255, 57,102,8,255, 0,0,0,0, 145,162,7,255, 40,72,0,255, 119,131,15,255, 40,72,0,255, 160,184,0,255, 65,109,10,255, 0,0,0,0, 130,144,13,255, 44,75,0,255, 122,136,14,255, 27,58,0,255, 137,154,9,255, 0,0,0,0, 150,169,3,255, 16,47,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,127,80,255, 64,51,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,124,61,255, 118,87,41,255, 122,91,43,255, 148,115,56,255, 144,109,53,255, 144,109,53,255, 144,109,53,255, 148,115,56,255, 122,91,43,255, 148,115,56,255, 148,115,56,255, 148,115,56,255, 144,109,53,255, 144,109,53,255, 118,87,41,255, 87,60,27,255, 187,187,187,255, 191,191,191,255, 192,192,192,255, 200,200,200,255, 198,198,198,255, 198,198,198,255, 198,198,198,255, 199,199,199,255, 191,191,191,255, 199,199,199,255, 199,199,199,255, 197,197,197,255, 191,191,191,255, 188,188,188,255, 178,178,178,255, 156,156,156,255, 0,0,0,0, 0,0,0,0, 100,79,42,255, 72,55,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,70,37,255, 68,51,27,255, 0,0,0,0, 0,0,0,0, 87,60,27,255, 118,87,41,255, 103,74,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,115,56,255, 122,91,43,255, 137,104,50,255, 103,74,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 144,109,53,255, 118,87,41,255, 87,60,27,255, 0,0,0,0, 0,0,0,0, 111,110,110,255, 86,78,71,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 163,164,164,255, 107,106,105,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 101,104,103,255, 0,0,0,0, 0,0,0,0, 91,50,17,255, 71,38,12,255, 69,37,12,255, 102,55,20,255, 80,44,14,255, 63,33,10,255, 62,33,10,255, 75,41,14,255, 44,44,44,255, 75,41,14,255, 45,22,7,255, 96,52,18,255, 65,35,11,255, 102,55,20,255, 69,37,12,255, 53,26,8,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 127,85,51,255, 85,85,85,255, 127,85,51,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,173,23,255, 7,114,7,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,194,16,255, 21,148,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,182,10,255, 15,127,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,180,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 68,157,17,255, 18,123,10,255, 0,206,7,255, 0,0,0,0, 6,82,0,255, 73,181,11,255, 16,117,8,255, 0,134,13,255, 0,0,0,0, 73,185,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,149,5,255, 0,0,0,0, 83,190,8,255, 20,113,7,255, 65,131,17,255, 13,97,2,255, 0,0,0,0, 109,145,12,255, 25,69,0,255, 75,154,17,255, 21,117,8,255, 71,148,18,255, 0,0,0,0, 0,142,5,255, 0,0,0,0, 40,167,23,255, 89,177,12,255, 19,100,3,255, 135,171,3,255, 37,78,0,255, 88,107,15,255, 59,117,13,255, 0,0,0,0, 117,146,12,255, 55,108,10,255, 116,144,13,255, 64,124,15,255, 122,151,11,255, 0,0,0,0, 127,159,9,255, 21,107,5,255, 0,0,0,0, 147,173,1,255, 46,89,3,255, 130,153,11,255, 45,84,2,255, 117,138,14,255, 40,75,0,255, 0,0,0,0, 116,136,14,255, 36,72,0,255, 118,140,14,255, 27,62,0,255, 116,136,14,255, 0,0,0,0, 143,171,2,255, 48,91,4,255, 0,0,0,0, 136,151,12,255, 51,88,3,255, 123,138,14,255, 17,49,0,255, 135,149,12,255, 67,113,11,255, 0,0,0,0, 105,117,16,255, 32,66,0,255, 123,138,14,255, 25,55,0,255, 110,123,16,255, 0,0,0,0, 137,154,10,255, 53,94,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 151,119,72,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 145,109,56,255, 167,138,73,255, 167,138,73,255, 160,131,64,255, 167,138,73,255, 160,131,64,255, 137,104,50,255, 160,131,64,255, 160,131,64,255, 160,131,64,255, 165,136,69,255, 148,115,56,255, 145,109,56,255, 117,70,34,255, 195,195,195,255, 199,199,199,255, 198,198,198,255, 207,207,207,255, 207,207,207,255, 204,204,204,255, 207,207,207,255, 204,204,204,255, 195,195,195,255, 201,201,201,255, 200,200,200,255, 196,196,196,255, 193,193,193,255, 184,184,184,255, 183,183,183,255, 161,161,161,255, 0,0,0,0, 0,0,0,0, 172,136,82,255, 105,81,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,128,74,255, 72,55,29,255, 0,0,0,0, 0,0,0,0, 117,70,34,255, 145,109,56,255, 130,89,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,131,64,255, 145,109,56,255, 145,109,56,255, 120,83,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,115,56,255, 145,109,56,255, 117,70,34,255, 0,0,0,0, 0,0,0,0, 110,109,109,255, 80,79,78,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 132,122,111,255, 126,116,107,255, 134,123,113,255, 164,163,162,255, 174,174,175,255, 92,93,92,255, 0,0,0,0, 0,0,0,0, 75,40,12,255, 54,26,8,255, 71,38,12,255, 104,56,20,255, 82,45,15,255, 65,35,11,255, 47,23,7,255, 96,52,18,255, 63,33,10,255, 64,33,10,255, 64,34,10,255, 81,44,15,255, 67,36,11,255, 104,56,20,255, 107,58,21,255, 110,60,21,255, 99,63,36,255, 69,41,21,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 99,63,36,255, 99,63,36,255, 99,63,36,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 159,107,66,255, 159,107,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,229,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,218,11,255, 0,0,0,0, 0,0,0,0, 0,203,14,255, 0,0,0,0, 66,175,13,255, 10,111,6,255, 0,0,0,0, 0,0,0,0, 0,174,17,255, 0,0,0,0, 11,114,7,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 74,194,6,255, 6,81,0,255, 70,166,15,255, 25,147,17,255, 0,0,0,0, 126,192,0,255, 12,110,6,255, 69,163,15,255, 4,58,0,255, 71,172,14,255, 0,0,0,0, 0,0,0,0, 0,178,11,255, 0,0,0,0, 82,192,7,255, 10,77,0,255, 130,175,0,255, 23,120,9,255, 119,159,9,255, 7,50,0,255, 0,0,0,0, 100,130,15,255, 23,67,0,255, 115,151,12,255, 10,77,0,255, 75,156,17,255, 0,0,0,0, 71,148,18,255, 7,69,0,255, 0,0,0,0, 117,146,12,255, 21,106,5,255, 116,145,12,255, 49,97,6,255, 123,154,10,255, 4,19,0,255, 0,0,0,0, 101,124,15,255, 28,69,0,255, 101,124,15,255, 26,66,0,255, 117,146,12,255, 0,0,0,0, 138,173,1,255, 41,84,2,255, 0,0,0,0, 126,147,12,255, 56,100,7,255, 116,137,14,255, 41,77,0,255, 129,151,11,255, 24,58,0,255, 0,0,0,0, 102,121,16,255, 22,55,0,255, 105,123,16,255, 27,62,0,255, 100,117,16,255, 0,0,0,0, 102,121,16,255, 54,97,6,255, 0,0,0,0, 117,128,15,255, 44,75,0,255, 106,119,15,255, 27,58,0,255, 107,121,16,255, 40,72,0,255, 0,0,0,0, 105,117,16,255, 10,32,0,255, 107,121,16,255, 27,58,0,255, 105,118,15,255, 0,0,0,0, 107,121,16,255, 45,78,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,82,49,255, 61,48,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 175,148,77,255, 137,104,50,255, 103,74,34,255, 130,89,44,255, 130,89,44,255, 130,89,44,255, 130,89,44,255, 137,104,50,255, 130,89,44,255, 128,87,42,255, 128,87,42,255, 120,83,39,255, 120,83,39,255, 137,104,50,255, 137,104,50,255, 114,69,32,255, 194,194,194,255, 196,196,196,255, 184,184,184,255, 190,190,190,255, 192,192,192,255, 192,192,192,255, 192,192,192,255, 195,195,195,255, 189,189,189,255, 187,187,187,255, 182,182,182,255, 178,178,178,255, 177,177,177,255, 182,182,182,255, 182,182,182,255, 160,160,160,255, 0,0,0,0, 164,128,74,255, 100,79,42,255, 105,81,47,255, 142,115,60,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 164,128,74,255, 142,115,60,255, 92,72,37,255, 164,128,74,255, 0,0,0,0, 114,69,32,255, 137,104,50,255, 122,91,43,255, 167,138,73,255, 167,138,73,255, 167,138,73,255, 160,131,64,255, 137,104,50,255, 122,91,43,255, 145,109,56,255, 165,136,69,255, 160,131,64,255, 160,131,64,255, 160,131,64,255, 137,104,50,255, 114,69,32,255, 0,0,0,0, 0,0,0,0, 119,109,100,255, 73,70,73,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,146,149,255, 92,93,91,255, 89,89,90,255, 77,78,77,255, 90,90,89,255, 162,145,129,255, 96,96,98,255, 0,0,0,0, 0,0,0,0, 77,41,13,255, 91,50,17,255, 73,39,12,255, 87,47,16,255, 64,38,19,255, 68,36,11,255, 67,35,11,255, 100,54,19,255, 100,54,19,255, 66,35,11,255, 49,24,7,255, 84,45,15,255, 69,37,12,255, 52,26,8,255, 90,48,16,255, 91,50,17,255, 99,63,36,255, 127,85,51,255, 99,63,36,255, 127,85,51,255, 94,66,46,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 127,85,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,180,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,186,9,255, 24,172,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,203,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,140,18,255, 26,160,21,255, 0,162,18,255, 0,0,0,0, 20,143,16,255, 63,157,17,255, 7,103,4,255, 0,148,17,255, 0,0,0,0, 63,157,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,11,255, 0,0,0,0, 73,177,12,255, 18,124,10,255, 63,146,17,255, 6,91,0,255, 0,0,0,0, 120,175,0,255, 54,124,15,255, 64,148,18,255, 6,89,0,255, 74,194,6,255, 0,0,0,0, 0,148,12,255, 0,0,0,0, 15,113,7,255, 75,154,17,255, 23,121,9,255, 116,154,9,255, 47,102,8,255, 106,140,14,255, 37,84,2,255, 0,0,0,0, 90,118,15,255, 11,49,0,255, 114,149,11,255, 32,75,0,255, 104,136,14,255, 0,0,0,0, 95,123,16,255, 8,70,0,255, 0,0,0,0, 107,131,15,255, 28,69,0,255, 107,132,14,255, 26,67,0,255, 100,123,16,255, 37,78,0,255, 0,0,0,0, 96,119,15,255, 6,41,0,255, 95,117,16,255, 6,41,0,255, 119,147,12,255, 0,0,0,0, 96,119,15,255, 51,100,7,255, 0,0,0,0, 115,135,15,255, 31,69,0,255, 98,114,15,255, 22,56,0,255, 106,125,16,255, 40,75,0,255, 0,0,0,0, 105,123,16,255, 8,37,0,255, 67,79,13,255, 8,40,0,255, 105,122,16,255, 0,0,0,0, 102,121,16,255, 8,37,0,255, 0,0,0,0, 111,125,16,255, 15,46,0,255, 124,140,13,255, 10,35,0,255, 103,114,15,255, 10,37,0,255, 0,0,0,0, 99,108,15,255, 10,32,0,255, 96,106,16,255, 10,37,0,255, 93,105,16,255, 0,0,0,0, 92,103,15,255, 10,37,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,120,73,255, 59,46,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 120,83,39,255, 137,104,50,255, 137,104,50,255, 145,109,56,255, 145,109,56,255, 160,131,64,255, 130,89,44,255, 145,109,56,255, 137,104,50,255, 67,67,67,255, 46,46,46,255, 24,24,24,255, 117,70,34,255, 117,70,34,255, 194,194,194,255, 197,197,197,255, 187,187,187,255, 192,192,192,255, 193,193,193,255, 196,196,196,255, 195,195,195,255, 200,200,200,255, 187,187,187,255, 193,193,193,255, 185,185,185,255, 182,182,182,255, 184,184,184,255, 167,167,167,255, 167,167,167,255, 158,158,158,255, 0,0,0,0, 100,79,42,255, 142,115,60,255, 92,72,37,255, 91,70,37,255, 91,70,37,255, 109,83,47,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 91,70,37,255, 172,136,82,255, 105,81,47,255, 100,79,42,255, 0,0,0,0, 117,70,34,255, 145,109,56,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 145,109,56,255, 145,109,56,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 137,104,50,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 117,70,34,255, 0,0,0,0, 0,0,0,0, 110,111,110,255, 76,76,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,121,112,255, 94,92,91,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,120,121,255, 92,91,94,255, 0,0,0,0, 0,0,0,0, 96,53,17,255, 76,41,13,255, 55,27,8,255, 110,60,21,255, 108,58,21,255, 70,38,12,255, 51,25,8,255, 69,36,12,255, 104,56,20,255, 69,36,12,255, 51,25,8,255, 86,47,15,255, 71,38,12,255, 54,26,8,255, 113,61,22,255, 94,51,17,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 99,63,36,255, 159,107,66,255, 99,63,36,255, 69,41,21,255, 127,85,51,255, 99,63,36,255, 69,41,21,255, 159,107,66,255, 127,85,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,173,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,215,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,179,11,255, 7,114,7,255, 0,0,0,0, 0,0,0,0, 0,229,16,255, 0,0,0,0, 16,143,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,162,16,255, 2,62,0,255, 57,138,18,255, 4,93,1,255, 0,0,0,0, 93,135,15,255, 3,81,0,255, 63,158,16,255, 3,75,0,255, 55,129,18,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,180,11,255, 17,120,9,255, 102,145,12,255, 11,106,5,255, 109,153,11,255, 4,67,0,255, 0,0,0,0, 100,140,13,255, 41,102,8,255, 114,165,5,255, 4,70,0,255, 71,172,14,255, 0,0,0,0, 61,138,18,255, 6,75,0,255, 0,0,0,0, 100,129,15,255, 10,77,0,255, 98,126,15,255, 33,78,0,255, 106,140,14,255, 21,62,0,255, 0,0,0,0, 85,110,16,255, 4,33,0,255, 100,130,15,255, 28,72,0,255, 98,126,15,255, 0,0,0,0, 101,132,14,255, 4,40,0,255, 0,0,0,0, 95,118,15,255, 13,49,0,255, 79,96,15,255, 15,50,0,255, 77,93,14,255, 6,40,0,255, 0,0,0,0, 82,100,15,255, 6,35,0,255, 82,100,15,255, 6,32,0,255, 105,128,15,255, 0,0,0,0, 93,115,16,255, 6,35,0,255, 0,0,0,0, 89,105,16,255, 22,55,0,255, 93,107,15,255, 5,29,0,255, 96,112,16,255, 9,43,0,255, 0,0,0,0, 75,87,14,255, 8,40,0,255, 93,107,15,255, 0,0,0,255, 88,103,15,255, 0,0,0,0, 105,123,16,255, 8,37,0,255, 0,0,0,0, 105,118,15,255, 11,43,0,255, 92,103,15,255, 30,62,0,255, 102,113,16,255, 6,29,0,255, 0,0,0,0, 89,99,15,255, 6,21,0,255, 90,101,15,255, 6,18,0,255, 90,100,15,255, 0,0,0,0, 99,108,15,255, 6,15,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,82,49,255, 55,42,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,53,53,255, 122,91,43,255, 103,74,34,255, 125,92,45,255, 118,87,41,255, 118,87,41,255, 125,92,45,255, 144,109,53,255, 103,74,34,255, 122,91,43,255, 122,91,43,255, 24,24,24,255, 82,57,25,255, 144,109,53,255, 82,57,25,255, 87,60,27,255, 79,79,79,255, 186,186,186,255, 179,179,179,255, 184,184,184,255, 179,179,179,255, 177,177,177,255, 176,176,176,255, 179,179,179,255, 167,167,167,255, 176,176,176,255, 175,175,175,255, 176,176,176,255, 184,184,184,255, 179,179,179,255, 160,160,160,255, 159,159,159,255, 0,0,0,0, 0,0,0,0, 100,79,42,255, 76,57,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,50,27,255, 68,51,27,255, 0,0,0,0, 0,0,0,0, 87,60,27,255, 87,60,27,255, 87,60,27,255, 91,60,28,255, 82,57,25,255, 82,57,25,255, 91,60,28,255, 82,57,25,255, 87,60,27,255, 87,60,27,255, 87,60,27,255, 82,57,25,255, 73,53,24,255, 82,57,25,255, 82,57,25,255, 87,60,27,255, 0,0,0,0, 0,0,0,0, 113,114,113,255, 77,77,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,99,98,255, 63,63,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,99,98,255, 69,69,66,255, 0,0,0,0, 0,0,0,0, 99,54,18,255, 96,53,17,255, 56,27,8,255, 114,61,22,255, 91,50,17,255, 90,48,16,255, 72,38,12,255, 108,58,21,255, 88,48,16,255, 71,38,12,255, 72,38,12,255, 110,60,21,255, 91,50,17,255, 75,40,12,255, 116,63,23,255, 58,28,8,255, 127,85,51,255, 127,85,51,255, 69,41,21,255, 159,107,66,255, 127,85,51,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 99,63,36,255, 159,107,66,255, 127,85,51,255, 99,63,36,255, 159,107,66,255, 69,41,21,255, 0,0,0,0, 0,0,0,0, 0,188,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 5,106,5,255, 0,0,0,0, 0,0,0,0, 0,198,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,206,0,255, 19,155,19,255, 0,149,22,255, 0,0,0,0, 0,0,0,0, 59,167,14,255, 5,107,5,255, 0,187,22,255, 0,0,0,0, 58,154,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,155,17,255, 0,0,0,0, 98,144,13,255, 3,87,0,255, 90,130,15,255, 2,58,0,255, 0,0,0,0, 107,160,7,255, 11,55,0,255, 87,125,16,255, 3,82,0,255, 97,143,13,255, 0,0,0,0, 0,137,16,255, 0,0,0,0, 0,0,0,0, 59,131,17,255, 11,108,5,255, 102,145,12,255, 20,67,0,255, 102,144,13,255, 29,77,0,255, 0,0,0,0, 102,145,12,255, 18,62,0,255, 94,130,15,255, 34,89,3,255, 91,125,16,255, 0,0,0,0, 93,128,15,255, 4,58,0,255, 0,0,0,0, 96,124,15,255, 10,47,0,255, 92,121,16,255, 9,45,0,255, 99,128,15,255, 21,62,0,255, 0,0,0,0, 99,128,15,255, 3,25,0,255, 82,106,16,255, 11,49,0,255, 85,110,16,255, 0,0,0,0, 86,112,16,255, 12,50,0,255, 0,0,0,0, 84,103,15,255, 6,33,0,255, 82,101,15,255, 0,6,0,255, 74,90,15,255, 0,3,0,255, 0,0,0,0, 71,87,14,255, 2,12,0,255, 66,82,14,255, 2,12,0,255, 85,105,16,255, 0,0,0,0, 107,132,14,255, 6,31,0,255, 0,0,0,0, 94,108,15,255, 5,18,0,255, 100,117,16,255, 5,19,0,255, 98,115,16,255, 5,26,0,255, 0,0,0,0, 97,113,16,255, 0,0,0,255, 68,81,13,255, 5,19,0,255, 100,117,16,255, 0,0,0,0, 85,99,15,255, 8,40,0,255, 0,0,0,0, 86,94,15,255, 10,33,0,255, 105,118,15,255, 6,15,0,255, 85,93,14,255, 6,27,0,255, 0,0,0,0, 85,93,14,255, 1,10,0,255, 67,75,13,255, 4,12,0,255, 100,110,16,255, 0,0,0,0, 79,86,14,255, 6,21,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 111,111,111,255, 137,104,50,255, 120,83,39,255, 137,104,50,255, 137,104,50,255, 145,109,56,255, 145,109,56,255, 165,136,69,255, 120,83,39,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 167,138,73,255, 145,109,56,255, 106,67,31,255, 129,129,129,255, 193,193,193,255, 186,186,186,255, 192,192,192,255, 193,193,193,255, 195,195,195,255, 195,195,195,255, 203,203,203,255, 187,187,187,255, 195,195,195,255, 194,194,194,255, 192,192,192,255, 191,191,191,255, 199,199,199,255, 188,188,188,255, 170,170,170,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,159,159,255, 152,152,152,255, 124,140,94,255, 122,138,93,255, 105,126,65,255, 107,127,67,255, 106,127,67,255, 148,148,148,255, 148,148,148,255, 148,148,148,255, 148,148,148,255, 154,154,154,255, 141,141,141,255, 109,123,84,255, 109,122,84,255, 96,96,96,255, 159,159,159,255, 152,152,152,255, 160,160,160,255, 156,156,156,255, 144,144,144,255, 156,156,156,255, 113,113,113,255, 112,112,112,255, 148,148,148,255, 148,148,148,255, 148,148,148,255, 154,154,154,255, 141,141,141,255, 143,143,143,255, 142,142,142,255, 96,96,96,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 194,115,115,255, 166,89,89,255, 166,89,89,255, 154,83,83,255, 194,134,105,255, 115,60,60,255, 82,40,40,255, 78,39,39,255, 78,39,39,255, 131,13,13,255, 194,115,115,255, 166,89,89,255, 116,61,61,255, 78,39,39,255, 169,92,92,255, 194,115,115,255, 95,73,59,255, 98,75,61,255, 59,41,30,255, 79,59,46,255, 60,41,30,255, 65,46,35,255, 56,38,27,255, 50,33,22,255, 71,52,40,255, 72,52,40,255, 72,52,40,255, 101,80,68,255, 69,49,37,255, 56,38,27,255, 49,32,22,255, 85,65,53,255, 255,188,94,255, 122,91,44,255, 79,56,16,255, 79,56,16,255, 79,56,16,255, 79,56,16,255, 255,188,94,255, 122,91,44,255, 114,111,73,255, 114,111,73,255, 114,111,73,255, 255,188,94,255, 255,188,94,255, 192,143,70,255, 122,91,44,255, 114,111,73,255, 205,205,205,255, 220,220,220,255, 113,99,58,255, 124,99,59,255, 113,99,58,255, 105,77,52,255, 105,77,52,255, 205,205,205,255, 205,205,205,255, 105,77,52,255, 124,99,59,255, 124,99,59,255, 113,99,58,255, 96,110,62,255, 220,220,220,255, 205,205,205,255, 205,205,205,255, 220,220,220,255, 113,99,58,255, 124,99,59,255, 113,99,58,255, 105,77,52,255, 105,77,52,255, 205,205,205,255, 205,205,205,255, 105,77,52,255, 124,99,59,255, 124,99,59,255, 113,99,58,255, 119,96,61,255, 220,220,220,255, 205,205,205,255, 205,205,205,255, 165,165,165,255, 117,92,60,255, 124,94,59,255, 113,94,62,255, 119,92,53,255, 113,94,62,255, 205,205,205,255, 165,165,165,255, 108,88,59,255, 111,100,50,255, 119,96,61,255, 122,94,51,255, 108,88,59,255, 165,165,165,255, 205,205,205,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 143,107,53,255, 148,115,56,255, 165,136,69,255, 165,136,69,255, 160,131,64,255, 160,131,64,255, 137,104,50,255, 160,131,64,255, 160,131,64,255, 165,136,69,255, 160,131,64,255, 165,136,69,255, 145,109,56,255, 106,67,31,255, 208,208,208,255, 198,198,198,255, 197,197,197,255, 199,199,199,255, 206,206,206,255, 206,206,206,255, 204,204,204,255, 203,203,203,255, 196,196,196,255, 203,203,203,255, 201,201,201,255, 200,200,200,255, 194,194,194,255, 193,193,193,255, 183,183,183,255, 165,165,165,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 156,156,156,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 101,114,76,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 94,112,59,255, 92,105,67,255, 156,156,156,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 121,121,121,255, 107,107,107,255, 107,107,107,255, 97,97,97,255, 100,100,100,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 123,123,123,255, 97,97,97,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 194,115,115,255, 166,89,89,255, 69,7,7,255, 136,79,79,255, 29,10,10,255, 78,39,39,255, 194,115,115,255, 131,13,13,255, 78,39,39,255, 90,6,6,255, 146,86,86,255, 90,6,6,255, 104,8,8,255, 109,47,35,255, 98,50,50,255, 169,99,99,255, 68,49,37,255, 84,65,51,255, 108,88,74,255, 98,75,61,255, 111,87,73,255, 98,75,61,255, 121,97,82,255, 81,62,49,255, 59,42,30,255, 57,38,28,255, 103,79,65,255, 103,79,65,255, 49,32,22,255, 50,33,22,255, 91,73,62,255, 77,59,48,255, 122,91,44,255, 255,255,255,255, 192,143,70,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 192,143,70,255, 255,255,255,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 122,91,44,255, 249,212,156,255, 255,255,255,255, 192,143,70,255, 79,56,16,255, 220,220,220,255, 239,239,239,255, 180,144,90,255, 111,171,100,255, 125,132,76,255, 180,144,90,255, 110,102,59,255, 218,218,218,255, 219,219,219,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 115,127,70,255, 141,199,122,255, 239,239,239,255, 220,220,220,255, 220,220,220,255, 239,239,239,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 116,90,59,255, 218,218,218,255, 219,219,219,255, 188,152,98,255, 159,132,77,255, 180,144,90,255, 159,132,77,255, 180,144,90,255, 239,239,239,255, 220,220,220,255, 205,205,205,255, 134,134,134,255, 180,144,90,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 205,205,205,255, 134,134,134,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 134,134,134,255, 205,205,205,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 140,140,140,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 143,107,53,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 143,107,53,255, 122,91,43,255, 145,109,56,255, 145,109,56,255, 106,67,31,255, 209,209,209,255, 199,199,199,255, 197,197,197,255, 197,197,197,255, 196,196,196,255, 196,196,196,255, 197,197,197,255, 197,197,197,255, 196,196,196,255, 191,191,191,255, 188,188,188,255, 185,185,185,255, 177,177,177,255, 182,182,182,255, 180,180,180,255, 162,162,162,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 144,144,144,255, 121,121,121,255, 101,114,76,255, 121,121,121,255, 136,136,136,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 112,127,82,255, 136,136,136,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 99,112,73,255, 82,97,55,255, 81,95,53,255, 144,144,144,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 107,107,107,255, 102,102,102,255, 143,143,143,255, 147,147,147,255, 129,129,129,255, 107,107,107,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 101,101,101,255, 98,98,98,255, 93,93,93,255, 208,124,20,255, 227,166,75,255, 227,166,75,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,166,75,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 91,50,50,255, 115,60,60,255, 136,79,79,255, 40,19,19,255, 77,37,37,255, 131,13,13,255, 194,115,115,255, 94,6,6,255, 36,14,14,255, 23,10,10,255, 126,66,66,255, 90,6,6,255, 41,17,17,255, 95,54,54,255, 60,8,8,255, 141,82,82,255, 103,83,70,255, 72,52,40,255, 102,79,65,255, 50,33,22,255, 56,38,27,255, 98,75,61,255, 56,38,27,255, 95,72,58,255, 92,73,61,255, 50,33,22,255, 129,106,91,255, 50,33,22,255, 68,49,37,255, 65,46,35,255, 83,65,54,255, 64,46,35,255, 122,91,44,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 122,91,44,255, 114,111,73,255, 79,56,16,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 79,56,16,255, 192,143,70,255, 192,143,70,255, 79,56,16,255, 114,111,73,255, 105,86,47,255, 188,152,98,255, 140,198,121,255, 98,155,86,255, 115,127,70,255, 125,132,76,255, 139,140,94,255, 166,194,138,255, 129,136,80,255, 159,132,77,255, 188,152,98,255, 125,132,76,255, 174,199,143,255, 124,192,112,255, 129,136,80,255, 113,99,58,255, 105,86,47,255, 188,152,98,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 113,99,58,255, 150,124,73,255, 188,152,98,255, 159,132,77,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 113,99,58,255, 165,165,165,255, 118,118,118,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 165,165,165,255, 118,118,118,255, 180,144,90,255, 188,152,98,255, 180,144,90,255, 188,152,98,255, 159,132,77,255, 118,118,118,255, 165,165,165,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,186,186,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 156,119,59,255, 118,87,41,255, 99,71,33,255, 103,74,34,255, 103,74,34,255, 103,74,34,255, 103,74,34,255, 122,91,43,255, 103,74,34,255, 103,74,34,255, 99,71,33,255, 99,71,33,255, 99,71,33,255, 118,87,41,255, 122,91,43,255, 87,60,27,255, 199,199,199,255, 190,190,190,255, 185,185,185,255, 186,186,186,255, 185,185,185,255, 184,184,184,255, 183,183,183,255, 187,187,187,255, 177,177,177,255, 172,172,172,255, 169,169,169,255, 169,169,169,255, 170,170,170,255, 175,175,175,255, 175,175,175,255, 159,159,159,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 151,151,151,255, 115,115,115,255, 103,117,78,255, 136,136,136,255, 127,127,127,255, 112,127,82,255, 109,125,79,255, 109,125,79,255, 109,125,79,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 103,117,78,255, 97,107,80,255, 97,110,71,255, 91,104,66,255, 100,100,100,255, 104,104,104,255, 127,127,127,255, 107,107,107,255, 104,104,104,255, 104,104,104,255, 145,145,145,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 104,104,104,255, 106,106,106,255, 132,132,132,255, 133,133,133,255, 95,95,95,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 119,68,68,255, 70,38,38,255, 23,9,9,255, 95,54,54,255, 172,92,92,255, 107,61,61,255, 160,94,94,255, 175,114,89,255, 50,25,25,255, 75,36,36,255, 41,17,17,255, 57,29,29,255, 78,39,39,255, 184,109,109,255, 137,15,15,255, 93,52,52,255, 68,49,37,255, 56,38,27,255, 121,97,83,255, 50,33,22,255, 121,97,83,255, 102,79,64,255, 50,33,22,255, 92,73,61,255, 71,52,40,255, 59,41,30,255, 72,52,40,255, 72,52,40,255, 69,49,37,255, 69,49,37,255, 79,59,47,255, 145,121,106,255, 114,111,73,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 122,91,44,255, 122,91,44,255, 114,111,73,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 122,91,44,255, 114,111,73,255, 79,56,16,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 105,77,52,255, 138,138,93,255, 138,138,93,255, 139,139,94,255, 139,139,94,255, 119,96,58,255, 117,100,59,255, 123,142,83,255, 129,144,87,255, 120,94,59,255, 116,99,58,255, 125,140,85,255, 138,138,93,255, 115,131,76,255, 130,144,87,255, 105,77,52,255, 105,77,52,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 115,94,57,255, 116,90,59,255, 105,84,51,255, 105,84,51,255, 116,90,59,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 115,94,57,255, 105,77,52,255, 145,145,145,255, 112,112,112,255, 108,88,59,255, 110,80,46,255, 118,95,51,255, 105,86,47,255, 110,80,46,255, 145,145,145,255, 112,112,112,255, 115,94,59,255, 105,77,52,255, 107,84,56,255, 106,85,51,255, 119,94,62,255, 112,112,112,255, 145,145,145,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 135,135,135,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 135,135,135,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 151,151,151,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 137,104,50,255, 120,83,39,255, 137,104,50,255, 137,104,50,255, 145,109,56,255, 145,109,56,255, 160,131,64,255, 130,89,44,255, 137,104,50,255, 137,104,50,255, 122,91,43,255, 143,107,53,255, 165,136,69,255, 143,107,53,255, 117,70,34,255, 206,206,206,255, 196,196,196,255, 189,189,189,255, 196,196,196,255, 195,195,195,255, 196,196,196,255, 194,194,194,255, 195,195,195,255, 181,181,181,255, 183,183,183,255, 182,182,182,255, 177,177,177,255, 182,182,182,255, 191,191,191,255, 181,181,181,255, 163,163,163,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,148,148,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 109,125,79,255, 109,125,79,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 115,115,115,255, 94,103,77,255, 97,107,80,255, 116,116,116,255, 93,93,93,255, 148,148,148,255, 143,143,143,255, 102,102,102,255, 102,102,102,255, 145,145,145,255, 145,145,145,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 100,100,100,255, 147,147,147,255, 136,136,136,255, 116,116,116,255, 93,93,93,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,166,75,255, 208,124,20,255, 160,90,11,255, 225,165,129,255, 194,115,115,255, 141,80,62,255, 95,54,54,255, 194,115,115,255, 143,84,84,255, 143,84,84,255, 33,9,9,255, 95,54,54,255, 151,81,81,255, 146,78,78,255, 168,99,99,255, 68,32,32,255, 170,109,85,255, 126,13,13,255, 95,54,54,255, 82,61,50,255, 71,52,40,255, 108,88,75,255, 119,94,80,255, 56,38,27,255, 50,33,22,255, 73,55,44,255, 133,109,94,255, 71,52,40,255, 99,80,67,255, 95,76,63,255, 121,97,82,255, 130,106,91,255, 68,49,37,255, 82,62,50,255, 95,76,63,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 192,143,70,255, 249,212,156,255, 249,212,156,255, 192,143,70,255, 79,56,16,255, 255,188,94,255, 192,143,70,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 255,188,94,255, 255,188,94,255, 113,99,58,255, 159,132,77,255, 115,127,70,255, 158,206,143,255, 157,209,142,255, 107,169,97,255, 123,159,94,255, 115,127,70,255, 104,143,84,255, 116,154,88,255, 169,196,139,255, 111,171,100,255, 107,169,97,255, 125,132,76,255, 125,132,76,255, 119,96,61,255, 113,99,58,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 159,132,77,255, 116,90,59,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 119,96,61,255, 50,50,50,255, 54,54,54,255, 39,39,39,255, 45,45,45,255, 53,53,53,255, 56,56,56,255, 59,59,59,255, 36,36,36,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 48,48,48,255, 51,51,51,255, 53,53,53,255, 53,53,53,255, 50,50,50,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 105,105,105,255, 143,143,143,255, 123,123,123,255, 123,123,123,255, 91,91,91,255, 105,105,105,255, 137,137,137,255, 149,149,149,255, 148,148,148,255, 115,115,115,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 105,105,105,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 142,142,142,255, 127,127,127,255, 121,121,121,255, 127,127,127,255, 115,115,115,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 182,182,182,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,143,71,255, 137,104,50,255, 103,74,34,255, 143,107,53,255, 143,107,53,255, 143,107,53,255, 145,109,56,255, 160,131,64,255, 128,87,42,255, 143,107,53,255, 143,107,53,255, 143,107,53,255, 137,104,50,255, 160,131,64,255, 137,104,50,255, 106,67,31,255, 202,202,202,255, 193,193,193,255, 183,183,183,255, 194,194,194,255, 194,194,194,255, 193,193,193,255, 193,193,193,255, 193,193,193,255, 177,177,177,255, 180,180,180,255, 179,179,179,255, 178,178,178,255, 177,177,177,255, 185,185,185,255, 178,178,178,255, 163,163,163,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 253,0,0,255, 253,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 147,147,147,255, 101,114,76,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 115,115,115,255, 127,127,127,255, 92,101,74,255, 121,121,121,255, 106,106,106,255, 97,97,97,255, 147,147,147,255, 121,121,121,255, 102,102,102,255, 145,145,145,255, 127,127,127,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 115,115,115,255, 104,104,104,255, 121,121,121,255, 121,121,121,255, 106,106,106,255, 97,97,97,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 160,90,11,255, 61,44,0,255, 61,44,0,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 79,7,7,255, 143,84,84,255, 112,58,58,255, 95,54,54,255, 108,56,56,255, 99,7,7,255, 136,79,79,255, 50,25,25,255, 184,109,109,255, 217,130,130,255, 129,74,74,255, 146,86,86,255, 149,87,68,255, 93,52,52,255, 20,10,10,255, 43,18,18,255, 71,52,40,255, 56,38,27,255, 56,38,27,255, 103,79,65,255, 50,33,22,255, 81,62,51,255, 53,36,25,255, 105,82,67,255, 59,41,30,255, 70,52,41,255, 95,73,59,255, 53,35,25,255, 106,82,67,255, 114,90,75,255, 140,117,102,255, 65,46,35,255, 79,56,16,255, 122,91,44,255, 122,91,44,255, 249,212,156,255, 255,255,255,255, 255,255,255,255, 249,212,156,255, 122,91,44,255, 192,143,70,255, 255,255,255,255, 79,56,16,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 255,255,255,255, 249,212,156,255, 124,99,59,255, 159,132,77,255, 125,132,76,255, 141,199,122,255, 124,192,112,255, 107,169,97,255, 116,154,88,255, 115,127,70,255, 157,187,134,255, 141,199,122,255, 125,132,76,255, 125,132,76,255, 115,127,70,255, 159,132,77,255, 159,132,77,255, 105,77,52,255, 124,99,59,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 113,99,58,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 105,77,52,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 157,157,157,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 111,111,111,255, 124,124,124,255, 125,125,125,255, 120,120,120,255, 88,88,88,255, 145,145,145,255, 145,145,145,255, 124,124,124,255, 131,131,131,255, 123,123,123,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 111,111,111,255, 127,127,127,255, 176,176,176,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 163,163,163,255, 121,121,121,255, 123,123,123,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 182,182,182,255, 144,144,144,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,125,125,255, 112,112,112,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 130,89,44,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 160,131,64,255, 120,83,39,255, 137,104,50,255, 122,91,43,255, 145,109,56,255, 145,109,56,255, 167,138,73,255, 145,109,56,255, 117,70,34,255, 199,199,199,255, 186,186,186,255, 178,178,178,255, 181,181,181,255, 179,179,179,255, 180,180,180,255, 183,183,183,255, 188,188,188,255, 173,173,173,255, 179,179,179,255, 173,173,173,255, 179,179,179,255, 177,177,177,255, 186,186,186,255, 179,179,179,255, 160,160,160,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 253,0,0,255, 255,216,0,255, 255,143,0,255, 253,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 141,141,141,255, 114,114,114,255, 120,120,120,255, 116,116,116,255, 83,97,56,255, 83,97,56,255, 83,97,56,255, 110,110,110,255, 99,112,74,255, 99,112,74,255, 112,112,112,255, 101,101,101,255, 108,108,108,255, 116,116,116,255, 114,114,114,255, 97,97,97,255, 128,128,128,255, 94,94,94,255, 101,101,101,255, 143,143,143,255, 110,110,110,255, 94,94,94,255, 94,94,94,255, 94,94,94,255, 134,134,134,255, 116,116,116,255, 98,98,98,255, 94,94,94,255, 140,140,140,255, 116,116,116,255, 114,114,114,255, 97,97,97,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 61,44,0,255, 227,170,0,255, 183,134,0,255, 61,44,0,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 208,124,20,255, 90,6,6,255, 136,79,79,255, 115,60,60,255, 95,54,54,255, 91,46,46,255, 28,9,9,255, 50,25,25,255, 82,40,40,255, 100,56,56,255, 103,8,8,255, 176,103,103,255, 136,79,79,255, 101,52,52,255, 136,79,79,255, 89,6,6,255, 55,8,8,255, 50,33,22,255, 106,82,67,255, 56,38,27,255, 68,49,37,255, 133,109,94,255, 106,82,67,255, 111,87,72,255, 56,39,28,255, 70,53,41,255, 60,41,30,255, 132,109,95,255, 50,33,22,255, 102,79,65,255, 106,82,68,255, 70,52,40,255, 105,82,67,255, 114,111,73,255, 79,56,16,255, 79,56,16,255, 192,143,70,255, 249,212,156,255, 249,212,156,255, 255,188,94,255, 79,56,16,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 122,91,44,255, 192,143,70,255, 249,212,156,255, 79,56,16,255, 124,99,59,255, 113,99,58,255, 113,99,58,255, 108,100,57,255, 108,100,57,255, 114,118,68,255, 116,120,70,255, 109,103,59,255, 130,144,87,255, 114,120,70,255, 114,120,70,255, 112,104,59,255, 124,99,59,255, 113,99,58,255, 105,77,52,255, 105,77,52,255, 124,99,59,255, 113,99,58,255, 113,99,58,255, 110,80,46,255, 110,80,46,255, 110,80,46,255, 124,99,59,255, 115,94,57,255, 115,94,57,255, 113,99,58,255, 113,99,58,255, 124,99,59,255, 124,99,59,255, 113,99,58,255, 105,77,52,255, 105,77,52,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 111,111,111,255, 116,116,116,255, 89,89,89,255, 104,104,104,255, 121,121,121,255, 113,113,113,255, 133,133,133,255, 143,143,143,255, 127,127,127,255, 130,130,130,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 111,111,111,255, 142,142,142,255, 163,163,163,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 168,168,168,255, 127,127,127,255, 130,130,130,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 0,0,0,0, 195,195,195,255, 144,144,144,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 128,128,128,255, 114,114,114,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,124,61,255, 122,91,43,255, 118,87,41,255, 144,109,53,255, 144,109,53,255, 144,109,53,255, 144,109,53,255, 148,115,56,255, 122,91,43,255, 148,115,56,255, 144,109,53,255, 144,109,53,255, 144,109,53,255, 144,109,53,255, 122,91,43,255, 87,60,27,255, 179,179,179,255, 168,168,168,255, 163,163,163,255, 168,168,168,255, 165,165,165,255, 164,164,164,255, 164,164,164,255, 166,166,166,255, 159,159,159,255, 168,168,168,255, 165,165,165,255, 164,164,164,255, 167,167,167,255, 167,167,167,255, 161,161,161,255, 138,138,138,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 253,0,0,255, 255,255,151,255, 255,255,255,255, 253,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 77,90,53,255, 81,95,53,255, 80,96,50,255, 90,108,55,255, 80,94,53,255, 93,93,93,255, 92,105,67,255, 98,98,98,255, 96,96,96,255, 92,105,66,255, 91,104,66,255, 91,104,65,255, 93,93,93,255, 91,91,91,255, 91,91,91,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 91,91,91,255, 93,93,93,255, 97,97,97,255, 98,98,98,255, 96,96,96,255, 96,96,96,255, 95,95,95,255, 93,93,93,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 61,44,0,255, 183,134,0,255, 227,170,0,255, 183,134,0,255, 61,44,0,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,166,75,255, 208,124,20,255, 115,60,60,255, 136,79,79,255, 41,19,19,255, 84,46,46,255, 159,85,85,255, 194,115,115,255, 78,39,39,255, 67,32,32,255, 97,55,55,255, 45,8,8,255, 50,25,25,255, 146,86,86,255, 90,6,6,255, 50,25,25,255, 64,7,7,255, 145,17,17,255, 101,84,72,255, 102,79,64,255, 106,82,67,255, 68,49,37,255, 72,52,40,255, 68,49,37,255, 50,33,22,255, 73,56,45,255, 85,65,52,255, 109,91,79,255, 103,79,65,255, 95,73,59,255, 102,79,65,255, 103,79,65,255, 56,38,27,255, 118,94,79,255, 114,111,73,255, 114,111,73,255, 114,111,73,255, 79,56,16,255, 122,91,44,255, 255,188,94,255, 79,56,16,255, 114,111,73,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 122,91,44,255, 114,111,73,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 205,205,205,255, 225,225,225,255, 159,132,77,255, 111,123,68,255, 103,140,80,255, 141,199,122,255, 145,195,125,255, 125,132,76,255, 125,132,76,255, 173,209,153,255, 156,208,141,255, 137,181,122,255, 125,132,76,255, 180,144,90,255, 239,239,239,255, 237,237,237,255, 205,205,205,255, 225,225,225,255, 159,132,77,255, 150,124,73,255, 110,80,46,255, 180,144,90,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 115,94,57,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 239,239,239,255, 237,237,237,255, 48,48,48,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 135,135,135,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 101,101,101,255, 140,140,140,255, 143,143,143,255, 105,105,105,255, 100,100,100,255, 106,106,106,255, 91,91,91,255, 88,88,88,255, 124,124,124,255, 135,135,135,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 101,101,101,255, 121,121,121,255, 168,168,168,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 176,176,176,255, 121,121,121,255, 135,135,135,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,255, 143,143,143,255, 200,200,200,255, 111,111,111,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,62,255, 105,84,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 122,91,43,255, 137,104,50,255, 145,109,56,255, 145,109,56,255, 143,107,53,255, 143,107,53,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 106,67,31,255, 173,173,173,255, 165,165,165,255, 164,164,164,255, 164,164,164,255, 162,162,162,255, 153,153,153,255, 155,155,155,255, 156,156,156,255, 155,155,155,255, 154,154,154,255, 154,154,154,255, 153,153,153,255, 153,153,153,255, 151,151,151,255, 151,151,151,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 253,0,0,255, 175,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,148,148,255, 97,118,57,255, 95,117,54,255, 106,127,67,255, 89,103,62,255, 89,103,62,255, 98,116,63,255, 95,95,95,255, 164,164,164,255, 105,115,88,255, 155,155,155,255, 141,141,141,255, 121,137,91,255, 122,138,93,255, 118,134,88,255, 156,156,156,255, 148,148,148,255, 113,113,113,255, 151,151,151,255, 151,151,151,255, 156,156,156,255, 156,156,156,255, 150,150,150,255, 95,95,95,255, 96,96,96,255, 157,157,157,255, 155,155,155,255, 109,109,109,255, 113,113,113,255, 156,156,156,255, 144,144,144,255, 156,156,156,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 61,44,0,255, 183,134,0,255, 227,170,0,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 112,58,58,255, 20,10,10,255, 95,54,54,255, 138,15,15,255, 131,13,13,255, 175,114,89,255, 158,97,75,255, 166,89,89,255, 182,107,107,255, 113,58,58,255, 81,40,40,255, 71,38,38,255, 47,21,21,255, 10,10,10,255, 217,130,130,255, 222,162,127,255, 106,89,77,255, 154,130,115,255, 118,94,79,255, 79,59,46,255, 90,70,57,255, 103,83,70,255, 72,52,40,255, 49,32,22,255, 69,49,37,255, 69,49,37,255, 103,79,65,255, 50,33,22,255, 50,33,22,255, 49,32,22,255, 98,75,61,255, 102,79,64,255, 255,188,94,255, 192,143,70,255, 122,91,44,255, 114,111,73,255, 79,56,16,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 255,188,94,255, 192,143,70,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 255,188,94,255, 205,205,205,255, 239,239,239,255, 180,144,90,255, 140,203,125,255, 119,190,109,255, 105,169,97,255, 132,199,116,255, 142,192,123,255, 169,196,139,255, 123,192,112,255, 106,169,97,255, 140,198,121,255, 113,152,87,255, 159,132,77,255, 236,236,236,255, 205,205,205,255, 205,205,205,255, 239,239,239,255, 180,144,90,255, 150,124,73,255, 116,90,59,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 115,94,57,255, 159,132,77,255, 150,124,73,255, 159,132,77,255, 236,236,236,255, 205,205,205,255, 56,56,56,255, 68,68,68,255, 112,112,112,255, 139,139,139,255, 163,163,163,255, 112,112,112,255, 110,110,110,255, 151,151,151,255, 146,146,146,255, 132,132,132,255, 114,114,114,255, 100,100,100,255, 93,93,93,255, 75,75,75,255, 120,120,120,255, 36,36,36,255, 47,47,47,255, 68,68,68,255, 112,112,112,255, 139,139,139,255, 163,163,163,255, 112,112,112,255, 110,110,110,255, 151,151,151,255, 146,146,146,255, 132,132,132,255, 114,114,114,255, 100,100,100,255, 93,93,93,255, 75,75,75,255, 120,120,120,255, 59,59,59,255, 47,47,47,255, 68,68,68,255, 112,112,112,255, 139,139,139,255, 121,121,121,255, 176,176,176,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 176,176,176,255, 127,127,127,255, 93,93,93,255, 75,75,75,255, 120,120,120,255, 59,59,59,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 196,196,196,255, 124,124,124,255, 0,0,0,0, 133,133,133,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,62,255, 76,61,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,143,71,255, 137,104,50,255, 120,83,39,255, 120,83,39,255, 120,83,39,255, 130,89,44,255, 128,87,42,255, 143,107,53,255, 120,83,39,255, 120,83,39,255, 120,83,39,255, 103,74,34,255, 130,89,44,255, 137,104,50,255, 137,104,50,255, 106,67,31,255, 160,160,160,255, 157,157,157,255, 149,149,149,255, 150,150,150,255, 149,149,149,255, 150,150,150,255, 150,150,150,255, 154,154,154,255, 144,144,144,255, 142,142,142,255, 142,142,142,255, 139,139,139,255, 146,146,146,255, 149,149,149,255, 151,151,151,255, 129,129,129,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 147,115,68,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,121,121,255, 121,121,121,255, 85,100,58,255, 99,112,73,255, 103,123,63,255, 103,117,78,255, 111,111,111,255, 93,93,93,255, 148,148,148,255, 136,136,136,255, 103,117,78,255, 103,117,78,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 102,102,102,255, 147,147,147,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 111,111,111,255, 93,93,93,255, 158,158,158,255, 136,136,136,255, 104,104,104,255, 147,147,147,255, 145,145,145,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 208,124,20,255, 227,166,75,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 61,44,0,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 208,124,20,255, 208,124,20,255, 126,66,66,255, 78,39,39,255, 194,115,115,255, 135,15,15,255, 96,6,6,255, 55,28,28,255, 166,89,89,255, 70,7,7,255, 229,170,134,255, 131,69,69,255, 191,130,102,255, 95,54,54,255, 80,40,40,255, 211,125,125,255, 90,6,6,255, 90,6,6,255, 64,46,35,255, 83,66,54,255, 80,59,47,255, 98,75,61,255, 121,97,82,255, 130,106,90,255, 126,102,87,255, 56,38,27,255, 84,65,52,255, 121,97,83,255, 70,52,41,255, 59,42,31,255, 50,33,22,255, 50,33,22,255, 64,46,35,255, 105,82,67,255, 255,255,255,255, 249,212,156,255, 249,212,156,255, 79,56,16,255, 114,111,73,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 122,91,44,255, 192,143,70,255, 255,255,255,255, 192,143,70,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 255,188,94,255, 110,80,46,255, 119,96,58,255, 133,146,92,255, 123,142,83,255, 105,104,59,255, 105,104,59,255, 123,142,83,255, 123,142,83,255, 123,142,83,255, 117,132,77,255, 112,104,59,255, 92,102,55,255, 92,102,55,255, 124,99,59,255, 124,99,59,255, 119,96,61,255, 110,80,46,255, 115,94,57,255, 124,99,59,255, 124,99,59,255, 110,80,46,255, 110,80,46,255, 110,80,46,255, 124,99,59,255, 110,80,46,255, 124,99,59,255, 124,99,59,255, 110,80,46,255, 110,80,46,255, 124,99,59,255, 124,99,59,255, 119,96,61,255, 43,43,43,255, 82,82,82,255, 144,144,144,255, 146,146,146,255, 126,126,126,255, 91,91,91,255, 144,144,144,255, 112,112,112,255, 148,148,148,255, 128,128,128,255, 129,129,129,255, 106,106,106,255, 107,107,107,255, 151,151,151,255, 80,80,80,255, 36,36,36,255, 41,41,41,255, 82,82,82,255, 144,144,144,255, 146,146,146,255, 126,126,126,255, 91,91,91,255, 144,144,144,255, 112,112,112,255, 148,148,148,255, 128,128,128,255, 129,129,129,255, 106,106,106,255, 107,107,107,255, 151,151,151,255, 80,80,80,255, 48,48,48,255, 41,41,41,255, 82,82,82,255, 144,144,144,255, 146,146,146,255, 127,127,127,255, 176,176,176,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 168,168,168,255, 127,127,127,255, 107,107,107,255, 151,151,151,255, 80,80,80,255, 48,48,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,215,215,255, 114,114,114,255, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,82,49,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,53,53,255, 143,107,53,255, 128,87,42,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 137,104,50,255, 160,131,64,255, 120,83,39,255, 137,104,50,255, 143,107,53,255, 143,107,53,255, 143,107,53,255, 165,136,69,255, 143,107,53,255, 106,67,31,255, 79,79,79,255, 154,154,154,255, 148,148,148,255, 155,155,155,255, 156,156,156,255, 153,153,153,255, 152,152,152,255, 159,159,159,255, 143,143,143,255, 149,149,149,255, 149,149,149,255, 150,150,150,255, 149,149,149,255, 158,158,158,255, 150,150,150,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,117,70,255, 66,53,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 136,136,136,255, 136,136,136,255, 121,121,121,255, 99,112,73,255, 121,121,121,255, 136,136,136,255, 100,113,74,255, 96,96,96,255, 151,151,151,255, 127,127,127,255, 127,127,127,255, 94,103,77,255, 85,100,58,255, 87,101,59,255, 121,121,121,255, 121,121,121,255, 136,136,136,255, 136,136,136,255, 102,102,102,255, 100,100,100,255, 121,121,121,255, 136,136,136,255, 118,118,118,255, 96,96,96,255, 151,151,151,255, 104,104,104,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 136,136,136,255, 121,121,121,255, 121,121,121,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,166,75,255, 208,124,20,255, 78,39,39,255, 123,12,12,255, 168,107,83,255, 136,79,79,255, 115,60,60,255, 23,9,9,255, 166,89,89,255, 115,60,60,255, 136,79,79,255, 115,60,60,255, 122,64,64,255, 28,9,9,255, 98,55,55,255, 78,39,39,255, 114,10,10,255, 120,63,63,255, 69,49,37,255, 69,49,37,255, 111,87,72,255, 118,94,79,255, 49,32,22,255, 50,33,22,255, 117,94,78,255, 68,49,37,255, 72,52,40,255, 110,87,72,255, 111,87,73,255, 91,73,61,255, 103,79,65,255, 50,33,22,255, 50,33,22,255, 111,87,72,255, 122,91,44,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 114,111,73,255, 114,111,73,255, 114,111,73,255, 79,56,16,255, 122,91,44,255, 192,143,70,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 79,56,16,255, 124,99,59,255, 146,201,133,255, 123,192,112,255, 116,154,88,255, 116,154,88,255, 116,154,88,255, 116,154,88,255, 140,139,94,255, 111,171,100,255, 115,127,70,255, 159,132,77,255, 116,154,88,255, 116,154,88,255, 180,144,90,255, 180,144,90,255, 119,96,61,255, 124,99,59,255, 180,144,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 116,90,59,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 119,96,61,255, 45,45,45,255, 80,80,80,255, 119,119,119,255, 122,122,122,255, 122,122,122,255, 86,86,86,255, 144,144,144,255, 131,131,131,255, 89,89,89,255, 89,89,89,255, 125,125,125,255, 89,89,89,255, 107,107,107,255, 106,106,106,255, 105,105,105,255, 50,50,50,255, 45,45,45,255, 80,80,80,255, 119,119,119,255, 122,122,122,255, 122,122,122,255, 86,86,86,255, 144,144,144,255, 131,131,131,255, 122,122,122,255, 122,122,122,255, 125,125,125,255, 89,89,89,255, 107,107,107,255, 106,106,106,255, 105,105,105,255, 41,41,41,255, 45,45,45,255, 80,80,80,255, 119,119,119,255, 122,122,122,255, 127,127,127,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 176,176,176,255, 121,121,121,255, 107,107,107,255, 106,106,106,255, 105,105,105,255, 41,41,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,215,215,255, 114,114,114,255, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 110,89,56,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 111,111,111,255, 118,87,41,255, 103,74,34,255, 122,91,43,255, 118,87,41,255, 118,87,41,255, 118,87,41,255, 148,115,56,255, 103,74,34,255, 122,91,43,255, 122,91,43,255, 122,91,43,255, 118,87,41,255, 144,109,53,255, 118,87,41,255, 87,60,27,255, 129,129,129,255, 144,144,144,255, 139,139,139,255, 146,146,146,255, 144,144,144,255, 140,140,140,255, 141,141,141,255, 151,151,151,255, 138,138,138,255, 144,144,144,255, 143,143,143,255, 142,142,142,255, 140,140,140,255, 148,148,148,255, 140,140,140,255, 120,120,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,127,80,255, 64,51,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 127,127,127,255, 127,127,127,255, 115,131,85,255, 136,136,136,255, 127,127,127,255, 110,110,110,255, 95,95,95,255, 156,156,156,255, 136,136,136,255, 115,115,115,255, 115,115,115,255, 127,127,127,255, 103,117,78,255, 127,127,127,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 147,147,147,255, 107,107,107,255, 136,136,136,255, 127,127,127,255, 110,110,110,255, 95,95,95,255, 115,115,115,255, 107,107,107,255, 143,143,143,255, 100,100,100,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 95,54,54,255, 60,8,8,255, 173,102,102,255, 134,78,78,255, 96,48,48,255, 28,9,9,255, 136,79,79,255, 115,60,60,255, 158,93,93,255, 115,60,60,255, 41,17,17,255, 50,8,8,255, 188,111,111,255, 78,39,39,255, 60,8,8,255, 50,25,25,255, 84,65,51,255, 102,79,64,255, 59,41,30,255, 126,102,87,255, 102,79,64,255, 50,33,22,255, 98,75,61,255, 79,59,46,255, 96,76,64,255, 59,41,30,255, 145,121,106,255, 111,87,72,255, 98,75,61,255, 111,87,72,255, 141,117,102,255, 76,55,43,255, 79,56,16,255, 79,56,16,255, 114,111,73,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 255,188,94,255, 114,111,73,255, 79,56,16,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 122,91,44,255, 114,111,73,255, 114,111,73,255, 113,99,58,255, 180,144,90,255, 129,136,80,255, 174,199,143,255, 142,200,122,255, 121,192,110,255, 121,157,92,255, 108,100,57,255, 180,144,90,255, 188,152,98,255, 121,157,92,255, 174,199,143,255, 142,200,122,255, 123,159,94,255, 188,152,98,255, 119,96,61,255, 113,99,58,255, 180,144,90,255, 188,152,98,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 110,80,46,255, 180,144,90,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 188,152,98,255, 119,96,61,255, 56,56,56,255, 114,114,114,255, 136,136,136,255, 143,143,143,255, 139,139,139,255, 89,89,89,255, 122,122,122,255, 157,157,157,255, 122,122,122,255, 122,122,122,255, 89,89,89,255, 100,100,100,255, 142,142,142,255, 106,106,106,255, 112,112,112,255, 50,50,50,255, 56,56,56,255, 114,114,114,255, 136,136,136,255, 122,122,122,255, 115,115,115,255, 89,89,89,255, 122,122,122,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 89,89,89,255, 100,100,100,255, 142,142,142,255, 106,106,106,255, 112,112,112,255, 36,36,36,255, 56,56,56,255, 114,114,114,255, 136,136,136,255, 122,122,122,255, 142,142,142,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 127,127,127,255, 121,121,121,255, 142,142,142,255, 106,106,106,255, 112,112,112,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 205,205,205,255, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 110,89,56,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 130,89,44,255, 145,109,56,255, 145,109,56,255, 137,104,50,255, 145,109,56,255, 160,131,64,255, 120,83,39,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 143,107,53,255, 148,115,56,255, 145,109,56,255, 117,70,34,255, 149,149,149,255, 147,147,147,255, 140,140,140,255, 148,148,148,255, 148,148,148,255, 145,145,145,255, 148,148,148,255, 154,154,154,255, 141,141,141,255, 148,148,148,255, 146,146,146,255, 145,145,145,255, 149,149,149,255, 150,150,150,255, 148,148,148,255, 124,124,124,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 151,119,72,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,121,121,255, 121,121,121,255, 109,125,79,255, 115,131,85,255, 115,131,85,255, 121,121,121,255, 105,105,105,255, 93,93,93,255, 148,148,148,255, 121,121,121,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 101,114,76,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 107,107,107,255, 136,136,136,255, 121,121,121,255, 105,105,105,255, 93,93,93,255, 148,148,148,255, 145,145,145,255, 127,127,127,255, 127,127,127,255, 102,102,102,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 208,124,20,255, 208,124,20,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 194,115,115,255, 166,89,89,255, 41,17,17,255, 50,25,25,255, 41,17,17,255, 28,9,9,255, 103,58,58,255, 90,6,6,255, 69,37,37,255, 27,9,9,255, 194,115,115,255, 117,11,11,255, 136,79,79,255, 115,60,60,255, 141,80,62,255, 95,54,54,255, 49,32,22,255, 114,90,75,255, 50,33,22,255, 113,90,75,255, 53,35,25,255, 103,79,65,255, 98,75,61,255, 68,49,37,255, 68,49,37,255, 90,70,57,255, 72,52,40,255, 110,91,78,255, 96,76,63,255, 93,73,61,255, 79,59,47,255, 82,62,49,255, 114,111,73,255, 114,111,73,255, 255,188,94,255, 192,143,70,255, 79,56,16,255, 114,111,73,255, 79,56,16,255, 122,91,44,255, 255,255,255,255, 114,111,73,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 192,143,70,255, 122,91,44,255, 79,56,16,255, 105,77,52,255, 113,118,69,255, 139,139,94,255, 123,142,83,255, 111,126,73,255, 90,104,57,255, 99,111,61,255, 115,92,53,255, 119,96,58,255, 117,90,52,255, 138,139,92,255, 123,142,83,255, 129,144,87,255, 113,118,69,255, 105,84,51,255, 119,96,61,255, 105,77,52,255, 105,84,51,255, 115,94,57,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 124,99,59,255, 105,86,47,255, 115,94,57,255, 110,80,46,255, 105,86,47,255, 115,94,57,255, 105,84,51,255, 105,84,51,255, 105,84,51,255, 119,96,61,255, 43,43,43,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 110,110,110,255, 122,122,122,255, 96,96,96,255, 88,88,88,255, 89,89,89,255, 136,136,136,255, 122,122,122,255, 122,122,122,255, 56,56,56,255, 48,48,48,255, 43,43,43,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 110,110,110,255, 122,122,122,255, 96,96,96,255, 88,88,88,255, 144,144,144,255, 136,136,136,255, 122,122,122,255, 122,122,122,255, 56,56,56,255, 36,36,36,255, 43,43,43,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 110,110,110,255, 122,122,122,255, 96,96,96,255, 88,88,88,255, 144,144,144,255, 136,136,136,255, 122,122,122,255, 122,122,122,255, 56,56,56,255, 36,36,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,62,255, 105,84,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 175,148,77,255, 137,104,50,255, 122,91,43,255, 167,138,73,255, 167,138,73,255, 167,138,73,255, 167,138,73,255, 160,131,64,255, 145,109,56,255, 165,136,69,255, 165,136,69,255, 160,131,64,255, 160,131,64,255, 160,131,64,255, 137,104,50,255, 114,69,32,255, 150,150,150,255, 147,147,147,255, 142,142,142,255, 157,157,157,255, 157,157,157,255, 155,155,155,255, 155,155,155,255, 155,155,155,255, 148,148,148,255, 155,155,155,255, 155,155,155,255, 154,154,154,255, 154,154,154,255, 153,153,153,255, 144,144,144,255, 119,119,119,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,82,49,255, 61,48,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 127,127,127,255, 121,121,121,255, 109,125,79,255, 121,121,121,255, 107,123,77,255, 105,105,105,255, 92,105,67,255, 147,147,147,255, 136,136,136,255, 136,136,136,255, 127,127,127,255, 136,136,136,255, 121,121,121,255, 136,136,136,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 102,102,102,255, 121,121,121,255, 115,115,115,255, 105,105,105,255, 97,97,97,255, 147,147,147,255, 136,136,136,255, 136,136,136,255, 127,127,127,255, 136,136,136,255, 102,102,102,255, 107,107,107,255, 115,115,115,255, 208,124,20,255, 227,144,29,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 202,120,120,255, 131,76,76,255, 99,50,50,255, 201,119,119,255, 124,12,12,255, 170,92,92,255, 95,54,54,255, 28,9,9,255, 103,58,58,255, 154,19,19,255, 178,105,105,255, 90,6,6,255, 158,93,93,255, 90,6,6,255, 124,65,65,255, 49,25,25,255, 65,46,34,255, 138,114,98,255, 98,75,61,255, 53,36,25,255, 49,32,22,255, 50,33,22,255, 113,90,74,255, 65,46,35,255, 90,70,57,255, 126,102,87,255, 129,106,90,255, 71,52,40,255, 72,52,40,255, 69,49,37,255, 69,49,37,255, 69,49,37,255, 114,111,73,255, 255,188,94,255, 249,212,156,255, 255,255,255,255, 249,212,156,255, 79,56,16,255, 114,111,73,255, 79,56,16,255, 192,143,70,255, 79,56,16,255, 114,111,73,255, 255,188,94,255, 192,143,70,255, 255,255,255,255, 192,143,70,255, 79,56,16,255, 113,99,58,255, 123,159,94,255, 157,209,143,255, 137,189,128,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 159,132,77,255, 115,94,57,255, 159,132,77,255, 124,192,112,255, 124,192,112,255, 121,157,92,255, 180,144,90,255, 188,152,98,255, 105,81,52,255, 113,99,58,255, 188,152,98,255, 180,144,90,255, 159,132,77,255, 188,152,98,255, 188,152,98,255, 180,144,90,255, 159,132,77,255, 115,94,57,255, 159,132,77,255, 188,152,98,255, 180,144,90,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 105,81,52,255, 50,50,50,255, 97,97,97,255, 115,115,115,255, 147,147,147,255, 140,140,140,255, 147,147,147,255, 106,106,106,255, 89,89,89,255, 110,110,110,255, 157,157,157,255, 137,137,137,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 97,97,97,255, 41,41,41,255, 50,50,50,255, 97,97,97,255, 115,115,115,255, 147,147,147,255, 140,140,140,255, 147,147,147,255, 106,106,106,255, 89,89,89,255, 110,110,110,255, 157,157,157,255, 137,137,137,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 97,97,97,255, 35,35,35,255, 50,50,50,255, 97,97,97,255, 115,115,115,255, 147,147,147,255, 140,140,140,255, 147,147,147,255, 106,106,106,255, 89,89,89,255, 110,110,110,255, 157,157,157,255, 137,137,137,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 97,97,97,255, 35,35,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,62,255, 105,84,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,81,255, 145,109,56,255, 137,104,50,255, 137,104,50,255, 137,104,50,255, 145,109,56,255, 145,109,56,255, 137,104,50,255, 145,109,56,255, 145,109,56,255, 137,104,50,255, 143,107,53,255, 145,109,56,255, 145,109,56,255, 145,109,56,255, 117,70,34,255, 151,151,151,255, 151,151,151,255, 148,148,148,255, 148,148,148,255, 147,147,147,255, 148,148,148,255, 147,147,147,255, 146,146,146,255, 148,148,148,255, 147,147,147,255, 145,145,145,255, 146,146,146,255, 147,147,147,255, 146,146,146,255, 144,144,144,255, 118,118,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,120,73,255, 59,46,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 105,105,105,255, 105,105,105,255, 105,105,105,255, 110,110,110,255, 106,106,106,255, 116,116,116,255, 120,120,120,255, 93,106,67,255, 108,121,82,255, 108,108,108,255, 119,119,119,255, 114,114,114,255, 110,110,110,255, 110,110,110,255, 105,105,105,255, 105,105,105,255, 105,105,105,255, 100,100,100,255, 100,100,100,255, 98,98,98,255, 96,96,96,255, 143,143,143,255, 120,120,120,255, 98,98,98,255, 138,138,138,255, 108,108,108,255, 119,119,119,255, 114,114,114,255, 110,110,110,255, 110,110,110,255, 96,96,96,255, 96,96,96,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 104,53,53,255, 41,17,17,255, 38,9,9,255, 175,103,103,255, 94,6,6,255, 108,56,56,255, 89,6,6,255, 60,8,8,255, 78,39,39,255, 60,8,8,255, 175,114,89,255, 104,8,8,255, 149,88,88,255, 136,72,72,255, 47,20,20,255, 50,25,25,255, 82,62,50,255, 95,73,59,255, 133,109,94,255, 50,33,22,255, 77,60,49,255, 70,52,40,255, 138,114,99,255, 53,36,25,255, 67,49,39,255, 120,97,81,255, 95,73,59,255, 92,70,56,255, 64,46,35,255, 64,46,35,255, 78,59,47,255, 126,102,87,255, 114,111,73,255, 122,91,44,255, 249,212,156,255, 255,255,255,255, 192,143,70,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 79,56,16,255, 79,56,16,255, 114,111,73,255, 122,91,44,255, 122,91,44,255, 122,91,44,255, 122,91,44,255, 79,56,16,255, 220,220,220,255, 239,239,239,255, 116,154,88,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 159,132,77,255, 239,239,239,255, 238,238,238,255, 116,154,88,255, 121,157,92,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 239,239,239,255, 220,220,220,255, 220,220,220,255, 239,239,239,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 188,152,98,255, 159,132,77,255, 239,239,239,255, 238,238,238,255, 159,132,77,255, 180,144,90,255, 180,144,90,255, 188,152,98,255, 188,152,98,255, 239,239,239,255, 220,220,220,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 36,36,36,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,117,70,255, 102,81,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,91,43,255, 87,60,27,255, 87,60,27,255, 91,60,28,255, 82,57,25,255, 82,57,25,255, 91,60,28,255, 82,57,25,255, 87,60,27,255, 87,60,27,255, 87,60,27,255, 82,57,25,255, 73,53,24,255, 82,57,25,255, 82,57,25,255, 87,60,27,255, 133,133,133,255, 121,121,121,255, 118,118,118,255, 117,117,117,255, 115,115,115,255, 116,116,116,255, 118,118,118,255, 117,117,117,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 115,115,115,255, 113,113,113,255, 114,114,114,255, 114,114,114,255, 113,113,113,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,82,49,255, 55,42,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 96,96,96,255, 96,96,96,255, 82,91,65,255, 95,95,95,255, 95,95,95,255, 95,95,95,255, 93,93,93,255, 91,104,65,255, 93,93,93,255, 94,94,94,255, 98,98,98,255, 96,96,96,255, 82,91,65,255, 81,91,64,255, 93,93,93,255, 93,93,93,255, 96,96,96,255, 96,96,96,255, 95,95,95,255, 92,92,92,255, 92,92,92,255, 95,95,95,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 94,94,94,255, 98,98,98,255, 96,96,96,255, 95,95,95,255, 93,93,93,255, 93,93,93,255, 91,91,91,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 166,89,89,255, 166,89,89,255, 131,76,76,255, 63,30,30,255, 93,30,22,255, 25,9,9,255, 41,17,17,255, 60,8,8,255, 164,88,88,255, 175,114,89,255, 73,36,36,255, 144,82,64,255, 56,26,26,255, 60,28,28,255, 56,29,29,255, 194,115,115,255, 133,109,94,255, 89,70,57,255, 106,82,67,255, 114,90,75,255, 91,69,56,255, 127,102,88,255, 72,52,40,255, 56,38,27,255, 56,38,27,255, 49,32,22,255, 88,71,59,255, 77,59,48,255, 50,33,22,255, 49,32,22,255, 130,106,91,255, 138,114,99,255, 114,111,73,255, 79,56,16,255, 192,143,70,255, 192,143,70,255, 122,91,44,255, 122,91,44,255, 79,56,16,255, 114,111,73,255, 114,111,73,255, 114,111,73,255, 114,111,73,255, 79,56,16,255, 79,56,16,255, 79,56,16,255, 79,56,16,255, 114,111,73,255, 205,205,205,255, 220,220,220,255, 119,96,61,255, 122,94,51,255, 122,94,51,255, 105,86,47,255, 105,86,47,255, 205,205,205,255, 205,205,205,255, 105,81,52,255, 105,81,52,255, 122,94,51,255, 119,96,61,255, 122,94,51,255, 220,220,220,255, 205,205,205,255, 205,205,205,255, 220,220,220,255, 119,96,61,255, 122,94,51,255, 122,94,51,255, 105,86,47,255, 105,86,47,255, 205,205,205,255, 205,205,205,255, 105,81,52,255, 105,81,52,255, 122,94,51,255, 119,96,61,255, 122,94,51,255, 220,220,220,255, 205,205,205,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 36,36,36,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 12,14,18,255, 15,16,21,255, 11,12,17,255, 12,13,18,255, 19,20,24,255, 26,26,30,255, 13,14,19,255, 14,15,20,255, 23,24,28,255, 25,25,29,255, 9,10,15,255, 11,13,17,255, 21,21,25,255, 21,21,25,255, 11,13,17,255, 9,11,16,255, 57,61,65,255, 59,63,67,255, 56,60,64,255, 57,61,65,255, 62,67,70,255, 67,73,76,255, 58,62,65,255, 58,63,66,255, 65,71,74,255, 66,72,75,255, 55,58,62,255, 57,60,64,255, 63,68,72,255, 63,68,72,255, 57,60,64,255, 56,59,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,13,4,255, 47,30,11,255, 49,33,13,255, 83,56,29,255, 19,8,3,255, 50,33,14,255, 78,52,24,255, 20,10,4,255, 45,28,9,255, 47,30,11,255, 46,29,10,255, 59,39,19,255, 50,33,14,255, 59,39,19,255, 47,30,11,255, 83,56,29,255, 178,180,176,255, 234,236,222,255, 235,234,227,255, 238,238,230,255, 236,237,226,255, 184,187,180,255, 237,234,229,255, 219,221,211,255, 224,219,214,255, 228,234,228,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 233,231,231,255, 235,237,228,255, 177,182,171,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 226,152,19,255, 241,210,34,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 226,152,19,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,29,27,255, 189,37,35,255, 181,29,27,255, 170,18,16,255, 186,34,32,255, 181,29,27,255, 182,30,28,255, 179,27,25,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 192,40,38,255, 177,25,23,255, 184,32,30,255, 189,37,35,255, 187,35,33,255, 139,103,79,255, 153,117,93,255, 145,109,85,255, 154,118,94,255, 157,121,97,255, 148,112,88,255, 146,110,86,255, 135,99,75,255, 145,109,85,255, 155,119,95,255, 145,109,85,255, 139,103,79,255, 144,108,84,255, 138,102,78,255, 135,99,75,255, 153,117,93,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,103,64,255, 142,115,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 20,20,25,255, 23,23,27,255, 37,37,41,255, 37,37,41,255, 27,27,31,255, 25,25,29,255, 17,18,22,255, 16,18,22,255, 12,13,18,255, 9,11,16,255, 14,15,20,255, 16,18,22,255, 7,9,14,255, 10,12,16,255, 15,16,21,255, 18,19,23,255, 62,67,71,255, 64,70,73,255, 71,79,82,255, 71,79,82,255, 68,75,78,255, 66,72,75,255, 60,65,69,255, 60,65,68,255, 57,61,65,255, 56,59,63,255, 58,63,66,255, 60,65,68,255, 54,57,61,255, 56,59,63,255, 59,63,67,255, 61,66,69,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 20,10,4,255, 44,27,8,255, 50,34,16,255, 15,5,3,255, 20,10,4,255, 80,54,26,255, 20,10,4,255, 45,28,9,255, 80,54,26,255, 19,8,3,255, 47,30,11,255, 82,55,28,255, 29,16,5,255, 59,39,19,255, 29,16,5,255, 78,52,24,255, 242,236,228,255, 231,235,227,255, 217,219,208,255, 219,212,214,255, 220,210,214,255, 230,239,227,255, 230,235,228,255, 234,224,227,255, 231,238,227,255, 232,237,222,255, 231,234,230,255, 235,236,228,255, 234,239,223,255, 236,235,228,255, 241,232,222,255, 232,234,227,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 226,152,19,255, 244,248,40,255, 249,255,58,255, 246,221,49,255, 208,124,20,255, 160,90,11,255, 246,221,49,255, 249,255,58,255, 226,152,19,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 0,0,0,0, 213,213,213,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 213,213,213,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 0,0,0,0, 183,31,29,255, 180,28,26,255, 180,28,26,255, 177,25,23,255, 180,28,26,255, 181,29,27,255, 188,36,34,255, 175,23,21,255, 183,31,29,255, 195,43,41,255, 183,31,29,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 189,37,35,255, 181,29,27,255, 137,101,77,255, 144,108,84,255, 143,107,83,255, 148,112,88,255, 109,81,62,255, 115,87,68,255, 146,110,86,255, 142,106,82,255, 140,104,80,255, 149,113,89,255, 141,105,81,255, 152,116,92,255, 146,110,86,255, 141,105,81,255, 144,108,84,255, 151,115,91,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 164,164,164,255, 164,164,164,255, 164,164,164,255, 27,27,31,255, 28,28,32,255, 16,18,22,255, 18,19,23,255, 33,32,37,255, 28,28,32,255, 21,22,26,255, 16,18,22,255, 25,25,29,255, 28,28,32,255, 24,24,28,255, 24,24,28,255, 34,34,38,255, 37,37,41,255, 25,25,29,255, 23,23,27,255, 68,75,78,255, 69,76,79,255, 60,65,68,255, 61,66,70,255, 70,78,81,255, 69,76,79,255, 63,69,72,255, 60,65,68,255, 66,72,75,255, 69,76,79,255, 65,72,75,255, 65,72,75,255, 70,78,81,255, 71,79,82,255, 66,72,75,255, 64,70,73,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 17,6,3,255, 41,25,9,255, 43,26,7,255, 20,10,4,255, 47,30,11,255, 80,54,26,255, 19,8,3,255, 46,29,10,255, 80,54,26,255, 19,8,3,255, 46,29,10,255, 59,39,19,255, 29,16,5,255, 59,39,19,255, 29,16,5,255, 80,54,26,255, 214,217,217,255, 232,240,231,255, 231,230,228,255, 237,239,229,255, 235,234,224,255, 226,218,212,255, 235,236,229,255, 221,214,208,255, 220,218,212,255, 218,214,216,255, 231,236,227,255, 182,180,176,255, 232,234,229,255, 229,235,226,255, 217,214,215,255, 219,217,209,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 45,0,3,255, 45,0,3,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 45,0,3,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 233,180,22,255, 76,0,5,255, 76,0,5,255, 249,255,58,255, 246,221,49,255, 226,152,19,255, 249,255,150,255, 76,0,5,255, 233,180,22,255, 246,221,49,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,29,29,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 176,24,22,255, 191,39,37,255, 184,32,30,255, 181,29,27,255, 182,30,28,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 188,36,34,255, 181,29,27,255, 192,40,38,255, 180,28,26,255, 174,22,20,255, 181,29,27,255, 183,31,29,255, 181,29,27,255, 142,106,82,255, 149,113,89,255, 152,116,92,255, 116,88,69,255, 117,89,70,255, 158,119,92,255, 144,108,84,255, 150,114,90,255, 144,108,84,255, 142,106,82,255, 149,113,89,255, 146,110,86,255, 146,110,86,255, 143,107,83,255, 146,110,86,255, 149,113,89,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 164,164,164,255, 104,104,104,255, 104,104,104,255, 104,104,104,255, 104,104,104,255, 20,20,25,255, 15,16,21,255, 25,26,30,255, 28,28,32,255, 16,18,22,255, 15,16,21,255, 19,20,24,255, 28,28,32,255, 13,14,19,255, 17,18,22,255, 28,28,32,255, 28,28,32,255, 20,20,25,255, 15,16,21,255, 37,37,41,255, 28,28,32,255, 62,67,71,255, 59,63,67,255, 66,73,76,255, 69,76,79,255, 60,65,68,255, 59,64,67,255, 62,67,70,255, 69,76,79,255, 58,62,65,255, 60,65,69,255, 69,76,79,255, 69,76,79,255, 62,67,71,255, 59,63,67,255, 71,79,82,255, 68,75,78,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,33,14,255, 22,12,4,255, 44,27,8,255, 20,10,4,255, 59,39,19,255, 59,39,19,255, 19,8,3,255, 47,30,11,255, 80,54,26,255, 19,8,3,255, 47,30,11,255, 80,54,26,255, 19,8,3,255, 83,56,29,255, 20,10,4,255, 59,39,19,255, 238,234,227,255, 255,255,255,255, 227,238,225,255, 177,184,177,255, 65,60,57,255, 21,25,23,255, 32,25,34,255, 60,54,58,255, 237,229,228,255, 241,234,227,255, 234,229,228,255, 238,240,229,255, 232,237,224,255, 237,236,225,255, 218,219,215,255, 234,233,229,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 227,166,75,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 45,0,3,255, 227,166,75,255, 160,90,11,255, 45,0,3,255, 45,0,3,255, 45,0,3,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 246,221,49,255, 226,152,19,255, 76,0,5,255, 176,163,49,255, 76,0,5,255, 249,255,150,255, 233,180,22,255, 76,0,5,255, 76,0,5,255, 76,0,5,255, 233,180,22,255, 246,221,49,255, 208,124,20,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 223,223,223,255, 223,223,223,255, 213,213,213,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 187,35,33,255, 181,29,27,255, 177,25,23,255, 222,222,222,255, 216,216,216,255, 185,33,31,255, 184,32,30,255, 184,32,30,255, 186,34,32,255, 185,33,31,255, 181,29,27,255, 181,29,27,255, 186,34,32,255, 171,19,17,255, 186,34,32,255, 190,38,36,255, 144,108,84,255, 146,110,86,255, 144,108,84,255, 115,87,68,255, 157,118,91,255, 164,125,98,255, 135,99,75,255, 148,112,88,255, 140,104,80,255, 144,108,84,255, 147,111,87,255, 138,102,78,255, 105,77,58,255, 120,92,73,255, 154,118,94,255, 154,118,94,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 164,164,164,255, 104,104,104,255, 104,104,104,255, 65,54,37,255, 92,77,48,255, 0,0,0,0, 0,0,0,0, 23,23,27,255, 18,19,23,255, 13,14,19,255, 20,20,25,255, 26,26,30,255, 25,26,30,255, 9,10,15,255, 8,10,15,255, 14,15,20,255, 21,21,25,255, 14,15,20,255, 10,12,17,255, 26,26,30,255, 26,26,30,255, 11,13,17,255, 9,10,15,255, 64,70,73,255, 61,66,69,255, 58,62,65,255, 62,67,71,255, 67,73,76,255, 66,73,76,255, 55,58,62,255, 54,58,62,255, 59,63,66,255, 63,68,72,255, 58,63,66,255, 56,60,63,255, 67,73,76,255, 67,73,76,255, 57,60,64,255, 55,58,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,31,12,255, 20,10,4,255, 49,33,13,255, 46,29,10,255, 59,39,19,255, 59,39,19,255, 49,33,13,255, 46,29,10,255, 51,35,15,255, 20,10,4,255, 48,31,12,255, 82,55,28,255, 19,8,3,255, 82,55,28,255, 19,8,3,255, 59,39,19,255, 234,228,227,255, 235,234,225,255, 182,180,176,255, 182,180,176,255, 221,225,214,255, 62,59,53,255, 61,59,58,255, 32,25,34,255, 62,62,59,255, 229,232,227,255, 217,216,214,255, 213,221,208,255, 219,218,212,255, 224,214,211,255, 66,60,57,255, 218,214,208,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,166,75,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 68,19,0,255, 45,0,3,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 233,180,22,255, 76,0,5,255, 179,168,50,255, 182,174,52,255, 185,179,54,255, 233,180,22,255, 233,180,22,255, 76,0,5,255, 185,179,54,255, 182,174,52,255, 76,0,5,255, 233,180,22,255, 208,124,20,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 232,53,53,255, 234,29,29,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,29,29,255, 213,213,213,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 181,29,27,255, 181,29,27,255, 183,31,29,255, 219,219,219,255, 213,213,213,255, 181,29,27,255, 182,30,28,255, 178,26,24,255, 181,29,27,255, 186,34,32,255, 179,27,25,255, 181,29,27,255, 181,29,27,255, 186,34,32,255, 181,29,27,255, 187,35,33,255, 145,109,85,255, 152,116,92,255, 148,112,88,255, 116,88,69,255, 151,112,85,255, 152,116,92,255, 144,108,84,255, 142,106,82,255, 144,108,84,255, 145,109,85,255, 153,117,93,255, 114,86,67,255, 112,84,65,255, 116,88,69,255, 151,115,91,255, 134,98,74,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,103,64,255, 82,67,40,255, 164,164,164,255, 104,104,104,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 76,61,37,255, 142,115,60,255, 0,0,0,0, 0,0,0,0, 10,12,16,255, 8,10,15,255, 13,14,19,255, 28,28,32,255, 13,14,19,255, 8,10,15,255, 12,14,18,255, 15,16,21,255, 13,14,19,255, 8,10,15,255, 15,16,21,255, 16,18,22,255, 9,11,16,255, 14,15,20,255, 12,13,18,255, 16,17,21,255, 56,59,63,255, 55,58,62,255, 58,62,66,255, 69,76,79,255, 58,62,65,255, 54,58,62,255, 57,61,65,255, 59,63,67,255, 58,62,65,255, 54,58,62,255, 59,63,67,255, 60,65,68,255, 55,59,63,255, 58,63,66,255, 57,61,65,255, 60,64,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,33,13,255, 41,25,9,255, 49,33,13,255, 45,28,9,255, 82,55,28,255, 47,30,11,255, 45,28,9,255, 48,31,12,255, 49,33,13,255, 19,8,3,255, 47,30,11,255, 74,48,20,255, 19,8,3,255, 59,39,19,255, 20,10,4,255, 46,29,10,255, 58,58,58,255, 65,65,62,255, 237,237,224,255, 255,255,255,255, 255,255,255,255, 240,234,225,255, 234,234,230,255, 255,255,255,255, 255,255,255,255, 235,234,230,255, 255,255,255,255, 255,255,255,255, 237,234,228,255, 60,59,61,255, 29,24,26,255, 26,28,20,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 76,0,5,255, 184,178,53,255, 188,185,55,255, 191,190,57,255, 160,90,11,255, 233,180,22,255, 76,0,5,255, 191,190,57,255, 188,185,55,255, 184,178,53,255, 233,180,22,255, 241,210,34,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 234,29,29,255, 234,29,29,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 213,213,213,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 175,23,21,255, 176,24,22,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 178,26,24,255, 182,30,28,255, 176,24,22,255, 190,38,36,255, 181,29,27,255, 174,22,20,255, 183,31,29,255, 185,33,31,255, 181,29,27,255, 178,26,24,255, 181,29,27,255, 138,102,78,255, 144,108,84,255, 154,118,94,255, 156,120,96,255, 138,102,78,255, 148,112,88,255, 145,109,85,255, 150,114,90,255, 145,109,85,255, 143,107,83,255, 122,94,75,255, 110,82,63,255, 156,117,90,255, 158,119,92,255, 131,95,71,255, 144,108,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,79,42,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 37,37,41,255, 37,37,41,255, 27,27,31,255, 25,26,30,255, 19,20,24,255, 19,20,24,255, 18,19,23,255, 21,21,25,255, 27,27,31,255, 37,37,41,255, 23,24,28,255, 17,18,22,255, 37,37,41,255, 37,37,41,255, 25,25,29,255, 21,22,26,255, 71,79,82,255, 71,79,82,255, 67,74,77,255, 66,73,76,255, 62,67,70,255, 62,67,70,255, 61,66,69,255, 63,68,72,255, 68,75,78,255, 71,79,82,255, 65,71,74,255, 60,65,69,255, 71,79,82,255, 71,79,82,255, 66,72,75,255, 63,69,72,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,0,0,255, 72,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,30,11,255, 59,39,19,255, 29,16,5,255, 49,33,13,255, 79,53,25,255, 43,25,7,255, 47,30,11,255, 19,8,3,255, 74,49,22,255, 19,8,3,255, 59,39,19,255, 36,22,6,255, 15,4,3,255, 59,39,19,255, 19,8,3,255, 51,35,15,255, 61,61,58,255, 224,218,206,255, 218,213,206,255, 225,230,224,255, 232,235,227,255, 187,184,176,255, 234,229,220,255, 219,214,211,255, 210,221,211,255, 217,219,212,255, 239,234,225,255, 234,231,226,255, 180,179,179,255, 239,231,227,255, 233,231,228,255, 235,234,229,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 76,0,5,255, 189,187,56,255, 193,195,58,255, 196,201,60,255, 160,90,11,255, 233,180,22,255, 76,0,5,255, 196,201,60,255, 193,195,58,255, 189,187,56,255, 184,178,53,255, 233,180,22,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 213,213,213,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,29,29,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 167,83,32,255, 0,0,0,0, 181,29,27,255, 190,38,36,255, 181,29,27,255, 184,32,30,255, 181,29,27,255, 175,23,21,255, 187,35,33,255, 178,26,24,255, 182,30,28,255, 181,29,27,255, 181,29,27,255, 185,33,31,255, 188,36,34,255, 171,19,17,255, 178,26,24,255, 181,29,27,255, 141,105,81,255, 139,103,79,255, 142,106,82,255, 143,107,83,255, 109,81,62,255, 148,112,88,255, 142,106,82,255, 142,106,82,255, 142,106,82,255, 144,108,84,255, 107,79,60,255, 159,120,93,255, 162,123,96,255, 159,120,93,255, 153,117,93,255, 138,102,78,255, 195,195,195,255, 195,195,195,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 92,77,48,255, 142,115,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,79,42,255, 142,115,60,255, 0,0,0,0, 15,16,21,255, 15,16,21,255, 37,37,41,255, 37,37,41,255, 25,25,29,255, 23,24,28,255, 28,28,32,255, 28,28,32,255, 12,13,18,255, 14,15,20,255, 25,26,30,255, 28,28,32,255, 23,24,28,255, 23,23,27,255, 28,28,32,255, 28,28,32,255, 59,63,67,255, 59,63,67,255, 71,79,82,255, 71,79,82,255, 66,72,75,255, 65,71,74,255, 69,76,79,255, 68,75,78,255, 57,61,65,255, 58,63,66,255, 66,73,76,255, 69,76,79,255, 65,71,74,255, 64,70,73,255, 69,76,79,255, 68,75,78,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 72,0,0,255, 41,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,33,13,255, 82,55,28,255, 19,8,3,255, 49,33,13,255, 83,56,29,255, 19,8,3,255, 82,55,28,255, 20,10,4,255, 80,54,26,255, 17,6,3,255, 59,39,19,255, 29,16,5,255, 45,28,9,255, 59,39,19,255, 20,10,4,255, 51,35,15,255, 231,233,225,255, 186,179,176,255, 255,255,255,255, 236,234,222,255, 234,229,226,255, 219,220,212,255, 222,218,213,255, 230,232,227,255, 255,255,255,255, 191,185,176,255, 230,235,227,255, 234,239,231,255, 255,255,255,255, 221,216,211,255, 217,221,212,255, 215,214,216,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 193,195,58,255, 198,204,61,255, 160,90,11,255, 226,152,19,255, 226,152,19,255, 160,90,11,255, 202,212,64,255, 198,204,61,255, 193,195,58,255, 188,185,55,255, 160,90,11,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,29,29,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 232,53,53,255, 234,29,29,255, 213,213,213,255, 223,223,223,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 177,25,23,255, 185,33,31,255, 181,29,27,255, 186,34,32,255, 175,23,21,255, 179,27,25,255, 186,34,32,255, 173,21,19,255, 183,31,29,255, 181,29,27,255, 176,24,22,255, 177,25,23,255, 208,208,208,255, 214,214,214,255, 181,29,27,255, 191,39,37,255, 156,120,96,255, 146,110,86,255, 141,105,81,255, 109,81,62,255, 108,80,61,255, 164,125,98,255, 147,111,87,255, 154,118,94,255, 139,103,79,255, 139,103,79,255, 111,83,64,255, 111,83,64,255, 168,129,102,255, 138,102,78,255, 140,104,80,255, 138,102,78,255, 140,140,140,255, 140,140,140,255, 140,140,140,255, 140,140,140,255, 195,195,195,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 133,133,133,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 100,79,42,255, 135,109,69,255, 142,115,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,79,42,255, 129,103,64,255, 0,0,0,0, 25,25,29,255, 24,24,28,255, 10,12,16,255, 14,15,20,255, 28,28,32,255, 23,24,28,255, 13,14,19,255, 15,16,21,255, 14,15,20,255, 16,18,22,255, 14,15,20,255, 9,11,16,255, 19,20,24,255, 17,18,22,255, 11,12,17,255, 10,12,17,255, 66,72,75,255, 65,72,75,255, 56,59,63,255, 59,63,66,255, 68,75,78,255, 65,71,74,255, 58,62,65,255, 59,64,67,255, 59,63,66,255, 60,65,68,255, 58,63,66,255, 55,59,63,255, 62,67,70,255, 60,65,69,255, 56,60,64,255, 56,60,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,62,255, 76,61,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,30,11,255, 80,54,26,255, 20,10,4,255, 52,35,16,255, 77,51,23,255, 20,10,4,255, 47,30,11,255, 20,10,4,255, 47,30,11,255, 20,10,4,255, 77,51,23,255, 19,8,3,255, 49,33,13,255, 49,33,13,255, 20,10,4,255, 59,39,19,255, 220,209,212,255, 218,220,210,255, 222,211,213,255, 255,255,255,255, 255,255,255,255, 232,238,230,255, 241,234,231,255, 255,255,255,255, 234,223,223,255, 234,236,227,255, 240,237,230,255, 237,226,231,255, 227,233,229,255, 236,241,228,255, 210,218,212,255, 221,222,213,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 246,221,49,255, 249,255,58,255, 226,152,19,255, 233,180,22,255, 226,152,19,255, 208,124,20,255, 233,180,22,255, 226,152,19,255, 226,152,19,255, 233,180,22,255, 226,152,19,255, 233,180,22,255, 241,210,34,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 234,29,29,255, 234,29,29,255, 223,223,223,255, 223,223,223,255, 232,53,53,255, 234,29,29,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 194,194,194,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 194,194,194,255, 0,0,0,0, 0,0,0,0, 194,194,194,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 122,34,0,255, 103,23,0,255, 103,23,0,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 194,194,194,255, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 180,28,26,255, 179,27,25,255, 185,33,31,255, 174,22,20,255, 179,27,25,255, 183,31,29,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 175,23,21,255, 184,32,30,255, 181,29,27,255, 216,216,216,255, 219,219,219,255, 181,29,27,255, 181,29,27,255, 146,110,86,255, 145,109,85,255, 146,110,86,255, 114,86,67,255, 108,80,61,255, 163,124,97,255, 134,98,74,255, 143,107,83,255, 149,113,89,255, 156,120,96,255, 146,110,86,255, 107,79,60,255, 154,115,88,255, 139,103,79,255, 143,107,83,255, 139,103,79,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 140,140,140,255, 84,84,84,255, 84,84,84,255, 133,133,133,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 100,79,42,255, 129,103,64,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 100,79,42,255, 129,103,64,255, 0,0,0,0, 14,15,20,255, 17,18,22,255, 16,17,21,255, 27,27,31,255, 8,10,15,255, 9,10,15,255, 17,18,22,255, 22,23,27,255, 13,14,19,255, 23,23,27,255, 37,37,41,255, 37,37,41,255, 18,19,23,255, 24,24,28,255, 37,37,41,255, 37,37,41,255, 59,63,66,255, 60,65,69,255, 60,64,68,255, 68,75,78,255, 55,58,62,255, 55,58,62,255, 60,65,69,255, 64,70,73,255, 58,62,65,255, 64,70,73,255, 71,79,82,255, 71,79,82,255, 61,66,70,255, 65,72,75,255, 71,79,82,255, 71,79,82,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 147,115,68,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,30,11,255, 83,56,29,255, 24,13,4,255, 46,29,10,255, 50,33,14,255, 77,51,23,255, 20,10,4,255, 48,31,12,255, 48,31,12,255, 17,6,3,255, 78,52,24,255, 20,10,4,255, 49,33,13,255, 78,52,24,255, 20,10,4,255, 59,39,19,255, 236,236,220,255, 227,229,228,255, 233,234,227,255, 226,232,226,255, 222,218,213,255, 222,218,213,255, 177,187,178,255, 223,218,212,255, 182,186,176,255, 217,217,201,255, 214,218,214,255, 236,233,228,255, 233,241,232,255, 233,239,222,255, 240,234,232,255, 233,230,226,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 45,0,3,255, 160,90,11,255, 45,0,3,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 160,90,11,255, 45,0,3,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 241,210,34,255, 233,180,22,255, 76,0,5,255, 233,180,22,255, 76,0,5,255, 233,180,22,255, 233,180,22,255, 76,0,5,255, 233,180,22,255, 233,180,22,255, 76,0,5,255, 233,180,22,255, 76,0,5,255, 244,248,40,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 223,223,223,255, 234,29,29,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 234,29,29,255, 234,29,29,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 194,194,194,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 194,194,194,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 122,34,0,255, 234,233,235,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 167,83,32,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 167,83,32,255, 0,0,0,0, 180,28,26,255, 164,12,10,255, 180,28,26,255, 174,22,20,255, 181,29,27,255, 182,30,28,255, 178,26,24,255, 184,32,30,255, 182,30,28,255, 181,29,27,255, 181,29,27,255, 178,26,24,255, 185,33,31,255, 180,28,26,255, 181,29,27,255, 180,28,26,255, 143,107,83,255, 149,113,89,255, 115,87,68,255, 114,86,67,255, 172,133,106,255, 144,108,84,255, 137,101,77,255, 152,116,92,255, 152,116,92,255, 152,116,92,255, 145,109,85,255, 151,115,91,255, 140,104,80,255, 145,109,85,255, 152,116,92,255, 145,109,85,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,255, 140,140,140,255, 140,140,140,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,79,42,255, 129,103,64,255, 142,115,60,255, 0,0,0,0, 0,0,0,0, 91,70,37,255, 135,109,69,255, 28,28,32,255, 28,28,32,255, 25,25,29,255, 25,25,29,255, 37,37,41,255, 28,28,32,255, 25,25,29,255, 23,24,28,255, 28,28,32,255, 27,27,31,255, 16,18,22,255, 21,21,25,255, 23,23,27,255, 19,20,24,255, 11,13,17,255, 20,20,25,255, 68,75,78,255, 69,76,79,255, 66,72,75,255, 66,72,75,255, 71,79,82,255, 69,76,79,255, 66,72,75,255, 65,71,74,255, 69,76,79,255, 68,75,78,255, 60,65,68,255, 63,68,72,255, 64,70,73,255, 62,67,70,255, 57,60,64,255, 62,67,71,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,117,70,255, 66,53,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,12,4,255, 59,39,19,255, 20,10,4,255, 48,31,12,255, 46,29,10,255, 78,52,24,255, 17,6,3,255, 43,26,7,255, 19,8,3,255, 41,25,9,255, 85,58,31,255, 20,10,4,255, 48,31,12,255, 83,56,29,255, 22,11,4,255, 78,52,24,255, 183,187,176,255, 236,240,228,255, 218,215,207,255, 219,217,211,255, 223,217,212,255, 182,180,176,255, 236,239,231,255, 236,239,231,255, 236,239,231,255, 236,234,222,255, 255,255,255,255, 255,255,255,255, 234,232,225,255, 228,227,225,255, 255,255,255,255, 234,232,232,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 45,0,3,255, 45,0,3,255, 45,0,3,255, 45,0,3,255, 68,19,0,255, 45,0,3,255, 45,0,3,255, 68,19,0,255, 45,0,3,255, 45,0,3,255, 68,19,0,255, 45,0,3,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 244,248,40,255, 76,0,5,255, 76,0,5,255, 76,0,5,255, 76,0,5,255, 213,231,69,255, 76,0,5,255, 76,0,5,255, 219,243,73,255, 76,0,5,255, 76,0,5,255, 200,207,62,255, 76,0,5,255, 233,180,22,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 234,233,235,255, 213,213,213,255, 223,223,223,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 194,194,194,255, 234,233,235,255, 194,194,194,255, 194,194,194,255, 223,223,223,255, 234,233,235,255, 194,194,194,255, 194,194,194,255, 223,223,223,255, 234,233,235,255, 194,194,194,255, 194,194,194,255, 223,223,223,255, 194,194,194,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 122,34,0,255, 129,38,0,255, 129,38,0,255, 122,34,0,255, 122,34,0,255, 129,38,0,255, 122,34,0,255, 122,34,0,255, 129,38,0,255, 129,38,0,255, 129,38,0,255, 122,34,0,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 181,29,27,255, 178,26,24,255, 186,34,32,255, 181,29,27,255, 183,31,29,255, 171,19,17,255, 182,30,28,255, 188,36,34,255, 181,29,27,255, 181,29,27,255, 184,32,30,255, 178,26,24,255, 181,29,27,255, 169,17,15,255, 185,33,31,255, 184,32,30,255, 135,99,75,255, 143,107,83,255, 114,86,67,255, 159,120,93,255, 156,117,90,255, 147,111,87,255, 148,112,88,255, 157,121,97,255, 111,83,64,255, 113,85,66,255, 148,112,88,255, 141,105,81,255, 139,103,79,255, 157,121,97,255, 142,106,82,255, 151,115,91,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 84,84,84,255, 0,0,0,0, 140,140,140,255, 140,140,140,255, 114,114,114,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,103,64,255, 82,67,40,255, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,79,42,255, 129,103,64,255, 142,115,60,255, 0,0,0,0, 65,54,37,255, 104,85,56,255, 11,13,17,255, 13,14,19,255, 22,23,27,255, 22,23,27,255, 15,16,21,255, 15,16,21,255, 26,26,30,255, 24,24,28,255, 12,13,18,255, 13,14,19,255, 14,15,20,255, 23,23,27,255, 8,10,15,255, 8,10,15,255, 16,17,21,255, 23,23,27,255, 57,60,64,255, 58,62,65,255, 64,70,73,255, 64,70,73,255, 59,63,67,255, 59,64,67,255, 67,73,76,255, 65,72,75,255, 57,61,65,255, 58,62,65,255, 59,63,66,255, 64,70,73,255, 55,58,62,255, 55,58,62,255, 60,64,68,255, 64,70,73,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,127,80,255, 64,51,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 19,8,3,255, 59,39,19,255, 20,10,4,255, 46,29,10,255, 50,34,16,255, 82,55,28,255, 20,10,4,255, 82,55,28,255, 15,5,3,255, 41,25,9,255, 84,57,30,255, 19,8,3,255, 49,33,13,255, 79,53,25,255, 19,8,3,255, 83,56,29,255, 233,234,227,255, 235,232,227,255, 230,231,227,255, 227,237,224,255, 233,233,226,255, 188,182,179,255, 176,185,177,255, 176,185,177,255, 237,235,228,255, 237,235,227,255, 213,225,212,255, 221,222,211,255, 176,185,177,255, 180,178,178,255, 221,218,211,255, 217,223,220,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 76,0,5,255, 193,194,58,255, 199,206,62,255, 205,217,65,255, 211,228,68,255, 216,238,71,255, 219,243,73,255, 216,238,71,255, 211,228,68,255, 205,217,65,255, 199,206,62,255, 193,194,58,255, 186,182,54,255, 233,180,22,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 223,223,223,255, 223,223,223,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 232,53,53,255, 234,29,29,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 194,194,194,255, 194,194,194,255, 167,83,32,255, 167,83,32,255, 194,194,194,255, 194,194,194,255, 167,83,32,255, 167,83,32,255, 194,194,194,255, 194,194,194,255, 167,83,32,255, 167,83,32,255, 194,194,194,255, 194,194,194,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 129,38,0,255, 122,34,0,255, 129,38,0,255, 129,38,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 181,29,27,255, 177,25,23,255, 180,28,26,255, 181,29,27,255, 181,29,27,255, 183,31,29,255, 177,25,23,255, 180,28,26,255, 190,38,36,255, 183,31,29,255, 181,29,27,255, 181,29,27,255, 179,27,25,255, 181,29,27,255, 183,31,29,255, 187,35,33,255, 145,109,85,255, 141,105,81,255, 109,81,62,255, 164,125,98,255, 151,115,91,255, 146,110,86,255, 148,112,88,255, 112,84,65,255, 123,95,76,255, 173,134,107,255, 144,108,84,255, 148,112,88,255, 152,116,92,255, 142,106,82,255, 145,109,85,255, 138,102,78,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,215,215,255, 114,114,114,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 92,77,48,255, 135,109,69,255, 142,115,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,79,42,255, 100,79,42,255, 104,85,56,255, 104,104,104,255, 104,104,104,255, 15,16,21,255, 15,16,21,255, 8,10,15,255, 9,10,15,255, 28,28,32,255, 33,32,37,255, 10,12,17,255, 8,10,15,255, 19,20,24,255, 26,26,30,255, 21,21,25,255, 24,24,28,255, 37,37,41,255, 37,37,41,255, 23,23,27,255, 9,11,16,255, 59,64,67,255, 59,63,67,255, 55,58,62,255, 55,58,62,255, 68,75,78,255, 70,78,81,255, 56,60,63,255, 54,58,62,255, 62,67,70,255, 67,73,76,255, 63,68,72,255, 65,72,75,255, 71,79,82,255, 71,79,82,255, 64,70,73,255, 55,59,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 151,119,72,255, 60,47,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 17,7,3,255, 82,55,28,255, 17,6,3,255, 45,28,9,255, 49,33,13,255, 82,55,28,255, 15,5,3,255, 48,31,12,255, 20,10,4,255, 44,27,8,255, 79,53,25,255, 19,8,3,255, 48,31,12,255, 43,25,7,255, 20,10,4,255, 80,54,26,255, 227,233,232,255, 255,255,255,255, 255,255,255,255, 236,234,232,255, 215,218,212,255, 219,218,213,255, 215,227,212,255, 234,234,227,255, 234,235,226,255, 231,233,223,255, 232,234,232,255, 235,230,224,255, 234,229,226,255, 233,233,228,255, 62,62,62,255, 66,64,57,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 68,19,0,255, 160,90,11,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 68,19,0,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 68,19,0,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 226,152,19,255, 76,0,5,255, 196,201,60,255, 226,152,19,255, 207,221,66,255, 211,228,68,255, 226,152,19,255, 211,228,68,255, 207,221,66,255, 202,212,64,255, 160,90,11,255, 191,190,57,255, 185,179,54,255, 233,180,22,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,29,29,255, 234,29,29,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 167,83,32,255, 167,83,32,255, 175,88,35,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 175,88,35,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 175,88,35,255, 167,83,32,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 122,34,0,255, 122,34,0,255, 122,34,0,255, 116,32,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 116,32,0,255, 122,34,0,255, 122,34,0,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 180,28,26,255, 185,33,31,255, 181,29,27,255, 185,33,31,255, 181,29,27,255, 188,36,34,255, 179,27,25,255, 208,208,208,255, 214,214,214,255, 180,28,26,255, 181,29,27,255, 179,27,25,255, 184,32,30,255, 178,26,24,255, 180,28,26,255, 182,30,28,255, 143,107,83,255, 145,109,85,255, 103,75,56,255, 158,119,92,255, 144,108,84,255, 139,103,79,255, 108,80,61,255, 112,84,65,255, 119,91,72,255, 159,120,93,255, 144,108,84,255, 145,109,85,255, 148,112,88,255, 127,91,67,255, 145,109,85,255, 138,102,78,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 205,205,205,255, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 65,54,37,255, 91,70,37,255, 100,79,42,255, 129,103,64,255, 142,115,60,255, 142,115,60,255, 0,0,0,0, 0,0,0,0, 65,54,37,255, 104,104,104,255, 164,164,164,255, 164,164,164,255, 24,24,28,255, 23,24,28,255, 34,34,38,255, 37,37,41,255, 28,28,32,255, 25,25,29,255, 21,21,25,255, 16,18,22,255, 8,10,15,255, 18,19,23,255, 24,24,28,255, 28,28,32,255, 18,19,23,255, 18,19,23,255, 28,28,32,255, 37,37,41,255, 65,72,75,255, 65,71,74,255, 70,78,81,255, 71,79,82,255, 68,75,78,255, 66,72,75,255, 63,68,72,255, 60,65,68,255, 55,58,62,255, 61,66,70,255, 65,72,75,255, 69,76,79,255, 61,66,69,255, 61,66,70,255, 69,76,79,255, 71,79,82,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,82,49,255, 61,48,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 20,10,4,255, 50,33,14,255, 41,25,9,255, 49,33,13,255, 47,30,11,255, 59,39,19,255, 29,16,5,255, 51,35,15,255, 50,33,14,255, 44,27,8,255, 46,29,10,255, 19,8,3,255, 48,31,12,255, 77,51,23,255, 83,56,29,255, 17,6,3,255, 58,61,58,255, 219,216,209,255, 215,220,210,255, 236,242,223,255, 238,235,229,255, 234,235,219,255, 230,237,232,255, 181,179,174,255, 216,218,212,255, 233,236,228,255, 235,228,225,255, 232,228,226,255, 64,59,57,255, 62,57,64,255, 31,30,24,255, 27,26,19,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 45,0,3,255, 160,90,11,255, 227,144,29,255, 68,19,0,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 68,19,0,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 76,0,5,255, 226,152,19,255, 227,144,29,255, 202,212,64,255, 226,152,19,255, 160,90,11,255, 227,144,29,255, 246,221,49,255, 198,204,61,255, 160,90,11,255, 227,166,75,255, 160,90,11,255, 160,90,11,255, 0,0,0,0, 223,223,223,255, 234,233,235,255, 234,29,29,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 234,233,235,255, 223,223,223,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 175,88,35,255, 184,93,39,255, 184,93,39,255, 175,88,35,255, 175,88,35,255, 184,93,39,255, 184,93,39,255, 175,88,35,255, 175,88,35,255, 184,93,39,255, 184,93,39,255, 175,88,35,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 122,34,0,255, 129,38,0,255, 129,38,0,255, 122,34,0,255, 122,34,0,255, 129,38,0,255, 129,38,0,255, 122,34,0,255, 122,34,0,255, 129,38,0,255, 129,38,0,255, 122,34,0,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 0,0,0,0, 182,30,28,255, 176,24,22,255, 181,29,27,255, 173,21,19,255, 179,27,25,255, 173,21,19,255, 181,29,27,255, 214,214,214,255, 215,215,215,255, 172,20,18,255, 177,25,23,255, 178,26,24,255, 181,29,27,255, 181,29,27,255, 188,36,34,255, 184,32,30,255, 140,104,80,255, 147,111,87,255, 147,111,87,255, 147,111,87,255, 150,114,90,255, 137,101,77,255, 112,84,65,255, 113,85,66,255, 159,120,93,255, 163,124,97,255, 145,109,85,255, 142,106,82,255, 146,110,86,255, 145,109,85,255, 151,115,91,255, 147,111,87,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,79,42,255, 100,79,42,255, 100,79,42,255, 142,115,60,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 129,103,64,255, 33,32,37,255, 30,30,34,255, 20,20,25,255, 17,18,22,255, 28,28,32,255, 21,21,25,255, 23,23,27,255, 25,26,30,255, 37,37,41,255, 27,27,31,255, 14,15,20,255, 14,15,20,255, 21,22,26,255, 24,24,28,255, 15,16,21,255, 12,13,18,255, 70,78,81,255, 70,77,80,255, 62,67,71,255, 60,65,69,255, 69,76,79,255, 63,68,72,255, 64,70,73,255, 66,73,76,255, 71,79,82,255, 68,75,78,255, 58,63,66,255, 59,63,66,255, 63,69,72,255, 65,72,75,255, 59,64,67,255, 57,61,65,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,120,73,255, 59,46,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 17,6,3,255, 46,29,10,255, 79,53,25,255, 20,10,4,255, 49,33,13,255, 59,39,19,255, 29,16,5,255, 19,8,3,255, 76,50,22,255, 47,30,11,255, 80,54,26,255, 17,7,3,255, 44,27,8,255, 59,39,19,255, 19,8,3,255, 46,29,10,255, 25,24,28,255, 63,60,58,255, 54,63,58,255, 234,234,230,255, 233,234,224,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 237,231,229,255, 219,220,212,255, 58,58,62,255, 60,60,57,255, 186,179,176,255, 218,221,218,255, 29,34,24,255, 28,23,27,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 227,144,29,255, 208,124,20,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,166,75,255, 227,144,29,255, 160,90,11,255, 160,90,11,255, 227,144,29,255, 227,144,29,255, 160,90,11,255, 0,0,0,0, 213,213,213,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 223,223,223,255, 213,213,213,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 184,93,39,255, 167,83,32,255, 184,93,39,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 129,38,0,255, 129,38,0,255, 129,38,0,255, 129,38,0,255, 129,38,0,255, 116,32,0,255, 129,38,0,255, 129,38,0,255, 129,38,0,255, 129,38,0,255, 116,32,0,255, 129,38,0,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 167,83,32,255, 0,0,0,0, 181,29,27,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 175,23,21,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 174,22,20,255, 187,35,33,255, 181,29,27,255, 181,29,27,255, 184,32,30,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 151,115,91,255, 146,110,86,255, 142,106,82,255, 154,118,94,255, 143,107,83,255, 145,109,85,255, 121,93,74,255, 155,116,89,255, 166,127,100,255, 146,110,86,255, 143,107,83,255, 143,107,83,255, 137,101,77,255, 145,109,85,255, 152,116,92,255, 145,109,85,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,61,37,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 9,11,16,255, 13,14,19,255, 28,28,32,255, 21,22,26,255, 12,13,18,255, 15,16,21,255, 28,28,32,255, 34,34,38,255, 18,19,23,255, 15,16,21,255, 23,24,28,255, 28,28,32,255, 12,13,18,255, 13,14,19,255, 27,27,31,255, 28,28,32,255, 56,59,63,255, 58,62,65,255, 68,75,78,255, 63,69,72,255, 57,61,65,255, 59,64,67,255, 69,76,79,255, 70,78,81,255, 61,66,69,255, 59,63,67,255, 65,71,74,255, 68,75,78,255, 57,61,65,255, 58,62,65,255, 68,75,78,255, 69,76,79,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,82,49,255, 55,42,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 41,25,9,255, 47,30,11,255, 59,39,19,255, 19,8,3,255, 43,26,7,255, 47,30,11,255, 47,30,11,255, 20,10,4,255, 47,30,11,255, 49,33,13,255, 46,29,10,255, 15,4,3,255, 46,29,10,255, 47,30,11,255, 44,27,8,255, 59,39,19,255, 232,230,229,255, 235,234,230,255, 234,235,229,255, 59,60,57,255, 217,223,213,255, 218,220,213,255, 226,220,216,255, 237,234,230,255, 234,234,229,255, 237,237,233,255, 215,209,211,255, 224,221,213,255, 220,214,215,255, 255,255,255,255, 255,255,255,255, 244,239,227,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 208,124,20,255, 208,124,20,255, 160,90,11,255, 160,90,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 151,73,26,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 103,23,0,255, 151,73,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 189,37,35,255, 181,29,27,255, 186,34,32,255, 191,39,37,255, 174,22,20,255, 178,26,24,255, 180,28,26,255, 170,18,16,255, 185,33,31,255, 173,21,19,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 181,29,27,255, 187,35,33,255, 181,29,27,255, 148,112,88,255, 155,119,95,255, 146,110,86,255, 153,117,93,255, 153,117,93,255, 147,111,87,255, 139,103,79,255, 135,99,75,255, 145,109,85,255, 136,100,76,255, 146,110,86,255, 142,106,82,255, 148,112,88,255, 146,110,86,255, 146,110,86,255, 152,116,92,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 149,34,33,255, 153,36,33,255, 147,34,32,255, 149,34,33,255, 159,38,33,255, 169,42,35,255, 150,35,33,255, 151,35,33,255, 165,40,34,255, 167,41,35,255, 144,33,32,255, 148,34,32,255, 161,39,34,255, 161,39,34,255, 148,34,32,255, 145,33,32,255, 229,117,155,255, 236,126,161,255, 224,113,151,255, 228,117,154,255, 243,138,170,255, 244,158,185,255, 230,120,156,255, 233,123,158,255, 244,149,178,255, 244,154,181,255, 218,106,146,255, 226,114,152,255, 244,142,172,255, 244,142,172,255, 226,114,152,255, 221,109,148,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 146,146,146,255, 120,120,120,255, 146,146,146,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 0,0,0,0, 154,154,154,255, 0,0,0,0, 79,79,79,255, 0,0,0,0, 154,154,154,255, 79,79,79,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 180,91,33,255, 168,85,31,255, 154,80,26,255, 148,75,21,255, 174,88,32,255, 168,85,30,255, 180,92,34,255, 148,75,21,255, 163,84,29,255, 172,88,31,255, 169,86,30,255, 170,86,30,255, 148,75,21,255, 167,86,30,255, 170,87,31,255, 170,86,31,255, 130,8,8,255, 130,8,9,255, 135,12,14,255, 138,15,14,255, 133,6,12,255, 130,11,8,255, 137,12,14,255, 144,13,13,255, 139,16,13,255, 130,9,10,255, 128,6,9,255, 130,10,9,255, 130,10,9,255, 139,13,14,255, 136,14,18,255, 135,13,15,255, 129,9,8,255, 126,9,4,255, 134,10,7,255, 150,30,32,255, 147,31,28,255, 138,20,19,255, 131,9,12,255, 113,0,0,255, 178,179,175,255, 173,173,173,255, 188,192,190,255, 201,199,199,255, 176,177,178,255, 157,160,159,255, 159,156,157,255, 177,176,175,255, 174,181,38,255, 137,141,33,255, 137,141,33,255, 190,184,41,255, 190,184,41,255, 190,184,41,255, 162,164,43,255, 126,133,35,255, 126,133,35,255, 174,181,38,255, 174,181,38,255, 167,166,39,255, 131,136,36,255, 131,136,36,255, 175,173,38,255, 176,173,38,255, 166,166,39,255, 188,185,45,255, 166,166,39,255, 124,134,33,255, 124,134,33,255, 177,175,39,255, 177,175,39,255, 177,175,39,255, 188,185,45,255, 177,175,39,255, 153,155,35,255, 122,126,36,255, 153,155,35,255, 188,185,45,255, 188,185,45,255, 188,185,45,255, 72,72,72,255, 81,81,81,255, 78,78,78,255, 74,74,74,255, 67,67,67,255, 83,83,83,255, 82,82,82,255, 77,77,77,255, 75,75,75,255, 77,77,77,255, 77,77,77,255, 75,75,75,255, 74,74,74,255, 79,79,79,255, 75,75,75,255, 78,78,78,255, 57,57,57,255, 61,61,61,255, 61,61,61,255, 61,61,61,255, 58,58,58,255, 60,60,60,255, 55,55,55,255, 57,57,57,255, 56,56,56,255, 61,61,61,255, 57,57,57,255, 60,60,60,255, 58,58,58,255, 61,61,61,255, 58,58,58,255, 61,61,61,255, 41,36,34,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 52,46,42,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 39,34,32,255, 196,193,183,255, 214,211,200,255, 217,213,202,255, 218,214,204,255, 189,186,177,255, 217,213,202,255, 218,214,204,255, 192,189,179,255, 214,210,199,255, 214,211,200,255, 214,210,199,255, 218,214,204,255, 217,213,202,255, 218,214,204,255, 214,211,200,255, 218,214,204,255, 210,177,125,255, 205,173,122,255, 208,177,125,255, 210,177,125,255, 210,177,125,255, 208,176,125,255, 210,177,125,255, 210,177,125,255, 204,173,123,255, 205,173,122,255, 204,172,121,255, 210,177,125,255, 208,176,125,255, 171,144,102,255, 205,173,122,255, 210,177,125,255, 0,0,0,0, 0,0,0,0, 107,107,107,255, 84,84,84,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 92,77,48,255, 113,93,53,255, 164,128,74,255, 164,128,74,255, 172,136,82,255, 172,136,82,255, 135,109,69,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 159,38,33,255, 164,40,34,255, 184,52,44,255, 184,52,44,255, 171,43,36,255, 167,41,35,255, 156,37,33,255, 155,36,33,255, 149,34,33,255, 145,33,32,255, 151,35,33,255, 155,36,33,255, 142,32,32,255, 146,33,32,255, 153,36,33,255, 157,37,33,255, 243,140,170,255, 244,148,177,255, 244,178,201,255, 244,178,201,255, 244,162,188,255, 244,154,181,255, 240,132,165,255, 239,131,164,255, 228,117,154,255, 221,109,148,255, 233,123,158,255, 239,131,164,255, 215,102,144,255, 222,110,149,255, 236,126,161,255, 241,135,167,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 128,128,128,255, 152,152,152,255, 138,138,138,255, 138,138,138,255, 79,79,79,255, 49,49,49,255, 152,152,152,255, 0,0,0,0, 49,49,49,255, 0,0,0,0, 152,152,152,255, 138,138,138,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 138,138,138,255, 176,89,33,255, 148,75,21,255, 168,85,30,255, 171,86,31,255, 148,75,21,255, 163,82,29,255, 164,83,29,255, 148,75,21,255, 168,86,30,255, 169,86,30,255, 161,82,29,255, 163,83,29,255, 162,83,29,255, 148,75,21,255, 148,75,21,255, 177,90,33,255, 129,9,9,255, 132,10,9,255, 143,17,16,255, 151,22,22,255, 148,21,16,255, 151,20,22,255, 151,20,22,255, 154,21,25,255, 153,18,21,255, 143,15,19,255, 136,10,12,255, 153,22,25,255, 160,26,28,255, 160,30,29,255, 163,23,27,255, 164,31,32,255, 167,34,36,255, 155,25,22,255, 137,5,11,255, 158,36,38,255, 158,41,37,255, 137,13,15,255, 132,7,9,255, 118,4,1,255, 198,196,203,255, 208,211,208,255, 230,235,234,255, 246,244,247,255, 210,215,214,255, 184,179,181,255, 176,170,171,255, 159,164,161,255, 174,181,38,255, 137,141,33,255, 122,126,36,255, 137,141,33,255, 179,184,42,255, 190,184,41,255, 158,158,36,255, 126,133,35,255, 148,156,34,255, 177,175,39,255, 177,175,39,255, 131,136,36,255, 131,136,36,255, 131,136,36,255, 144,152,55,255, 176,173,38,255, 190,184,41,255, 188,185,45,255, 188,185,45,255, 90,103,26,255, 124,134,33,255, 124,134,33,255, 190,184,41,255, 177,175,39,255, 177,175,39,255, 153,155,35,255, 122,126,36,255, 153,155,35,255, 122,126,36,255, 177,175,39,255, 177,175,39,255, 153,155,35,255, 72,72,72,255, 59,59,59,255, 64,64,64,255, 60,60,60,255, 62,62,62,255, 64,64,64,255, 61,61,61,255, 63,63,63,255, 68,68,68,255, 59,59,59,255, 63,63,63,255, 60,60,60,255, 61,61,61,255, 63,63,63,255, 59,59,59,255, 63,63,63,255, 60,60,60,255, 63,63,63,255, 64,64,64,255, 56,56,56,255, 59,59,59,255, 59,59,59,255, 55,55,55,255, 60,60,60,255, 64,64,64,255, 60,60,60,255, 59,59,59,255, 56,56,56,255, 58,58,58,255, 55,55,55,255, 60,60,60,255, 60,60,60,255, 53,47,43,255, 121,85,67,255, 131,87,66,255, 132,82,60,255, 131,87,66,255, 131,87,66,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 131,87,66,255, 116,80,57,255, 131,87,66,255, 121,85,67,255, 49,44,40,255, 190,187,178,255, 213,209,198,255, 218,214,204,255, 185,182,173,255, 190,187,178,255, 218,214,204,255, 192,189,179,255, 214,210,199,255, 218,214,204,255, 189,186,177,255, 214,211,200,255, 218,214,204,255, 200,196,186,255, 218,214,204,255, 200,196,186,255, 218,214,204,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 204,173,123,255, 171,144,102,255, 210,177,125,255, 205,173,122,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,170,170,255, 107,107,107,255, 84,84,84,255, 84,84,84,255, 107,107,107,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 131,131,131,255, 170,170,170,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 69,59,39,255, 82,67,40,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 76,61,37,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 171,43,36,255, 172,44,36,255, 155,36,33,255, 157,37,33,255, 175,45,37,255, 172,44,36,255, 162,39,34,255, 155,36,33,255, 167,41,35,255, 172,44,36,255, 166,41,34,255, 166,41,34,255, 175,46,38,255, 184,52,44,255, 167,41,35,255, 164,40,34,255, 244,162,188,255, 244,167,192,255, 239,131,164,255, 242,136,168,255, 244,175,198,255, 244,167,192,255, 244,144,173,255, 239,131,164,255, 244,154,181,255, 244,167,192,255, 244,152,180,255, 244,152,180,255, 244,176,199,255, 244,178,201,255, 244,154,181,255, 244,148,177,255, 135,135,135,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 135,135,135,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 66,66,66,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 66,66,66,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 152,152,152,255, 154,80,26,255, 171,87,31,255, 167,85,30,255, 148,75,21,255, 148,75,21,255, 161,82,29,255, 158,80,28,255, 160,82,27,255, 148,75,21,255, 159,81,28,255, 158,80,27,255, 174,90,31,255, 148,75,21,255, 180,93,33,255, 171,88,31,255, 148,75,21,255, 130,9,8,255, 137,14,15,255, 169,43,47,255, 178,54,55,255, 173,51,55,255, 173,51,51,255, 176,57,53,255, 177,51,52,255, 172,48,49,255, 163,41,40,255, 165,40,40,255, 171,46,46,255, 178,56,58,255, 182,58,61,255, 182,56,63,255, 182,62,63,255, 180,61,61,255, 175,54,53,255, 146,25,23,255, 190,76,80,255, 180,64,65,255, 161,39,36,255, 127,7,9,255, 108,0,0,255, 198,200,197,255, 242,242,243,255, 255,252,255,255, 255,255,255,255, 243,243,249,255, 209,206,208,255, 177,177,174,255, 160,156,157,255, 174,181,38,255, 122,126,36,255, 137,141,33,255, 122,126,36,255, 179,184,42,255, 177,175,39,255, 139,148,45,255, 129,135,37,255, 124,134,33,255, 177,175,39,255, 174,181,38,255, 131,136,36,255, 100,111,31,255, 131,136,36,255, 131,136,36,255, 176,173,38,255, 190,184,41,255, 190,184,41,255, 190,184,41,255, 92,112,38,255, 153,155,35,255, 124,134,33,255, 190,184,41,255, 190,184,41,255, 153,155,35,255, 122,126,36,255, 153,155,35,255, 158,158,36,255, 153,155,35,255, 177,175,39,255, 153,155,35,255, 188,185,45,255, 76,76,76,255, 65,65,65,255, 78,78,78,255, 74,74,74,255, 67,67,67,255, 83,83,83,255, 82,82,82,255, 77,77,77,255, 75,75,75,255, 77,77,77,255, 77,77,77,255, 75,75,75,255, 74,74,74,255, 79,79,79,255, 62,62,62,255, 80,80,80,255, 60,60,60,255, 60,60,60,255, 58,58,58,255, 59,59,59,255, 59,59,59,255, 58,58,58,255, 56,56,56,255, 60,60,60,255, 57,57,57,255, 59,59,59,255, 59,59,59,255, 57,57,57,255, 56,56,56,255, 62,62,62,255, 60,60,60,255, 62,62,62,255, 53,47,43,255, 136,92,70,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 91,56,40,255, 148,95,68,255, 95,60,44,255, 155,102,75,255, 95,60,44,255, 148,95,68,255, 91,53,36,255, 155,102,75,255, 136,92,70,255, 49,44,40,255, 186,183,175,255, 210,206,196,255, 212,208,197,255, 192,189,179,255, 214,211,200,255, 218,214,204,255, 189,186,177,255, 214,210,199,255, 218,214,204,255, 188,185,175,255, 214,210,199,255, 218,214,204,255, 200,196,186,255, 218,214,204,255, 200,196,186,255, 218,214,204,255, 210,177,125,255, 210,177,125,255, 202,170,120,255, 210,177,125,255, 205,173,122,255, 171,144,102,255, 210,177,125,255, 204,172,121,255, 210,177,125,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,107,107,255, 170,170,170,255, 0,0,0,0, 0,0,0,0, 114,114,114,255, 107,107,107,255, 0,0,0,0, 0,0,0,0, 170,170,170,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 159,38,33,255, 153,36,33,255, 168,42,35,255, 172,44,36,255, 155,36,33,255, 153,36,33,255, 159,38,33,255, 172,44,36,255, 150,35,33,255, 156,37,33,255, 172,44,36,255, 172,44,36,255, 159,38,33,255, 153,36,33,255, 184,52,44,255, 172,43,36,255, 243,140,170,255, 236,126,161,255, 244,156,183,255, 244,167,192,255, 239,131,164,255, 237,128,162,255, 243,138,170,255, 244,167,192,255, 230,120,156,255, 240,132,165,255, 244,167,192,255, 244,167,192,255, 243,140,170,255, 236,126,161,255, 244,178,201,255, 244,165,190,255, 135,135,135,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 85,85,85,255, 0,0,0,0, 138,138,138,255, 0,0,0,0, 79,79,79,255, 49,49,49,255, 152,152,152,255, 79,79,79,255, 152,152,152,255, 0,0,0,0, 154,80,26,255, 169,86,30,255, 148,75,21,255, 177,90,34,255, 177,90,34,255, 148,75,21,255, 166,84,30,255, 170,86,31,255, 159,82,26,255, 162,83,28,255, 164,84,29,255, 148,75,21,255, 177,90,34,255, 175,90,31,255, 165,84,30,255, 161,82,28,255, 132,9,8,255, 147,15,17,255, 169,48,47,255, 174,54,53,255, 172,55,54,255, 173,55,55,255, 173,54,50,255, 176,52,55,255, 174,51,53,255, 171,48,48,255, 169,44,43,255, 167,40,41,255, 173,46,49,255, 176,50,49,255, 178,53,54,255, 177,51,52,255, 170,50,50,255, 170,48,44,255, 151,22,25,255, 194,86,84,255, 182,66,67,255, 156,37,41,255, 132,9,9,255, 115,0,3,255, 206,203,201,255, 249,249,250,255, 255,253,255,255, 252,251,254,255, 244,243,240,255, 229,231,231,255, 185,186,189,255, 156,158,160,255, 137,141,33,255, 89,102,26,255, 122,126,36,255, 113,122,36,255, 179,184,42,255, 177,175,39,255, 143,153,38,255, 103,114,30,255, 124,134,33,255, 177,175,39,255, 177,175,39,255, 131,136,36,255, 95,107,29,255, 131,136,36,255, 131,136,36,255, 181,177,39,255, 158,158,36,255, 158,158,36,255, 190,184,41,255, 153,155,35,255, 124,134,33,255, 122,126,36,255, 190,184,41,255, 153,155,35,255, 153,155,35,255, 153,155,35,255, 158,158,36,255, 153,155,35,255, 177,175,39,255, 153,155,35,255, 122,126,36,255, 122,126,36,255, 77,77,77,255, 62,62,62,255, 77,77,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 74,74,74,255, 62,62,62,255, 74,74,74,255, 57,57,57,255, 58,58,58,255, 59,59,59,255, 59,59,59,255, 58,58,58,255, 54,54,54,255, 54,54,54,255, 53,53,53,255, 55,55,55,255, 52,52,52,255, 55,55,55,255, 60,60,60,255, 59,59,59,255, 56,56,56,255, 60,60,60,255, 58,58,58,255, 51,45,42,255, 128,82,62,255, 70,41,30,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 145,88,64,255, 132,82,60,255, 52,44,41,255, 217,213,202,255, 196,192,182,255, 211,207,197,255, 191,188,179,255, 218,214,204,255, 218,214,204,255, 189,186,177,255, 214,211,200,255, 218,214,204,255, 188,185,175,255, 214,211,200,255, 218,214,204,255, 189,186,177,255, 218,214,204,255, 193,189,180,255, 218,214,204,255, 208,176,125,255, 210,177,125,255, 201,169,121,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 205,173,122,255, 210,177,125,255, 210,177,125,255, 205,173,122,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 171,144,102,255, 170,170,170,255, 0,0,0,0, 0,0,0,0, 84,84,84,255, 170,170,170,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 107,107,107,255, 114,114,114,255, 107,107,107,255, 107,107,107,255, 84,84,84,255, 107,107,107,255, 170,170,170,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 164,40,34,255, 157,37,33,255, 150,35,33,255, 159,38,33,255, 169,42,35,255, 168,42,35,255, 144,33,32,255, 143,32,32,255, 152,35,33,255, 161,39,34,255, 151,35,33,255, 146,34,32,255, 169,42,35,255, 169,42,35,255, 148,34,32,255, 144,33,32,255, 244,148,177,255, 241,135,167,255, 230,120,156,255, 243,140,170,255, 244,158,185,255, 244,156,183,255, 218,106,146,255, 216,103,144,255, 234,124,159,255, 244,142,172,255, 233,123,158,255, 223,111,150,255, 244,158,185,255, 244,158,185,255, 226,114,152,255, 218,106,146,255, 135,135,135,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 138,138,138,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 138,138,138,255, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 66,66,66,255, 0,0,0,0, 166,84,30,255, 148,75,21,255, 177,90,34,255, 165,84,31,255, 164,84,29,255, 159,82,26,255, 180,92,34,255, 180,92,34,255, 148,75,21,255, 154,80,26,255, 154,80,26,255, 177,90,34,255, 173,88,31,255, 172,88,31,255, 166,84,30,255, 168,85,30,255, 129,11,7,255, 156,19,25,255, 172,47,49,255, 171,47,44,255, 157,34,36,255, 166,41,40,255, 169,47,45,255, 164,43,46,255, 170,46,44,255, 162,43,41,255, 159,36,40,255, 155,32,32,255, 153,32,34,255, 154,33,34,255, 158,37,37,255, 155,38,40,255, 157,43,43,255, 151,30,31,255, 147,17,16,255, 190,84,83,255, 183,66,67,255, 150,32,27,255, 126,10,9,255, 114,0,1,255, 209,215,211,255, 252,254,254,255, 253,253,252,255, 254,245,248,255, 237,231,234,255, 241,233,239,255, 203,197,201,255, 167,161,163,255, 137,141,33,255, 122,126,36,255, 90,103,26,255, 113,122,36,255, 179,184,42,255, 177,175,39,255, 173,184,44,255, 103,114,30,255, 103,114,30,255, 177,175,39,255, 177,175,39,255, 111,124,45,255, 95,107,29,255, 131,136,36,255, 180,177,39,255, 183,179,39,255, 124,134,33,255, 122,126,36,255, 158,158,36,255, 153,155,35,255, 90,103,26,255, 124,134,33,255, 177,175,39,255, 190,184,41,255, 103,114,30,255, 158,158,36,255, 124,134,33,255, 177,175,39,255, 124,134,33,255, 153,155,35,255, 188,185,45,255, 166,166,39,255, 76,76,76,255, 65,65,65,255, 76,76,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,75,75,255, 63,63,63,255, 75,75,75,255, 60,60,60,255, 61,61,61,255, 59,59,59,255, 58,58,58,255, 53,53,53,255, 51,51,51,255, 49,49,49,255, 49,49,49,255, 48,48,48,255, 50,50,50,255, 52,52,52,255, 57,57,57,255, 57,57,57,255, 59,59,59,255, 57,57,57,255, 55,55,55,255, 53,47,43,255, 116,80,57,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 95,60,44,255, 155,102,75,255, 80,51,33,255, 155,102,75,255, 80,51,33,255, 130,87,57,255, 91,53,36,255, 148,95,68,255, 91,56,40,255, 131,87,66,255, 53,47,43,255, 215,211,200,255, 192,189,179,255, 217,213,202,255, 214,210,199,255, 218,214,204,255, 218,214,204,255, 217,213,202,255, 214,210,199,255, 218,214,203,255, 193,189,180,255, 215,211,200,255, 218,214,204,255, 189,186,177,255, 218,214,204,255, 188,185,175,255, 218,214,204,255, 206,174,123,255, 171,144,102,255, 208,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 208,177,125,255, 204,172,121,255, 209,176,124,255, 171,144,102,255, 206,174,123,255, 210,177,125,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 131,131,131,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,131,131,255, 107,107,107,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,131,131,255, 84,84,84,255, 84,84,84,255, 170,170,170,255, 0,0,0,0, 84,84,84,255, 131,131,131,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 108,89,60,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 142,115,60,255, 142,115,60,255, 100,79,42,255, 108,89,60,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 146,33,32,255, 144,33,32,255, 150,35,33,255, 172,44,36,255, 150,35,33,255, 143,32,32,255, 149,34,33,255, 153,36,33,255, 150,35,33,255, 143,32,32,255, 153,36,33,255, 155,36,33,255, 145,33,32,255, 151,35,33,255, 149,34,33,255, 154,36,33,255, 222,110,149,255, 217,105,146,255, 231,121,157,255, 244,167,192,255, 230,120,156,255, 216,103,144,255, 229,117,155,255, 236,126,161,255, 230,120,156,255, 216,103,144,255, 236,126,161,255, 239,131,164,255, 220,108,148,255, 233,123,158,255, 228,117,154,255, 237,129,163,255, 128,128,128,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 130,130,130,255, 120,120,120,255, 120,120,120,255, 129,129,129,255, 197,197,197,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 135,135,135,255, 79,79,79,255, 0,0,0,0, 138,138,138,255, 79,79,79,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 79,79,79,255, 152,152,152,255, 49,49,49,255, 152,152,152,255, 79,79,79,255, 152,152,152,255, 79,79,79,255, 152,152,152,255, 0,0,0,0, 164,84,29,255, 148,75,21,255, 164,83,29,255, 165,84,31,255, 165,84,31,255, 159,82,26,255, 148,75,21,255, 148,75,21,255, 174,89,31,255, 168,85,31,255, 166,84,30,255, 148,75,21,255, 163,82,29,255, 165,84,30,255, 158,80,28,255, 161,82,29,255, 132,11,13,255, 155,29,26,255, 182,60,56,255, 178,55,56,255, 156,29,34,255, 155,33,34,255, 153,30,30,255, 148,23,27,255, 143,25,25,255, 140,22,24,255, 137,15,18,255, 135,19,15,255, 130,25,18,255, 134,18,18,255, 136,23,24,255, 143,22,21,255, 137,23,15,255, 141,18,20,255, 145,18,21,255, 196,90,87,255, 162,38,46,255, 129,20,20,255, 121,8,10,255, 111,0,0,255, 213,213,218,255, 247,246,243,255, 249,244,246,255, 241,243,241,255, 237,234,235,255, 237,234,234,255, 211,209,209,255, 178,179,176,255, 137,141,33,255, 90,103,26,255, 90,103,26,255, 90,103,26,255, 137,141,33,255, 177,175,39,255, 148,147,38,255, 98,109,27,255, 103,114,30,255, 177,175,39,255, 177,175,39,255, 103,114,32,255, 95,107,29,255, 89,102,26,255, 177,175,39,255, 190,184,41,255, 124,134,33,255, 122,126,36,255, 158,158,36,255, 158,158,36,255, 153,155,35,255, 124,134,33,255, 124,134,33,255, 177,175,39,255, 92,112,38,255, 124,134,33,255, 90,103,26,255, 124,134,33,255, 153,155,35,255, 177,175,39,255, 177,175,39,255, 166,166,39,255, 79,79,79,255, 61,61,61,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 74,74,74,255, 57,57,57,255, 74,74,74,255, 60,60,60,255, 57,57,57,255, 59,59,59,255, 56,56,56,255, 52,52,52,255, 48,48,48,255, 46,46,46,255, 46,46,46,255, 46,46,46,255, 47,47,47,255, 50,50,50,255, 54,54,54,255, 57,57,57,255, 61,61,61,255, 58,58,58,255, 56,56,56,255, 49,44,40,255, 116,80,57,255, 149,90,62,255, 71,45,32,255, 148,95,68,255, 71,45,32,255, 155,102,75,255, 63,41,27,255, 148,95,68,255, 71,45,32,255, 148,95,68,255, 71,45,32,255, 130,87,57,255, 63,41,27,255, 116,80,57,255, 49,44,40,255, 217,213,202,255, 210,206,196,255, 217,213,202,255, 214,210,199,255, 218,214,204,255, 214,211,200,255, 214,210,199,255, 215,211,200,255, 216,212,201,255, 189,186,177,255, 214,211,200,255, 218,214,204,255, 189,186,177,255, 218,214,204,255, 191,188,179,255, 214,210,199,255, 208,177,125,255, 200,168,121,255, 208,177,125,255, 204,173,123,255, 210,177,125,255, 205,173,122,255, 171,144,102,255, 206,174,123,255, 207,174,122,255, 210,177,125,255, 205,173,122,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 204,172,121,255, 84,84,84,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 131,131,131,255, 170,170,170,255, 0,0,0,0, 84,84,84,255, 170,170,170,255, 0,0,0,0, 84,84,84,255, 84,84,84,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 65,54,37,255, 76,61,37,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 91,70,37,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 184,52,44,255, 184,52,44,255, 170,43,35,255, 168,42,35,255, 159,38,33,255, 159,38,33,255, 157,37,33,255, 161,39,34,255, 171,43,36,255, 184,52,44,255, 165,40,34,255, 156,37,33,255, 184,52,44,255, 184,52,44,255, 167,41,35,255, 162,39,34,255, 244,178,201,255, 244,178,201,255, 244,161,187,255, 244,156,183,255, 243,138,170,255, 243,138,170,255, 241,135,167,255, 244,142,172,255, 244,162,188,255, 244,178,201,255, 244,149,178,255, 240,132,165,255, 244,178,201,255, 244,178,201,255, 244,154,181,255, 244,144,173,255, 120,120,120,255, 128,128,128,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 146,146,146,255, 86,6,0,255, 87,0,0,255, 176,176,176,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 120,120,120,255, 66,66,66,255, 152,152,152,255, 138,138,138,255, 138,138,138,255, 79,79,79,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 66,66,66,255, 152,152,152,255, 79,79,79,255, 0,0,0,0, 138,138,138,255, 79,79,79,255, 0,0,0,0, 154,154,154,255, 148,75,21,255, 169,86,30,255, 165,84,30,255, 177,90,34,255, 164,84,29,255, 159,82,26,255, 148,75,21,255, 173,88,32,255, 148,75,21,255, 166,84,30,255, 172,88,31,255, 160,82,28,255, 154,80,26,255, 154,80,26,255, 177,90,34,255, 148,75,21,255, 134,13,9,255, 148,17,21,255, 177,57,53,255, 157,44,42,255, 147,25,28,255, 146,26,23,255, 145,23,25,255, 139,20,20,255, 137,16,19,255, 136,18,14,255, 138,21,18,255, 129,19,18,255, 138,17,16,255, 137,24,20,255, 138,20,21,255, 136,18,21,255, 141,21,21,255, 144,23,20,255, 150,19,18,255, 204,99,98,255, 156,38,36,255, 133,16,14,255, 119,2,6,255, 110,0,0,255, 213,213,213,255, 240,239,241,255, 245,241,241,255, 235,237,240,255, 235,234,236,255, 229,233,241,255, 209,206,210,255, 182,181,187,255, 137,141,33,255, 90,103,26,255, 90,103,26,255, 90,103,26,255, 137,141,33,255, 177,175,39,255, 148,147,38,255, 90,103,26,255, 90,103,26,255, 135,135,37,255, 177,175,39,255, 103,114,32,255, 95,107,29,255, 89,102,26,255, 177,175,39,255, 190,184,41,255, 124,134,33,255, 124,134,33,255, 90,103,26,255, 188,185,45,255, 124,134,33,255, 190,184,41,255, 124,134,33,255, 92,112,38,255, 124,134,33,255, 90,103,26,255, 124,134,33,255, 177,175,39,255, 158,158,36,255, 158,158,36,255, 188,185,45,255, 166,166,39,255, 76,76,76,255, 62,62,62,255, 76,76,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 71,71,71,255, 64,64,64,255, 71,71,71,255, 58,58,58,255, 59,59,59,255, 58,58,58,255, 54,54,54,255, 49,49,49,255, 46,46,46,255, 44,44,44,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 48,48,48,255, 50,50,50,255, 56,56,56,255, 56,56,56,255, 59,59,59,255, 58,58,58,255, 53,47,43,255, 136,92,70,255, 95,60,44,255, 148,95,68,255, 95,60,44,255, 155,102,75,255, 95,60,44,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 91,53,36,255, 155,102,75,255, 95,60,44,255, 155,102,75,255, 136,92,70,255, 53,47,43,255, 214,211,200,255, 218,214,204,255, 200,196,186,255, 217,213,202,255, 218,214,204,255, 211,207,197,255, 214,211,200,255, 188,185,175,255, 218,214,204,255, 188,185,175,255, 218,214,204,255, 207,204,193,255, 184,181,172,255, 218,214,204,255, 189,186,177,255, 218,214,203,255, 205,173,122,255, 210,177,125,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 201,168,120,255, 205,173,122,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 209,176,124,255, 107,107,107,255, 0,0,0,0, 107,107,107,255, 84,84,84,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 107,107,107,255, 84,84,84,255, 107,107,107,255, 0,0,0,0, 0,0,0,0, 131,131,131,255, 84,84,84,255, 0,0,0,0, 84,84,84,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 153,36,33,255, 153,36,33,255, 184,52,44,255, 184,52,44,255, 167,41,35,255, 165,40,34,255, 172,44,36,255, 172,43,36,255, 149,34,33,255, 151,35,33,255, 168,42,35,255, 172,44,36,255, 165,40,34,255, 164,40,34,255, 173,44,36,255, 172,43,36,255, 236,126,161,255, 236,126,161,255, 244,178,201,255, 244,178,201,255, 244,154,181,255, 244,149,178,255, 244,167,192,255, 244,165,190,255, 228,117,154,255, 233,123,158,255, 244,156,183,255, 244,167,192,255, 244,149,178,255, 244,148,177,255, 244,168,193,255, 244,165,190,255, 135,135,135,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 146,146,146,255, 84,2,0,255, 70,4,2,255, 176,176,176,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 120,120,120,255, 135,135,135,255, 135,135,135,255, 0,0,0,0, 49,49,49,255, 152,152,152,255, 0,0,0,0, 49,49,49,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 138,138,138,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 174,89,31,255, 148,75,21,255, 177,90,34,255, 159,82,26,255, 148,75,21,255, 148,75,21,255, 159,81,28,255, 159,81,28,255, 148,75,21,255, 171,87,31,255, 171,87,31,255, 170,86,30,255, 170,86,31,255, 177,90,32,255, 148,75,21,255, 176,90,32,255, 129,10,9,255, 144,15,16,255, 154,32,35,255, 140,21,22,255, 135,22,14,255, 139,20,18,255, 135,19,16,255, 135,22,18,255, 139,19,24,255, 141,21,20,255, 140,21,21,255, 141,20,19,255, 141,20,24,255, 141,21,21,255, 141,22,23,255, 140,21,22,255, 140,21,21,255, 139,18,25,255, 141,15,14,255, 190,74,75,255, 149,29,27,255, 134,20,19,255, 116,0,6,255, 106,2,0,255, 215,218,220,255, 238,241,239,255, 241,241,241,255, 236,238,241,255, 235,235,236,255, 235,238,235,255, 204,209,207,255, 181,182,181,255, 137,141,33,255, 113,122,36,255, 90,103,26,255, 90,103,26,255, 137,146,37,255, 190,184,41,255, 173,184,44,255, 90,103,26,255, 90,103,26,255, 135,135,37,255, 177,175,39,255, 103,114,32,255, 103,114,32,255, 89,102,26,255, 144,152,55,255, 190,184,41,255, 158,158,36,255, 158,158,36,255, 124,134,33,255, 90,103,26,255, 124,134,33,255, 124,134,33,255, 153,155,35,255, 124,134,33,255, 124,134,33,255, 124,134,33,255, 177,175,39,255, 158,158,36,255, 122,126,36,255, 122,126,36,255, 122,126,36,255, 166,166,39,255, 76,76,76,255, 59,59,59,255, 76,76,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 68,68,68,255, 60,60,60,255, 68,68,68,255, 62,62,62,255, 59,59,59,255, 57,57,57,255, 54,54,54,255, 48,48,48,255, 46,46,46,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 46,46,46,255, 49,49,49,255, 54,54,54,255, 58,58,58,255, 59,59,59,255, 60,60,60,255, 52,44,41,255, 132,82,60,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 145,88,64,255, 132,82,60,255, 52,44,41,255, 216,212,201,255, 218,214,204,255, 189,186,177,255, 216,212,201,255, 218,214,204,255, 189,186,177,255, 218,214,204,255, 192,189,179,255, 218,214,204,255, 186,183,175,255, 218,214,204,255, 200,196,186,255, 214,210,199,255, 218,214,204,255, 190,187,178,255, 218,214,203,255, 207,174,122,255, 210,177,125,255, 210,177,125,255, 207,174,122,255, 171,144,102,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 171,144,102,255, 204,173,123,255, 210,177,125,255, 171,144,102,255, 209,176,124,255, 0,0,0,0, 0,0,0,0, 84,84,84,255, 107,107,107,255, 107,107,107,255, 170,170,170,255, 131,131,131,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,170,170,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 167,41,35,255, 166,41,34,255, 146,33,32,255, 152,35,33,255, 172,43,36,255, 165,40,34,255, 150,35,33,255, 153,36,33,255, 152,35,33,255, 155,36,33,255, 151,35,33,255, 145,33,32,255, 159,38,33,255, 156,37,33,255, 147,34,32,255, 146,34,32,255, 244,154,181,255, 244,152,180,255, 222,110,149,255, 234,124,159,255, 244,165,190,255, 244,149,178,255, 230,120,156,255, 237,128,162,255, 234,124,159,255, 239,131,164,255, 233,123,158,255, 220,108,148,255, 243,138,170,255, 240,132,165,255, 224,113,151,255, 223,111,150,255, 146,146,146,255, 135,135,135,255, 197,197,197,255, 157,157,157,255, 146,146,146,255, 128,128,128,255, 146,146,146,255, 85,0,0,255, 40,0,0,255, 176,176,176,255, 157,157,157,255, 205,205,205,255, 176,176,176,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 152,152,152,255, 49,49,49,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 154,154,154,255, 79,79,79,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 161,82,28,255, 160,81,28,255, 148,75,21,255, 167,85,30,255, 172,87,31,255, 173,88,31,255, 154,80,26,255, 164,84,30,255, 167,84,30,255, 148,75,21,255, 148,75,21,255, 166,84,30,255, 179,92,33,255, 148,75,21,255, 168,85,30,255, 162,83,28,255, 129,8,11,255, 149,14,17,255, 152,32,29,255, 139,21,24,255, 138,20,24,255, 142,18,21,255, 140,20,22,255, 145,21,23,255, 138,21,21,255, 140,22,19,255, 138,21,18,255, 140,22,23,255, 140,21,21,255, 140,22,22,255, 141,26,21,255, 139,18,21,255, 139,21,20,255, 138,21,21,255, 142,15,11,255, 183,59,63,255, 147,28,28,255, 133,18,16,255, 116,5,11,255, 109,0,0,255, 214,214,214,255, 241,244,240,255, 245,241,239,255, 238,238,240,255, 236,234,232,255, 232,234,235,255, 204,207,209,255, 178,174,180,255, 137,141,33,255, 113,122,36,255, 90,103,26,255, 113,122,36,255, 144,152,55,255, 190,184,41,255, 173,184,44,255, 90,103,26,255, 90,103,26,255, 177,175,39,255, 190,184,41,255, 103,114,32,255, 103,114,32,255, 89,102,26,255, 144,152,55,255, 190,184,41,255, 188,185,45,255, 188,185,45,255, 158,158,36,255, 158,158,36,255, 124,134,33,255, 90,103,26,255, 153,155,35,255, 153,155,35,255, 124,134,33,255, 124,134,33,255, 122,126,36,255, 103,114,30,255, 122,126,36,255, 122,126,36,255, 122,126,36,255, 122,126,36,255, 76,76,76,255, 58,58,58,255, 76,76,76,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 79,79,79,255, 68,68,68,255, 79,79,79,255, 60,60,60,255, 59,59,59,255, 57,57,57,255, 54,54,54,255, 48,48,48,255, 46,46,46,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 46,46,46,255, 49,49,49,255, 54,54,54,255, 54,54,54,255, 59,59,59,255, 57,57,57,255, 53,47,43,255, 136,92,70,255, 155,102,75,255, 95,60,44,255, 155,102,75,255, 91,53,36,255, 130,87,57,255, 95,60,44,255, 155,102,75,255, 91,56,40,255, 148,95,68,255, 91,56,40,255, 155,102,75,255, 95,60,44,255, 136,92,70,255, 49,44,40,255, 214,211,200,255, 218,214,204,255, 190,187,178,255, 218,214,204,255, 218,214,204,255, 192,189,179,255, 214,211,200,255, 191,188,179,255, 214,211,200,255, 193,189,180,255, 218,214,204,255, 188,185,175,255, 217,213,202,255, 216,212,201,255, 190,187,178,255, 218,214,204,255, 205,173,122,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 205,173,122,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 208,177,125,255, 207,174,122,255, 210,177,125,255, 210,177,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 170,170,170,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,107,107,255, 131,131,131,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 108,89,60,255, 135,109,69,255, 142,115,60,255, 142,115,60,255, 142,115,60,255, 142,115,60,255, 164,128,74,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 152,35,33,255, 156,37,33,255, 154,36,33,255, 171,43,36,255, 143,32,32,255, 144,33,32,255, 156,37,33,255, 163,39,34,255, 150,35,33,255, 164,40,34,255, 184,52,44,255, 184,52,44,255, 157,37,33,255, 166,41,34,255, 184,52,44,255, 184,52,44,255, 234,124,159,255, 240,132,165,255, 237,129,163,255, 244,162,188,255, 216,103,145,255, 218,106,146,255, 240,132,165,255, 244,146,176,255, 230,120,156,255, 244,148,177,255, 244,178,201,255, 244,178,201,255, 242,136,168,255, 244,152,180,255, 244,178,201,255, 244,178,201,255, 197,197,197,255, 197,197,197,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 146,146,146,255, 88,1,1,255, 44,3,0,255, 176,176,176,255, 163,163,163,255, 157,157,157,255, 205,205,205,255, 163,163,163,255, 197,197,197,255, 197,197,197,255, 152,152,152,255, 66,66,66,255, 138,138,138,255, 79,79,79,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 66,66,66,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 79,79,79,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 164,84,29,255, 167,86,29,255, 154,80,26,255, 159,81,28,255, 167,85,30,255, 169,86,31,255, 147,75,23,255, 159,81,28,255, 173,88,31,255, 162,83,28,255, 158,80,27,255, 148,75,21,255, 151,76,22,255, 154,80,26,255, 171,88,31,255, 164,84,29,255, 130,7,11,255, 146,16,17,255, 158,32,31,255, 145,25,27,255, 138,22,21,255, 140,21,21,255, 139,23,22,255, 133,21,24,255, 141,21,22,255, 138,21,16,255, 139,20,20,255, 137,20,22,255, 140,17,20,255, 142,20,15,255, 144,24,21,255, 140,21,22,255, 143,21,19,255, 135,20,21,255, 137,15,14,255, 182,62,62,255, 154,27,24,255, 137,20,16,255, 116,4,5,255, 108,0,0,255, 211,210,210,255, 241,239,242,255, 237,238,241,255, 238,234,240,255, 237,234,235,255, 236,233,235,255, 208,207,203,255, 183,179,178,255, 148,147,38,255, 113,122,36,255, 90,103,26,255, 113,122,36,255, 179,184,42,255, 190,184,41,255, 173,184,44,255, 98,109,27,255, 90,103,26,255, 177,175,39,255, 190,184,41,255, 111,124,45,255, 103,114,30,255, 89,102,26,255, 161,164,49,255, 190,184,41,255, 188,185,45,255, 190,184,41,255, 158,158,36,255, 158,158,36,255, 90,103,26,255, 122,126,36,255, 153,155,35,255, 90,103,26,255, 124,134,33,255, 92,112,38,255, 92,112,38,255, 177,175,39,255, 177,175,39,255, 166,166,39,255, 103,114,30,255, 122,126,36,255, 70,70,70,255, 62,62,62,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 80,80,80,255, 58,58,58,255, 80,80,80,255, 60,60,60,255, 59,59,59,255, 58,58,58,255, 55,55,55,255, 51,51,51,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 52,52,52,255, 55,55,55,255, 56,56,56,255, 57,57,57,255, 58,58,58,255, 49,44,40,255, 116,80,57,255, 130,87,57,255, 63,41,27,255, 130,87,57,255, 74,48,34,255, 148,95,68,255, 71,45,32,255, 130,87,57,255, 63,41,27,255, 130,87,57,255, 71,42,29,255, 155,102,75,255, 63,41,27,255, 116,80,57,255, 49,44,40,255, 214,211,200,255, 218,214,204,255, 196,193,183,255, 214,210,199,255, 217,213,202,255, 218,214,204,255, 193,189,180,255, 215,211,200,255, 215,211,200,255, 186,182,174,255, 218,214,204,255, 193,189,180,255, 216,212,201,255, 218,214,204,255, 192,189,179,255, 218,214,204,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 204,172,121,255, 208,176,125,255, 210,177,125,255, 171,144,102,255, 206,174,123,255, 206,174,123,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 207,174,122,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 0,0,0,0, 0,0,0,0, 84,84,84,255, 107,107,107,255, 170,170,170,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,131,131,255, 84,84,84,255, 131,131,131,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 65,54,37,255, 76,61,37,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 69,59,39,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 172,43,36,255, 173,44,36,255, 167,41,35,255, 167,41,35,255, 184,52,44,255, 172,44,36,255, 167,41,35,255, 165,40,34,255, 173,44,36,255, 171,43,36,255, 155,36,33,255, 161,39,34,255, 164,40,34,255, 159,38,33,255, 148,34,32,255, 159,38,33,255, 244,165,190,255, 244,168,193,255, 244,154,181,255, 244,154,181,255, 244,178,201,255, 244,167,192,255, 244,154,181,255, 244,149,178,255, 244,168,193,255, 244,162,188,255, 239,131,164,255, 244,142,172,255, 244,148,177,255, 243,138,170,255, 226,114,152,255, 243,140,170,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 128,128,128,255, 157,157,157,255, 146,146,146,255, 90,0,3,255, 40,0,0,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 205,205,205,255, 168,168,168,255, 168,168,168,255, 135,135,135,255, 138,138,138,255, 0,0,0,0, 0,0,0,0, 66,66,66,255, 152,152,152,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 79,79,79,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 49,49,49,255, 79,79,79,255, 161,82,28,255, 148,75,21,255, 162,83,28,255, 161,82,29,255, 171,86,31,255, 172,87,31,255, 148,75,21,255, 167,85,30,255, 169,86,30,255, 164,84,29,255, 148,75,21,255, 180,92,34,255, 169,86,31,255, 154,80,26,255, 172,88,31,255, 169,86,30,255, 132,10,8,255, 141,16,17,255, 157,35,36,255, 144,29,27,255, 135,18,23,255, 131,22,17,255, 135,18,18,255, 136,18,18,255, 135,17,16,255, 141,21,24,255, 138,20,21,255, 136,23,25,255, 139,20,21,255, 140,21,21,255, 145,21,20,255, 140,23,22,255, 139,23,21,255, 139,16,18,255, 134,13,12,255, 180,62,60,255, 148,33,28,255, 140,21,25,255, 121,6,2,255, 109,0,0,255, 198,195,195,255, 225,220,227,255, 235,233,233,255, 233,233,236,255, 233,233,236,255, 220,225,227,255, 193,193,193,255, 175,172,175,255, 148,147,38,255, 113,122,36,255, 113,122,36,255, 113,122,36,255, 177,175,39,255, 190,184,41,255, 173,184,44,255, 98,109,27,255, 90,103,26,255, 188,185,45,255, 177,175,39,255, 111,124,45,255, 103,114,30,255, 89,102,26,255, 161,164,49,255, 190,184,41,255, 190,184,41,255, 158,158,36,255, 122,126,36,255, 90,103,26,255, 122,126,36,255, 190,184,41,255, 177,175,39,255, 92,112,38,255, 190,184,41,255, 92,112,38,255, 90,103,26,255, 158,158,36,255, 177,175,39,255, 166,166,39,255, 122,126,36,255, 166,166,39,255, 80,80,80,255, 67,67,67,255, 80,80,80,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,255, 60,60,60,255, 76,76,76,255, 59,59,59,255, 58,58,58,255, 55,55,55,255, 57,57,57,255, 52,52,52,255, 50,50,50,255, 47,47,47,255, 46,46,46,255, 46,46,46,255, 47,47,47,255, 50,50,50,255, 53,53,53,255, 57,57,57,255, 57,57,57,255, 57,57,57,255, 60,60,60,255, 53,47,43,255, 131,87,66,255, 91,56,40,255, 148,95,68,255, 95,60,44,255, 155,102,75,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 91,56,40,255, 148,95,68,255, 91,56,40,255, 148,95,68,255, 131,87,66,255, 49,44,40,255, 196,192,182,255, 218,214,204,255, 191,188,179,255, 215,211,200,255, 214,210,199,255, 218,214,204,255, 186,183,175,255, 212,208,197,255, 189,186,177,255, 210,206,196,255, 218,214,204,255, 191,188,179,255, 215,211,200,255, 218,214,204,255, 193,190,181,255, 218,214,204,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 206,174,123,255, 204,172,121,255, 171,144,102,255, 210,177,125,255, 202,170,120,255, 210,177,125,255, 200,168,121,255, 171,144,102,255, 210,177,125,255, 206,174,123,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 0,0,0,0, 0,0,0,0, 170,170,170,255, 107,107,107,255, 131,131,131,255, 0,0,0,0, 0,0,0,0, 84,84,84,255, 0,0,0,0, 0,0,0,0, 107,107,107,255, 0,0,0,0, 131,131,131,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 148,34,32,255, 150,35,33,255, 163,39,34,255, 163,39,34,255, 153,36,33,255, 153,36,33,255, 169,42,35,255, 166,41,34,255, 149,34,33,255, 150,35,33,255, 152,35,33,255, 164,40,34,255, 144,33,32,255, 144,33,32,255, 154,36,33,255, 164,40,34,255, 226,114,152,255, 230,120,156,255, 244,146,176,255, 244,146,176,255, 236,126,161,255, 237,128,162,255, 244,158,185,255, 244,152,180,255, 228,117,154,255, 230,120,156,255, 234,124,159,255, 244,148,177,255, 217,105,146,255, 217,104,145,255, 237,129,163,255, 244,148,177,255, 120,120,120,255, 168,168,168,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 157,157,157,255, 146,146,146,255, 75,0,0,255, 42,0,2,255, 176,176,176,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 205,205,205,255, 176,176,176,255, 120,120,120,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 138,138,138,255, 79,79,79,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 0,0,0,0, 152,152,152,255, 138,138,138,255, 0,0,0,0, 79,79,79,255, 0,0,0,0, 66,66,66,255, 148,75,21,255, 180,92,34,255, 180,92,34,255, 172,88,30,255, 165,84,30,255, 172,87,31,255, 174,88,31,255, 148,75,21,255, 162,82,29,255, 180,92,34,255, 148,75,21,255, 180,92,34,255, 168,85,31,255, 148,75,21,255, 168,86,30,255, 167,86,30,255, 131,11,6,255, 145,17,15,255, 153,26,30,255, 142,22,23,255, 130,18,14,255, 132,18,22,255, 128,17,20,255, 128,15,14,255, 127,13,19,255, 129,14,13,255, 135,16,17,255, 136,17,18,255, 134,13,18,255, 135,19,20,255, 126,19,13,255, 123,14,16,255, 127,15,13,255, 133,16,15,255, 118,5,4,255, 172,52,52,255, 149,28,29,255, 143,23,22,255, 119,9,6,255, 104,0,0,255, 193,195,197,255, 219,219,219,255, 217,215,221,255, 237,235,231,255, 221,220,220,255, 210,206,199,255, 176,178,180,255, 172,170,171,255, 148,147,38,255, 113,122,36,255, 90,103,26,255, 113,122,36,255, 177,175,39,255, 190,184,41,255, 141,145,37,255, 98,109,27,255, 90,103,26,255, 135,135,37,255, 177,175,39,255, 131,136,36,255, 103,114,30,255, 89,102,26,255, 177,175,39,255, 190,184,41,255, 158,158,36,255, 158,158,36,255, 90,103,26,255, 153,155,35,255, 122,126,36,255, 190,184,41,255, 177,175,39,255, 122,126,36,255, 190,184,41,255, 158,158,36,255, 90,103,26,255, 124,134,33,255, 158,158,36,255, 177,175,39,255, 166,166,39,255, 166,166,39,255, 74,74,74,255, 67,67,67,255, 74,74,74,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,255, 66,66,66,255, 76,76,76,255, 60,60,60,255, 60,60,60,255, 57,57,57,255, 58,58,58,255, 59,59,59,255, 54,54,54,255, 51,51,51,255, 51,51,51,255, 49,49,49,255, 50,50,50,255, 52,52,52,255, 53,53,53,255, 59,59,59,255, 58,58,58,255, 60,60,60,255, 60,60,60,255, 52,44,41,255, 128,82,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 70,41,30,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 71,42,29,255, 149,90,62,255, 70,41,30,255, 145,88,64,255, 128,82,62,255, 52,44,41,255, 189,186,177,255, 218,214,204,255, 190,187,178,255, 214,210,199,255, 218,214,204,255, 218,214,204,255, 193,189,180,255, 218,214,204,255, 185,182,173,255, 210,206,196,255, 218,214,204,255, 189,186,177,255, 217,213,202,255, 218,214,204,255, 188,185,175,255, 218,214,204,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 204,172,121,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 200,168,121,255, 210,177,125,255, 210,177,125,255, 208,177,125,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 0,0,0,0, 84,84,84,255, 131,131,131,255, 84,84,84,255, 107,107,107,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 0,0,0,0, 107,107,107,255, 84,84,84,255, 0,0,0,0, 107,107,107,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 153,36,33,255, 153,36,33,255, 143,32,32,255, 144,33,32,255, 172,43,36,255, 175,45,37,255, 146,34,32,255, 143,32,32,255, 159,38,33,255, 169,42,35,255, 161,39,34,255, 166,41,34,255, 184,52,44,255, 184,52,44,255, 164,40,34,255, 145,33,32,255, 237,128,162,255, 236,126,161,255, 216,103,145,255, 218,106,146,255, 244,165,190,255, 244,175,198,255, 223,111,150,255, 216,103,144,255, 243,138,170,255, 244,158,185,255, 244,142,172,255, 244,152,180,255, 244,178,201,255, 244,178,201,255, 244,148,177,255, 220,108,148,255, 135,135,135,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 157,157,157,255, 163,163,163,255, 146,146,146,255, 73,1,0,255, 42,0,2,255, 176,176,176,255, 157,157,157,255, 168,160,166,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 135,135,135,255, 66,66,66,255, 138,138,138,255, 138,138,138,255, 152,152,152,255, 138,138,138,255, 152,152,152,255, 49,49,49,255, 152,152,152,255, 49,49,49,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 79,79,79,255, 49,49,49,255, 0,0,0,0, 171,86,31,255, 154,80,26,255, 148,75,21,255, 172,88,32,255, 154,80,26,255, 154,80,26,255, 148,75,21,255, 161,83,28,255, 161,82,27,255, 148,75,21,255, 180,92,34,255, 167,86,29,255, 163,83,28,255, 171,87,30,255, 148,75,21,255, 154,80,26,255, 127,9,10,255, 146,14,14,255, 149,30,26,255, 137,22,19,255, 137,20,18,255, 130,17,17,255, 126,15,16,255, 126,17,15,255, 127,17,15,255, 128,15,16,255, 125,12,16,255, 127,20,22,255, 129,13,16,255, 130,14,18,255, 129,18,12,255, 131,12,15,255, 124,19,17,255, 128,17,14,255, 117,7,4,255, 170,49,47,255, 165,42,47,255, 132,18,20,255, 119,4,9,255, 110,3,0,255, 196,196,199,255, 218,215,217,255, 216,217,222,255, 221,223,222,255, 215,213,213,255, 206,206,206,255, 179,179,183,255, 172,171,172,255, 158,158,36,255, 113,122,36,255, 90,103,26,255, 113,122,36,255, 177,175,39,255, 179,184,42,255, 137,141,33,255, 98,109,27,255, 122,126,36,255, 137,141,33,255, 170,177,48,255, 131,136,36,255, 89,102,26,255, 131,136,36,255, 177,175,39,255, 190,184,41,255, 188,185,45,255, 153,155,35,255, 153,155,35,255, 153,155,35,255, 153,155,35,255, 177,175,39,255, 122,126,36,255, 190,184,41,255, 190,184,41,255, 190,184,41,255, 158,158,36,255, 122,126,36,255, 124,134,33,255, 158,158,36,255, 177,175,39,255, 166,166,39,255, 79,79,79,255, 64,64,64,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,73,73,255, 60,60,60,255, 73,73,73,255, 60,60,60,255, 63,63,63,255, 60,60,60,255, 54,54,54,255, 60,60,60,255, 60,60,60,255, 58,58,58,255, 57,57,57,255, 55,55,55,255, 56,56,56,255, 58,58,58,255, 58,58,58,255, 55,55,55,255, 60,60,60,255, 58,58,58,255, 60,60,60,255, 53,47,43,255, 136,92,70,255, 155,102,75,255, 95,60,44,255, 155,102,75,255, 80,51,33,255, 155,102,75,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 130,87,57,255, 80,51,33,255, 148,95,68,255, 91,53,36,255, 136,92,70,255, 53,47,43,255, 187,184,175,255, 218,214,204,255, 186,182,174,255, 214,210,199,255, 216,212,201,255, 218,214,204,255, 185,182,173,255, 215,211,200,255, 190,187,178,255, 213,209,198,255, 218,214,204,255, 188,185,175,255, 215,211,200,255, 211,207,197,255, 191,188,179,255, 218,214,204,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 204,173,123,255, 207,174,122,255, 210,177,125,255, 171,144,102,255, 206,174,123,255, 210,177,125,255, 203,172,122,255, 210,177,125,255, 210,177,125,255, 206,174,123,255, 201,168,120,255, 210,177,125,255, 210,177,125,255, 107,107,107,255, 131,131,131,255, 0,0,0,0, 0,0,0,0, 107,107,107,255, 84,84,84,255, 170,170,170,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 84,84,84,255, 107,107,107,255, 170,170,170,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 92,77,48,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 166,41,34,255, 165,40,34,255, 175,46,38,255, 184,52,44,255, 172,43,36,255, 167,41,35,255, 161,39,34,255, 155,36,33,255, 143,32,32,255, 157,37,33,255, 166,41,34,255, 172,44,36,255, 157,37,33,255, 157,37,33,255, 172,44,36,255, 184,52,44,255, 244,152,180,255, 244,149,178,255, 244,176,199,255, 244,178,201,255, 244,165,190,255, 244,154,181,255, 244,142,172,255, 239,131,164,255, 216,103,145,255, 242,136,168,255, 244,152,180,255, 244,167,192,255, 241,135,167,255, 242,136,168,255, 244,167,192,255, 244,178,201,255, 135,135,135,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 157,157,157,255, 163,163,163,255, 151,151,151,255, 71,1,2,255, 38,0,3,255, 176,176,176,255, 168,160,166,255, 205,205,205,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 49,49,49,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 79,79,79,255, 0,0,0,0, 66,66,66,255, 152,152,152,255, 0,0,0,0, 173,88,31,255, 172,87,31,255, 180,92,34,255, 148,75,21,255, 148,75,21,255, 166,85,31,255, 167,85,30,255, 148,75,21,255, 163,83,28,255, 154,80,26,255, 166,85,30,255, 167,85,30,255, 171,87,31,255, 148,75,21,255, 177,90,34,255, 168,85,30,255, 132,5,11,255, 139,10,7,255, 140,20,20,255, 136,18,19,255, 139,21,22,255, 141,22,21,255, 127,19,19,255, 131,15,21,255, 129,17,17,255, 128,16,13,255, 126,12,17,255, 128,15,16,255, 133,16,18,255, 127,18,16,255, 129,16,15,255, 131,16,21,255, 133,19,18,255, 132,16,19,255, 127,6,7,255, 171,48,46,255, 154,30,29,255, 132,19,16,255, 119,6,0,255, 111,0,0,255, 207,209,206,255, 223,220,221,255, 216,215,213,255, 207,206,206,255, 199,208,205,255, 216,215,216,255, 200,199,201,255, 182,183,178,255, 158,158,36,255, 113,122,36,255, 113,122,36,255, 137,141,33,255, 177,175,39,255, 190,184,41,255, 168,164,39,255, 137,141,33,255, 122,126,36,255, 161,170,49,255, 162,172,49,255, 131,136,36,255, 131,136,36,255, 131,136,36,255, 171,169,38,255, 161,160,38,255, 188,185,45,255, 153,155,35,255, 190,184,41,255, 188,185,45,255, 177,175,39,255, 153,155,35,255, 153,155,35,255, 177,175,39,255, 166,166,39,255, 177,175,39,255, 158,158,36,255, 158,158,36,255, 124,134,33,255, 122,126,36,255, 158,158,36,255, 166,166,39,255, 84,84,84,255, 59,59,59,255, 77,77,77,255, 71,71,71,255, 77,77,77,255, 75,75,75,255, 82,82,82,255, 74,74,74,255, 82,82,82,255, 77,77,77,255, 79,79,79,255, 75,75,75,255, 76,76,76,255, 71,71,71,255, 62,62,62,255, 75,75,75,255, 58,58,58,255, 57,57,57,255, 63,63,63,255, 60,60,60,255, 59,59,59,255, 60,60,60,255, 59,59,59,255, 58,58,58,255, 59,59,59,255, 56,56,56,255, 56,56,56,255, 56,56,56,255, 55,55,55,255, 62,62,62,255, 56,56,56,255, 62,62,62,255, 52,46,42,255, 116,80,57,255, 149,90,62,255, 74,48,34,255, 155,102,75,255, 74,48,34,255, 155,102,75,255, 63,41,27,255, 155,102,75,255, 71,45,32,255, 148,95,68,255, 63,41,27,255, 130,87,57,255, 63,41,27,255, 116,80,57,255, 52,46,42,255, 192,189,179,255, 217,213,202,255, 210,206,196,255, 217,213,202,255, 214,211,200,255, 218,214,204,255, 200,196,186,255, 218,214,203,255, 217,213,202,255, 211,207,197,255, 214,210,199,255, 189,186,177,255, 215,211,200,255, 218,214,204,255, 218,214,204,255, 186,183,175,255, 210,177,125,255, 208,176,125,255, 200,168,121,255, 208,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 209,176,124,255, 171,144,102,255, 201,169,121,255, 204,172,121,255, 171,144,102,255, 206,174,123,255, 210,177,125,255, 210,177,125,255, 210,177,125,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,170,170,255, 84,84,84,255, 131,131,131,255, 84,84,84,255, 131,131,131,255, 107,107,107,255, 0,0,0,0, 84,84,84,255, 170,170,170,255, 131,131,131,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 65,54,37,255, 76,61,37,255, 109,83,47,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 175,45,37,255, 174,45,37,255, 159,38,33,255, 156,37,33,255, 172,44,36,255, 161,39,34,255, 164,40,34,255, 168,42,35,255, 184,52,44,255, 171,43,36,255, 151,35,33,255, 152,35,33,255, 162,39,34,255, 166,41,34,255, 153,36,33,255, 149,34,33,255, 244,175,198,255, 244,172,196,255, 243,140,170,255, 240,132,165,255, 244,167,192,255, 244,142,172,255, 244,148,177,255, 244,156,183,255, 244,178,201,255, 244,162,188,255, 233,123,158,255, 234,124,159,255, 244,144,173,255, 244,152,180,255, 237,128,162,255, 228,117,154,255, 135,135,135,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 205,205,205,255, 176,176,176,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 66,66,66,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 79,79,79,255, 152,152,152,255, 0,0,0,0, 66,66,66,255, 79,79,79,255, 0,0,0,0, 138,138,138,255, 0,0,0,0, 49,49,49,255, 152,152,152,255, 0,0,0,0, 152,152,152,255, 173,88,31,255, 171,88,31,255, 164,84,29,255, 180,92,34,255, 148,75,21,255, 169,86,31,255, 162,82,29,255, 148,75,21,255, 154,80,26,255, 148,75,21,255, 154,80,26,255, 168,86,30,255, 148,75,21,255, 177,90,34,255, 166,84,30,255, 170,86,30,255, 129,10,10,255, 130,10,8,255, 126,4,9,255, 130,9,10,255, 130,10,9,255, 129,12,7,255, 128,18,14,255, 133,16,17,255, 127,15,18,255, 128,16,19,255, 129,21,15,255, 123,7,9,255, 123,5,4,255, 127,10,7,255, 125,8,10,255, 129,10,9,255, 131,6,10,255, 128,7,9,255, 120,5,7,255, 152,20,19,255, 142,16,16,255, 124,6,9,255, 117,7,11,255, 116,0,0,255, 209,210,204,255, 209,207,207,255, 192,190,194,255, 180,180,178,255, 180,183,187,255, 201,202,203,255, 210,208,212,255, 182,184,182,255, 158,158,36,255, 137,141,33,255, 137,141,33,255, 137,141,33,255, 190,184,41,255, 177,175,39,255, 179,184,42,255, 126,133,35,255, 122,126,36,255, 160,159,37,255, 148,150,33,255, 136,141,33,255, 131,136,36,255, 131,136,36,255, 162,160,36,255, 188,185,45,255, 153,155,35,255, 188,185,45,255, 188,185,45,255, 177,175,39,255, 177,175,39,255, 166,166,39,255, 166,166,39,255, 153,155,35,255, 190,184,41,255, 190,184,41,255, 177,175,39,255, 158,158,36,255, 124,134,33,255, 177,175,39,255, 158,158,36,255, 166,166,39,255, 76,76,76,255, 58,58,58,255, 60,60,60,255, 60,60,60,255, 63,63,63,255, 63,63,63,255, 62,62,62,255, 64,64,64,255, 61,61,61,255, 62,62,62,255, 64,64,64,255, 65,65,65,255, 61,61,61,255, 66,66,66,255, 59,59,59,255, 77,77,77,255, 57,57,57,255, 62,62,62,255, 61,61,61,255, 60,60,60,255, 57,57,57,255, 60,60,60,255, 59,59,59,255, 61,61,61,255, 59,59,59,255, 58,58,58,255, 60,60,60,255, 60,60,60,255, 63,63,63,255, 58,58,58,255, 60,60,60,255, 61,61,61,255, 53,47,43,255, 121,85,67,255, 116,80,57,255, 116,80,57,255, 116,80,57,255, 136,92,70,255, 136,92,70,255, 116,80,57,255, 136,92,70,255, 136,92,70,255, 116,80,57,255, 131,87,66,255, 136,92,70,255, 136,92,70,255, 121,85,67,255, 53,47,43,255, 186,183,175,255, 214,210,199,255, 218,214,204,255, 191,188,179,255, 216,212,201,255, 218,214,204,255, 200,196,186,255, 189,186,177,255, 218,214,204,255, 214,211,200,255, 218,214,204,255, 187,184,175,255, 213,209,198,255, 218,214,204,255, 189,186,177,255, 214,210,199,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 210,177,125,255, 207,174,122,255, 210,177,125,255, 210,177,125,255, 171,144,102,255, 210,177,125,255, 205,173,122,255, 210,177,125,255, 210,177,125,255, 203,172,122,255, 210,177,125,255, 210,177,125,255, 204,172,121,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,170,170,255, 131,131,131,255, 0,0,0,0, 0,0,0,0, 131,131,131,255, 84,84,84,255, 84,84,84,255, 131,131,131,255, 0,0,0,0, 131,131,131,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 145,33,32,255, 150,35,33,255, 172,43,36,255, 162,39,34,255, 149,34,33,255, 153,36,33,255, 172,44,36,255, 175,46,38,255, 157,37,33,255, 153,36,33,255, 165,40,34,255, 172,43,36,255, 149,34,33,255, 150,35,33,255, 171,43,36,255, 172,44,36,255, 221,109,148,255, 230,120,156,255, 244,165,190,255, 244,144,173,255, 228,117,154,255, 237,128,162,255, 244,167,192,255, 244,176,199,255, 241,135,167,255, 236,126,161,255, 244,149,178,255, 244,165,190,255, 228,117,154,255, 230,120,156,255, 244,162,188,255, 244,167,192,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 120,120,120,255, 146,146,146,255, 143,136,141,255, 129,129,129,255, 129,129,129,255, 129,129,129,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 0,0,0,0, 79,79,79,255, 0,0,0,0, 49,49,49,255, 152,152,152,255, 79,79,79,255, 152,152,152,255, 0,0,0,0, 79,79,79,255, 152,152,152,255, 0,0,0,0, 138,138,138,255, 49,49,49,255, 0,0,0,0, 138,138,138,255, 0,0,0,0, 173,88,32,255, 168,86,30,255, 169,86,30,255, 148,75,21,255, 167,84,30,255, 174,88,32,255, 167,84,30,255, 148,75,21,255, 171,87,31,255, 167,85,30,255, 165,84,29,255, 148,75,21,255, 165,84,30,255, 169,86,31,255, 168,86,31,255, 174,89,32,255, 128,14,12,255, 129,11,6,255, 130,10,9,255, 129,11,10,255, 122,9,4,255, 129,11,13,255, 130,11,13,255, 133,10,9,255, 131,11,12,255, 130,10,8,255, 130,8,4,255, 132,6,9,255, 134,7,5,255, 131,9,9,255, 128,9,10,255, 130,9,8,255, 132,6,11,255, 132,9,9,255, 124,8,6,255, 129,6,9,255, 133,10,8,255, 121,5,4,255, 114,7,8,255, 111,0,2,255, 183,182,188,255, 176,181,181,255, 180,182,175,255, 162,173,167,255, 175,175,174,255, 183,182,180,255, 181,182,179,255, 186,181,185,255, 174,181,38,255, 137,141,33,255, 137,141,33,255, 177,175,39,255, 190,184,41,255, 190,184,41,255, 151,160,37,255, 126,133,35,255, 126,133,35,255, 153,156,36,255, 177,175,39,255, 150,154,36,255, 131,136,36,255, 162,160,36,255, 174,171,37,255, 174,181,38,255, 166,166,39,255, 166,166,39,255, 166,166,39,255, 166,166,39,255, 166,166,39,255, 166,166,39,255, 122,126,36,255, 166,166,39,255, 166,166,39,255, 166,166,39,255, 166,166,39,255, 158,158,36,255, 158,158,36,255, 190,184,41,255, 166,166,39,255, 166,166,39,255, 73,73,73,255, 76,76,76,255, 77,77,77,255, 71,71,71,255, 77,77,77,255, 75,75,75,255, 82,82,82,255, 74,74,74,255, 82,82,82,255, 77,77,77,255, 79,79,79,255, 75,75,75,255, 76,76,76,255, 71,71,71,255, 80,80,80,255, 76,76,76,255, 58,58,58,255, 63,63,63,255, 60,60,60,255, 60,60,60,255, 58,58,58,255, 65,65,65,255, 58,58,58,255, 61,61,61,255, 60,60,60,255, 61,61,61,255, 59,59,59,255, 61,61,61,255, 61,61,61,255, 58,58,58,255, 58,58,58,255, 60,60,60,255, 40,35,32,255, 52,44,41,255, 52,44,41,255, 53,44,41,255, 51,45,42,255, 51,45,42,255, 53,44,41,255, 51,45,42,255, 52,44,41,255, 52,44,41,255, 52,44,41,255, 51,45,42,255, 48,43,41,255, 51,45,42,255, 51,45,42,255, 49,44,40,255, 210,206,196,255, 214,211,200,255, 218,214,204,255, 189,186,177,255, 212,208,197,255, 214,211,200,255, 214,211,200,255, 191,188,179,255, 214,211,200,255, 217,213,202,255, 214,210,199,255, 184,181,172,255, 214,210,199,255, 214,211,200,255, 213,209,198,255, 218,214,204,255, 200,168,121,255, 205,173,122,255, 210,177,125,255, 210,177,125,255, 171,144,102,255, 205,173,122,255, 205,173,122,255, 210,177,125,255, 205,173,122,255, 171,144,102,255, 204,172,121,255, 210,177,125,255, 204,172,121,255, 205,173,122,255, 171,144,102,255, 210,177,125,255, 0,0,0,0, 0,0,0,0, 84,84,84,255, 84,84,84,255, 107,107,107,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,131,131,255, 107,107,107,255, 84,84,84,255, 0,0,0,0, 53,96,155,255, 51,87,141,255, 51,87,141,255, 45,90,165,255, 51,100,167,255, 45,90,165,255, 57,89,133,255, 57,89,133,255, 52,95,148,255, 52,94,158,255, 52,87,150,255, 62,91,134,255, 62,91,134,255, 54,94,140,255, 60,86,130,255, 36,78,154,255, 77,98,32,255, 80,102,30,255, 76,96,33,255, 77,97,33,255, 83,107,27,255, 89,117,23,255, 78,99,32,255, 79,100,31,255, 87,113,25,255, 88,115,24,255, 74,93,35,255, 77,97,33,255, 85,109,26,255, 85,109,26,255, 77,97,33,255, 75,94,34,255, 101,175,24,255, 104,178,24,255, 99,173,24,255, 100,175,24,255, 110,183,24,255, 120,192,25,255, 102,176,24,255, 103,177,24,255, 116,188,24,255, 118,190,25,255, 96,171,24,255, 99,174,24,255, 112,185,24,255, 112,185,24,255, 99,174,24,255, 97,172,24,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 146,146,146,255, 120,120,120,255, 146,146,146,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,45,19,255, 59,45,19,255, 86,64,22,255, 124,90,38,255, 126,94,40,255, 123,89,36,255, 61,48,19,255, 61,47,19,255, 61,47,19,255, 60,45,19,255, 61,48,19,255, 58,45,19,255, 62,48,19,255, 70,55,19,255, 70,55,19,255, 104,78,32,255, 65,65,65,255, 71,71,71,255, 72,72,72,255, 68,68,68,255, 76,76,76,255, 74,74,74,255, 79,79,79,255, 78,78,78,255, 81,81,81,255, 82,82,82,255, 72,72,72,255, 78,78,78,255, 72,72,72,255, 70,70,70,255, 65,65,65,255, 58,58,58,255, 44,44,44,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,44,44,255, 44,44,44,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 98,98,98,255, 90,90,90,255, 89,89,89,255, 116,116,116,255, 113,113,113,255, 99,99,99,255, 94,94,94,255, 113,113,113,255, 112,112,112,255, 98,98,98,255, 90,90,90,255, 84,84,84,255, 86,86,86,255, 93,93,93,255, 89,89,89,255, 91,91,91,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,49,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,49,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 66,115,103,255, 58,103,95,255, 58,103,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,78,165,255, 39,73,151,255, 38,82,162,255, 56,101,142,255, 42,84,154,255, 30,63,170,255, 38,67,140,255, 40,78,130,255, 39,77,139,255, 37,76,147,255, 28,52,156,255, 30,56,154,255, 38,73,132,255, 37,69,133,255, 32,68,150,255, 22,51,134,255, 84,108,27,255, 86,112,25,255, 101,134,25,255, 101,134,25,255, 91,119,23,255, 88,115,24,255, 81,104,29,255, 81,104,29,255, 77,97,33,255, 75,94,34,255, 79,100,31,255, 81,104,29,255, 73,91,36,255, 75,95,34,255, 80,102,30,255, 82,105,28,255, 110,184,24,255, 115,188,24,255, 134,204,38,255, 134,204,38,255, 122,194,26,255, 118,190,25,255, 107,181,24,255, 106,180,24,255, 100,175,24,255, 97,172,24,255, 103,177,24,255, 106,180,24,255, 94,169,24,255, 98,172,24,255, 104,178,24,255, 108,182,24,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,94,39,255, 104,78,32,255, 120,89,36,255, 86,64,22,255, 86,64,22,255, 91,72,29,255, 89,66,25,255, 91,72,29,255, 104,78,32,255, 104,78,32,255, 104,78,32,255, 124,94,39,255, 125,94,41,255, 103,78,32,255, 103,78,32,255, 103,78,32,255, 58,58,58,255, 64,64,64,255, 70,70,70,255, 74,74,74,255, 76,76,76,255, 81,81,81,255, 79,79,79,255, 82,82,82,255, 79,79,79,255, 78,78,78,255, 77,77,77,255, 69,69,69,255, 74,74,74,255, 67,67,67,255, 65,65,65,255, 56,56,56,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,44,44,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 82,82,82,255, 89,89,89,255, 113,113,113,255, 114,114,114,255, 102,102,102,255, 91,91,91,255, 113,113,113,255, 102,102,102,255, 116,116,116,255, 104,104,104,255, 105,105,105,255, 89,89,89,255, 90,90,90,255, 112,112,112,255, 99,99,99,255, 99,99,99,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,49,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,49,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 153,198,147,255, 34,69,72,255, 34,69,72,255, 34,69,72,255, 153,198,147,255, 185,183,125,255, 34,69,72,255, 47,87,84,255, 185,183,125,255, 153,198,147,255, 34,69,72,255, 34,69,72,255, 34,69,72,255, 153,198,147,255, 58,103,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 42,83,158,255, 35,76,159,255, 40,82,158,255, 48,95,138,255, 38,84,160,255, 36,71,136,255, 36,63,132,255, 38,71,132,255, 48,75,120,255, 39,74,139,255, 36,67,146,255, 29,53,155,255, 30,50,150,255, 39,73,137,255, 32,68,150,255, 22,51,134,255, 91,119,23,255, 92,120,22,255, 81,104,29,255, 82,106,28,255, 93,123,22,255, 92,120,22,255, 85,110,26,255, 81,104,29,255, 88,115,24,255, 92,120,22,255, 88,114,24,255, 88,114,24,255, 94,124,22,255, 101,134,25,255, 88,115,24,255, 86,112,25,255, 122,194,26,255, 124,195,27,255, 106,180,24,255, 109,182,24,255, 127,198,30,255, 124,195,27,255, 113,186,24,255, 106,180,24,255, 118,190,25,255, 124,195,27,255, 117,190,24,255, 117,190,24,255, 127,198,30,255, 134,204,38,255, 118,190,25,255, 115,188,24,255, 135,135,135,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 88,70,25,255, 86,66,24,255, 89,72,28,255, 89,71,28,255, 90,72,29,255, 91,70,28,255, 91,71,29,255, 92,72,29,255, 89,66,25,255, 55,40,19,255, 59,45,19,255, 57,47,19,255, 57,47,19,255, 68,57,19,255, 68,57,19,255, 56,44,19,255, 60,60,60,255, 66,66,66,255, 72,72,72,255, 74,74,74,255, 74,74,74,255, 78,78,78,255, 80,80,80,255, 79,79,79,255, 77,77,77,255, 77,77,77,255, 78,78,78,255, 77,77,77,255, 68,68,68,255, 70,70,70,255, 59,59,59,255, 53,53,53,255, 45,45,45,255, 45,45,45,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,44,44,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 89,89,89,255, 110,110,110,255, 125,125,125,255, 111,111,111,255, 88,88,88,255, 90,90,90,255, 125,125,125,255, 136,136,136,255, 127,127,127,255, 127,127,127,255, 130,130,130,255, 107,107,107,255, 114,114,114,255, 113,113,113,255, 107,107,107,255, 100,100,100,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,49,49,255, 77,77,77,255, 97,97,97,255, 77,77,77,255, 97,97,97,255, 97,97,97,255, 77,77,77,255, 97,97,97,255, 77,77,77,255, 49,49,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 38,75,76,255, 32,66,70,255, 173,169,113,255, 173,169,113,255, 80,135,117,255, 66,115,103,255, 185,183,125,255, 249,249,197,255, 80,135,117,255, 66,115,103,255, 179,174,120,255, 176,174,117,255, 47,87,84,255, 47,87,84,255, 58,103,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 42,83,158,255, 32,68,150,255, 39,75,147,255, 38,81,160,255, 38,79,162,255, 35,71,161,255, 39,67,139,255, 40,76,116,255, 33,67,155,255, 48,73,120,255, 38,71,132,255, 30,56,152,255, 30,56,152,255, 37,69,133,255, 38,71,140,255, 24,47,132,255, 84,108,27,255, 80,102,30,255, 89,116,23,255, 92,120,22,255, 81,104,29,255, 80,102,30,255, 83,107,27,255, 92,120,22,255, 78,99,32,255, 81,104,29,255, 92,120,22,255, 92,120,22,255, 84,108,27,255, 80,102,30,255, 101,134,25,255, 91,120,22,255, 110,184,24,255, 104,178,24,255, 119,191,25,255, 124,195,27,255, 106,180,24,255, 105,179,24,255, 110,183,24,255, 124,195,27,255, 102,176,24,255, 107,181,24,255, 124,195,27,255, 124,195,27,255, 110,184,24,255, 104,178,24,255, 134,204,38,255, 123,195,27,255, 135,135,135,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,58,19,255, 54,49,19,255, 54,48,19,255, 54,47,19,255, 56,46,19,255, 60,47,19,255, 62,47,19,255, 58,45,19,255, 70,55,19,255, 80,62,23,255, 117,87,31,255, 119,104,39,255, 119,103,38,255, 99,88,32,255, 119,105,39,255, 119,103,38,255, 59,59,59,255, 54,54,54,255, 66,66,66,255, 75,75,75,255, 65,65,65,255, 75,75,75,255, 75,75,75,255, 74,74,74,255, 76,76,76,255, 74,74,74,255, 73,73,73,255, 75,75,75,255, 67,67,67,255, 64,64,64,255, 62,62,62,255, 52,52,52,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,45,45,255, 45,45,45,255, 45,45,45,255, 89,89,89,255, 89,89,89,255, 141,141,141,255, 93,93,93,255, 86,86,86,255, 86,86,86,255, 93,93,93,255, 129,129,129,255, 135,135,135,255, 127,127,127,255, 107,107,107,255, 108,108,108,255, 146,146,146,255, 113,113,113,255, 89,89,89,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,49,49,255, 49,49,49,255, 49,49,49,255, 49,49,49,255, 60,60,60,255, 60,60,60,255, 49,49,49,255, 49,49,49,255, 49,49,49,255, 27,27,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 34,69,72,255, 170,164,110,255, 235,237,180,255, 237,242,185,255, 249,249,197,255, 80,135,117,255, 66,115,103,255, 53,100,91,255, 53,100,91,255, 229,228,175,255, 249,249,197,255, 226,224,172,255, 192,194,135,255, 47,87,84,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 47,78,165,255, 35,71,153,255, 32,68,150,255, 37,77,159,255, 38,79,162,255, 35,69,165,255, 36,67,146,255, 40,70,116,255, 33,67,155,255, 38,67,132,255, 38,70,134,255, 48,72,122,255, 42,68,128,255, 31,56,147,255, 38,68,128,255, 24,47,132,255, 86,112,25,255, 82,105,28,255, 78,99,32,255, 84,108,27,255, 89,117,23,255, 89,116,23,255, 74,93,35,255, 74,92,36,255, 79,101,31,255, 85,109,26,255, 79,100,31,255, 76,95,34,255, 89,117,23,255, 89,117,23,255, 77,97,33,255, 74,93,35,255, 115,188,24,255, 108,182,24,255, 102,176,24,255, 110,184,24,255, 120,192,25,255, 119,191,25,255, 96,171,24,255, 95,170,24,255, 103,177,24,255, 112,185,24,255, 103,177,24,255, 98,173,24,255, 120,192,25,255, 120,192,25,255, 99,174,24,255, 96,171,24,255, 135,135,135,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,71,25,255, 116,104,38,255, 82,77,25,255, 114,101,38,255, 120,103,41,255, 125,98,45,255, 123,89,36,255, 121,88,35,255, 104,78,32,255, 104,78,32,255, 89,71,27,255, 89,72,28,255, 88,71,26,255, 88,69,25,255, 88,71,26,255, 88,69,25,255, 59,59,59,255, 66,66,66,255, 68,68,68,255, 68,68,68,255, 80,80,80,255, 80,80,80,255, 68,68,68,255, 70,70,70,255, 72,72,72,255, 73,73,73,255, 80,80,80,255, 72,72,72,255, 61,61,61,255, 70,70,70,255, 61,61,61,255, 52,52,52,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,45,45,255, 45,45,45,255, 45,45,45,255, 108,108,108,255, 113,113,113,255, 107,107,107,255, 90,90,90,255, 90,90,90,255, 90,90,90,255, 89,89,89,255, 127,127,127,255, 104,104,104,255, 107,107,107,255, 147,147,147,255, 140,140,140,255, 127,127,127,255, 127,127,127,255, 89,89,89,255, 93,93,93,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,44,34,255, 0,0,0,0, 77,77,77,255, 49,49,49,255, 203,193,104,255, 190,174,74,255, 49,49,49,255, 77,77,77,255, 0,0,0,0, 94,44,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 34,69,72,255, 179,174,120,255, 249,249,197,255, 36,67,59,255, 36,67,59,255, 36,67,59,255, 34,63,56,255, 36,67,59,255, 36,67,59,255, 31,58,51,255, 31,58,51,255, 235,236,180,255, 185,183,125,255, 47,87,84,255, 58,103,95,255, 42,80,80,255, 153,198,147,255, 24,53,62,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 24,53,62,255, 153,198,147,255, 24,53,62,255, 47,87,161,255, 34,68,154,255, 32,68,150,255, 37,71,157,255, 37,77,157,255, 38,78,160,255, 33,67,155,255, 37,70,137,255, 35,67,149,255, 48,70,120,255, 37,64,131,255, 43,77,141,255, 39,66,129,255, 33,57,145,255, 38,68,128,255, 24,47,132,255, 75,95,34,255, 74,93,35,255, 78,99,32,255, 92,120,22,255, 78,99,32,255, 74,92,36,255, 77,98,32,255, 80,102,30,255, 78,99,32,255, 74,92,36,255, 80,102,30,255, 81,104,29,255, 75,94,35,255, 79,100,31,255, 77,97,33,255, 80,103,30,255, 98,172,24,255, 96,171,24,255, 102,176,24,255, 124,195,27,255, 102,176,24,255, 95,170,24,255, 101,175,24,255, 104,178,24,255, 102,176,24,255, 95,170,24,255, 104,178,24,255, 106,180,24,255, 97,172,24,255, 103,177,24,255, 100,175,24,255, 105,179,24,255, 128,128,128,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 130,130,130,255, 120,120,120,255, 120,120,120,255, 129,129,129,255, 197,197,197,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,73,29,255, 87,73,26,255, 84,66,22,255, 85,68,24,255, 81,64,25,255, 82,63,25,255, 57,41,19,255, 62,48,19,255, 58,42,19,255, 58,45,19,255, 59,45,19,255, 62,48,19,255, 58,45,19,255, 58,45,19,255, 59,45,19,255, 92,73,29,255, 53,53,53,255, 59,59,59,255, 64,64,64,255, 75,75,75,255, 78,78,78,255, 65,65,65,255, 69,69,69,255, 75,75,75,255, 78,78,78,255, 68,68,68,255, 77,77,77,255, 66,66,66,255, 59,59,59,255, 70,70,70,255, 58,58,58,255, 55,55,55,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,116,116,255, 98,98,98,255, 121,121,121,255, 127,127,127,255, 92,92,92,255, 93,93,93,255, 102,102,102,255, 107,107,107,255, 116,116,116,255, 159,159,159,255, 142,142,142,255, 127,127,127,255, 135,135,135,255, 127,127,127,255, 102,102,102,255, 91,91,91,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 130,61,47,255, 0,0,0,0, 89,89,89,255, 49,49,49,255, 190,168,74,255, 190,168,74,255, 49,49,49,255, 89,89,89,255, 0,0,0,0, 130,61,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 34,69,72,255, 174,170,115,255, 226,224,172,255, 31,58,51,255, 2,17,13,255, 3,18,14,255, 3,18,14,255, 3,18,14,255, 2,17,13,255, 2,17,13,255, 53,100,88,255, 233,230,177,255, 185,183,125,255, 47,87,84,255, 58,103,95,255, 42,80,80,255, 24,53,62,255, 19,46,55,255, 165,159,105,255, 165,159,105,255, 165,159,105,255, 173,171,114,255, 176,171,117,255, 170,167,115,255, 165,159,105,255, 165,159,105,255, 169,165,110,255, 168,162,108,255, 19,46,55,255, 24,53,62,255, 24,53,62,255, 47,87,161,255, 37,57,155,255, 35,62,163,255, 35,64,157,255, 36,68,150,255, 37,77,159,255, 34,67,160,255, 37,68,139,255, 38,68,128,255, 48,68,120,255, 38,62,132,255, 42,66,120,255, 39,64,129,255, 45,71,123,255, 37,65,129,255, 27,43,141,255, 101,134,25,255, 101,134,25,255, 90,118,23,255, 89,116,23,255, 83,107,27,255, 83,107,27,255, 82,105,28,255, 85,109,26,255, 91,119,23,255, 101,134,25,255, 87,113,25,255, 81,104,29,255, 101,134,25,255, 101,134,25,255, 88,115,24,255, 85,110,26,255, 134,204,38,255, 134,204,38,255, 121,193,26,255, 119,191,25,255, 110,183,24,255, 110,183,24,255, 108,182,24,255, 112,185,24,255, 122,194,26,255, 134,204,38,255, 116,188,24,255, 107,181,24,255, 134,204,38,255, 134,204,38,255, 118,190,25,255, 113,186,24,255, 120,120,120,255, 128,128,128,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 146,146,146,255, 255,0,3,255, 251,0,6,255, 176,176,176,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 120,120,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,87,34,255, 119,87,34,255, 119,87,34,255, 61,47,19,255, 56,41,19,255, 60,45,19,255, 91,71,28,255, 90,71,27,255, 125,93,38,255, 119,87,34,255, 91,72,29,255, 94,74,30,255, 125,91,38,255, 125,91,38,255, 125,93,38,255, 125,91,38,255, 52,52,52,255, 61,61,61,255, 62,62,62,255, 62,62,62,255, 62,62,62,255, 70,70,70,255, 68,68,68,255, 67,67,67,255, 75,75,75,255, 68,68,68,255, 77,77,77,255, 70,70,70,255, 58,58,58,255, 63,63,63,255, 57,57,57,255, 51,51,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 102,102,102,255, 111,111,111,255, 141,141,141,255, 129,129,129,255, 125,125,125,255, 126,126,126,255, 113,113,113,255, 113,113,113,255, 113,113,113,255, 111,111,111,255, 95,95,95,255, 94,94,94,255, 105,105,105,255, 88,88,88,255, 86,86,86,255, 0,0,0,0, 0,0,0,0, 147,75,60,255, 0,0,0,0, 0,0,0,0, 97,97,97,255, 49,49,49,255, 189,163,82,255, 203,193,104,255, 49,49,49,255, 97,97,97,255, 0,0,0,0, 147,75,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 72,123,109,255, 153,198,147,255, 177,174,118,255, 220,217,165,255, 34,63,56,255, 3,18,14,255, 4,23,18,255, 6,25,20,255, 6,25,20,255, 6,25,20,255, 4,23,18,255, 51,92,82,255, 223,221,167,255, 181,175,121,255, 153,198,147,255, 61,107,98,255, 42,80,80,255, 19,46,55,255, 174,171,116,255, 195,189,137,255, 217,220,158,255, 217,222,158,255, 217,222,158,255, 235,248,182,255, 235,248,182,255, 235,248,182,255, 217,220,158,255, 211,205,149,255, 212,211,148,255, 167,161,107,255, 24,53,62,255, 19,46,55,255, 49,73,163,255, 39,65,139,255, 35,70,149,255, 35,72,155,255, 36,70,156,255, 30,56,152,255, 36,66,144,255, 34,66,146,255, 37,69,133,255, 38,65,132,255, 33,62,155,255, 39,62,139,255, 37,63,137,255, 44,68,124,255, 31,49,127,255, 27,43,141,255, 80,102,30,255, 80,102,30,255, 101,134,25,255, 101,134,25,255, 88,115,24,255, 87,113,25,255, 92,120,22,255, 91,120,22,255, 77,97,33,255, 79,100,31,255, 89,116,23,255, 92,120,22,255, 87,113,25,255, 86,112,25,255, 92,121,22,255, 91,120,22,255, 104,178,24,255, 104,178,24,255, 134,204,38,255, 134,204,38,255, 118,190,25,255, 116,188,24,255, 124,195,27,255, 123,195,27,255, 100,175,24,255, 103,177,24,255, 119,191,25,255, 124,195,27,255, 116,188,24,255, 115,188,24,255, 124,196,28,255, 123,195,27,255, 135,135,135,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 146,146,146,255, 255,0,0,255, 212,1,2,255, 176,176,176,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 120,120,120,255, 135,135,135,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 135,13,9,255, 132,10,11,255, 131,6,11,255, 129,9,6,255, 132,4,9,255, 128,10,13,255, 134,9,9,255, 131,16,16,255, 133,15,17,255, 124,19,16,255, 131,19,15,255, 129,15,15,255, 129,14,15,255, 130,9,11,255, 127,16,16,255, 129,15,16,255, 130,8,12,255, 132,6,9,255, 122,10,12,255, 131,7,8,255, 129,11,14,255, 129,9,6,255, 133,10,9,255, 130,17,16,255, 131,18,18,255, 127,16,16,255, 129,13,16,255, 128,17,16,255, 126,11,15,255, 125,9,9,255, 129,20,17,255, 129,13,18,255, 131,15,9,255, 132,5,6,255, 121,4,4,255, 132,9,6,255, 159,45,42,255, 133,12,9,255, 132,8,9,255, 107,0,3,255, 182,182,182,255, 206,205,208,255, 205,211,207,255, 204,203,203,255, 181,184,185,255, 187,186,183,255, 183,182,187,255, 181,176,182,255, 187,179,182,255, 206,210,207,255, 207,207,207,255, 201,201,201,255, 182,184,184,255, 186,185,179,255, 181,179,177,255, 184,179,181,255, 180,181,183,255, 206,208,209,255, 204,207,210,255, 205,205,203,255, 187,183,180,255, 187,183,188,255, 182,182,181,255, 182,184,182,255, 87,65,22,255, 87,65,22,255, 94,74,30,255, 91,71,28,255, 125,94,39,255, 87,66,23,255, 91,71,28,255, 61,48,19,255, 61,48,19,255, 58,45,19,255, 91,71,28,255, 89,68,25,255, 89,70,26,255, 89,68,25,255, 89,66,25,255, 104,78,32,255, 48,48,48,255, 56,56,56,255, 62,62,62,255, 65,65,65,255, 64,64,64,255, 63,63,63,255, 72,72,72,255, 66,66,66,255, 67,67,67,255, 73,73,73,255, 62,62,62,255, 69,69,69,255, 64,64,64,255, 62,62,62,255, 56,56,56,255, 48,48,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 97,97,97,255, 122,122,122,255, 107,107,107,255, 103,103,103,255, 103,103,103,255, 107,107,107,255, 103,103,103,255, 110,110,110,255, 129,129,129,255, 88,88,88,255, 81,81,81,255, 86,86,86,255, 90,90,90,255, 87,87,87,255, 91,91,91,255, 0,0,0,0, 212,109,73,255, 188,85,49,255, 169,71,37,255, 0,0,0,0, 97,97,97,255, 49,49,49,255, 203,193,104,255, 198,188,81,255, 49,49,49,255, 97,97,97,255, 0,0,0,0, 147,75,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 50,92,87,255, 174,170,115,255, 229,228,175,255, 36,67,59,255, 3,18,14,255, 6,25,20,255, 4,23,18,255, 4,21,17,255, 4,23,18,255, 6,24,20,255, 59,108,96,255, 224,224,170,255, 198,194,141,255, 47,87,84,255, 54,97,91,255, 24,53,62,255, 19,46,55,255, 24,53,62,255, 181,178,122,255, 192,188,138,255, 187,187,129,255, 187,187,129,255, 186,187,129,255, 192,187,134,255, 181,178,122,255, 181,178,122,255, 192,188,138,255, 187,187,129,255, 58,103,95,255, 19,46,55,255, 19,46,55,255, 49,73,163,255, 43,71,133,255, 35,63,153,255, 34,71,156,255, 38,70,160,255, 39,64,145,255, 31,54,151,255, 36,65,150,255, 40,68,138,255, 38,67,140,255, 48,68,120,255, 40,66,140,255, 40,63,128,255, 48,72,120,255, 38,58,148,255, 27,43,141,255, 88,115,24,255, 88,114,24,255, 75,95,34,255, 79,101,31,255, 91,120,22,255, 87,113,25,255, 78,99,32,255, 80,102,30,255, 79,101,31,255, 81,104,29,255, 79,100,31,255, 75,94,35,255, 83,107,27,255, 81,104,29,255, 76,96,33,255, 76,95,34,255, 118,190,25,255, 117,190,24,255, 98,172,24,255, 103,177,24,255, 123,195,27,255, 116,188,24,255, 102,176,24,255, 105,179,24,255, 103,177,24,255, 106,180,24,255, 103,177,24,255, 97,172,24,255, 110,183,24,255, 107,181,24,255, 99,173,24,255, 98,173,24,255, 146,146,146,255, 135,135,135,255, 197,197,197,255, 157,157,157,255, 146,146,146,255, 128,128,128,255, 146,146,146,255, 253,1,1,255, 171,3,1,255, 176,176,176,255, 157,157,157,255, 205,205,205,255, 176,176,176,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 132,9,9,255, 142,24,17,255, 139,17,18,255, 137,20,18,255, 138,22,22,255, 136,23,22,255, 140,21,19,255, 129,19,13,255, 129,16,17,255, 128,15,16,255, 129,11,17,255, 129,18,16,255, 140,15,21,255, 136,24,21,255, 140,20,21,255, 128,12,17,255, 130,9,9,255, 141,23,21,255, 140,24,21,255, 138,21,19,255, 142,17,19,255, 138,21,20,255, 140,22,21,255, 130,16,16,255, 126,17,16,255, 127,20,16,255, 130,16,18,255, 125,18,16,255, 144,23,26,255, 139,20,17,255, 139,22,21,255, 131,17,13,255, 137,20,19,255, 140,21,21,255, 122,4,1,255, 177,53,52,255, 163,39,42,255, 140,21,17,255, 132,15,18,255, 108,0,0,255, 185,182,180,255, 237,238,238,255, 238,241,238,255, 233,238,241,255, 237,240,238,255, 238,239,238,255, 205,210,207,255, 182,181,184,255, 181,184,185,255, 206,207,207,255, 237,234,236,255, 239,236,238,255, 249,251,248,255, 248,250,250,255, 248,248,250,255, 247,248,246,255, 250,247,247,255, 250,246,248,255, 239,239,238,255, 241,239,235,255, 235,242,242,255, 239,235,239,255, 207,205,209,255, 182,183,181,255, 56,41,19,255, 56,41,19,255, 56,41,19,255, 56,41,19,255, 62,48,19,255, 58,42,19,255, 62,48,19,255, 89,71,27,255, 124,94,39,255, 89,70,26,255, 88,66,25,255, 91,73,29,255, 59,45,19,255, 59,45,19,255, 60,48,19,255, 60,48,19,255, 48,48,48,255, 53,53,53,255, 60,60,60,255, 58,58,58,255, 69,69,69,255, 61,61,61,255, 65,65,65,255, 68,68,68,255, 64,64,64,255, 68,68,68,255, 67,67,67,255, 68,68,68,255, 62,62,62,255, 59,59,59,255, 55,55,55,255, 48,48,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 89,89,89,255, 113,113,113,255, 147,147,147,255, 147,147,147,255, 129,129,129,255, 110,110,110,255, 149,149,149,255, 106,106,106,255, 110,110,110,255, 147,147,147,255, 95,95,95,255, 83,83,83,255, 86,86,86,255, 95,95,95,255, 91,91,91,255, 89,89,89,255, 0,0,0,0, 204,175,165,255, 151,55,22,255, 204,175,165,255, 0,0,0,0, 97,97,97,255, 49,49,49,255, 198,188,81,255, 190,168,74,255, 49,49,49,255, 97,97,97,255, 0,0,0,0, 130,61,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 34,69,72,255, 170,164,110,255, 220,217,165,255, 34,63,56,255, 3,18,14,255, 4,21,17,255, 4,21,17,255, 4,21,17,255, 4,21,17,255, 4,21,17,255, 56,103,91,255, 220,217,165,255, 183,178,122,255, 47,87,84,255, 58,103,95,255, 166,160,106,255, 19,46,55,255, 19,46,55,255, 24,53,62,255, 47,87,84,255, 47,87,84,255, 47,87,84,255, 47,87,84,255, 47,87,84,255, 47,87,84,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 39,76,75,255, 19,46,55,255, 175,172,116,255, 49,73,163,255, 37,57,155,255, 40,63,140,255, 36,62,160,255, 36,67,154,255, 44,81,142,255, 40,68,140,255, 35,64,147,255, 38,66,144,255, 37,64,133,255, 37,62,143,255, 48,67,120,255, 48,67,120,255, 37,60,133,255, 49,74,119,255, 27,43,141,255, 79,101,31,255, 81,104,29,255, 80,103,30,255, 91,119,23,255, 74,92,36,255, 74,93,35,255, 81,104,29,255, 86,111,25,255, 78,99,32,255, 86,112,25,255, 101,134,25,255, 101,134,25,255, 82,106,28,255, 88,114,24,255, 101,134,25,255, 101,134,25,255, 103,177,24,255, 107,181,24,255, 105,179,24,255, 122,194,26,255, 95,170,24,255, 96,171,24,255, 107,181,24,255, 114,187,24,255, 102,176,24,255, 115,188,24,255, 134,204,38,255, 134,204,38,255, 109,182,24,255, 117,190,24,255, 134,204,38,255, 134,204,38,255, 197,197,197,255, 197,197,197,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 146,146,146,255, 214,0,0,255, 214,0,6,255, 176,176,176,255, 163,163,163,255, 157,157,157,255, 205,205,205,255, 163,163,163,255, 197,197,197,255, 197,197,197,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,245,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,7,10,255, 138,17,20,255, 154,32,34,255, 155,33,38,255, 158,32,34,255, 155,36,37,255, 152,31,32,255, 156,35,31,255, 137,20,19,255, 142,20,19,255, 138,26,21,255, 129,12,19,255, 129,16,16,255, 130,14,12,255, 140,21,23,255, 142,22,22,255, 128,10,9,255, 140,18,23,255, 155,34,33,255, 156,35,35,255, 151,34,37,255, 156,35,30,255, 154,35,36,255, 153,30,35,255, 141,21,23,255, 142,19,19,255, 143,21,24,255, 128,15,14,255, 128,17,15,255, 129,17,16,255, 134,22,16,255, 140,21,21,255, 143,19,21,255, 126,18,16,255, 115,0,0,255, 162,40,41,255, 129,18,10,255, 137,22,23,255, 140,18,26,255, 107,0,2,255, 181,181,182,255, 202,207,208,255, 238,233,234,255, 239,234,236,255, 238,238,238,255, 232,231,233,255, 209,207,207,255, 182,182,181,255, 183,181,182,255, 212,208,207,255, 232,238,243,255, 237,238,240,255, 240,237,233,255, 235,238,235,255, 238,239,238,255, 243,235,239,255, 250,250,248,255, 241,238,238,255, 236,240,236,255, 247,247,246,255, 239,240,238,255, 240,236,239,255, 206,211,210,255, 183,180,180,255, 89,72,27,255, 103,78,32,255, 104,78,32,255, 125,94,39,255, 125,94,39,255, 124,89,37,255, 120,89,36,255, 59,50,19,255, 57,47,19,255, 83,67,22,255, 87,73,26,255, 101,83,32,255, 101,83,32,255, 122,99,38,255, 122,97,38,255, 80,66,25,255, 46,46,46,255, 52,52,52,255, 59,59,59,255, 60,60,60,255, 63,63,63,255, 59,59,59,255, 61,61,61,255, 66,66,66,255, 70,70,70,255, 65,65,65,255, 64,64,64,255, 58,58,58,255, 60,60,60,255, 59,59,59,255, 54,54,54,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 89,89,89,255, 99,99,99,255, 131,131,131,255, 127,127,127,255, 134,134,134,255, 104,104,104,255, 115,115,115,255, 121,121,121,255, 147,147,147,255, 147,147,147,255, 105,105,105,255, 88,88,88,255, 85,85,85,255, 102,102,102,255, 113,113,113,255, 113,113,113,255, 0,0,0,0, 228,228,228,255, 179,24,24,255, 206,206,206,255, 0,0,0,0, 97,97,97,255, 49,49,49,255, 203,193,104,255, 198,188,81,255, 49,49,49,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 72,123,109,255, 153,198,147,255, 173,168,113,255, 224,223,168,255, 32,61,54,255, 3,18,14,255, 6,25,20,255, 4,23,18,255, 4,21,17,255, 4,20,16,255, 5,23,18,255, 53,98,87,255, 229,228,177,255, 192,194,135,255, 153,198,147,255, 61,107,98,255, 235,248,182,255, 172,168,112,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 19,46,55,255, 169,163,109,255, 195,189,137,255, 69,97,129,255, 37,59,155,255, 40,56,128,255, 33,50,151,255, 36,61,142,255, 45,76,127,255, 42,68,136,255, 30,50,150,255, 37,60,147,255, 36,64,136,255, 43,64,123,255, 48,67,120,255, 48,67,120,255, 38,61,134,255, 54,78,114,255, 38,64,102,255, 91,120,22,255, 92,121,22,255, 88,115,24,255, 88,115,24,255, 101,134,25,255, 92,120,22,255, 88,115,24,255, 87,113,25,255, 92,121,22,255, 91,119,23,255, 81,104,29,255, 85,109,26,255, 86,112,25,255, 83,107,27,255, 77,97,33,255, 84,108,27,255, 123,195,27,255, 124,196,28,255, 118,190,25,255, 118,190,25,255, 134,204,38,255, 124,195,27,255, 118,190,25,255, 116,188,24,255, 124,196,28,255, 122,194,26,255, 106,180,24,255, 112,185,24,255, 115,188,24,255, 110,183,24,255, 99,174,24,255, 110,184,24,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 128,128,128,255, 157,157,157,255, 146,146,146,255, 214,0,2,255, 177,0,1,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 205,205,205,255, 168,168,168,255, 168,168,168,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,0,0,255, 104,0,0,255, 106,4,1,255, 104,5,0,255, 108,0,0,255, 106,1,0,255, 111,0,0,255, 108,1,0,255, 109,3,0,255, 109,0,0,255, 109,2,1,255, 108,0,0,255, 111,0,1,255, 108,0,0,255, 110,2,0,255, 109,0,0,255, 109,3,1,255, 113,1,0,255, 111,0,0,255, 112,0,0,255, 109,0,0,255, 108,0,2,255, 109,0,1,255, 105,0,0,255, 108,1,2,255, 105,1,0,255, 107,0,1,255, 107,0,0,255, 109,0,4,255, 107,0,0,255, 111,1,3,255, 109,2,0,255, 105,0,0,255, 108,1,3,255, 106,3,0,255, 109,5,0,255, 108,2,0,255, 110,1,1,255, 106,0,0,255, 110,0,0,255, 181,182,182,255, 184,186,185,255, 208,214,206,255, 201,202,205,255, 200,200,204,255, 179,182,182,255, 180,184,184,255, 182,182,183,255, 181,179,181,255, 183,185,182,255, 207,203,205,255, 203,198,203,255, 202,203,200,255, 182,182,180,255, 182,182,180,255, 179,182,182,255, 182,184,185,255, 185,186,186,255, 208,207,209,255, 205,202,201,255, 203,204,204,255, 185,184,180,255, 183,185,185,255, 183,182,184,255, 83,71,23,255, 90,73,29,255, 89,70,26,255, 91,72,29,255, 94,75,30,255, 89,68,25,255, 91,75,30,255, 114,99,36,255, 120,105,40,255, 118,102,38,255, 119,105,39,255, 99,88,32,255, 99,88,32,255, 84,77,26,255, 57,52,19,255, 84,76,25,255, 45,45,45,255, 50,50,50,255, 53,53,53,255, 60,60,60,255, 64,64,64,255, 62,62,62,255, 61,61,61,255, 59,59,59,255, 58,58,58,255, 63,63,63,255, 66,66,66,255, 62,62,62,255, 61,61,61,255, 57,57,57,255, 49,49,49,255, 47,47,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 87,87,87,255, 132,132,132,255, 111,111,111,255, 85,85,85,255, 84,84,84,255, 102,102,102,255, 117,117,117,255, 109,109,109,255, 127,127,127,255, 127,127,127,255, 104,104,104,255, 112,112,112,255, 147,147,147,255, 113,113,113,255, 100,100,100,255, 206,206,206,255, 221,52,52,255, 186,186,186,255, 221,52,52,255, 228,228,228,255, 97,97,97,255, 49,49,49,255, 190,168,74,255, 190,168,74,255, 49,49,49,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 50,92,87,255, 172,167,112,255, 235,236,180,255, 36,67,59,255, 3,18,14,255, 6,25,20,255, 6,25,20,255, 6,24,20,255, 4,22,18,255, 4,22,18,255, 59,108,96,255, 243,248,190,255, 176,170,117,255, 47,87,84,255, 54,97,91,255, 249,249,197,255, 244,249,189,255, 166,160,105,255, 172,168,112,255, 177,172,120,255, 175,172,116,255, 175,172,116,255, 174,172,116,255, 177,172,118,255, 172,168,112,255, 172,168,112,255, 177,172,120,255, 175,172,116,255, 169,163,109,255, 195,189,137,255, 217,220,158,255, 63,91,133,255, 44,66,118,255, 40,67,128,255, 30,47,130,255, 29,50,127,255, 38,63,128,255, 37,59,139,255, 29,49,151,255, 33,57,145,255, 36,64,136,255, 41,64,129,255, 48,70,120,255, 44,65,118,255, 42,65,122,255, 53,79,119,255, 34,60,102,255, 77,97,33,255, 78,99,32,255, 86,111,25,255, 86,111,25,255, 80,102,30,255, 80,102,30,255, 89,117,23,255, 88,114,24,255, 77,97,33,255, 78,99,32,255, 79,101,31,255, 86,112,25,255, 74,93,35,255, 74,92,35,255, 80,103,30,255, 86,112,25,255, 99,174,24,255, 102,176,24,255, 114,187,24,255, 114,187,24,255, 104,178,24,255, 105,179,24,255, 120,192,25,255, 117,190,24,255, 100,175,24,255, 102,176,24,255, 103,177,24,255, 115,188,24,255, 96,171,24,255, 95,170,24,255, 105,179,24,255, 115,188,24,255, 120,120,120,255, 168,168,168,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 157,157,157,255, 146,146,146,255, 253,3,0,255, 219,2,7,255, 176,176,176,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 205,205,205,255, 176,176,176,255, 120,120,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 167,144,74,255, 145,109,54,255, 140,105,50,255, 148,109,56,255, 144,109,56,255, 147,111,59,255, 141,104,46,255, 139,105,51,255, 148,110,52,255, 145,107,54,255, 135,105,49,255, 139,107,50,255, 145,110,54,255, 147,111,53,255, 145,112,57,255, 83,65,27,255, 170,143,76,255, 145,110,56,255, 135,106,50,255, 146,112,56,255, 143,106,59,255, 147,108,57,255, 137,103,50,255, 137,104,48,255, 145,111,54,255, 147,108,56,255, 136,104,51,255, 135,100,50,255, 145,107,57,255, 144,115,53,255, 145,108,57,255, 136,104,52,255, 137,105,49,255, 139,104,47,255, 145,108,56,255, 145,108,55,255, 143,112,58,255, 147,111,59,255, 145,107,55,255, 142,106,53,255, 140,104,50,255, 145,106,52,255, 137,103,53,255, 146,109,57,255, 139,110,55,255, 145,110,53,255, 143,109,54,255, 91,59,27,255, 172,149,72,255, 145,105,57,255, 134,103,51,255, 148,109,56,255, 148,109,57,255, 145,109,54,255, 139,104,54,255, 141,103,51,255, 148,117,57,255, 145,109,60,255, 135,102,49,255, 138,107,49,255, 145,108,54,255, 144,109,53,255, 146,112,62,255, 88,60,28,255, 58,47,19,255, 60,48,19,255, 92,73,29,255, 89,66,25,255, 89,68,25,255, 91,71,28,255, 89,68,25,255, 93,77,31,255, 89,73,29,255, 90,74,29,255, 87,68,25,255, 88,69,25,255, 60,49,19,255, 60,49,19,255, 55,42,19,255, 57,43,19,255, 45,45,45,255, 48,48,48,255, 56,56,56,255, 59,59,59,255, 58,58,58,255, 58,58,58,255, 53,53,53,255, 55,55,55,255, 55,55,55,255, 54,54,54,255, 58,58,58,255, 56,56,56,255, 60,60,60,255, 56,56,56,255, 52,52,52,255, 45,45,45,255, 44,44,44,255, 44,44,44,255, 44,44,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,44,44,255, 44,44,44,255, 45,45,45,255, 85,85,85,255, 89,89,89,255, 107,107,107,255, 92,92,92,255, 84,84,84,255, 83,83,83,255, 88,88,88,255, 129,129,129,255, 122,122,122,255, 105,105,105,255, 113,113,113,255, 113,113,113,255, 151,151,151,255, 130,130,130,255, 105,105,105,255, 99,99,99,255, 186,186,186,255, 179,24,24,255, 179,24,24,255, 186,186,186,255, 228,228,228,255, 89,89,89,255, 49,49,49,255, 190,168,74,255, 203,193,104,255, 49,49,49,255, 89,89,89,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 34,69,72,255, 179,174,120,255, 249,249,197,255, 36,67,59,255, 47,88,78,255, 47,88,78,255, 53,100,88,255, 55,100,89,255, 59,108,96,255, 58,107,95,255, 58,107,95,255, 226,224,172,255, 184,180,124,255, 47,87,84,255, 58,103,95,255, 249,249,197,255, 235,248,182,255, 249,249,197,255, 249,249,197,255, 235,248,182,255, 195,189,137,255, 195,189,137,255, 217,220,158,255, 222,230,166,255, 249,250,198,255, 235,248,182,255, 235,248,182,255, 195,189,137,255, 213,213,153,255, 207,201,147,255, 217,220,158,255, 68,95,132,255, 49,73,127,255, 46,68,120,255, 35,56,125,255, 30,49,132,255, 33,50,137,255, 32,53,146,255, 29,46,151,255, 30,50,150,255, 38,62,140,255, 38,69,132,255, 41,67,127,255, 48,72,120,255, 44,68,118,255, 42,63,118,255, 34,61,102,255, 80,102,30,255, 80,102,30,255, 74,92,36,255, 74,93,35,255, 91,120,22,255, 93,123,22,255, 76,95,34,255, 74,92,36,255, 83,107,27,255, 89,117,23,255, 85,109,26,255, 88,114,24,255, 101,134,25,255, 101,134,25,255, 86,112,25,255, 75,94,35,255, 105,179,24,255, 104,178,24,255, 95,170,24,255, 96,171,24,255, 123,195,27,255, 127,198,30,255, 98,173,24,255, 95,170,24,255, 110,183,24,255, 120,192,25,255, 112,185,24,255, 117,190,24,255, 134,204,38,255, 134,204,38,255, 115,188,24,255, 97,172,24,255, 135,135,135,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 157,157,157,255, 163,163,163,255, 146,146,146,255, 255,2,1,255, 177,3,0,255, 176,176,176,255, 157,157,157,255, 168,160,166,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,150,85,255, 136,103,49,255, 103,67,34,255, 108,68,32,255, 106,67,32,255, 109,65,32,255, 105,65,29,255, 109,64,32,255, 87,58,23,255, 86,60,34,255, 107,66,30,255, 106,68,33,255, 91,63,25,255, 145,116,71,255, 142,111,56,255, 88,64,27,255, 174,151,80,255, 137,106,52,255, 107,63,33,255, 107,65,31,255, 106,66,30,255, 105,67,30,255, 105,65,30,255, 104,69,32,255, 85,63,25,255, 86,60,28,255, 106,68,27,255, 106,68,31,255, 87,57,25,255, 106,62,32,255, 104,67,30,255, 105,66,31,255, 103,69,32,255, 88,63,26,255, 111,67,30,255, 106,66,31,255, 86,59,27,255, 106,68,31,255, 106,68,35,255, 109,69,31,255, 104,66,29,255, 104,66,31,255, 107,65,32,255, 107,68,30,255, 101,65,29,255, 146,117,71,255, 141,108,61,255, 87,58,27,255, 178,153,79,255, 136,100,49,255, 104,67,31,255, 108,64,33,255, 99,69,29,255, 102,64,32,255, 106,67,28,255, 108,64,29,255, 85,60,27,255, 90,60,28,255, 105,67,31,255, 105,65,31,255, 89,57,26,255, 154,120,70,255, 143,109,55,255, 91,59,29,255, 103,78,32,255, 124,90,38,255, 83,63,25,255, 57,41,19,255, 61,47,19,255, 61,48,19,255, 66,53,21,255, 61,47,19,255, 60,45,19,255, 70,55,19,255, 92,73,29,255, 92,73,29,255, 87,65,22,255, 87,66,23,255, 94,75,30,255, 104,78,32,255, 46,46,46,255, 50,50,50,255, 58,58,58,255, 55,55,55,255, 60,60,60,255, 56,56,56,255, 54,54,54,255, 51,51,51,255, 51,51,51,255, 56,56,56,255, 56,56,56,255, 56,56,56,255, 60,60,60,255, 56,56,56,255, 53,53,53,255, 47,47,47,255, 44,44,44,255, 44,44,44,255, 44,44,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,45,45,255, 44,44,44,255, 45,45,45,255, 89,89,89,255, 109,109,109,255, 140,140,140,255, 86,86,86,255, 87,87,87,255, 84,84,84,255, 87,87,87,255, 135,135,135,255, 149,149,149,255, 147,147,147,255, 113,113,113,255, 113,113,113,255, 147,147,147,255, 130,130,130,255, 101,101,101,255, 86,86,86,255, 186,186,186,255, 140,8,8,255, 179,24,24,255, 140,8,8,255, 206,206,206,255, 77,77,77,255, 49,49,49,255, 190,168,74,255, 198,188,81,255, 49,49,49,255, 77,77,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 34,69,72,255, 170,164,110,255, 227,225,173,255, 249,249,197,255, 235,237,180,255, 80,135,117,255, 66,115,103,255, 53,100,91,255, 53,100,91,255, 243,248,190,255, 243,248,190,255, 226,224,172,255, 184,181,124,255, 47,87,84,255, 58,103,95,255, 235,248,182,255, 195,189,137,255, 198,192,140,255, 198,192,140,255, 249,249,197,255, 217,222,158,255, 195,189,137,255, 211,205,149,255, 195,189,137,255, 195,189,137,255, 235,248,182,255, 235,248,182,255, 195,189,137,255, 215,215,153,255, 215,215,153,255, 249,249,197,255, 66,92,128,255, 44,68,118,255, 43,64,123,255, 44,69,120,255, 33,51,143,255, 33,51,145,255, 36,71,136,255, 29,52,153,255, 33,47,151,255, 33,54,123,255, 41,64,123,255, 40,66,124,255, 48,73,120,255, 46,69,116,255, 43,67,115,255, 34,61,102,255, 88,114,24,255, 87,113,25,255, 94,124,22,255, 101,134,25,255, 91,120,22,255, 88,115,24,255, 85,109,26,255, 81,104,29,255, 74,92,36,255, 82,106,28,255, 88,114,24,255, 92,120,22,255, 82,105,28,255, 82,106,28,255, 92,120,22,255, 101,134,25,255, 117,190,24,255, 116,188,24,255, 127,198,30,255, 134,204,38,255, 123,195,27,255, 118,190,25,255, 112,185,24,255, 106,180,24,255, 95,170,24,255, 109,182,24,255, 117,190,24,255, 124,195,27,255, 108,182,24,255, 109,182,24,255, 124,195,27,255, 134,204,38,255, 135,135,135,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 157,157,157,255, 163,163,163,255, 151,151,151,255, 215,3,4,255, 177,0,2,255, 176,176,176,255, 168,160,166,255, 205,205,205,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 192,245,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 172,143,69,255, 140,99,49,255, 86,60,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,145,72,255, 147,109,58,255, 86,61,30,255, 170,141,73,255, 137,104,45,255, 88,60,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,145,76,255, 146,111,57,255, 90,63,27,255, 172,144,73,255, 141,104,53,255, 84,60,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 169,138,70,255, 145,108,54,255, 87,60,26,255, 89,70,26,255, 89,68,25,255, 93,74,30,255, 125,94,39,255, 104,78,32,255, 104,78,32,255, 126,94,41,255, 125,93,38,255, 125,94,39,255, 104,78,32,255, 83,63,25,255, 61,48,19,255, 65,52,20,255, 83,63,25,255, 88,66,24,255, 125,93,38,255, 46,46,46,255, 49,49,49,255, 56,56,56,255, 59,59,59,255, 60,60,60,255, 56,56,56,255, 54,54,54,255, 51,51,51,255, 51,51,51,255, 56,56,56,255, 56,56,56,255, 56,56,56,255, 60,60,60,255, 58,58,58,255, 51,51,51,255, 47,47,47,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 112,112,112,255, 112,112,112,255, 135,135,135,255, 102,102,102,255, 85,85,85,255, 84,84,84,255, 95,95,95,255, 115,115,115,255, 122,122,122,255, 130,130,130,255, 126,126,126,255, 113,113,113,255, 125,125,125,255, 131,131,131,255, 99,99,99,255, 85,85,85,255, 0,0,0,0, 186,186,186,255, 186,186,186,255, 186,186,186,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 198,188,81,255, 198,188,81,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,115,103,255, 34,69,72,255, 47,87,84,255, 184,180,124,255, 191,193,135,255, 80,135,117,255, 66,115,103,255, 249,249,197,255, 185,183,125,255, 53,100,91,255, 47,87,84,255, 192,194,135,255, 185,183,125,255, 47,87,84,255, 47,87,84,255, 58,103,95,255, 195,189,137,255, 195,189,137,255, 211,205,149,255, 213,213,153,255, 232,247,181,255, 235,248,182,255, 250,250,208,255, 232,247,181,255, 222,230,166,255, 215,215,153,255, 217,222,158,255, 235,248,182,255, 217,222,158,255, 212,211,148,255, 217,220,158,255, 249,249,197,255, 51,84,139,255, 43,61,99,255, 38,79,162,255, 38,79,162,255, 44,71,120,255, 44,71,120,255, 44,73,120,255, 44,73,120,255, 29,47,157,255, 36,71,136,255, 33,54,123,255, 28,52,156,255, 48,73,120,255, 44,65,118,255, 46,71,116,255, 22,51,134,255, 93,123,22,255, 93,122,22,255, 84,108,27,255, 81,104,29,255, 92,120,22,255, 85,109,26,255, 86,112,25,255, 89,116,23,255, 101,134,25,255, 91,119,23,255, 79,100,31,255, 79,101,31,255, 85,110,26,255, 88,114,24,255, 80,102,30,255, 77,97,33,255, 127,198,30,255, 126,197,29,255, 110,184,24,255, 107,181,24,255, 124,195,27,255, 112,185,24,255, 115,188,24,255, 119,191,25,255, 134,204,38,255, 122,194,26,255, 103,177,24,255, 103,177,24,255, 113,186,24,255, 117,190,24,255, 105,179,24,255, 100,175,24,255, 135,135,135,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 205,205,205,255, 176,176,176,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 174,153,82,255, 140,110,60,255, 89,60,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,150,81,255, 145,109,58,255, 110,70,29,255, 176,150,81,255, 143,105,55,255, 85,61,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,150,81,255, 145,109,56,255, 106,66,34,255, 180,151,82,255, 143,109,59,255, 85,62,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,151,82,255, 143,110,57,255, 107,64,33,255, 83,63,25,255, 58,42,19,255, 61,48,19,255, 83,63,25,255, 83,63,25,255, 83,63,25,255, 90,71,27,255, 90,71,27,255, 91,72,29,255, 104,78,32,255, 83,63,25,255, 104,78,32,255, 94,75,30,255, 83,63,25,255, 88,66,24,255, 88,66,24,255, 46,46,46,255, 50,50,50,255, 54,54,54,255, 58,58,58,255, 58,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,59,59,255, 59,59,59,255, 57,57,57,255, 50,50,50,255, 49,49,49,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 91,91,91,255, 103,103,103,255, 112,112,112,255, 99,99,99,255, 96,96,96,255, 99,99,99,255, 98,98,98,255, 87,87,87,255, 89,89,89,255, 87,87,87,255, 99,99,99,255, 89,89,89,255, 93,93,93,255, 85,85,85,255, 85,85,85,255, 91,91,91,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 194,180,74,255, 194,175,83,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,103,95,255, 153,198,147,255, 47,87,84,255, 47,87,84,255, 47,87,84,255, 153,198,147,255, 185,183,125,255, 66,115,103,255, 47,87,84,255, 176,170,117,255, 153,198,147,255, 47,87,84,255, 47,87,84,255, 47,87,84,255, 153,198,147,255, 58,103,95,255, 232,247,181,255, 212,208,148,255, 195,189,137,255, 217,220,158,255, 222,230,166,255, 217,220,158,255, 217,222,158,255, 244,249,189,255, 242,248,188,255, 244,249,189,255, 217,220,158,255, 235,248,182,255, 224,237,173,255, 249,249,197,255, 249,249,197,255, 236,248,180,255, 60,93,116,255, 25,53,111,255, 25,53,111,255, 27,65,151,255, 22,48,162,255, 26,54,118,255, 26,54,118,255, 31,55,103,255, 31,55,103,255, 26,54,118,255, 29,48,101,255, 33,55,101,255, 33,55,101,255, 33,57,101,255, 22,51,134,255, 22,51,134,255, 75,94,34,255, 78,99,32,255, 91,120,22,255, 85,110,26,255, 77,97,33,255, 80,102,30,255, 92,120,22,255, 94,124,22,255, 82,105,28,255, 80,102,30,255, 87,113,25,255, 91,120,22,255, 77,97,33,255, 78,99,32,255, 91,119,23,255, 92,120,22,255, 97,172,24,255, 102,176,24,255, 123,195,27,255, 113,186,24,255, 100,175,24,255, 105,179,24,255, 124,195,27,255, 127,198,30,255, 108,182,24,255, 104,178,24,255, 116,188,24,255, 123,195,27,255, 100,175,24,255, 102,176,24,255, 122,194,26,255, 124,195,27,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 120,120,120,255, 146,146,146,255, 143,136,141,255, 129,129,129,255, 129,129,129,255, 129,129,129,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 179,214,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,138,75,255, 152,109,53,255, 108,67,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,142,74,255, 146,110,58,255, 105,69,30,255, 173,143,74,255, 148,108,56,255, 107,68,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,142,68,255, 148,109,56,255, 106,66,31,255, 168,142,71,255, 145,112,55,255, 106,64,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,144,69,255, 145,110,60,255, 106,66,35,255, 83,63,25,255, 93,74,30,255, 124,90,38,255, 58,42,19,255, 60,45,19,255, 65,52,20,255, 90,71,27,255, 90,71,27,255, 91,72,29,255, 89,70,26,255, 92,73,29,255, 91,71,28,255, 93,74,30,255, 58,42,19,255, 61,47,19,255, 58,42,19,255, 46,46,46,255, 51,51,51,255, 54,54,54,255, 63,63,63,255, 63,63,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,60,60,255, 60,60,60,255, 57,57,57,255, 54,54,54,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 102,102,102,255, 84,84,84,255, 97,97,97,255, 102,102,102,255, 99,99,99,255, 85,85,85,255, 91,91,91,255, 112,112,112,255, 99,99,99,255, 99,99,99,255, 83,83,83,255, 92,92,92,255, 112,112,112,255, 113,113,113,255, 89,89,89,255, 100,100,100,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 194,175,83,255, 190,174,74,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 61,107,98,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 61,107,98,255, 61,107,98,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 58,103,95,255, 213,213,153,255, 249,249,197,255, 223,230,166,255, 213,213,153,255, 217,220,158,255, 249,249,197,255, 232,247,181,255, 195,189,137,255, 217,220,158,255, 217,220,158,255, 250,250,208,255, 232,247,181,255, 195,189,137,255, 195,189,137,255, 235,248,182,255, 217,220,158,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 103,64,35,255, 107,66,36,255, 101,62,34,255, 103,63,34,255, 112,70,39,255, 123,77,45,255, 104,64,35,255, 105,65,36,255, 118,74,43,255, 120,76,44,255, 98,61,32,255, 102,63,34,255, 115,72,41,255, 115,72,41,255, 102,63,34,255, 99,61,33,255, 245,185,28,255, 246,189,31,255, 244,182,26,255, 245,184,27,255, 248,196,36,255, 252,208,48,255, 245,186,28,255, 246,187,30,255, 251,203,43,255, 251,206,45,255, 243,179,23,255, 244,183,26,255, 249,199,38,255, 249,199,38,255, 244,183,26,255, 243,180,24,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 201,144,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,144,31,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,123,107,255, 32,149,129,255, 32,149,129,255, 44,205,177,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 44,205,177,255, 32,149,129,255, 32,149,129,255, 27,123,107,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 85,25,9,255, 103,46,11,255, 127,62,15,255, 126,66,18,255, 130,60,14,255, 105,42,11,255, 83,23,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,110,45,255, 96,68,25,255, 84,54,24,255, 105,86,27,255, 152,119,56,255, 152,119,56,255, 121,94,47,255, 84,56,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 148,128,61,255, 105,87,42,255, 96,91,40,255, 102,114,44,255, 99,104,42,255, 119,115,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 189,192,96,255, 172,173,87,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 92,92,92,255, 99,99,99,255, 119,119,119,255, 104,104,104,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 143,143,143,107, 164,164,164,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 147,147,147,107, 0,0,0,0, 0,0,0,0, 149,149,149,107, 118,118,118,107, 0,0,0,0, 0,0,0,0, 164,164,164,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 11,34,42,255, 24,53,62,255, 24,53,62,255, 47,87,84,255, 47,87,84,255, 24,53,62,255, 24,53,62,255, 11,34,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,222,158,255, 236,248,180,255, 235,248,182,255, 195,189,137,255, 195,189,137,255, 217,220,158,255, 222,233,169,255, 195,189,137,255, 195,189,137,255, 217,222,158,255, 236,248,180,255, 249,249,197,255, 249,249,197,255, 224,237,173,255, 195,189,137,255, 195,189,137,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 113,71,40,255, 118,74,42,255, 131,84,50,255, 131,84,50,255, 124,79,46,255, 120,76,44,255, 109,68,38,255, 109,68,38,255, 103,63,34,255, 99,61,33,255, 105,65,36,255, 109,68,38,255, 96,59,31,255, 100,62,33,255, 107,66,36,255, 111,69,38,255, 249,197,37,255, 250,202,42,255, 254,217,63,255, 254,217,63,255, 253,210,51,255, 251,206,45,255, 247,193,33,255, 247,192,33,255, 245,184,27,255, 243,180,24,255, 246,187,30,255, 247,192,33,255, 242,176,21,255, 243,181,25,255, 246,189,31,255, 248,194,34,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 201,144,31,255, 75,0,0,255, 113,93,53,255, 164,128,74,255, 172,136,82,255, 135,109,69,255, 75,0,0,255, 201,144,31,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,149,129,255, 255,255,255,255, 162,246,231,255, 74,237,209,255, 127,7,9,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 127,7,9,255, 74,237,209,255, 162,246,231,255, 255,255,255,255, 32,149,129,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 103,46,11,255, 151,83,23,255, 184,107,38,255, 204,124,46,255, 203,117,41,255, 154,76,18,255, 103,43,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 154,116,47,255, 85,57,22,255, 66,41,17,255, 105,86,27,255, 149,117,57,255, 156,125,64,255, 198,155,72,255, 195,147,63,255, 105,86,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 184,158,71,255, 128,108,51,255, 80,65,29,255, 119,115,53,255, 177,183,83,255, 163,168,78,255, 99,104,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 197,203,103,255, 168,167,82,255, 127,121,59,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 109,109,109,255, 95,95,95,255, 91,91,91,255, 217,255,235,255, 23,221,98,255, 97,97,97,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,107, 143,143,143,107, 143,143,143,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,107, 0,0,0,0, 206,206,206,107, 143,143,143,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 7,28,35,255, 11,34,42,255, 24,53,62,255, 24,53,62,255, 24,53,62,255, 24,53,62,255, 11,34,42,255, 7,28,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,211,148,255, 235,248,182,255, 195,189,137,255, 195,189,137,255, 213,213,153,255, 232,247,181,255, 195,189,137,255, 213,213,153,255, 195,189,137,255, 211,205,149,255, 211,205,149,255, 235,248,182,255, 236,248,180,255, 195,189,137,255, 217,220,158,255, 217,220,158,255, 127,127,127,255, 104,104,104,255, 28,87,198,255, 43,108,159,255, 28,91,193,255, 27,74,161,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 15,38,184,255, 29,75,163,255, 127,127,127,255, 127,127,127,255, 124,79,46,255, 126,80,47,255, 109,68,38,255, 111,69,39,255, 129,82,49,255, 126,80,47,255, 115,72,41,255, 109,68,38,255, 120,76,44,255, 126,80,47,255, 120,75,43,255, 120,75,43,255, 130,83,49,255, 131,84,50,255, 120,76,44,255, 118,74,42,255, 253,210,51,255, 253,212,53,255, 247,192,33,255, 248,195,35,255, 254,215,58,255, 253,212,53,255, 249,200,39,255, 247,192,33,255, 251,206,45,255, 253,212,53,255, 251,205,44,255, 251,205,44,255, 254,215,59,255, 254,217,63,255, 251,206,45,255, 250,202,42,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 221,184,44,255, 40,0,0,255, 82,67,40,255, 100,79,42,255, 100,79,42,255, 76,61,37,255, 40,0,0,255, 221,184,44,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,149,129,255, 162,246,231,255, 162,246,231,255, 74,237,209,255, 127,7,9,255, 162,43,41,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 162,43,41,255, 127,7,9,255, 74,237,209,255, 162,246,231,255, 162,246,231,255, 32,149,129,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 128,67,18,255, 204,126,50,255, 187,118,57,255, 203,141,81,255, 175,105,43,255, 204,118,42,255, 130,60,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 154,118,47,255, 85,57,22,255, 66,41,17,255, 0,0,0,0, 120,94,48,255, 154,123,62,255, 205,164,85,255, 186,150,82,255, 161,127,67,255, 106,87,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 184,158,71,255, 128,108,51,255, 103,84,40,255, 0,0,0,0, 119,115,53,255, 163,168,78,255, 138,145,65,255, 117,127,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 197,203,103,255, 168,167,82,255, 162,159,80,255, 0,0,0,0, 127,127,127,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 97,97,97,255, 23,221,98,255, 0,123,24,255, 119,119,119,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 106,106,106,255, 119,119,119,255, 127,127,127,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,119,119,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,119,119,107, 91,91,91,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,91,91,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 7,28,35,255, 7,28,35,255, 11,34,42,255, 11,34,42,255, 11,34,42,255, 11,34,42,255, 7,28,35,255, 7,28,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,248,182,255, 195,189,137,255, 217,222,158,255, 217,220,158,255, 217,220,158,255, 249,249,197,255, 195,189,137,255, 207,201,147,255, 217,220,158,255, 217,220,158,255, 213,213,153,255, 249,249,197,255, 236,248,180,255, 235,248,182,255, 198,192,140,255, 215,215,153,255, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 23,70,197,255, 127,127,127,255, 31,83,137,255, 20,69,188,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 113,71,40,255, 107,66,36,255, 122,77,44,255, 126,80,47,255, 109,68,38,255, 107,67,37,255, 112,70,39,255, 126,80,47,255, 104,64,35,255, 109,68,38,255, 126,80,47,255, 126,80,47,255, 113,71,40,255, 107,66,36,255, 131,84,50,255, 126,80,47,255, 249,197,37,255, 246,189,31,255, 252,207,47,255, 253,212,53,255, 247,192,33,255, 246,190,31,255, 248,196,36,255, 253,212,53,255, 245,186,28,255, 247,193,33,255, 253,212,53,255, 253,212,53,255, 249,197,37,255, 246,189,31,255, 254,217,63,255, 253,211,52,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 221,184,44,255, 0,0,0,0, 0,0,0,0, 40,0,0,255, 75,0,0,255, 0,0,0,0, 0,0,0,0, 221,184,44,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 217,217,217,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 217,217,217,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,205,177,255, 74,237,209,255, 74,237,209,255, 127,7,9,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 127,7,9,255, 74,237,209,255, 74,237,209,255, 44,205,177,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 45,1,51,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 129,68,19,255, 207,135,65,255, 212,157,104,255, 226,177,124,255, 205,144,85,255, 203,127,53,255, 128,66,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,67,25,255, 66,41,17,255, 53,31,14,255, 0,0,0,0, 105,86,27,255, 195,147,63,255, 177,138,69,255, 177,138,69,255, 195,147,63,255, 121,94,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,88,42,255, 103,84,40,255, 79,65,28,255, 0,0,0,0, 99,104,42,255, 119,115,53,255, 99,104,42,255, 103,100,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 180,183,91,255, 162,159,80,255, 125,119,57,255, 0,0,0,0, 127,127,127,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 106,106,106,255, 87,87,87,255, 106,106,106,255, 119,119,119,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 97,97,97,255, 217,255,235,255, 23,221,98,255, 97,97,97,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 144,144,144,255, 148,148,148,255, 122,122,122,255, 145,145,145,255, 147,147,147,255, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,99,99,107, 0,0,0,0, 91,91,91,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,91,91,107, 0,0,0,0, 0,0,0,0, 119,119,119,107, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 7,28,35,255, 7,28,35,255, 7,28,35,255, 7,28,35,255, 7,28,35,255, 7,28,35,255, 7,28,35,255, 7,28,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,248,182,255, 235,248,182,255, 195,189,137,255, 217,222,158,255, 222,233,169,255, 249,249,197,255, 217,220,158,255, 217,220,158,255, 211,205,149,255, 217,220,158,255, 249,249,197,255, 249,249,197,255, 195,189,137,255, 235,248,182,255, 235,248,182,255, 249,249,197,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 118,74,42,255, 111,69,38,255, 104,64,35,255, 113,71,40,255, 123,77,45,255, 122,77,44,255, 98,61,32,255, 97,60,32,255, 106,66,36,255, 115,72,41,255, 105,65,36,255, 100,62,33,255, 123,77,45,255, 123,77,45,255, 102,63,34,255, 98,61,32,255, 250,202,42,255, 248,194,34,255, 245,186,28,255, 249,197,37,255, 252,208,48,255, 252,207,47,255, 243,179,23,255, 242,177,22,255, 246,188,30,255, 249,199,38,255, 246,187,30,255, 244,181,25,255, 252,208,48,255, 252,208,48,255, 244,183,26,255, 243,179,23,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 221,184,44,255, 0,0,0,0, 0,0,0,0, 40,0,0,255, 75,0,0,255, 0,0,0,0, 0,0,0,0, 221,184,44,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 0,0,0,0, 217,217,217,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 0,0,0,0, 217,217,217,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 127,7,9,255, 127,7,9,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 127,7,9,255, 127,7,9,255, 107,0,0,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 45,1,51,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 127,65,15,255, 203,125,49,255, 185,115,53,255, 203,142,83,255, 180,110,48,255, 181,106,39,255, 101,58,11,255, 83,16,9,255, 103,33,11,255, 101,41,11,255, 103,50,11,255, 103,54,11,255, 127,61,13,255, 130,52,14,255, 99,29,11,255, 0,0,0,0, 100,74,36,255, 166,127,60,255, 194,145,60,255, 194,145,60,255, 154,118,56,255, 121,94,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,54,24,255, 106,87,28,255, 123,96,49,255, 113,91,37,255, 95,61,33,255, 95,61,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 114,109,50,255, 133,138,60,255, 123,119,55,255, 107,99,47,255, 0,0,0,0, 127,127,127,255, 143,143,143,255, 143,143,143,255, 97,97,97,255, 217,255,235,255, 23,221,98,255, 97,97,97,255, 97,97,97,255, 116,116,116,255, 116,116,116,255, 143,143,143,255, 99,99,99,255, 23,221,98,255, 0,123,24,255, 119,119,119,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 144,144,144,255, 132,132,132,255, 127,127,127,255, 119,119,119,255, 127,127,127,255, 137,137,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 143,143,143,226, 164,164,164,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 147,147,147,226, 0,0,0,0, 0,0,0,0, 149,149,149,226, 118,118,118,226, 0,0,0,0, 0,0,0,0, 164,164,164,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 11,34,42,255, 24,53,62,255, 24,53,62,255, 47,87,84,255, 47,87,84,255, 24,53,62,255, 24,53,62,255, 11,34,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 198,192,140,255, 195,189,137,255, 249,249,197,255, 249,249,197,255, 249,249,197,255, 249,249,197,255, 232,247,181,255, 217,220,158,255, 250,250,208,255, 249,249,197,255, 195,189,137,255, 195,189,137,255, 217,220,158,255, 217,220,158,255, 235,248,182,255, 222,237,171,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 28,87,198,255, 20,69,188,255, 116,116,116,255, 127,127,127,255, 104,104,104,255, 27,70,157,255, 36,99,177,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 127,127,127,255, 100,62,33,255, 98,60,32,255, 104,65,35,255, 126,80,47,255, 104,64,35,255, 97,60,32,255, 103,64,35,255, 107,66,36,255, 104,64,35,255, 97,60,32,255, 107,66,36,255, 109,68,38,255, 99,61,33,255, 105,65,36,255, 103,63,34,255, 108,67,37,255, 243,181,25,255, 243,178,23,255, 245,186,29,255, 253,212,53,255, 245,186,28,255, 242,177,22,255, 245,185,28,255, 246,189,31,255, 245,186,28,255, 242,177,22,255, 246,189,31,255, 247,192,33,255, 243,180,24,255, 246,187,30,255, 245,184,27,255, 247,191,32,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 221,184,44,255, 75,0,0,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 100,79,42,255, 75,0,0,255, 221,184,44,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,217,217,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,217,217,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 162,43,41,255, 162,43,41,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 162,43,41,255, 162,43,41,255, 107,0,0,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 45,1,51,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 130,60,14,255, 150,79,22,255, 181,108,37,255, 203,125,49,255, 202,121,42,255, 150,87,26,255, 101,51,11,255, 103,33,11,255, 184,79,22,255, 118,62,12,255, 193,117,49,255, 121,72,19,255, 112,59,12,255, 183,88,25,255, 137,49,15,255, 0,0,0,0, 105,86,27,255, 105,86,27,255, 108,78,36,255, 87,64,25,255, 108,78,36,255, 84,54,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 106,87,28,255, 205,160,83,255, 202,162,92,255, 149,120,65,255, 185,142,67,255, 95,73,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,123,53,255, 183,189,91,255, 163,168,78,255, 145,150,70,255, 0,0,0,0, 116,116,116,255, 116,116,116,255, 127,127,127,255, 106,106,106,255, 23,221,98,255, 0,123,24,255, 217,255,235,255, 23,221,98,255, 106,106,106,255, 104,104,104,255, 102,102,102,255, 127,127,127,255, 97,97,97,255, 97,97,97,255, 104,104,104,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,124,124,255, 118,118,118,255, 0,0,0,0, 0,0,0,0, 121,121,121,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,226, 143,143,143,226, 143,143,143,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,226, 0,0,0,0, 206,206,206,226, 143,143,143,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,53,62,255, 24,53,62,255, 80,135,117,255, 67,108,85,255, 67,108,85,255, 80,135,117,255, 24,53,62,255, 24,53,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 195,189,137,255, 217,222,158,255, 222,230,166,255, 195,189,137,255, 195,189,137,255, 195,189,137,255, 235,248,182,255, 249,249,197,255, 232,247,181,255, 195,189,137,255, 195,189,137,255, 217,220,158,255, 211,205,149,255, 217,220,158,255, 213,213,153,255, 232,247,181,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 24,61,192,255, 25,70,181,255, 28,87,198,255, 21,66,204,255, 27,74,161,255, 127,127,127,255, 127,127,127,255, 27,69,158,255, 34,76,142,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 131,84,50,255, 131,84,50,255, 124,78,46,255, 122,77,44,255, 112,70,39,255, 112,70,39,255, 111,69,38,255, 115,72,41,255, 124,79,46,255, 131,84,50,255, 118,74,43,255, 109,68,38,255, 131,84,50,255, 131,84,50,255, 120,76,44,255, 115,72,41,255, 254,217,63,255, 254,217,63,255, 252,209,50,255, 252,207,47,255, 248,196,36,255, 248,196,36,255, 248,194,34,255, 249,199,38,255, 253,210,51,255, 254,217,63,255, 251,203,43,255, 247,193,33,255, 254,217,63,255, 254,217,63,255, 251,206,45,255, 249,200,39,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 245,204,45,255, 40,0,0,255, 76,61,37,255, 91,70,37,255, 100,79,42,255, 91,70,37,255, 40,0,0,255, 245,204,45,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 162,43,41,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 162,43,41,255, 107,0,0,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 16,16,16,255, 45,1,51,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 83,26,9,255, 101,47,11,255, 101,55,11,255, 125,69,19,255, 126,65,16,255, 130,58,14,255, 83,23,9,255, 81,22,9,255, 203,112,39,255, 174,104,42,255, 221,162,99,255, 189,121,55,255, 158,94,32,255, 179,92,29,255, 103,39,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,76,30,255, 196,157,90,255, 211,177,117,255, 150,128,74,255, 205,160,81,255, 88,69,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,115,53,255, 182,188,90,255, 161,167,75,255, 132,136,60,255, 0,0,0,0, 143,143,143,255, 143,143,143,255, 127,127,127,255, 107,107,107,255, 106,106,106,255, 97,97,97,255, 23,221,98,255, 0,123,24,255, 106,106,106,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 115,115,115,255, 118,118,118,255, 0,0,0,0, 0,0,0,0, 133,133,133,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,119,119,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,119,119,226, 91,91,91,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,91,91,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,53,62,255, 47,87,84,255, 204,226,215,255, 103,130,110,255, 58,89,63,255, 109,165,112,255, 47,87,84,255, 24,53,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 223,230,166,255, 213,213,153,255, 242,248,188,255, 195,189,137,255, 217,220,158,255, 217,222,158,255, 217,222,158,255, 235,248,182,255, 235,248,182,255, 235,248,182,255, 217,220,158,255, 211,205,149,255, 212,211,148,255, 207,201,147,255, 242,248,188,255, 249,249,197,255, 127,127,127,255, 29,64,168,255, 23,73,181,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 107,66,36,255, 107,66,36,255, 131,84,50,255, 131,84,50,255, 120,76,44,255, 118,74,43,255, 126,80,47,255, 126,80,47,255, 103,63,34,255, 105,65,36,255, 122,77,44,255, 126,80,47,255, 118,74,43,255, 118,74,42,255, 127,80,47,255, 126,80,47,255, 246,189,31,255, 246,189,31,255, 254,217,63,255, 254,217,63,255, 251,206,45,255, 251,203,43,255, 253,212,53,255, 253,211,52,255, 245,184,27,255, 246,187,30,255, 252,207,47,255, 253,212,53,255, 251,203,43,255, 250,202,42,255, 253,212,54,255, 253,211,52,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 245,204,45,255, 0,0,0,0, 0,0,0,0, 40,0,0,255, 75,0,0,255, 0,0,0,0, 0,0,0,0, 245,204,45,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 162,43,41,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 162,43,41,255, 107,0,0,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 8,8,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 92,31,10,255, 202,117,42,255, 186,117,50,255, 222,164,102,255, 212,146,76,255, 171,101,39,255, 202,109,34,255, 81,26,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,75,30,255, 213,171,97,255, 193,167,111,255, 151,127,75,255, 204,158,78,255, 81,58,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,125,55,255, 178,183,89,255, 146,153,67,255, 119,117,53,255, 0,0,0,0, 127,127,127,255, 127,127,127,255, 127,127,127,255, 132,132,132,255, 124,124,124,255, 97,97,97,255, 97,97,97,255, 97,97,97,255, 97,97,97,255, 104,104,104,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 106,106,106,255, 123,123,123,255, 112,112,112,255, 110,110,110,255, 109,109,109,255, 116,116,116,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,99,99,226, 0,0,0,0, 91,91,91,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,91,91,226, 0,0,0,0, 0,0,0,0, 119,119,119,226, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,87,84,255, 64,104,82,255, 153,198,147,255, 27,43,16,255, 27,43,16,255, 130,186,116,255, 64,104,82,255, 47,87,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,226,162,255, 223,230,166,255, 222,230,166,255, 249,249,197,255, 250,250,208,255, 250,250,208,255, 249,249,197,255, 212,211,148,255, 195,189,137,255, 217,220,158,255, 244,249,189,255, 236,248,180,255, 222,230,166,255, 249,249,197,255, 244,249,189,255, 232,247,181,255, 127,127,127,255, 35,75,159,255, 24,63,185,255, 104,104,104,255, 143,143,143,255, 116,116,116,255, 127,127,127,255, 21,70,194,255, 127,127,127,255, 28,83,168,255, 42,79,140,255, 31,74,167,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 120,76,44,255, 120,75,43,255, 100,62,33,255, 106,66,36,255, 126,80,47,255, 118,74,43,255, 104,64,35,255, 107,67,37,255, 106,66,36,255, 109,68,38,255, 105,65,36,255, 99,61,33,255, 112,70,39,255, 109,68,38,255, 101,62,34,255, 100,62,33,255, 251,206,45,255, 251,205,44,255, 243,181,25,255, 246,188,30,255, 253,211,52,255, 251,203,43,255, 245,186,28,255, 246,190,31,255, 246,188,30,255, 247,192,33,255, 246,187,30,255, 243,180,24,255, 248,196,36,255, 247,193,33,255, 244,182,26,255, 244,181,25,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 245,204,45,255, 0,0,0,0, 0,0,0,0, 75,0,0,255, 40,0,0,255, 0,0,0,0, 0,0,0,0, 221,184,44,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 162,43,41,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 162,43,41,255, 107,0,0,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 45,1,51,255, 8,8,12,255, 8,8,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,57,12,255, 199,118,39,255, 177,108,41,255, 220,160,96,255, 211,143,71,255, 167,97,35,255, 201,110,37,255, 101,41,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,81,33,255, 202,160,88,255, 182,150,94,255, 142,118,62,255, 195,149,69,255, 96,72,30,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,118,55,255, 138,145,65,255, 117,120,52,255, 110,105,48,255, 0,0,0,0, 127,127,127,255, 143,143,143,255, 143,143,143,255, 104,104,104,255, 99,99,99,255, 116,116,116,255, 217,255,235,255, 23,221,98,255, 88,88,88,255, 119,119,119,255, 99,99,99,255, 99,99,99,255, 119,119,119,255, 143,143,143,255, 143,143,143,255, 143,143,143,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,255, 130,130,130,255, 129,129,129,255, 122,122,122,255, 126,126,126,255, 132,132,132,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,87,84,255, 64,104,82,255, 130,186,116,255, 27,43,16,255, 27,43,16,255, 130,186,116,255, 64,104,82,255, 47,87,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,248,182,255, 195,189,137,255, 195,189,137,255, 195,189,137,255, 217,220,158,255, 244,249,189,255, 195,189,137,255, 198,192,140,255, 195,189,137,255, 195,189,137,255, 211,203,147,255, 224,237,173,255, 195,189,137,255, 212,208,148,255, 236,248,180,255, 235,248,182,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 24,70,178,255, 28,69,175,255, 27,70,160,255, 27,67,173,255, 42,79,140,255, 116,116,116,255, 27,64,160,255, 43,87,139,255, 127,127,127,255, 106,66,36,255, 109,68,38,255, 108,67,37,255, 124,79,46,255, 97,60,32,255, 98,61,32,255, 109,68,38,255, 117,73,42,255, 104,64,35,255, 118,74,42,255, 131,84,50,255, 131,84,50,255, 111,69,39,255, 120,75,43,255, 131,84,50,255, 131,84,50,255, 246,188,30,255, 247,193,33,255, 247,191,32,255, 253,210,51,255, 242,177,22,255, 243,179,23,255, 247,193,33,255, 250,202,41,255, 245,186,28,255, 250,202,42,255, 254,217,63,255, 254,217,63,255, 248,195,35,255, 251,205,44,255, 254,217,63,255, 254,217,63,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 245,204,45,255, 84,2,0,255, 135,109,69,255, 142,115,60,255, 142,115,60,255, 164,128,74,255, 75,0,0,255, 245,204,45,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 162,43,41,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 162,43,41,255, 107,0,0,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,65,15,255, 199,118,39,255, 175,103,39,255, 207,136,59,255, 207,132,59,255, 155,88,29,255, 203,104,31,255, 76,29,8,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 108,87,32,255, 188,147,76,255, 139,116,67,255, 166,134,72,255, 184,141,66,255, 76,52,18,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 87,87,87,255, 23,221,98,255, 0,123,24,255, 87,87,87,255, 106,106,106,255, 217,255,235,255, 23,221,98,255, 88,88,88,255, 97,97,97,255, 119,119,119,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,132,77,255, 188,152,98,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,53,62,255, 47,87,84,255, 109,165,112,255, 58,89,63,255, 58,89,63,255, 109,165,112,255, 47,87,84,255, 24,53,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,248,182,255, 217,220,158,255, 213,213,153,255, 217,220,158,255, 211,205,149,255, 250,250,208,255, 232,247,181,255, 222,230,166,255, 195,189,137,255, 195,189,137,255, 224,237,173,255, 217,220,158,255, 250,250,208,255, 235,248,182,255, 195,189,137,255, 195,189,137,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 25,57,172,255, 143,143,143,255, 143,143,143,255, 116,116,116,255, 25,60,180,255, 27,70,161,255, 36,73,146,255, 143,143,143,255, 143,143,143,255, 29,70,160,255, 51,96,133,255, 127,127,127,255, 126,80,47,255, 127,80,47,255, 120,76,44,255, 120,76,44,255, 131,84,50,255, 126,80,47,255, 120,76,44,255, 118,74,43,255, 127,80,47,255, 124,79,46,255, 109,68,38,255, 115,72,41,255, 118,74,42,255, 112,70,39,255, 102,63,34,255, 113,71,40,255, 253,211,52,255, 253,212,54,255, 251,206,45,255, 251,206,45,255, 254,217,63,255, 253,212,53,255, 251,206,45,255, 251,203,43,255, 253,212,54,255, 253,210,51,255, 247,192,33,255, 249,199,38,255, 250,202,42,255, 248,196,36,255, 244,183,26,255, 249,197,37,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 245,204,45,255, 40,0,0,255, 76,61,37,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 40,0,0,255, 221,184,44,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,217,217,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 254,254,254,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 162,43,41,255, 162,43,41,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 162,43,41,255, 162,43,41,255, 107,0,0,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,61,13,255, 194,109,34,255, 165,96,35,255, 206,137,62,255, 185,112,47,255, 157,90,31,255, 184,89,26,255, 69,16,7,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 88,57,26,255, 119,95,43,255, 96,76,32,255, 108,84,38,255, 85,57,25,255, 88,58,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 116,116,116,255, 119,119,119,255, 99,99,99,255, 97,97,97,255, 87,87,87,255, 97,97,97,255, 23,221,98,255, 0,123,24,255, 99,99,99,255, 217,255,235,255, 23,221,98,255, 106,106,106,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 115,94,57,255, 180,144,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,53,62,255, 24,53,62,255, 80,135,117,255, 67,108,85,255, 67,108,85,255, 80,135,117,255, 24,53,62,255, 24,53,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 249,249,197,255, 244,249,189,255, 212,211,148,255, 217,220,158,255, 250,250,208,255, 235,248,182,255, 235,248,182,255, 232,247,181,255, 249,249,197,255, 217,220,158,255, 217,220,158,255, 250,250,208,255, 235,248,182,255, 195,189,137,255, 195,189,137,255, 217,220,158,255, 104,104,104,255, 127,127,127,255, 30,73,153,255, 18,38,155,255, 17,41,150,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 34,74,144,255, 49,95,139,255, 104,104,104,255, 102,63,34,255, 104,64,35,255, 117,73,42,255, 117,73,42,255, 107,66,36,255, 107,67,37,255, 123,77,45,255, 120,75,43,255, 103,63,34,255, 104,64,35,255, 106,66,36,255, 118,74,42,255, 98,60,32,255, 98,60,32,255, 108,67,37,255, 118,74,42,255, 244,183,26,255, 245,186,28,255, 250,202,41,255, 250,202,41,255, 246,189,31,255, 246,190,31,255, 252,208,48,255, 251,205,44,255, 245,184,27,255, 245,186,28,255, 246,188,30,255, 250,202,42,255, 243,178,23,255, 243,178,23,255, 247,191,32,255, 250,202,42,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 221,184,44,255, 0,0,0,0, 0,0,0,0, 75,0,0,255, 40,0,0,255, 0,0,0,0, 0,0,0,0, 221,184,44,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,0,0,255, 127,7,9,255, 127,7,9,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 127,7,9,255, 127,7,9,255, 107,0,0,255, 8,8,12,255, 16,16,16,255, 45,1,51,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 45,1,51,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 110,44,12,255, 179,92,29,255, 126,69,18,255, 194,120,54,255, 194,123,54,255, 118,62,12,255, 185,79,21,255, 71,13,7,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 127,127,127,255, 127,127,127,255, 136,136,136,255, 132,132,132,255, 102,102,102,255, 127,127,127,255, 217,255,235,255, 23,221,98,255, 143,143,143,255, 106,106,106,255, 106,106,106,255, 106,106,106,255, 23,221,98,255, 0,123,24,255, 87,87,87,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 180,144,90,255, 159,132,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 11,34,42,255, 24,53,62,255, 24,53,62,255, 47,87,84,255, 47,87,84,255, 24,53,62,255, 24,53,62,255, 11,34,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 249,249,197,255, 235,248,182,255, 249,249,197,255, 249,249,197,255, 235,248,182,255, 195,189,137,255, 195,189,137,255, 217,220,158,255, 222,230,166,255, 249,250,198,255, 235,248,182,255, 235,248,182,255, 195,189,137,255, 213,213,153,255, 207,201,147,255, 217,220,158,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 21,44,163,255, 116,116,116,255, 116,116,116,255, 16,44,181,255, 28,64,169,255, 27,74,161,255, 116,116,116,255, 116,116,116,255, 36,76,140,255, 34,66,139,255, 127,127,127,255, 107,67,37,255, 107,66,36,255, 97,60,32,255, 98,61,32,255, 126,80,47,255, 129,82,49,255, 100,62,33,255, 97,60,32,255, 112,70,39,255, 123,77,45,255, 115,72,41,255, 120,75,43,255, 131,84,50,255, 131,84,50,255, 118,74,42,255, 99,61,33,255, 246,190,31,255, 246,189,31,255, 242,177,22,255, 243,179,23,255, 253,211,52,255, 254,215,58,255, 244,181,25,255, 242,177,22,255, 248,196,36,255, 252,208,48,255, 249,199,38,255, 251,205,44,255, 254,217,63,255, 254,217,63,255, 250,202,42,255, 243,180,24,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 221,184,44,255, 0,0,0,0, 0,0,0,0, 40,0,0,255, 40,0,0,255, 0,0,0,0, 0,0,0,0, 201,144,31,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,217,217,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,217,217,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 44,205,177,255, 74,237,209,255, 74,237,209,255, 127,7,9,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 127,7,9,255, 74,237,209,255, 74,237,209,255, 44,205,177,255, 16,16,16,255, 16,16,16,255, 45,1,51,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 89,21,9,255, 134,51,14,255, 112,52,12,255, 160,82,24,255, 110,58,12,255, 103,46,11,255, 78,20,8,255, 69,12,7,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 97,97,97,255, 97,97,97,255, 116,116,116,255, 98,98,98,255, 132,132,132,255, 132,132,132,255, 95,173,125,255, 0,123,24,255, 95,95,95,255, 98,98,98,255, 98,98,98,255, 116,116,116,255, 97,97,97,255, 97,97,97,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 188,152,98,255, 115,94,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,248,182,255, 195,189,137,255, 198,192,140,255, 198,192,140,255, 249,249,197,255, 217,222,158,255, 195,189,137,255, 211,205,149,255, 195,189,137,255, 195,189,137,255, 235,248,182,255, 235,248,182,255, 195,189,137,255, 215,215,153,255, 215,215,153,255, 249,249,197,255, 127,127,127,255, 143,143,143,255, 116,116,116,255, 143,143,143,255, 21,46,173,255, 20,46,175,255, 27,74,161,255, 116,116,116,255, 21,42,183,255, 21,53,146,255, 34,68,140,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 120,75,43,255, 118,74,43,255, 130,83,49,255, 131,84,50,255, 126,80,47,255, 120,76,44,255, 115,72,41,255, 109,68,38,255, 97,60,32,255, 111,69,39,255, 120,75,43,255, 126,80,47,255, 111,69,38,255, 111,69,39,255, 126,80,47,255, 131,84,50,255, 251,205,44,255, 251,203,43,255, 254,215,59,255, 254,217,63,255, 253,211,52,255, 251,206,45,255, 249,199,38,255, 247,192,33,255, 242,177,22,255, 248,195,35,255, 251,205,44,255, 253,212,53,255, 248,194,34,255, 248,195,35,255, 253,212,53,255, 254,217,63,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 201,144,31,255, 75,0,0,255, 135,109,69,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 75,0,0,255, 221,184,44,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,149,129,255, 162,246,231,255, 162,246,231,255, 74,237,209,255, 127,7,9,255, 162,43,41,255, 116,30,29,255, 88,23,22,255, 88,23,22,255, 116,30,29,255, 162,43,41,255, 127,7,9,255, 74,237,209,255, 162,246,231,255, 162,246,231,255, 32,149,129,255, 16,16,16,255, 16,16,16,255, 45,1,51,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 106,106,106,255, 217,255,235,255, 23,221,98,255, 99,99,99,255, 119,119,119,255, 119,119,119,255, 127,127,127,255, 116,116,116,255, 91,91,91,255, 116,116,116,255, 104,104,104,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,132,77,255, 188,152,98,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 195,189,137,255, 195,189,137,255, 211,205,149,255, 213,213,153,255, 232,247,181,255, 235,248,182,255, 250,250,208,255, 232,247,181,255, 222,230,166,255, 215,215,153,255, 217,222,158,255, 235,248,182,255, 217,222,158,255, 212,211,148,255, 217,220,158,255, 249,249,197,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 37,77,141,255, 37,77,141,255, 37,77,141,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 129,82,49,255, 128,82,48,255, 113,71,40,255, 109,68,38,255, 126,80,47,255, 115,72,41,255, 118,74,42,255, 122,77,44,255, 131,84,50,255, 124,79,46,255, 105,65,36,255, 106,66,36,255, 115,72,41,255, 120,75,43,255, 107,67,37,255, 103,63,34,255, 254,215,58,255, 253,214,57,255, 249,197,37,255, 247,193,33,255, 253,212,53,255, 249,199,38,255, 250,202,42,255, 252,207,47,255, 254,217,63,255, 253,210,51,255, 246,187,30,255, 246,188,30,255, 249,200,39,255, 251,205,44,255, 246,190,31,255, 245,184,27,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 201,144,31,255, 40,0,0,255, 76,61,37,255, 109,83,47,255, 100,79,42,255, 100,79,42,255, 40,0,0,255, 221,184,44,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,149,129,255, 255,255,255,255, 162,246,231,255, 74,237,209,255, 127,7,9,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 162,43,41,255, 127,7,9,255, 74,237,209,255, 162,246,231,255, 255,255,255,255, 32,149,129,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 45,1,51,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 106,106,106,255, 23,221,98,255, 0,123,24,255, 81,81,81,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 180,144,90,255, 180,144,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 232,247,181,255, 212,208,148,255, 195,189,137,255, 217,220,158,255, 222,230,166,255, 217,220,158,255, 217,222,158,255, 244,249,189,255, 242,248,188,255, 244,249,189,255, 217,220,158,255, 235,248,182,255, 224,237,173,255, 249,249,197,255, 249,249,197,255, 236,248,180,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 99,61,33,255, 104,64,35,255, 126,80,47,255, 115,72,41,255, 103,63,34,255, 107,67,37,255, 126,80,47,255, 130,83,49,255, 111,69,38,255, 107,66,36,255, 118,74,43,255, 126,80,47,255, 103,63,34,255, 104,64,35,255, 124,79,46,255, 126,80,47,255, 243,180,24,255, 245,186,28,255, 253,211,52,255, 249,200,39,255, 245,184,27,255, 246,190,31,255, 253,212,53,255, 254,215,59,255, 248,194,34,255, 246,189,31,255, 251,203,43,255, 253,211,52,255, 245,184,27,255, 245,186,28,255, 253,210,51,255, 253,212,53,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 201,144,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,144,31,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 27,123,107,255, 32,149,129,255, 32,149,129,255, 44,205,177,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 44,205,177,255, 32,149,129,255, 32,149,129,255, 27,123,107,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,116,116,255, 97,97,97,255, 97,97,97,255, 116,116,116,255, 104,104,104,255, 143,143,143,255, 143,143,143,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 116,116,116,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 188,152,98,255, 159,132,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 213,213,153,255, 249,249,197,255, 223,230,166,255, 213,213,153,255, 217,220,158,255, 249,249,197,255, 232,247,181,255, 195,189,137,255, 217,220,158,255, 217,220,158,255, 250,250,208,255, 232,247,181,255, 195,189,137,255, 195,189,137,255, 235,248,182,255, 217,220,158,255, 228,219,168,255, 226,218,164,255, 215,206,156,255, 216,208,157,255, 225,216,165,255, 219,210,161,255, 213,204,154,255, 210,203,148,255, 221,214,162,255, 221,213,163,255, 215,207,155,255, 223,215,162,255, 225,216,160,255, 215,208,159,255, 227,220,166,255, 233,225,174,255, 47,50,148,255, 49,52,151,255, 46,49,147,255, 47,50,148,255, 52,55,155,255, 57,61,163,255, 48,50,149,255, 49,51,150,255, 55,58,160,255, 56,60,162,255, 45,47,145,255, 47,49,147,255, 53,56,157,255, 53,56,157,255, 47,49,147,255, 46,48,145,255, 44,155,207,255, 49,165,211,255, 42,150,205,255, 44,154,206,255, 56,176,217,255, 68,190,225,255, 46,158,208,255, 47,161,210,255, 63,185,222,255, 66,188,223,255, 38,142,201,255, 43,152,205,255, 58,179,218,255, 58,179,218,255, 43,152,205,255, 39,145,203,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 201,128,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,136,29,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,79,72,255, 108,101,90,255, 110,104,94,255, 142,134,122,255, 76,71,64,255, 111,105,95,255, 138,129,116,255, 80,75,68,255, 105,98,87,255, 106,100,90,255, 105,99,89,255, 121,114,103,255, 111,105,95,255, 121,114,103,255, 108,101,90,255, 143,135,123,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 16,16,16,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 31,30,40,255, 52,59,64,255, 48,53,62,255, 35,37,48,255, 36,37,50,255, 32,32,44,255, 34,34,48,255, 36,33,45,255, 35,32,43,255, 29,26,36,255, 29,26,36,255, 29,26,36,255, 30,26,36,255, 30,28,39,255, 37,41,52,255, 30,28,39,255, 41,36,34,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 52,46,42,255, 49,44,40,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 53,47,43,255, 39,34,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 178,180,176,255, 234,236,222,255, 235,234,227,255, 238,238,230,255, 236,237,226,255, 184,187,180,255, 237,234,229,255, 219,221,211,255, 224,219,214,255, 228,234,228,255, 32,25,34,255, 58,58,58,255, 58,58,58,255, 233,231,231,255, 235,237,228,255, 177,182,171,255, 76,61,38,255, 75,60,37,255, 44,34,20,255, 75,60,37,255, 75,60,37,255, 75,59,35,255, 44,34,20,255, 44,34,20,255, 44,34,20,255, 75,60,37,255, 76,61,38,255, 44,34,20,255, 80,64,40,255, 75,60,37,255, 79,63,39,255, 78,63,40,255, 59,45,19,255, 59,45,19,255, 86,64,22,255, 124,90,38,255, 126,94,40,255, 123,89,36,255, 61,48,19,255, 61,47,19,255, 61,47,19,255, 60,45,19,255, 61,48,19,255, 58,45,19,255, 62,48,19,255, 70,55,19,255, 70,55,19,255, 104,78,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,213,166,255, 220,210,165,255, 224,214,167,255, 221,211,162,255, 214,204,157,255, 207,197,152,255, 207,199,150,255, 206,199,147,255, 218,212,154,255, 216,209,156,255, 213,206,154,255, 227,218,163,255, 221,215,157,255, 230,224,170,255, 230,224,171,255, 232,224,175,255, 53,55,156,255, 55,58,159,255, 62,77,178,255, 62,77,178,255, 58,63,165,255, 56,60,162,255, 51,53,153,255, 50,53,152,255, 47,50,148,255, 46,48,145,255, 49,51,150,255, 50,53,152,255, 44,46,143,255, 46,48,146,255, 49,52,151,255, 51,54,154,255, 57,177,217,255, 62,184,221,255, 78,197,231,255, 78,197,231,255, 71,192,227,255, 66,188,223,255, 53,171,214,255, 52,169,213,255, 44,154,206,255, 39,145,203,255, 47,161,210,255, 52,169,213,255, 35,138,199,255, 40,147,203,255, 49,165,211,255, 54,173,215,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 201,136,29,255, 212,1,2,255, 137,70,40,255, 164,128,74,255, 181,103,62,255, 153,82,52,255, 212,1,2,255, 201,136,29,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 78,73,66,255, 105,98,87,255, 112,106,96,255, 72,67,60,255, 78,73,66,255, 141,132,119,255, 80,75,68,255, 105,98,87,255, 142,133,120,255, 76,71,64,255, 106,100,90,255, 143,134,121,255, 88,82,74,255, 121,114,103,255, 88,82,74,255, 138,129,116,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 8,8,12,255, 17,17,23,255, 9,9,14,255, 9,9,14,255, 10,10,15,255, 16,16,16,255, 15,15,29,255, 16,16,24,255, 8,8,13,255, 54,42,80,255, 16,16,24,255, 16,16,24,255, 16,16,29,255, 8,8,12,255, 60,48,86,255, 8,8,12,255, 31,28,39,255, 29,27,36,255, 26,23,34,255, 37,40,60,255, 65,82,123,255, 30,32,49,255, 32,32,45,255, 31,30,41,255, 34,33,43,255, 27,24,34,255, 33,32,41,255, 28,25,35,255, 34,31,43,255, 33,34,48,255, 60,74,108,255, 41,47,68,255, 53,47,43,255, 123,69,42,255, 129,71,44,255, 126,70,43,255, 129,71,44,255, 129,71,44,255, 115,64,40,255, 115,64,40,255, 115,64,40,255, 115,64,40,255, 115,64,40,255, 129,71,44,255, 115,64,40,255, 129,71,44,255, 123,69,42,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 242,236,228,255, 186,168,116,255, 196,171,113,255, 205,182,123,255, 196,172,114,255, 196,172,114,255, 196,172,114,255, 199,178,119,255, 198,176,117,255, 187,169,117,255, 196,172,114,255, 196,172,114,255, 208,190,130,255, 206,188,128,255, 196,172,114,255, 232,234,227,255, 75,60,37,255, 121,91,55,255, 117,89,55,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 114,86,54,255, 117,89,55,255, 121,91,55,255, 121,91,55,255, 126,94,56,255, 128,95,56,255, 121,91,55,255, 73,57,33,255, 125,94,39,255, 180,134,90,255, 177,131,87,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 174,128,84,255, 177,131,87,255, 180,134,90,255, 180,134,90,255, 185,139,95,255, 186,140,96,255, 180,134,90,255, 103,78,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 140,140,140,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,212,163,255, 214,204,157,255, 222,214,163,255, 217,208,158,255, 207,200,151,255, 206,199,152,255, 206,197,147,255, 208,201,148,255, 214,206,149,255, 215,209,152,255, 212,206,150,255, 228,222,165,255, 229,223,170,255, 223,217,164,255, 225,218,163,255, 228,220,169,255, 58,63,165,255, 59,64,166,255, 50,53,152,255, 52,54,154,255, 60,67,169,255, 59,64,166,255, 54,56,157,255, 50,53,152,255, 56,60,162,255, 59,64,166,255, 56,59,161,255, 56,59,161,255, 60,68,170,255, 62,77,178,255, 56,60,162,255, 55,58,159,255, 71,192,227,255, 73,194,228,255, 52,169,213,255, 55,174,215,255, 76,196,230,255, 73,194,228,255, 59,181,219,255, 52,169,213,255, 66,188,223,255, 73,194,228,255, 65,187,223,255, 65,187,223,255, 77,196,231,255, 78,197,231,255, 66,188,223,255, 62,184,221,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 220,174,41,255, 171,3,1,255, 113,50,30,255, 100,79,42,255, 100,79,42,255, 76,61,37,255, 171,3,1,255, 220,174,41,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,68,61,255, 101,94,85,255, 104,97,86,255, 80,75,68,255, 106,100,90,255, 142,133,120,255, 77,72,65,255, 105,99,89,255, 141,132,119,255, 75,70,63,255, 105,99,89,255, 121,114,103,255, 88,82,74,255, 121,114,103,255, 88,82,74,255, 142,133,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 8,8,12,255, 9,9,15,255, 58,46,84,255, 60,48,86,255, 60,48,86,255, 14,14,22,255, 14,14,21,255, 9,9,14,255, 60,48,86,255, 30,24,43,255, 18,18,27,255, 13,13,21,255, 8,8,12,255, 60,48,86,255, 30,24,43,255, 8,8,12,255, 26,22,33,255, 27,24,35,255, 27,24,35,255, 28,26,37,255, 32,30,41,255, 31,29,40,255, 43,38,51,255, 32,33,45,255, 55,66,90,255, 43,48,71,255, 29,30,44,255, 35,33,46,255, 34,32,45,255, 33,37,47,255, 34,36,46,255, 41,46,60,255, 53,47,43,255, 134,73,45,255, 123,69,42,255, 123,69,42,255, 123,69,42,255, 123,69,42,255, 139,77,48,255, 115,64,40,255, 115,64,40,255, 148,81,50,255, 148,81,50,255, 139,77,48,255, 138,76,47,255, 148,81,50,255, 134,73,45,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 214,217,217,255, 197,173,114,255, 165,140,84,255, 166,141,85,255, 167,142,86,255, 160,135,79,255, 167,142,86,255, 164,139,82,255, 173,148,92,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 169,144,88,255, 205,182,123,255, 219,217,209,255, 44,34,20,255, 123,92,55,255, 101,85,49,255, 103,86,49,255, 103,86,49,255, 97,81,45,255, 103,86,49,255, 101,84,47,255, 109,92,55,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 104,88,52,255, 123,92,55,255, 75,60,37,255, 88,70,25,255, 182,136,92,255, 157,130,75,255, 158,131,76,255, 159,132,77,255, 151,124,69,255, 159,132,77,255, 155,128,73,255, 167,140,85,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 162,135,80,255, 181,135,91,255, 56,44,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,186,186,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 224,216,164,255, 218,210,158,255, 218,212,157,255, 218,210,159,255, 212,205,152,255, 216,207,158,255, 217,208,157,255, 224,214,165,255, 213,207,150,255, 216,209,154,255, 208,200,150,255, 220,213,157,255, 228,221,166,255, 220,213,160,255, 221,213,163,255, 212,203,151,255, 53,55,156,255, 49,52,151,255, 57,61,163,255, 59,64,166,255, 50,53,152,255, 50,52,151,255, 52,55,155,255, 59,64,166,255, 48,50,149,255, 51,53,153,255, 59,64,166,255, 59,64,166,255, 53,55,156,255, 49,52,151,255, 62,77,178,255, 58,64,166,255, 57,177,217,255, 49,165,211,255, 67,189,225,255, 73,194,228,255, 52,169,213,255, 50,166,212,255, 56,176,217,255, 73,194,228,255, 46,158,208,255, 53,171,214,255, 73,194,228,255, 73,194,228,255, 57,177,217,255, 49,165,211,255, 78,197,231,255, 72,193,228,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 220,174,41,255, 0,0,0,0, 0,0,0,0, 212,1,2,255, 160,0,2,255, 0,0,0,0, 0,0,0,0, 220,174,41,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 111,105,95,255, 83,78,71,255, 103,96,85,255, 79,74,67,255, 121,114,103,255, 121,114,103,255, 77,72,65,255, 106,100,90,255, 141,132,119,255, 75,70,63,255, 106,100,90,255, 141,132,119,255, 76,71,64,255, 143,135,123,255, 80,75,68,255, 121,114,103,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 8,8,12,255, 9,9,14,255, 30,24,43,255, 33,27,46,255, 14,14,22,255, 16,16,17,255, 16,16,16,255, 70,58,96,255, 30,24,43,255, 30,24,43,255, 15,15,22,255, 16,16,24,255, 8,8,14,255, 15,15,23,255, 16,16,24,255, 8,8,12,255, 29,28,38,255, 30,30,39,255, 35,33,44,255, 27,24,34,255, 29,26,36,255, 32,30,40,255, 28,27,37,255, 35,34,46,255, 39,35,48,255, 29,27,38,255, 29,27,38,255, 27,24,34,255, 28,25,37,255, 30,27,39,255, 36,35,46,255, 32,30,41,255, 51,45,42,255, 125,70,42,255, 136,75,46,255, 122,68,42,255, 122,68,42,255, 136,75,46,255, 136,75,46,255, 136,75,46,255, 136,75,46,255, 136,75,46,255, 136,75,46,255, 122,67,41,255, 122,67,41,255, 136,75,46,255, 126,70,43,255, 52,44,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,58,58,255, 196,172,114,255, 170,145,89,255, 198,174,115,255, 200,176,118,255, 200,176,118,255, 200,176,118,255, 200,176,118,255, 207,189,129,255, 206,188,128,255, 200,176,118,255, 202,179,121,255, 200,176,118,255, 167,142,86,255, 196,172,114,255, 234,233,229,255, 75,60,37,255, 121,91,55,255, 106,89,52,255, 125,93,55,255, 130,96,56,255, 130,96,56,255, 130,96,56,255, 130,96,56,255, 130,96,56,255, 126,94,56,255, 130,96,56,255, 126,94,56,255, 132,97,56,255, 103,86,49,255, 121,91,55,255, 44,34,20,255, 65,58,19,255, 180,134,90,255, 163,136,81,255, 183,137,93,255, 188,142,98,255, 188,142,98,255, 188,142,98,255, 188,142,98,255, 188,142,98,255, 184,138,94,255, 188,142,98,255, 185,139,95,255, 189,143,99,255, 159,132,77,255, 180,134,90,255, 119,103,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 151,151,151,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,209,156,255, 213,205,150,255, 219,212,156,255, 208,201,149,255, 215,208,152,255, 217,208,156,255, 223,215,165,255, 224,216,164,255, 209,200,150,255, 221,212,159,255, 216,208,157,255, 215,209,158,255, 228,221,166,255, 220,213,161,255, 222,214,163,255, 215,206,156,255, 55,58,159,255, 51,54,154,255, 48,50,149,255, 53,55,156,255, 57,61,163,255, 57,61,163,255, 45,47,145,255, 44,47,144,255, 49,51,150,255, 53,56,157,255, 49,51,150,255, 46,48,146,255, 57,61,163,255, 57,61,163,255, 47,49,147,255, 45,47,145,255, 62,184,221,255, 54,173,215,255, 46,158,208,255, 57,177,217,255, 68,190,225,255, 67,189,225,255, 38,142,201,255, 36,139,200,255, 48,162,210,255, 58,179,218,255, 47,161,210,255, 41,148,204,255, 68,190,225,255, 68,190,225,255, 43,152,205,255, 38,142,201,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 220,174,41,255, 0,0,0,0, 0,0,0,0, 160,0,2,255, 171,3,1,255, 0,0,0,0, 0,0,0,0, 220,174,41,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 108,102,92,255, 80,75,68,255, 110,104,94,255, 105,99,89,255, 121,114,103,255, 121,114,103,255, 110,104,94,255, 105,99,89,255, 111,105,95,255, 80,75,68,255, 108,102,92,255, 143,134,121,255, 76,71,64,255, 143,134,121,255, 75,70,63,255, 121,114,103,255, 27,123,107,255, 32,149,129,255, 32,149,129,255, 44,205,177,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 107,0,0,255, 44,205,177,255, 32,149,129,255, 32,149,129,255, 27,123,107,255, 8,8,12,255, 9,9,11,255, 30,24,43,255, 16,16,25,255, 16,16,20,255, 16,16,20,255, 13,13,20,255, 16,16,24,255, 15,15,15,255, 13,13,20,255, 16,16,27,255, 9,9,18,255, 30,24,43,255, 15,15,26,255, 16,16,25,255, 8,8,12,255, 34,33,43,255, 29,27,36,255, 27,24,35,255, 31,30,41,255, 35,40,51,255, 35,41,52,255, 29,27,36,255, 31,28,38,255, 30,26,37,255, 30,28,38,255, 32,30,42,255, 31,28,40,255, 34,35,46,255, 32,30,41,255, 38,41,51,255, 28,28,37,255, 53,47,43,255, 115,64,40,255, 123,69,42,255, 117,65,40,255, 123,69,42,255, 138,76,46,255, 139,75,45,255, 151,79,46,255, 151,79,46,255, 151,79,46,255, 128,71,43,255, 138,76,47,255, 123,68,42,255, 139,77,48,255, 129,71,44,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,58,58,255, 196,172,114,255, 165,140,84,255, 200,176,118,255, 197,178,122,255, 199,174,116,255, 196,172,114,255, 196,172,114,255, 196,172,114,255, 201,179,120,255, 199,178,119,255, 202,179,121,255, 200,176,118,255, 167,142,86,255, 196,172,114,255, 229,226,222,255, 55,44,27,255, 119,90,55,255, 101,85,49,255, 130,96,56,255, 121,91,55,255, 126,94,56,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 125,93,55,255, 121,91,55,255, 126,94,56,255, 130,96,56,255, 103,86,49,255, 121,91,55,255, 75,60,37,255, 86,71,25,255, 179,133,89,255, 157,130,75,255, 188,142,98,255, 180,134,90,255, 185,139,95,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 183,137,93,255, 180,134,90,255, 184,138,94,255, 188,142,98,255, 159,132,77,255, 180,134,90,255, 88,69,25,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 182,182,182,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 210,202,151,255, 217,209,157,255, 219,211,156,255, 204,197,146,255, 203,196,145,255, 211,204,152,255, 226,219,168,255, 238,229,182,255, 222,213,162,255, 212,203,155,255, 216,206,158,255, 213,205,155,255, 219,210,158,255, 216,208,157,255, 219,210,161,255, 217,208,158,255, 46,48,146,255, 45,47,144,255, 48,50,149,255, 59,64,166,255, 48,50,149,255, 44,47,144,255, 47,50,148,255, 49,52,151,255, 48,50,149,255, 44,47,144,255, 49,52,151,255, 50,53,152,255, 45,48,145,255, 49,51,150,255, 47,50,148,255, 50,52,152,255, 40,147,203,255, 37,141,201,255, 46,159,208,255, 73,194,228,255, 46,158,208,255, 36,139,200,255, 44,155,207,255, 49,165,211,255, 46,158,208,255, 36,139,200,255, 49,165,211,255, 52,169,213,255, 39,145,202,255, 47,161,210,255, 44,154,206,255, 51,167,212,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 220,174,41,255, 212,1,2,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 127,60,32,255, 212,1,2,255, 220,174,41,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 254,254,254,255, 217,217,217,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 110,104,94,255, 101,94,85,255, 110,104,94,255, 105,98,87,255, 143,134,121,255, 106,100,90,255, 105,98,87,255, 108,102,92,255, 109,103,93,255, 76,71,64,255, 108,101,90,255, 133,124,111,255, 77,72,65,255, 121,114,103,255, 79,74,67,255, 105,99,89,255, 32,149,129,255, 255,255,255,255, 162,246,231,255, 74,237,209,255, 107,0,0,255, 138,21,18,255, 138,21,18,255, 138,21,18,255, 138,21,18,255, 138,21,18,255, 138,21,18,255, 107,0,0,255, 74,237,209,255, 162,246,231,255, 255,255,255,255, 32,149,129,255, 8,8,12,255, 16,16,24,255, 16,16,21,255, 9,9,19,255, 9,9,11,255, 9,9,14,255, 8,8,13,255, 9,9,14,255, 16,16,24,255, 14,14,21,255, 9,9,15,255, 16,16,24,255, 16,16,25,255, 16,16,24,255, 14,14,21,255, 8,8,12,255, 26,23,33,255, 30,27,37,255, 29,29,39,255, 33,36,47,255, 30,30,39,255, 33,31,41,255, 30,31,41,255, 37,42,53,255, 34,35,46,255, 29,27,37,255, 29,27,38,255, 38,37,47,255, 27,24,34,255, 27,25,35,255, 32,29,40,255, 40,38,50,255, 49,44,40,255, 115,64,40,255, 138,76,47,255, 139,77,48,255, 139,77,48,255, 165,86,50,255, 165,86,50,255, 165,86,50,255, 165,86,50,255, 165,86,50,255, 165,86,50,255, 139,77,48,255, 123,69,42,255, 123,69,42,255, 115,64,40,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,69,54,255, 117,65,51,255, 115,64,50,255, 121,67,52,255, 124,69,54,255, 116,64,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,25,34,255, 205,182,123,255, 164,139,83,255, 203,181,122,255, 199,178,119,255, 167,142,86,255, 170,145,89,255, 171,146,90,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 196,172,114,255, 199,174,116,255, 164,139,82,255, 199,178,119,255, 58,58,58,255, 44,34,20,255, 121,91,55,255, 100,84,48,255, 130,96,56,255, 121,91,55,255, 103,86,49,255, 106,89,52,255, 107,90,53,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 121,91,55,255, 126,94,56,255, 101,84,47,255, 121,91,55,255, 75,60,37,255, 91,73,29,255, 180,134,90,255, 156,129,74,255, 188,142,98,255, 180,134,90,255, 159,132,77,255, 163,136,81,255, 164,137,82,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 180,134,90,255, 185,139,95,255, 155,128,73,255, 180,134,90,255, 92,73,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 182,182,182,255, 144,144,144,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 213,205,155,255, 220,213,160,255, 220,213,163,255, 212,205,153,255, 219,212,155,255, 210,203,151,255, 213,205,152,255, 231,223,176,255, 219,210,161,255, 216,208,156,255, 227,219,164,255, 217,210,157,255, 214,206,155,255, 220,212,160,255, 220,211,161,255, 220,211,163,255, 62,77,178,255, 62,77,178,255, 58,62,164,255, 57,61,163,255, 52,55,155,255, 52,55,155,255, 51,54,154,255, 53,56,157,255, 58,63,165,255, 62,77,178,255, 55,58,160,255, 51,53,153,255, 62,77,178,255, 62,77,178,255, 56,60,162,255, 54,56,157,255, 78,197,231,255, 78,197,231,255, 70,191,226,255, 67,189,225,255, 56,176,217,255, 56,176,217,255, 54,173,215,255, 58,179,218,255, 71,192,227,255, 78,197,231,255, 63,185,222,255, 53,171,214,255, 78,197,231,255, 78,197,231,255, 66,188,223,255, 59,181,219,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 243,193,42,255, 171,3,1,255, 76,61,37,255, 120,53,28,255, 100,79,42,255, 120,53,28,255, 171,3,1,255, 243,193,42,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,217,217,255, 254,254,254,255, 217,217,217,255, 235,235,235,255, 254,254,254,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 106,100,90,255, 121,114,103,255, 88,82,74,255, 110,104,94,255, 140,131,118,255, 102,95,84,255, 106,100,90,255, 75,70,63,255, 135,126,113,255, 75,70,63,255, 121,114,103,255, 96,91,82,255, 72,66,58,255, 121,114,103,255, 77,72,65,255, 111,105,95,255, 32,149,129,255, 162,246,231,255, 162,246,231,255, 74,237,209,255, 8,8,12,255, 107,0,0,255, 138,21,18,255, 138,21,18,255, 138,21,18,255, 138,21,18,255, 107,0,0,255, 8,8,12,255, 74,237,209,255, 162,246,231,255, 162,246,231,255, 32,149,129,255, 8,8,12,255, 17,17,17,255, 17,17,28,255, 16,16,25,255, 60,48,86,255, 60,48,86,255, 60,48,86,255, 60,48,86,255, 15,15,20,255, 9,9,13,255, 60,48,86,255, 14,14,21,255, 8,8,13,255, 9,9,12,255, 8,8,15,255, 8,8,12,255, 29,27,38,255, 33,31,43,255, 36,33,46,255, 40,45,57,255, 32,32,44,255, 28,25,35,255, 29,27,37,255, 42,39,51,255, 29,28,37,255, 26,22,33,255, 26,23,33,255, 25,22,32,255, 27,24,34,255, 32,29,40,255, 27,24,34,255, 29,26,36,255, 53,47,43,255, 134,73,45,255, 148,81,50,255, 139,77,48,255, 175,92,54,255, 175,92,54,255, 162,85,49,255, 162,85,49,255, 167,87,50,255, 167,87,50,255, 167,87,50,255, 175,92,54,255, 148,81,50,255, 148,81,50,255, 134,73,45,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,56,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 123,68,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 210,207,200,255, 206,185,125,255, 167,142,86,255, 202,180,121,255, 197,173,114,255, 165,140,84,255, 199,175,117,255, 198,178,123,255, 201,176,118,255, 200,176,118,255, 167,142,86,255, 205,182,123,255, 206,183,124,255, 167,142,86,255, 187,170,117,255, 32,25,34,255, 44,34,20,255, 121,91,55,255, 103,86,49,255, 128,95,56,255, 123,92,55,255, 101,85,49,255, 128,95,56,255, 128,95,56,255, 134,98,56,255, 130,96,56,255, 103,86,49,255, 121,91,55,255, 126,94,56,255, 103,86,49,255, 121,91,55,255, 44,34,20,255, 119,87,34,255, 180,134,90,255, 159,132,77,255, 186,140,96,255, 182,136,92,255, 157,130,75,255, 186,140,96,255, 187,141,97,255, 191,145,101,255, 188,142,98,255, 159,132,77,255, 180,134,90,255, 184,138,94,255, 159,132,77,255, 180,134,90,255, 125,91,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 0,0,0,0, 195,195,195,255, 144,144,144,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 195,195,195,255, 195,195,195,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 220,212,160,255, 215,207,156,255, 222,214,162,255, 207,200,149,255, 217,208,159,255, 215,206,158,255, 208,200,149,255, 209,201,148,255, 222,214,165,255, 222,214,161,255, 228,220,165,255, 220,211,160,255, 217,208,157,255, 220,212,162,255, 223,215,164,255, 219,210,160,255, 49,52,151,255, 49,52,151,255, 62,77,178,255, 62,77,178,255, 56,60,162,255, 55,58,160,255, 59,64,166,255, 58,64,166,255, 47,50,148,255, 49,51,150,255, 57,61,163,255, 59,64,166,255, 55,58,160,255, 55,58,159,255, 59,65,167,255, 58,64,166,255, 49,165,211,255, 49,165,211,255, 78,197,231,255, 78,197,231,255, 66,188,223,255, 63,185,222,255, 73,194,228,255, 72,193,228,255, 44,154,206,255, 47,161,210,255, 67,189,225,255, 73,194,228,255, 63,185,222,255, 62,184,221,255, 74,194,229,255, 72,193,228,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 243,193,42,255, 0,0,0,0, 0,0,0,0, 146,0,2,255, 160,0,2,255, 0,0,0,0, 0,0,0,0, 243,193,42,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 235,235,235,255, 0,0,0,0, 235,235,235,255, 235,235,235,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,103,93,255, 143,134,121,255, 77,72,65,255, 109,103,93,255, 142,134,122,255, 76,71,64,255, 143,134,121,255, 80,75,68,255, 142,133,120,255, 73,68,61,255, 121,114,103,255, 88,82,74,255, 105,98,87,255, 121,114,103,255, 78,73,66,255, 111,105,95,255, 44,205,177,255, 74,237,209,255, 74,237,209,255, 8,8,12,255, 16,16,24,255, 8,8,12,255, 107,0,0,255, 138,21,18,255, 138,21,18,255, 107,0,0,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 74,237,209,255, 74,237,209,255, 44,205,177,255, 8,8,12,255, 16,16,24,255, 8,8,8,255, 13,13,20,255, 16,16,24,255, 27,21,40,255, 30,24,43,255, 23,17,36,255, 19,19,28,255, 9,9,11,255, 30,24,43,255, 8,8,12,255, 48,36,74,255, 60,48,86,255, 30,24,43,255, 8,8,12,255, 28,27,40,255, 30,31,40,255, 32,29,39,255, 41,37,49,255, 29,27,37,255, 39,35,48,255, 36,37,47,255, 28,26,36,255, 27,23,34,255, 38,33,45,255, 24,21,31,255, 29,26,37,255, 35,34,45,255, 29,26,36,255, 29,26,36,255, 32,29,40,255, 52,44,41,255, 146,76,45,255, 136,75,46,255, 136,75,46,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 136,75,46,255, 136,75,46,255, 126,70,43,255, 52,44,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 110,61,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,66,52,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 229,232,224,255, 199,179,119,255, 167,142,86,255, 207,185,126,255, 196,172,114,255, 167,142,86,255, 207,184,125,255, 196,172,114,255, 196,172,114,255, 206,188,128,255, 168,143,87,255, 193,170,111,255, 207,184,125,255, 167,142,86,255, 187,170,117,255, 32,25,34,255, 44,34,20,255, 123,92,55,255, 103,86,49,255, 148,106,56,255, 121,91,55,255, 103,86,49,255, 130,96,56,255, 121,91,55,255, 121,91,55,255, 128,95,56,255, 105,88,51,255, 112,85,54,255, 130,96,56,255, 103,86,49,255, 121,91,55,255, 83,68,45,255, 87,65,22,255, 181,135,91,255, 159,132,77,255, 201,155,111,255, 180,134,90,255, 159,132,77,255, 188,142,98,255, 180,134,90,255, 180,134,90,255, 187,141,97,255, 161,134,79,255, 173,127,83,255, 188,142,98,255, 159,132,77,255, 180,134,90,255, 104,78,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,255, 143,143,143,255, 200,200,200,255, 111,111,111,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 140,140,140,255, 140,140,140,255, 140,140,140,255, 140,140,140,255, 195,195,195,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 133,133,133,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 216,210,153,255, 212,204,149,255, 222,213,163,255, 220,211,160,255, 218,209,158,255, 224,215,166,255, 222,214,165,255, 220,211,160,255, 220,211,162,255, 218,211,156,255, 220,213,159,255, 227,218,166,255, 228,222,173,255, 227,220,171,255, 226,217,166,255, 215,209,153,255, 56,60,162,255, 56,59,161,255, 46,48,146,255, 49,51,150,255, 58,64,166,255, 55,58,160,255, 48,50,149,255, 50,52,151,255, 49,51,150,255, 50,53,152,255, 49,51,150,255, 45,48,145,255, 52,55,155,255, 51,53,153,255, 46,49,147,255, 46,48,146,255, 66,188,223,255, 65,187,223,255, 40,147,203,255, 48,162,210,255, 72,193,228,255, 63,185,222,255, 46,158,208,255, 50,166,212,255, 48,162,210,255, 52,169,213,255, 47,161,210,255, 39,145,202,255, 56,176,217,255, 53,171,214,255, 42,150,205,255, 41,148,204,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 243,193,42,255, 0,0,0,0, 0,0,0,0, 160,0,2,255, 171,3,1,255, 0,0,0,0, 0,0,0,0, 220,174,41,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 217,217,217,255, 235,235,235,255, 254,254,254,255, 235,235,235,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 108,101,90,255, 142,133,120,255, 78,73,66,255, 113,107,97,255, 137,128,115,255, 80,75,68,255, 108,101,90,255, 79,74,67,255, 108,101,90,255, 80,75,68,255, 136,127,114,255, 75,70,63,255, 110,104,94,255, 109,103,93,255, 78,73,66,255, 121,114,103,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 30,24,43,255, 15,15,23,255, 17,17,26,255, 8,8,12,255, 107,0,0,255, 107,0,0,255, 8,8,12,255, 16,16,29,255, 8,8,13,255, 27,21,40,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 9,9,14,255, 60,48,86,255, 30,24,43,255, 15,15,23,255, 17,17,26,255, 36,30,49,255, 30,24,43,255, 16,16,25,255, 15,15,22,255, 16,16,29,255, 8,8,13,255, 27,21,40,255, 30,24,43,255, 15,15,22,255, 8,8,12,255, 34,37,57,255, 27,27,40,255, 25,22,31,255, 29,29,39,255, 29,26,37,255, 29,26,37,255, 28,25,34,255, 24,21,30,255, 30,27,37,255, 31,29,38,255, 31,28,39,255, 33,30,41,255, 38,39,50,255, 32,30,41,255, 28,25,35,255, 29,27,37,255, 53,47,43,255, 134,73,45,255, 148,81,50,255, 148,81,50,255, 175,92,54,255, 162,85,49,255, 165,86,50,255, 168,88,51,255, 168,88,51,255, 165,86,50,255, 165,86,50,255, 165,86,50,255, 148,81,50,255, 148,81,50,255, 134,73,45,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 114,63,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,60,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 220,209,212,255, 199,178,119,255, 177,152,96,255, 200,176,118,255, 205,182,123,255, 167,142,86,255, 206,183,124,255, 196,172,114,255, 196,172,114,255, 207,189,129,255, 166,141,85,255, 196,172,114,255, 200,176,118,255, 164,139,83,255, 202,179,121,255, 221,222,213,255, 75,60,37,255, 121,91,55,255, 113,95,57,255, 130,96,56,255, 121,91,55,255, 103,86,49,255, 128,95,56,255, 121,91,55,255, 121,91,55,255, 130,96,56,255, 103,86,49,255, 121,91,55,255, 130,96,56,255, 100,84,48,255, 126,94,56,255, 75,60,37,255, 56,41,19,255, 180,134,90,255, 172,145,90,255, 188,142,98,255, 180,134,90,255, 159,132,77,255, 186,140,96,255, 180,134,90,255, 180,134,90,255, 188,142,98,255, 158,131,76,255, 180,134,90,255, 188,142,98,255, 156,129,74,255, 184,138,94,255, 60,48,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,84,84,255, 196,196,196,255, 124,124,124,255, 0,0,0,0, 133,133,133,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 140,140,140,255, 84,84,84,255, 84,84,84,255, 133,133,133,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 209,202,149,255, 211,206,149,255, 210,202,151,255, 214,207,152,255, 221,212,162,255, 226,218,165,255, 219,210,159,255, 205,197,146,255, 225,217,165,255, 214,207,154,255, 215,206,149,255, 220,213,166,255, 228,222,172,255, 222,215,167,255, 219,213,164,255, 218,211,157,255, 49,51,150,255, 51,53,153,255, 50,52,152,255, 58,63,165,255, 45,47,144,255, 45,47,145,255, 51,53,153,255, 54,57,159,255, 48,50,149,255, 55,58,159,255, 62,77,178,255, 62,77,178,255, 52,54,154,255, 56,59,161,255, 62,77,178,255, 62,77,178,255, 48,162,210,255, 53,171,214,255, 51,167,212,255, 71,192,227,255, 36,140,200,255, 38,142,201,255, 53,171,214,255, 61,183,220,255, 46,158,208,255, 62,184,221,255, 78,197,231,255, 78,197,231,255, 55,174,215,255, 65,187,223,255, 78,197,231,255, 78,197,231,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 243,193,42,255, 212,1,2,255, 153,82,52,255, 142,115,60,255, 142,115,60,255, 175,97,56,255, 212,1,2,255, 243,193,42,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 217,217,217,255, 254,254,254,255, 0,0,0,0, 217,217,217,255, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 108,101,90,255, 143,135,123,255, 84,79,72,255, 105,99,89,255, 111,105,95,255, 137,128,115,255, 80,75,68,255, 108,102,92,255, 108,102,92,255, 74,68,60,255, 138,129,116,255, 80,75,68,255, 109,103,93,255, 138,129,116,255, 80,75,68,255, 121,114,103,255, 8,8,12,255, 16,16,24,255, 16,16,24,255, 16,16,30,255, 16,16,25,255, 16,16,23,255, 16,16,24,255, 8,8,12,255, 8,8,12,255, 13,13,20,255, 15,15,20,255, 7,7,17,255, 30,24,43,255, 14,14,21,255, 16,16,24,255, 8,8,12,255, 8,8,12,255, 16,16,24,255, 16,16,24,255, 16,16,30,255, 16,16,25,255, 16,16,23,255, 16,16,24,255, 34,28,47,255, 15,15,24,255, 13,13,20,255, 15,15,20,255, 7,7,17,255, 30,24,43,255, 14,14,21,255, 16,16,24,255, 8,8,12,255, 35,36,52,255, 30,28,40,255, 34,33,43,255, 28,24,34,255, 28,26,35,255, 26,25,33,255, 31,33,42,255, 38,36,47,255, 34,33,44,255, 31,29,39,255, 30,27,38,255, 29,26,36,255, 28,25,35,255, 34,33,44,255, 32,30,41,255, 29,26,36,255, 49,44,40,255, 115,64,40,255, 123,69,42,255, 123,69,42,255, 154,80,46,255, 175,92,54,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 161,84,48,255, 162,85,49,255, 148,81,50,255, 123,69,42,255, 115,64,40,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,66,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 106,59,46,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 236,236,220,255, 186,169,116,255, 164,139,83,255, 207,184,125,255, 205,182,123,255, 163,138,82,255, 200,176,118,255, 200,176,118,255, 200,176,118,255, 207,184,125,255, 167,142,86,255, 196,172,114,255, 200,176,118,255, 165,140,84,255, 196,172,114,255, 233,230,226,255, 75,60,37,255, 125,93,55,255, 100,84,48,255, 130,96,56,255, 119,90,55,255, 100,83,46,255, 130,96,56,255, 130,96,56,255, 130,96,56,255, 132,97,56,255, 103,86,49,255, 121,91,55,255, 132,97,56,255, 101,85,49,255, 121,91,55,255, 75,60,37,255, 89,72,27,255, 183,137,93,255, 156,129,74,255, 188,142,98,255, 179,133,89,255, 154,127,72,255, 188,142,98,255, 188,142,98,255, 188,142,98,255, 190,144,100,255, 159,132,77,255, 180,134,90,255, 189,143,99,255, 157,130,75,255, 180,134,90,255, 80,66,25,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,215,215,255, 114,114,114,255, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 149,149,149,255, 140,140,140,255, 140,140,140,255, 84,84,84,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,198,145,255, 219,213,155,255, 215,209,153,255, 216,209,154,255, 215,206,155,255, 225,217,168,255, 222,213,165,255, 219,211,158,255, 216,208,156,255, 222,216,159,255, 219,213,155,255, 204,197,142,255, 224,217,167,255, 236,227,179,255, 229,222,169,255, 208,201,148,255, 58,64,166,255, 59,65,167,255, 56,60,162,255, 56,60,162,255, 62,77,178,255, 59,64,166,255, 56,60,162,255, 55,58,160,255, 59,65,167,255, 58,63,165,255, 50,53,152,255, 53,56,157,255, 55,58,159,255, 52,55,155,255, 47,49,147,255, 53,55,156,255, 72,193,228,255, 74,194,229,255, 66,188,223,255, 66,188,223,255, 78,197,231,255, 73,194,228,255, 66,188,223,255, 63,185,222,255, 74,194,229,255, 71,192,227,255, 52,169,213,255, 58,179,218,255, 62,184,221,255, 56,176,217,255, 43,152,205,255, 57,177,217,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 243,193,42,255, 171,3,1,255, 109,46,28,255, 91,70,37,255, 100,79,42,255, 127,60,32,255, 171,3,1,255, 220,174,41,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 217,217,217,255, 254,254,254,255, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 83,78,71,255, 121,114,103,255, 79,74,67,255, 108,102,92,255, 105,99,89,255, 139,130,117,255, 73,68,61,255, 104,97,86,255, 77,72,65,255, 101,94,85,255, 146,138,126,255, 79,74,67,255, 108,102,92,255, 142,134,122,255, 81,76,69,255, 138,129,116,255, 8,8,12,255, 16,16,24,255, 17,17,26,255, 15,15,23,255, 15,15,22,255, 16,16,24,255, 15,15,26,255, 15,15,28,255, 16,16,24,255, 9,9,14,255, 14,14,22,255, 16,16,35,255, 16,16,24,255, 9,9,18,255, 16,16,24,255, 8,8,12,255, 8,8,12,255, 16,16,24,255, 17,17,26,255, 15,15,23,255, 15,15,22,255, 16,16,24,255, 15,15,26,255, 15,15,28,255, 16,16,24,255, 9,9,14,255, 14,14,22,255, 16,16,35,255, 16,16,24,255, 9,9,18,255, 16,16,24,255, 8,8,12,255, 34,32,44,255, 31,30,39,255, 30,28,38,255, 27,24,34,255, 25,23,33,255, 27,25,35,255, 26,23,32,255, 28,24,35,255, 34,35,45,255, 46,56,68,255, 36,39,48,255, 29,28,38,255, 31,29,39,255, 31,29,38,255, 29,26,36,255, 30,28,39,255, 53,47,43,255, 129,71,44,255, 139,77,48,255, 139,77,48,255, 148,81,50,255, 175,92,54,255, 168,88,51,255, 168,88,51,255, 168,88,51,255, 168,88,51,255, 168,88,51,255, 139,77,48,255, 139,77,48,255, 139,77,48,255, 129,71,44,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,69,54,255, 110,61,48,255, 103,57,45,255, 124,69,54,255, 118,66,50,255, 131,73,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,187,176,255, 196,171,113,255, 167,142,86,255, 198,174,115,255, 196,172,114,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 199,174,116,255, 198,179,124,255, 167,142,86,255, 196,172,114,255, 234,232,232,255, 73,58,35,255, 117,89,55,255, 103,86,49,255, 125,93,55,255, 121,91,55,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 126,94,56,255, 132,97,56,255, 103,86,49,255, 121,91,55,255, 76,60,36,255, 83,71,23,255, 177,131,87,255, 159,132,77,255, 183,137,93,255, 180,134,90,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 185,139,95,255, 189,143,99,255, 159,132,77,255, 180,134,90,255, 84,76,25,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,215,215,255, 114,114,114,255, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 84,84,84,255, 0,0,0,0, 140,140,140,255, 140,140,140,255, 114,114,114,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,210,159,255, 227,218,166,255, 220,212,160,255, 221,213,160,255, 214,206,157,255, 216,207,158,255, 225,215,166,255, 205,199,145,255, 215,207,153,255, 214,207,153,255, 209,203,148,255, 214,206,155,255, 221,212,160,255, 218,210,160,255, 214,207,155,255, 218,212,157,255, 47,49,147,255, 48,50,149,255, 54,57,159,255, 54,57,159,255, 49,52,151,255, 50,52,151,255, 57,61,163,255, 56,59,161,255, 47,50,148,255, 48,50,149,255, 49,51,150,255, 55,58,159,255, 45,47,144,255, 45,47,144,255, 50,52,152,255, 55,58,159,255, 43,152,205,255, 46,158,208,255, 61,183,220,255, 61,183,220,255, 49,165,211,255, 50,166,212,255, 68,190,225,255, 65,187,223,255, 44,154,206,255, 46,158,208,255, 48,162,210,255, 62,184,221,255, 37,141,201,255, 37,141,201,255, 51,167,212,255, 62,184,221,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 220,174,41,255, 0,0,0,0, 0,0,0,0, 160,0,2,255, 212,1,2,255, 0,0,0,0, 0,0,0,0, 220,174,41,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 77,72,65,255, 121,114,103,255, 78,73,66,255, 105,99,89,255, 112,106,96,255, 143,134,121,255, 80,75,68,255, 143,134,121,255, 72,67,60,255, 101,94,85,255, 144,136,124,255, 76,71,64,255, 110,104,94,255, 140,131,118,255, 75,70,63,255, 142,134,122,255, 8,8,12,255, 9,9,14,255, 10,10,15,255, 16,16,24,255, 15,15,22,255, 15,15,22,255, 16,16,24,255, 15,15,22,255, 9,9,14,255, 60,48,86,255, 15,15,23,255, 16,16,25,255, 8,8,13,255, 64,52,90,255, 30,24,43,255, 8,8,12,255, 8,8,12,255, 9,9,14,255, 10,10,15,255, 16,16,24,255, 15,15,22,255, 15,15,22,255, 16,16,24,255, 15,15,22,255, 9,9,14,255, 60,48,86,255, 15,15,23,255, 16,16,25,255, 8,8,13,255, 64,52,90,255, 30,24,43,255, 8,8,12,255, 40,47,56,255, 29,27,37,255, 29,27,37,255, 27,24,35,255, 27,23,33,255, 29,27,37,255, 31,30,39,255, 25,21,31,255, 29,26,37,255, 33,33,44,255, 32,30,41,255, 35,31,42,255, 33,31,41,255, 29,26,36,255, 31,29,41,255, 32,30,40,255, 52,44,41,255, 125,70,42,255, 138,76,47,255, 122,68,42,255, 136,75,46,255, 136,75,46,255, 162,85,49,255, 162,85,49,255, 162,85,49,255, 162,85,49,255, 138,76,47,255, 138,76,47,255, 122,67,41,255, 136,75,46,255, 125,70,42,255, 52,44,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,70,55,255, 124,69,54,255, 115,63,49,255, 124,69,54,255, 116,63,49,255, 118,65,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 233,234,227,255, 196,172,114,255, 167,142,86,255, 200,176,118,255, 196,172,114,255, 197,173,114,255, 199,178,119,255, 199,178,119,255, 199,178,119,255, 199,178,119,255, 196,172,114,255, 202,179,121,255, 203,181,122,255, 171,146,90,255, 196,172,114,255, 217,223,220,255, 44,34,20,255, 119,90,55,255, 103,86,49,255, 130,96,56,255, 119,90,55,255, 123,92,55,255, 121,91,55,255, 119,90,55,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 126,94,56,255, 130,96,56,255, 107,90,53,255, 121,91,55,255, 72,57,34,255, 58,47,19,255, 179,133,89,255, 159,132,77,255, 188,142,98,255, 179,133,89,255, 182,136,92,255, 180,134,90,255, 179,133,89,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 185,139,95,255, 188,142,98,255, 164,137,82,255, 180,134,90,255, 57,43,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 205,205,205,255, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,215,215,255, 114,114,114,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,212,162,255, 223,215,167,255, 219,211,162,255, 219,212,167,255, 219,211,164,255, 222,216,167,255, 221,214,158,255, 210,204,149,255, 202,196,140,255, 212,207,149,255, 210,203,150,255, 205,198,147,255, 209,201,150,255, 218,211,157,255, 224,217,162,255, 216,208,158,255, 50,52,151,255, 49,52,151,255, 45,47,144,255, 45,47,145,255, 58,64,166,255, 60,67,169,255, 46,48,146,255, 44,47,144,255, 52,55,155,255, 57,61,163,255, 53,56,157,255, 56,59,161,255, 62,77,178,255, 62,77,178,255, 55,58,159,255, 45,48,145,255, 50,166,212,255, 49,165,211,255, 36,140,200,255, 38,142,201,255, 72,193,228,255, 76,196,230,255, 41,148,204,255, 36,139,200,255, 56,176,217,255, 68,190,225,255, 58,179,218,255, 65,187,223,255, 78,197,231,255, 78,197,231,255, 62,184,221,255, 39,145,202,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 220,174,41,255, 0,0,0,0, 0,0,0,0, 171,3,1,255, 146,0,2,255, 0,0,0,0, 0,0,0,0, 201,136,29,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 74,69,62,255, 143,134,121,255, 74,68,60,255, 105,98,87,255, 109,103,93,255, 143,134,121,255, 72,67,60,255, 108,102,92,255, 78,73,66,255, 105,98,87,255, 140,131,118,255, 75,70,63,255, 108,102,92,255, 102,95,84,255, 79,74,67,255, 141,132,119,255, 8,8,12,255, 60,48,86,255, 58,46,84,255, 33,27,46,255, 15,15,23,255, 15,15,15,255, 17,14,29,255, 14,14,21,255, 9,9,9,255, 58,46,84,255, 30,24,43,255, 16,16,24,255, 16,16,25,255, 16,16,20,255, 15,15,21,255, 8,8,12,255, 8,8,12,255, 60,48,86,255, 58,46,84,255, 33,27,46,255, 15,15,23,255, 15,15,15,255, 17,14,29,255, 14,14,21,255, 9,9,9,255, 58,46,84,255, 30,24,43,255, 16,16,24,255, 16,16,25,255, 16,16,20,255, 15,15,21,255, 8,8,12,255, 32,30,40,255, 32,30,40,255, 32,30,40,255, 36,35,46,255, 32,29,40,255, 27,25,34,255, 31,30,40,255, 34,34,43,255, 37,40,50,255, 31,29,39,255, 28,25,36,255, 30,29,39,255, 34,34,43,255, 80,93,96,255, 35,41,50,255, 38,46,57,255, 53,47,43,255, 134,73,45,255, 148,81,50,255, 126,70,43,255, 126,70,43,255, 123,69,42,255, 115,64,40,255, 123,69,42,255, 123,69,42,255, 123,69,42,255, 123,69,42,255, 117,65,40,255, 123,68,42,255, 138,76,47,255, 134,73,45,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,69,54,255, 115,63,49,255, 124,69,54,255, 109,61,47,255, 124,69,54,255, 118,65,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 227,233,232,255, 199,178,119,255, 167,142,86,255, 201,176,118,255, 207,189,129,255, 206,188,127,255, 202,180,121,255, 198,178,123,255, 200,176,118,255, 200,176,118,255, 201,176,118,255, 203,181,122,255, 199,175,117,255, 167,142,86,255, 196,173,114,255, 229,225,220,255, 44,34,20,255, 121,91,55,255, 103,86,49,255, 134,98,56,255, 132,97,56,255, 125,93,55,255, 128,95,56,255, 130,96,56,255, 130,96,56,255, 130,96,56,255, 134,98,56,255, 130,96,56,255, 128,95,56,255, 103,86,49,255, 123,92,55,255, 44,34,20,255, 103,78,32,255, 180,134,90,255, 159,132,77,255, 191,145,101,255, 189,143,99,255, 183,137,93,255, 187,141,97,255, 188,142,98,255, 188,142,98,255, 188,142,98,255, 191,145,101,255, 188,142,98,255, 186,140,96,255, 159,132,77,255, 181,135,91,255, 104,78,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 205,205,205,255, 147,147,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,218,168,255, 223,213,164,255, 214,207,158,255, 223,217,168,255, 219,211,163,255, 215,206,164,255, 212,203,153,255, 215,208,152,255, 215,207,153,255, 213,205,153,255, 220,213,159,255, 215,207,159,255, 219,210,161,255, 219,212,164,255, 220,213,159,255, 225,217,166,255, 56,59,161,255, 55,58,160,255, 60,68,170,255, 62,77,178,255, 58,64,166,255, 56,60,162,255, 53,56,157,255, 50,53,152,255, 45,47,144,255, 52,54,154,255, 56,59,161,255, 59,64,166,255, 51,54,154,255, 52,54,154,255, 59,64,166,255, 62,77,178,255, 65,187,223,255, 63,185,222,255, 77,196,231,255, 78,197,231,255, 72,193,228,255, 66,188,223,255, 58,179,218,255, 52,169,213,255, 36,140,200,255, 55,174,215,255, 65,187,223,255, 73,194,228,255, 54,173,215,255, 55,174,215,255, 73,194,228,255, 78,197,231,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 201,136,29,255, 212,1,2,255, 153,82,52,255, 172,136,82,255, 172,136,82,255, 159,87,45,255, 212,1,2,255, 220,174,41,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 80,75,68,255, 111,105,95,255, 101,94,85,255, 110,104,94,255, 106,100,90,255, 121,114,103,255, 88,82,74,255, 111,105,95,255, 111,105,95,255, 103,96,85,255, 105,99,89,255, 76,71,64,255, 108,102,92,255, 137,128,115,255, 143,135,123,255, 73,68,61,255, 8,8,12,255, 16,16,24,255, 30,24,43,255, 30,24,43,255, 16,16,31,255, 7,7,11,255, 30,24,43,255, 16,16,24,255, 9,9,14,255, 35,29,48,255, 30,24,43,255, 30,24,43,255, 16,16,25,255, 16,16,26,255, 15,15,26,255, 8,8,12,255, 8,8,12,255, 16,16,24,255, 30,24,43,255, 30,24,43,255, 16,16,31,255, 7,7,11,255, 30,24,43,255, 16,16,24,255, 9,9,14,255, 35,29,48,255, 30,24,43,255, 30,24,43,255, 16,16,25,255, 16,16,26,255, 15,15,26,255, 8,8,12,255, 32,31,40,255, 29,27,38,255, 28,24,35,255, 34,35,45,255, 29,26,37,255, 31,30,40,255, 35,35,46,255, 40,42,51,255, 30,29,39,255, 34,36,45,255, 35,36,48,255, 42,41,54,255, 38,42,52,255, 62,70,77,255, 36,34,45,255, 29,26,37,255, 52,46,42,255, 115,64,40,255, 138,76,47,255, 148,81,50,255, 148,81,50,255, 148,81,50,255, 148,81,50,255, 115,64,40,255, 115,64,40,255, 139,77,48,255, 139,77,48,255, 123,69,42,255, 123,69,42,255, 123,69,42,255, 115,64,40,255, 52,46,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 110,61,48,255, 131,73,57,255, 118,66,50,255, 124,69,54,255, 118,65,51,255, 124,69,54,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,58,58,255, 199,178,119,255, 162,137,81,255, 167,142,86,255, 171,146,90,255, 167,142,86,255, 167,142,86,255, 167,142,86,255, 163,138,82,255, 168,143,86,255, 167,142,86,255, 170,145,89,255, 173,148,92,255, 171,146,90,255, 196,171,114,255, 236,233,230,255, 44,34,20,255, 121,91,55,255, 98,82,46,255, 103,86,49,255, 107,90,53,255, 103,86,49,255, 103,86,49,255, 103,86,49,255, 100,83,46,255, 104,87,50,255, 103,86,49,255, 106,89,52,255, 109,92,55,255, 107,90,53,255, 119,90,55,255, 44,34,20,255, 89,70,26,255, 180,134,90,255, 153,126,71,255, 159,132,77,255, 164,137,82,255, 159,132,77,255, 159,132,77,255, 159,132,77,255, 154,127,72,255, 160,133,78,255, 159,132,77,255, 163,136,81,255, 167,140,85,255, 164,137,82,255, 178,132,88,255, 125,93,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 224,217,163,255, 225,219,164,255, 217,210,156,255, 224,218,166,255, 216,209,161,255, 223,216,167,255, 213,206,155,255, 207,200,149,255, 211,202,153,255, 217,208,157,255, 215,208,155,255, 218,212,162,255, 221,214,160,255, 229,221,169,255, 223,215,162,255, 222,214,161,255, 60,67,169,255, 59,66,168,255, 53,55,156,255, 51,53,153,255, 59,64,166,255, 53,56,157,255, 55,58,159,255, 57,61,163,255, 62,77,178,255, 58,63,165,255, 49,51,150,255, 49,51,150,255, 54,56,157,255, 56,59,161,255, 50,52,151,255, 47,50,148,255, 76,196,230,255, 75,195,230,255, 57,177,217,255, 53,171,214,255, 73,194,228,255, 58,179,218,255, 62,184,221,255, 67,189,225,255, 78,197,231,255, 71,192,227,255, 47,161,210,255, 48,162,210,255, 59,181,219,255, 65,187,223,255, 50,166,212,255, 44,154,206,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 201,136,29,255, 171,3,1,255, 109,46,28,255, 109,83,47,255, 100,79,42,255, 127,60,32,255, 171,3,1,255, 220,174,41,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,68,61,255, 105,99,89,255, 140,131,118,255, 79,74,67,255, 109,103,93,255, 121,114,103,255, 88,82,74,255, 77,72,65,255, 135,126,113,255, 106,100,90,255, 141,132,119,255, 74,69,62,255, 105,98,87,255, 121,114,103,255, 76,71,64,255, 105,99,89,255, 8,8,12,255, 16,16,23,255, 16,16,24,255, 30,24,43,255, 17,17,25,255, 16,16,24,255, 12,12,19,255, 15,15,23,255, 9,9,15,255, 26,20,39,255, 30,24,43,255, 30,24,43,255, 30,24,43,255, 16,16,25,255, 15,15,23,255, 8,8,12,255, 8,8,12,255, 16,16,23,255, 16,16,24,255, 30,24,43,255, 17,17,25,255, 16,16,24,255, 12,12,19,255, 15,15,23,255, 9,9,15,255, 26,20,39,255, 30,24,43,255, 30,24,43,255, 30,24,43,255, 16,16,25,255, 15,15,23,255, 8,8,12,255, 29,25,36,255, 27,24,34,255, 31,29,40,255, 26,23,33,255, 34,33,45,255, 47,58,67,255, 54,64,71,255, 83,103,109,255, 40,40,51,255, 32,30,41,255, 27,25,35,255, 31,29,39,255, 31,29,39,255, 32,30,40,255, 26,24,34,255, 32,30,40,255, 53,47,43,255, 123,69,42,255, 115,64,40,255, 115,64,40,255, 115,64,40,255, 134,73,45,255, 134,73,45,255, 115,64,40,255, 134,73,45,255, 134,73,45,255, 115,64,40,255, 129,71,44,255, 134,73,45,255, 134,73,45,255, 123,69,42,255, 53,47,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,69,54,255, 118,65,51,255, 116,63,49,255, 134,74,58,255, 137,76,59,255, 121,67,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,58,58,255, 196,172,114,255, 196,172,114,255, 196,172,114,255, 199,178,119,255, 201,179,120,255, 186,169,117,255, 186,168,115,255, 186,168,116,255, 200,180,124,255, 203,180,121,255, 196,172,114,255, 199,178,119,255, 199,178,119,255, 196,172,114,255, 229,225,220,255, 55,44,27,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 125,93,55,255, 112,85,54,255, 114,86,54,255, 121,91,55,255, 121,91,55,255, 111,84,53,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 121,91,55,255, 75,60,37,255, 83,63,25,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 183,137,93,255, 173,127,83,255, 174,128,84,255, 180,134,90,255, 180,134,90,255, 171,125,81,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 180,134,90,255, 88,66,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 232,224,172,255, 226,219,164,255, 221,212,160,255, 221,213,158,255, 216,206,158,255, 225,215,166,255, 220,209,160,255, 212,205,152,255, 215,207,158,255, 221,212,161,255, 215,208,159,255, 229,220,170,255, 218,210,157,255, 223,216,167,255, 220,213,163,255, 219,213,161,255, 46,48,145,255, 48,50,149,255, 58,64,166,255, 54,56,157,255, 47,50,148,255, 50,52,151,255, 59,64,166,255, 60,68,170,255, 51,54,154,255, 49,52,151,255, 55,58,160,255, 58,64,166,255, 47,50,148,255, 48,50,149,255, 58,63,165,255, 59,64,166,255, 39,145,203,255, 46,158,208,255, 72,193,228,255, 59,181,219,255, 44,154,206,255, 50,166,212,255, 73,194,228,255, 77,196,231,255, 54,173,215,255, 49,165,211,255, 63,185,222,255, 72,193,228,255, 44,154,206,255, 46,158,208,255, 71,192,227,255, 73,194,228,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 201,136,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,128,27,255, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,94,85,255, 106,100,90,255, 121,114,103,255, 77,72,65,255, 104,97,86,255, 108,101,90,255, 106,100,90,255, 79,74,67,255, 108,101,90,255, 110,104,94,255, 105,99,89,255, 72,66,58,255, 105,99,89,255, 108,101,90,255, 105,98,87,255, 121,114,103,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 8,8,12,255, 26,23,33,255, 34,35,43,255, 34,32,42,255, 27,24,34,255, 25,23,34,255, 39,45,56,255, 34,35,45,255, 29,26,37,255, 35,34,44,255, 30,28,37,255, 28,25,34,255, 30,27,36,255, 31,29,40,255, 33,31,43,255, 31,29,41,255, 31,29,41,255, 40,35,32,255, 52,44,41,255, 52,44,41,255, 53,44,41,255, 51,45,42,255, 51,45,42,255, 53,44,41,255, 51,45,42,255, 52,44,41,255, 52,44,41,255, 52,44,41,255, 51,45,42,255, 48,43,41,255, 51,45,42,255, 51,45,42,255, 49,44,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,69,54,255, 95,53,41,255, 124,69,54,255, 107,60,47,255, 130,73,56,255, 124,69,54,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,25,34,255, 32,25,34,255, 58,58,58,255, 218,213,206,255, 217,223,213,255, 218,220,213,255, 58,58,58,255, 58,58,58,255, 32,25,34,255, 32,25,34,255, 215,209,211,255, 224,221,213,255, 220,214,215,255, 255,255,255,255, 255,255,255,255, 244,239,227,255, 75,60,37,255, 81,65,41,255, 44,34,20,255, 79,63,39,255, 75,60,37,255, 76,60,36,255, 44,34,20,255, 76,61,38,255, 75,60,37,255, 75,60,37,255, 75,60,37,255, 75,60,37,255, 44,34,20,255, 44,34,20,255, 44,34,20,255, 75,60,37,255, 83,63,25,255, 93,74,30,255, 124,90,38,255, 58,42,19,255, 60,45,19,255, 65,52,20,255, 90,71,27,255, 90,71,27,255, 91,72,29,255, 89,70,26,255, 92,73,29,255, 91,71,28,255, 93,74,30,255, 58,42,19,255, 61,47,19,255, 58,42,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 70,70,70,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 232,223,177,255, 235,226,182,255, 235,226,182,255, 230,221,178,255, 224,215,172,255, 224,216,172,255, 242,233,186,255, 233,224,181,255, 233,224,181,255, 242,233,186,255, 233,224,176,255, 233,224,181,255, 234,225,182,255, 242,233,186,255, 242,233,186,255, 234,225,180,255, 108,35,162,255, 113,36,165,255, 106,34,160,255, 108,34,161,255, 119,39,169,255, 130,45,178,255, 109,35,162,255, 111,36,163,255, 126,43,174,255, 128,44,176,255, 103,32,158,255, 107,34,161,255, 122,41,171,255, 122,41,171,255, 107,34,161,255, 104,33,159,255, 177,56,167,255, 181,60,171,255, 174,53,164,255, 176,55,166,255, 187,66,177,255, 197,76,187,255, 178,57,168,255, 179,58,169,255, 193,72,183,255, 195,74,185,255, 171,50,161,255, 175,54,165,255, 190,68,179,255, 190,68,179,255, 175,54,165,255, 173,52,162,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 127,127,127,255, 159,159,159,255, 114,114,114,255, 159,159,159,255, 159,159,159,255, 159,159,159,255, 0,0,0,0, 105,105,105,255, 114,114,114,255, 169,169,169,255, 0,0,0,0, 201,201,201,255, 159,159,159,255, 102,102,102,255, 169,169,169,255, 127,127,127,255, 177,90,33,255, 180,91,34,255, 180,91,34,255, 176,89,34,255, 171,87,32,255, 171,87,32,255, 185,94,35,255, 178,90,34,255, 178,90,34,255, 185,94,35,255, 178,90,33,255, 178,90,34,255, 179,91,34,255, 185,94,35,255, 185,94,35,255, 179,91,34,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 128,94,54,255, 128,94,54,255, 120,88,54,255, 102,79,47,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 184,135,100,255, 184,135,100,255, 177,128,92,255, 159,113,74,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 142,100,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 229,219,169,255, 215,204,162,255, 217,208,162,255, 219,210,161,255, 217,208,162,255, 214,205,163,255, 210,202,157,255, 204,197,144,255, 213,207,155,255, 212,205,155,255, 216,209,159,255, 219,210,161,255, 211,206,155,255, 228,223,176,255, 228,222,182,255, 227,220,174,255, 120,40,170,255, 125,42,173,255, 151,67,205,255, 151,67,205,255, 132,47,179,255, 128,44,176,255, 116,38,167,255, 115,38,166,255, 108,34,161,255, 104,33,159,255, 111,36,163,255, 115,38,166,255, 100,31,156,255, 105,33,159,255, 113,36,165,255, 117,38,168,255, 188,67,178,255, 193,71,182,255, 214,96,209,255, 214,96,209,255, 199,78,189,255, 195,74,185,255, 184,63,174,255, 183,62,173,255, 176,55,166,255, 173,52,162,255, 179,58,169,255, 183,62,173,255, 169,48,159,255, 173,52,163,255, 181,60,171,255, 185,64,175,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 92,77,48,255, 113,93,53,255, 164,128,74,255, 164,128,74,255, 172,136,82,255, 172,136,82,255, 135,109,69,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 127,127,127,255, 159,159,159,255, 114,114,114,255, 114,114,114,255, 159,159,159,255, 159,159,159,255, 0,0,0,0, 0,0,0,0, 102,102,102,255, 0,0,0,0, 0,0,0,0, 201,201,201,255, 159,159,159,255, 102,102,102,255, 169,169,169,255, 127,127,127,255, 175,88,32,255, 164,82,30,255, 166,84,30,255, 167,85,30,255, 166,84,30,255, 164,83,31,255, 161,82,30,255, 156,80,27,255, 163,84,29,255, 162,83,29,255, 165,84,30,255, 167,85,30,255, 161,83,29,255, 174,90,33,255, 174,90,34,255, 174,89,33,255, 128,94,54,255, 128,94,54,255, 120,88,54,255, 93,70,42,255, 120,88,54,255, 120,88,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 120,88,54,255, 102,79,47,255, 120,88,54,255, 128,94,54,255, 102,79,47,255, 184,135,100,255, 184,135,100,255, 177,128,92,255, 114,80,53,255, 177,128,92,255, 177,128,92,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 177,128,92,255, 159,113,74,255, 177,128,92,255, 184,135,100,255, 142,100,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 197,192,134,255, 212,207,155,255, 210,203,143,255, 198,191,129,255, 201,195,130,255, 198,193,133,255, 202,197,137,255, 196,191,131,255, 197,192,131,255, 199,192,126,255, 195,186,122,255, 194,186,114,255, 205,199,135,255, 205,201,150,255, 194,189,139,255, 193,186,125,255, 132,47,179,255, 134,48,181,255, 115,38,166,255, 118,39,168,255, 137,50,184,255, 134,48,181,255, 123,41,172,255, 115,38,166,255, 128,44,176,255, 134,48,181,255, 127,44,175,255, 127,44,175,255, 141,54,188,255, 151,67,205,255, 128,44,176,255, 125,42,173,255, 199,78,189,255, 202,82,193,255, 183,62,173,255, 186,65,175,255, 209,90,202,255, 202,82,193,255, 190,69,180,255, 183,62,173,255, 195,74,185,255, 202,82,193,255, 195,73,184,255, 195,73,184,255, 210,91,203,255, 214,96,209,255, 195,74,185,255, 193,71,182,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 69,59,39,255, 82,67,40,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 76,61,37,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 127,127,127,255, 159,159,159,255, 114,114,114,255, 159,159,159,255, 0,0,0,0, 0,0,0,0, 105,105,105,255, 169,169,169,255, 0,0,0,0, 0,0,0,0, 114,114,114,255, 169,169,169,255, 159,159,159,255, 102,102,102,255, 169,169,169,255, 159,159,159,255, 151,78,25,255, 162,84,29,255, 161,82,27,255, 151,77,24,255, 154,79,24,255, 151,78,25,255, 154,80,26,255, 150,77,25,255, 151,78,25,255, 152,78,24,255, 149,75,23,255, 148,75,21,255, 157,80,25,255, 157,81,28,255, 148,76,26,255, 148,75,24,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 120,88,54,255, 120,88,54,255, 93,70,42,255, 128,94,54,255, 128,94,54,255, 120,88,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 184,135,100,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 177,128,92,255, 177,128,92,255, 114,80,53,255, 184,135,100,255, 184,135,100,255, 177,128,92,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 142,100,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 201,194,142,255, 242,236,194,255, 229,221,181,255, 237,228,181,255, 202,196,127,255, 241,234,196,255, 242,233,186,255, 242,233,186,255, 232,224,187,255, 228,220,182,255, 189,181,111,255, 242,233,186,255, 228,220,182,255, 231,223,180,255, 242,233,186,255, 242,233,186,255, 120,40,170,255, 113,36,165,255, 130,45,177,255, 134,48,181,255, 115,38,166,255, 113,37,165,255, 119,39,169,255, 134,48,181,255, 109,35,162,255, 116,38,167,255, 134,48,181,255, 134,48,181,255, 120,40,170,255, 113,36,165,255, 151,67,205,255, 133,47,180,255, 188,67,178,255, 181,60,171,255, 197,75,186,255, 202,82,193,255, 183,62,173,255, 182,60,171,255, 187,66,177,255, 202,82,193,255, 178,57,168,255, 184,63,174,255, 202,82,193,255, 202,82,193,255, 188,67,178,255, 181,60,171,255, 214,96,209,255, 201,80,191,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 127,127,127,255, 159,159,159,255, 114,114,114,255, 169,169,169,255, 159,159,159,255, 0,0,0,0, 138,138,138,255, 169,169,169,255, 133,133,133,255, 159,159,159,255, 0,0,0,0, 159,159,159,255, 102,102,102,255, 169,139,34,255, 159,159,159,255, 159,159,159,255, 185,95,37,255, 185,95,37,255, 175,89,34,255, 181,92,34,255, 181,92,34,255, 184,95,37,255, 184,95,37,255, 185,94,35,255, 177,90,35,255, 185,94,35,255, 185,94,35,255, 185,94,35,255, 174,89,34,255, 177,90,34,255, 185,94,35,255, 147,75,23,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 73,56,36,255, 73,56,36,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 114,80,53,255, 114,80,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,196,128,255, 216,210,163,255, 216,209,156,255, 214,207,153,255, 202,196,127,255, 223,216,160,255, 229,221,168,255, 224,216,165,255, 216,207,155,255, 193,186,113,255, 226,217,174,255, 214,207,155,255, 220,212,160,255, 228,221,179,255, 214,206,157,255, 221,213,160,255, 125,42,173,255, 117,38,168,255, 109,35,162,255, 120,40,170,255, 130,45,178,255, 130,45,177,255, 103,32,158,255, 101,32,157,255, 111,36,164,255, 122,41,171,255, 111,36,163,255, 105,33,159,255, 130,45,178,255, 130,45,178,255, 107,34,161,255, 103,32,158,255, 193,71,182,255, 185,64,175,255, 178,57,168,255, 188,67,178,255, 197,76,187,255, 197,75,186,255, 171,50,161,255, 170,49,160,255, 180,59,170,255, 190,68,179,255, 179,58,169,255, 174,53,164,255, 197,76,187,255, 197,76,187,255, 175,54,165,255, 171,50,161,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 159,159,159,255, 0,0,0,0, 159,159,159,255, 169,169,169,255, 159,159,159,255, 0,0,0,0, 169,169,169,255, 152,152,152,255, 128,128,128,255, 159,159,159,255, 0,0,0,0, 169,139,34,255, 222,194,95,255, 222,194,95,255, 102,102,102,255, 159,159,159,255, 185,95,37,255, 170,87,31,255, 178,90,34,255, 167,85,30,255, 167,85,30,255, 155,78,24,255, 151,76,22,255, 150,76,22,255, 149,75,22,255, 151,76,23,255, 167,85,30,255, 167,85,30,255, 170,87,31,255, 174,89,34,255, 167,85,31,255, 147,75,23,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 83,64,40,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 128,94,54,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 184,135,100,255, 184,135,100,255, 142,100,66,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 114,80,53,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 184,135,100,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 8,196,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,137,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,208,164,255, 214,207,153,255, 214,207,153,255, 219,212,159,255, 202,196,127,255, 224,217,173,255, 221,213,165,255, 233,224,179,255, 223,215,164,255, 196,189,116,255, 226,217,173,255, 216,208,157,255, 218,209,158,255, 221,212,165,255, 220,212,172,255, 192,186,120,255, 105,33,159,255, 102,32,157,255, 110,35,163,255, 134,48,181,255, 109,35,162,255, 101,32,157,255, 108,35,162,255, 113,36,165,255, 109,35,162,255, 101,32,157,255, 113,36,165,255, 115,38,166,255, 103,33,158,255, 111,36,163,255, 108,34,161,255, 114,37,165,255, 173,52,163,255, 171,50,161,255, 178,57,168,255, 202,82,193,255, 178,57,168,255, 170,49,160,255, 177,56,167,255, 181,60,171,255, 178,57,168,255, 170,49,160,255, 181,60,171,255, 183,62,173,255, 172,51,162,255, 179,58,169,255, 176,55,166,255, 182,61,172,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 108,89,60,255, 140,0,1,255, 136,0,1,255, 49,0,0,255, 82,0,0,255, 49,0,0,255, 89,0,0,255, 108,89,60,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,159,159,255, 169,169,169,255, 159,159,159,255, 0,0,0,0, 201,201,201,255, 152,152,152,255, 127,127,127,255, 159,159,159,255, 0,0,0,0, 169,139,34,255, 222,194,95,255, 222,194,95,255, 102,102,102,255, 102,102,102,255, 185,94,35,255, 148,75,22,255, 149,75,22,255, 148,75,22,255, 178,90,34,255, 149,75,22,255, 157,80,26,255, 162,82,27,255, 158,80,26,255, 152,77,23,255, 168,85,31,255, 149,75,22,255, 148,75,22,255, 152,77,23,255, 170,87,32,255, 147,75,23,255, 102,79,47,255, 102,79,47,255, 83,64,40,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 128,94,54,255, 102,79,47,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 159,113,74,255, 159,113,74,255, 114,80,53,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 184,135,100,255, 142,100,66,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 8,196,0,255, 0,0,0,0, 8,196,0,255, 0,0,0,0, 8,196,0,255, 8,196,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,124,0,255, 8,196,0,255, 0,139,0,255, 0,0,0,0, 0,156,0,255, 0,0,0,0, 0,100,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 218,210,166,255, 206,200,140,255, 206,200,140,255, 202,197,136,255, 202,196,127,255, 203,197,137,255, 223,216,180,255, 226,220,179,255, 191,183,113,255, 196,189,116,255, 198,192,134,255, 225,219,174,255, 221,216,171,255, 214,208,159,255, 221,214,172,255, 192,186,120,255, 151,67,205,255, 151,67,205,255, 132,46,179,255, 130,45,177,255, 119,39,169,255, 119,39,169,255, 117,38,168,255, 122,41,171,255, 132,47,179,255, 151,67,205,255, 126,43,174,255, 116,38,167,255, 151,67,205,255, 151,67,205,255, 128,44,176,255, 123,41,172,255, 214,96,209,255, 214,96,209,255, 198,77,188,255, 197,75,186,255, 187,66,177,255, 187,66,177,255, 185,64,175,255, 190,68,179,255, 199,78,189,255, 214,96,209,255, 193,72,183,255, 184,63,174,255, 214,96,209,255, 214,96,209,255, 195,74,185,255, 190,69,180,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 65,54,37,255, 49,0,0,255, 200,178,178,255, 178,166,166,255, 200,189,189,255, 143,120,120,255, 136,0,1,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 159,159,159,255, 130,130,130,255, 151,151,151,255, 159,159,159,255, 0,0,0,0, 159,159,159,255, 102,102,102,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 185,94,35,255, 158,80,26,255, 147,74,21,255, 153,78,24,255, 171,87,31,255, 149,75,22,255, 158,80,27,255, 159,81,27,255, 155,79,25,255, 151,76,23,255, 172,88,33,255, 153,77,24,255, 148,75,22,255, 148,75,22,255, 171,87,32,255, 147,75,23,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 120,88,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 83,64,40,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 177,128,92,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 142,100,66,255, 159,113,74,255, 159,113,74,255, 114,80,53,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,144,0,255, 0,117,0,255, 20,180,0,255, 20,180,0,255, 0,0,0,0, 2,139,0,255, 8,196,0,255, 0,0,0,0, 0,0,0,0, 0,124,0,255, 8,196,0,255, 8,196,0,255, 0,124,0,255, 0,100,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 194,186,114,255, 240,233,193,255, 235,226,182,255, 232,223,178,255, 241,234,196,255, 236,229,190,255, 201,196,140,255, 197,192,134,255, 236,227,180,255, 236,227,180,255, 243,234,187,255, 197,192,131,255, 204,199,148,255, 201,195,130,255, 192,186,120,255, 237,230,191,255, 113,36,165,255, 113,36,165,255, 151,67,205,255, 151,67,205,255, 128,44,176,255, 126,43,174,255, 134,48,181,255, 133,47,180,255, 108,34,161,255, 111,36,163,255, 130,45,177,255, 134,48,181,255, 126,43,174,255, 125,42,173,255, 135,48,181,255, 133,47,180,255, 181,60,171,255, 181,60,171,255, 214,96,209,255, 214,96,209,255, 195,74,185,255, 193,72,183,255, 202,82,193,255, 201,80,191,255, 176,55,166,255, 179,58,169,255, 197,75,186,255, 202,82,193,255, 193,72,183,255, 193,71,182,255, 203,83,194,255, 201,80,191,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 82,0,0,255, 200,189,189,255, 168,168,168,255, 168,168,168,255, 139,127,127,255, 82,0,0,255, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 114,114,114,255, 159,159,159,255, 0,0,0,0, 0,0,0,0, 169,139,34,255, 192,158,39,255, 135,135,135,255, 159,159,159,255, 151,151,151,255, 135,135,135,255, 0,0,0,0, 159,159,159,255, 159,159,159,255, 0,0,0,0, 102,102,102,255, 102,102,102,255, 185,94,35,255, 153,77,24,255, 149,75,22,255, 153,77,24,255, 152,76,23,255, 155,78,24,255, 157,80,26,255, 157,80,26,255, 161,82,27,255, 151,76,23,255, 152,77,23,255, 152,77,23,255, 152,77,23,255, 152,77,23,255, 169,86,31,255, 150,76,22,255, 73,56,36,255, 73,56,36,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 73,56,36,255, 73,56,36,255, 114,80,53,255, 114,80,53,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 114,80,53,255, 114,80,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,144,0,255, 8,196,0,255, 20,180,0,255, 13,170,0,255, 2,139,0,255, 0,129,0,255, 8,196,0,255, 0,129,0,255, 0,0,0,0, 0,137,0,255, 11,153,0,255, 0,142,0,255, 0,0,0,0, 0,100,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,168,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 237,230,191,255, 217,211,165,255, 227,218,174,255, 219,209,161,255, 220,212,161,255, 198,191,124,255, 236,227,180,255, 232,225,187,255, 218,210,171,255, 217,210,156,255, 226,219,170,255, 208,202,139,255, 242,233,186,255, 234,225,181,255, 197,190,125,255, 237,230,191,255, 128,44,176,255, 127,44,175,255, 105,33,159,255, 111,36,164,255, 133,47,180,255, 126,43,174,255, 109,35,162,255, 113,37,165,255, 111,36,164,255, 115,38,166,255, 111,36,163,255, 103,33,158,255, 119,39,169,255, 116,38,167,255, 106,34,160,255, 105,33,159,255, 195,74,185,255, 195,73,184,255, 173,52,163,255, 180,59,170,255, 201,80,191,255, 193,72,183,255, 178,57,168,255, 182,60,171,255, 180,59,170,255, 183,62,173,255, 179,58,169,255, 172,51,162,255, 187,66,177,255, 184,63,174,255, 174,53,164,255, 174,53,164,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 49,0,0,255, 178,166,166,255, 168,168,168,255, 168,168,168,255, 125,113,113,255, 49,0,0,255, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 114,114,114,255, 159,159,159,255, 127,127,127,255, 189,155,38,255, 236,220,165,255, 225,200,112,255, 102,102,102,255, 159,159,159,255, 135,135,135,255, 102,102,102,255, 0,0,0,0, 159,159,159,255, 0,0,0,0, 0,0,0,0, 127,127,127,255, 159,159,159,255, 185,94,35,255, 176,90,34,255, 167,84,30,255, 167,84,30,255, 167,84,30,255, 148,75,22,255, 148,75,22,255, 144,72,19,255, 148,75,21,255, 147,74,21,255, 171,87,31,255, 171,87,31,255, 171,87,31,255, 168,85,31,255, 171,87,31,255, 150,76,22,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 83,64,40,255, 102,79,47,255, 128,94,54,255, 128,94,54,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 114,80,53,255, 159,113,74,255, 184,135,100,255, 184,135,100,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 142,100,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,188,22,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,124,0,255, 8,196,0,255, 0,149,0,255, 0,0,0,0, 8,196,0,255, 0,137,0,255, 4,171,0,255, 2,139,0,255, 0,134,0,255, 8,196,0,255, 0,0,0,0, 0,100,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,188,22,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,224,26,255, 0,168,28,255, 0,0,0,0, 0,0,0,0, 0,224,26,255, 0,168,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,224,26,255, 0,138,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,224,26,255, 0,168,28,255, 213,207,153,255, 224,218,168,255, 224,217,168,255, 224,217,168,255, 218,209,159,255, 196,188,115,255, 233,223,179,255, 220,213,168,255, 225,219,174,255, 221,215,168,255, 213,206,158,255, 192,184,111,255, 229,221,176,255, 223,218,170,255, 194,187,121,255, 222,216,171,255, 111,36,164,255, 116,38,167,255, 114,37,165,255, 132,47,179,255, 101,32,157,255, 103,32,158,255, 116,38,167,255, 124,42,173,255, 109,35,162,255, 125,42,173,255, 151,67,205,255, 151,67,205,255, 118,39,168,255, 127,44,175,255, 151,67,205,255, 151,67,205,255, 180,59,170,255, 184,63,174,255, 182,61,172,255, 199,78,189,255, 170,49,160,255, 171,50,161,255, 184,63,174,255, 192,71,181,255, 178,57,168,255, 193,71,182,255, 214,96,209,255, 214,96,209,255, 186,65,175,255, 195,73,184,255, 214,96,209,255, 214,96,209,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 108,89,60,255, 136,0,1,255, 143,120,120,255, 125,113,113,255, 139,127,127,255, 134,101,100,255, 49,0,0,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 159,159,159,255, 127,127,127,255, 169,139,34,255, 225,200,112,255, 222,194,95,255, 0,0,0,0, 0,0,0,0, 102,102,102,255, 0,0,0,0, 102,102,102,255, 102,102,102,255, 0,0,0,0, 159,159,159,255, 127,127,127,255, 159,159,159,255, 147,75,23,255, 154,79,24,255, 146,74,21,255, 147,75,23,255, 146,74,21,255, 146,74,21,255, 155,80,26,255, 146,74,21,255, 154,79,24,255, 145,73,21,255, 146,74,21,255, 155,80,26,255, 155,80,26,255, 154,79,24,255, 155,80,26,255, 150,76,22,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 128,94,54,255, 120,88,54,255, 120,88,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 83,64,40,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 184,135,100,255, 177,128,92,255, 177,128,92,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 114,80,53,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 142,100,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,124,0,255, 20,180,0,255, 2,139,0,255, 0,0,0,0, 2,139,0,255, 2,161,0,255, 0,156,0,255, 0,0,0,0, 0,138,0,255, 8,196,0,255, 0,100,0,255, 2,139,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,192,27,255, 0,138,23,255, 0,224,26,255, 0,174,25,255, 0,192,27,255, 0,168,28,255, 0,138,23,255, 0,0,0,0, 0,224,26,255, 58,166,73,255, 0,118,19,255, 0,0,0,0, 0,168,28,255, 0,224,26,255, 0,192,27,255, 0,138,23,255, 194,186,115,255, 197,190,124,255, 197,190,124,255, 197,190,124,255, 213,206,154,255, 204,198,133,255, 217,210,156,255, 217,210,156,255, 229,222,179,255, 217,210,154,255, 219,214,161,255, 201,194,133,255, 221,216,175,255, 198,190,116,255, 198,190,116,255, 192,183,112,255, 133,47,180,255, 135,48,181,255, 128,44,176,255, 128,44,176,255, 151,67,205,255, 134,48,181,255, 128,44,176,255, 126,43,174,255, 135,48,181,255, 132,47,179,255, 115,38,166,255, 122,41,171,255, 125,42,173,255, 119,39,169,255, 107,34,161,255, 120,40,170,255, 201,80,191,255, 203,83,194,255, 195,74,185,255, 195,74,185,255, 214,96,209,255, 202,82,193,255, 195,74,185,255, 193,72,183,255, 203,83,194,255, 199,78,189,255, 183,62,173,255, 190,68,179,255, 193,71,182,255, 187,66,177,255, 175,54,165,255, 188,67,178,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 65,54,37,255, 89,0,0,255, 49,0,0,255, 82,0,0,255, 49,0,0,255, 49,0,0,255, 96,0,0,255, 69,59,39,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 159,159,159,255, 127,127,127,255, 169,139,34,255, 222,194,95,255, 222,194,95,255, 102,102,102,255, 114,114,114,255, 114,114,114,255, 123,123,123,255, 169,169,169,255, 159,159,159,255, 102,102,102,255, 169,169,169,255, 127,127,127,255, 159,159,159,255, 180,93,35,255, 171,87,32,255, 176,90,34,255, 169,86,31,255, 171,87,32,255, 171,87,32,255, 150,74,21,255, 150,75,22,255, 146,73,20,255, 171,87,32,255, 176,90,34,255, 176,90,34,255, 176,90,34,255, 171,87,32,255, 171,87,32,255, 150,76,22,255, 128,94,54,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 120,88,54,255, 102,79,47,255, 184,135,100,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 184,135,100,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 177,128,92,255, 142,100,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,139,0,255, 20,180,0,255, 0,117,0,255, 0,78,0,255, 0,0,0,0, 8,196,0,255, 0,124,0,255, 0,0,0,0, 0,0,0,0, 0,124,0,255, 0,78,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,168,28,255, 0,138,23,255, 0,224,26,255, 0,138,23,255, 0,168,28,255, 58,166,73,255, 0,168,28,255, 0,0,0,0, 58,166,73,255, 0,168,28,255, 58,166,73,255, 0,224,26,255, 0,168,28,255, 0,192,27,255, 0,174,25,255, 0,0,0,0, 239,230,184,255, 239,230,184,255, 239,230,184,255, 225,218,172,255, 200,193,133,255, 188,181,110,255, 197,189,117,255, 197,189,117,255, 217,210,154,255, 194,187,119,255, 194,187,119,255, 234,227,185,255, 198,190,116,255, 226,218,167,255, 237,229,189,255, 237,229,189,255, 107,34,161,255, 109,35,162,255, 124,42,173,255, 124,42,173,255, 113,36,165,255, 113,37,165,255, 130,45,178,255, 127,44,175,255, 108,34,161,255, 109,35,162,255, 111,36,164,255, 125,42,173,255, 102,32,157,255, 102,32,157,255, 114,37,165,255, 125,42,173,255, 175,54,165,255, 178,57,168,255, 192,71,181,255, 192,71,181,255, 181,60,171,255, 182,60,171,255, 197,76,187,255, 195,73,184,255, 176,55,166,255, 178,57,168,255, 180,59,170,255, 193,71,182,255, 171,50,161,255, 171,50,161,255, 182,61,172,255, 193,71,182,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,159,159,255, 127,127,127,255, 159,159,159,255, 102,102,102,255, 102,102,102,255, 114,114,114,255, 201,201,201,255, 169,169,169,255, 114,114,114,255, 169,169,169,255, 127,127,127,255, 102,102,102,255, 159,159,159,255, 159,159,159,255, 127,127,127,255, 185,94,35,255, 156,79,25,255, 167,84,30,255, 156,79,25,255, 163,83,29,255, 176,90,34,255, 169,86,31,255, 150,75,22,255, 166,85,29,255, 169,86,31,255, 179,92,35,255, 167,85,29,255, 161,82,27,255, 156,79,24,255, 181,92,36,255, 150,76,22,255, 73,56,36,255, 68,51,33,255, 73,56,36,255, 73,56,36,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 68,51,33,255, 68,51,33,255, 68,51,33,255, 73,56,36,255, 114,80,53,255, 104,70,47,255, 114,80,53,255, 114,80,53,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 104,70,47,255, 104,70,47,255, 104,70,47,255, 114,80,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 8,196,0,255, 0,117,0,255, 0,78,0,255, 0,0,0,0, 0,134,0,255, 0,100,0,255, 2,139,0,255, 0,0,0,0, 0,100,0,255, 0,78,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,192,27,255, 0,192,27,255, 0,138,23,255, 58,166,73,255, 0,186,18,255, 0,118,19,255, 0,174,25,255, 0,138,23,255, 58,166,73,255, 0,168,28,255, 0,192,27,255, 58,166,73,255, 0,192,27,255, 0,138,23,255, 0,138,23,255, 233,225,178,255, 231,223,185,255, 225,218,172,255, 204,198,137,255, 235,227,179,255, 239,230,184,255, 236,227,180,255, 236,227,180,255, 194,187,119,255, 236,230,196,255, 232,223,178,255, 218,211,168,255, 201,196,136,255, 230,223,178,255, 229,224,187,255, 224,217,176,255, 113,37,165,255, 113,36,165,255, 101,32,157,255, 103,32,158,255, 133,47,180,255, 137,50,184,255, 105,33,159,255, 101,32,157,255, 119,39,169,255, 130,45,178,255, 122,41,171,255, 127,44,175,255, 151,67,205,255, 151,67,205,255, 125,42,173,255, 103,33,158,255, 182,60,171,255, 181,60,171,255, 170,49,160,255, 171,50,161,255, 201,80,191,255, 209,90,202,255, 174,53,164,255, 170,49,160,255, 187,66,177,255, 197,76,187,255, 190,68,179,255, 195,73,184,255, 214,96,209,255, 214,96,209,255, 193,71,182,255, 172,51,162,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 102,102,102,255, 159,159,159,255, 102,102,102,255, 0,0,0,0, 0,0,0,0, 114,114,114,255, 169,169,169,255, 159,159,159,255, 114,114,114,255, 159,159,159,255, 127,127,127,255, 102,102,102,255, 0,0,0,0, 159,159,159,255, 159,159,159,255, 185,94,35,255, 161,81,27,255, 155,79,24,255, 155,79,25,255, 169,86,31,255, 176,90,34,255, 147,73,20,255, 147,73,20,255, 149,74,21,255, 169,86,31,255, 167,85,32,255, 158,80,27,255, 169,86,31,255, 176,90,34,255, 175,90,35,255, 150,76,22,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 102,79,47,255, 120,88,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 159,113,74,255, 184,135,100,255, 142,100,66,255, 159,113,74,255, 114,80,53,255, 159,113,74,255, 159,113,74,255, 177,128,92,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,139,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 2,149,14,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,93,0,255, 0,78,0,255, 0,78,0,255, 2,139,0,255, 0,100,0,255, 0,78,0,255, 2,139,0,255, 0,0,0,0, 0,124,0,255, 0,78,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,139,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 2,149,14,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,168,28,255, 0,224,26,255, 0,192,27,255, 0,118,19,255, 58,166,73,255, 0,192,27,255, 0,224,26,255, 0,168,28,255, 58,166,73,255, 0,224,26,255, 0,138,23,255, 0,192,27,255, 0,192,27,255, 0,138,23,255, 230,222,179,255, 231,223,185,255, 213,205,156,255, 197,190,124,255, 214,206,161,255, 216,208,165,255, 218,209,158,255, 221,215,168,255, 194,187,119,255, 215,209,167,255, 214,207,154,255, 213,205,156,255, 192,184,114,255, 228,222,178,255, 223,216,171,255, 217,209,163,255, 127,44,175,255, 126,43,174,255, 141,54,188,255, 151,67,205,255, 133,47,180,255, 128,44,176,255, 122,41,171,255, 115,38,166,255, 101,32,157,255, 118,39,168,255, 127,44,175,255, 134,48,181,255, 117,38,168,255, 118,39,168,255, 134,48,181,255, 151,67,205,255, 195,73,184,255, 193,72,183,255, 210,91,203,255, 214,96,209,255, 201,80,191,255, 195,74,185,255, 190,68,179,255, 183,62,173,255, 170,49,160,255, 186,65,175,255, 195,73,184,255, 202,82,193,255, 185,64,175,255, 186,65,175,255, 202,82,193,255, 214,96,209,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 92,77,48,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,159,159,255, 127,127,127,255, 159,159,159,255, 114,114,114,255, 159,159,159,255, 159,159,159,255, 114,114,114,255, 159,159,159,255, 159,159,159,255, 102,102,102,255, 0,0,0,0, 102,102,102,255, 102,102,102,255, 185,94,35,255, 155,78,24,255, 161,82,27,255, 154,78,24,255, 169,86,31,255, 169,86,31,255, 167,84,30,255, 149,74,21,255, 169,86,31,255, 167,85,32,255, 163,83,29,255, 155,79,25,255, 153,77,22,255, 157,80,25,255, 171,87,32,255, 150,76,22,255, 120,88,54,255, 102,79,47,255, 83,64,40,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 128,94,54,255, 120,88,54,255, 120,88,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 120,88,54,255, 177,128,92,255, 159,113,74,255, 114,80,53,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 142,100,66,255, 184,135,100,255, 177,128,92,255, 177,128,92,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 177,128,92,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,184,23,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,120,0,255, 0,117,0,255, 0,78,0,255, 0,78,0,255, 0,100,0,255, 0,78,0,255, 0,100,0,255, 0,78,0,255, 0,124,0,255, 0,78,0,255, 0,100,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,184,23,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,224,26,255, 0,168,28,255, 0,186,18,255, 0,138,23,255, 0,118,19,255, 58,166,73,255, 0,192,27,255, 0,192,27,255, 0,138,23,255, 0,174,25,255, 58,166,73,255, 0,118,19,255, 0,192,27,255, 0,138,23,255, 0,0,0,0, 205,199,145,255, 198,193,134,255, 228,219,174,255, 202,197,137,255, 219,211,163,255, 231,224,179,255, 222,216,176,255, 190,183,119,255, 230,222,179,255, 201,194,127,255, 223,216,170,255, 226,218,168,255, 197,192,131,255, 187,179,109,255, 223,215,162,255, 190,182,110,255, 137,50,184,255, 136,49,183,255, 120,40,170,255, 116,38,167,255, 134,48,181,255, 122,41,171,255, 125,42,173,255, 130,45,177,255, 151,67,205,255, 132,47,179,255, 111,36,163,255, 111,36,164,255, 123,41,172,255, 127,44,175,255, 113,37,165,255, 108,34,161,255, 209,90,202,255, 207,87,199,255, 188,67,178,255, 184,63,174,255, 202,82,193,255, 190,68,179,255, 193,71,182,255, 197,75,186,255, 214,96,209,255, 199,78,189,255, 179,58,169,255, 180,59,170,255, 190,69,180,255, 195,73,184,255, 182,60,171,255, 176,55,166,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 65,54,37,255, 76,61,37,255, 109,83,47,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 102,102,102,255, 102,102,102,255, 159,159,159,255, 159,159,159,255, 127,127,127,255, 159,159,159,255, 114,114,114,255, 159,159,159,255, 102,102,102,255, 159,159,159,255, 102,102,102,255, 102,102,102,255, 169,169,169,255, 159,159,159,255, 0,0,0,0, 0,0,0,0, 177,90,35,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 154,79,24,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 167,85,32,255, 176,90,34,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 154,79,24,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 102,79,47,255, 102,79,47,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 128,94,54,255, 128,94,54,255, 102,79,47,255, 120,88,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 128,94,54,255, 184,135,100,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 159,113,74,255, 184,135,100,255, 184,135,100,255, 142,100,66,255, 184,135,100,255, 184,135,100,255, 159,113,74,255, 177,128,92,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,173,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,173,23,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 5,107,5,255, 2,154,12,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,173,23,255, 2,139,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,77,12,255, 65,95,14,255, 5,107,5,255, 2,139,0,255, 42,59,16,255, 42,59,16,255, 0,0,0,0, 0,78,0,255, 35,89,19,255, 36,67,15,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,173,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,173,23,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 5,107,5,255, 2,154,12,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,173,23,255, 2,139,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,118,19,255, 163,178,59,255, 163,178,59,255, 0,118,19,255, 0,142,21,255, 163,178,59,255, 163,178,59,255, 0,118,19,255, 0,118,19,255, 163,178,59,255, 149,134,34,255, 0,138,23,255, 0,0,0,0, 0,0,0,0, 230,224,187,255, 235,227,183,255, 205,199,137,255, 223,215,160,255, 199,193,132,255, 199,193,132,255, 193,186,120,255, 228,219,175,255, 224,216,163,255, 218,209,159,255, 192,184,113,255, 204,197,135,255, 232,222,178,255, 237,228,182,255, 196,188,113,255, 239,230,185,255, 104,33,159,255, 109,35,162,255, 133,47,180,255, 123,41,172,255, 108,34,161,255, 113,37,165,255, 134,48,181,255, 141,54,188,255, 117,38,168,255, 113,36,165,255, 126,43,174,255, 133,47,180,255, 108,34,161,255, 109,35,162,255, 132,47,179,255, 134,48,181,255, 173,52,162,255, 178,57,168,255, 201,80,191,255, 190,69,180,255, 176,55,166,255, 182,60,171,255, 202,82,193,255, 210,91,203,255, 185,64,175,255, 181,60,171,255, 193,72,183,255, 201,80,191,255, 176,55,166,255, 178,57,168,255, 199,78,189,255, 202,82,193,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 169,169,169,255, 159,159,159,255, 0,0,0,0, 159,159,159,255, 159,159,159,255, 159,159,159,255, 114,114,114,255, 0,0,0,0, 102,102,102,255, 159,159,159,255, 102,102,102,255, 0,0,0,0, 169,169,169,255, 159,159,159,255, 102,102,102,255, 159,159,159,255, 154,79,24,255, 149,75,23,255, 154,79,24,255, 147,75,23,255, 154,79,24,255, 154,79,24,255, 154,79,24,255, 149,75,23,255, 154,79,24,255, 147,75,23,255, 146,74,21,255, 147,75,23,255, 154,79,24,255, 147,75,23,255, 150,76,22,255, 146,74,21,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 79,60,39,255, 68,51,33,255, 68,51,33,255, 79,60,39,255, 68,51,33,255, 73,56,36,255, 73,56,36,255, 73,56,36,255, 68,51,33,255, 56,43,29,255, 68,51,33,255, 68,51,33,255, 73,56,36,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 123,84,58,255, 104,70,47,255, 104,70,47,255, 123,84,58,255, 104,70,47,255, 114,80,53,255, 114,80,53,255, 114,80,53,255, 104,70,47,255, 75,50,33,255, 104,70,47,255, 104,70,47,255, 114,80,53,255, 0,0,0,0, 0,0,0,0, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 2,149,14,255, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 2,149,14,255, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 2,139,13,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,62,16,255, 226,160,16,255, 210,146,8,255, 65,33,24,255, 107,62,16,255, 226,160,16,255, 193,133,0,255, 65,33,24,255, 107,62,16,255, 226,160,16,255, 194,127,0,255, 65,33,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 2,149,14,255, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 2,149,14,255, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 2,139,13,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,43,255, 149,134,34,255, 193,207,88,255, 193,207,88,255, 149,134,34,255, 163,178,59,255, 193,207,88,255, 193,207,88,255, 149,134,34,255, 163,178,59,255, 193,207,88,255, 193,207,88,255, 149,134,34,255, 0,118,19,255, 0,0,0,0, 235,226,174,255, 220,211,163,255, 202,197,137,255, 193,186,113,255, 228,219,169,255, 220,210,161,255, 236,227,180,255, 193,186,113,255, 213,207,155,255, 225,217,165,255, 221,213,161,255, 222,214,162,255, 193,186,113,255, 219,212,161,255, 222,215,164,255, 222,214,165,255, 21,126,139,255, 21,130,141,255, 21,124,138,255, 21,126,139,255, 21,136,144,255, 21,146,149,255, 21,127,140,255, 21,128,140,255, 21,142,147,255, 21,144,148,255, 21,121,137,255, 21,125,139,255, 21,138,145,255, 21,138,145,255, 21,125,139,255, 21,122,138,255, 232,104,7,255, 236,109,11,255, 230,102,5,255, 231,104,7,255, 241,115,17,255, 248,125,27,255, 233,105,8,255, 234,107,10,255, 245,121,23,255, 247,123,25,255, 227,99,2,255, 231,103,6,255, 243,117,19,255, 243,117,19,255, 231,103,6,255, 228,100,3,255, 19,13,11,255, 19,13,11,255, 26,20,16,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 26,20,16,255, 19,13,11,255, 19,13,11,255, 34,26,19,255, 34,26,19,255, 46,37,28,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 46,37,28,255, 34,26,19,255, 34,26,19,255, 159,159,159,255, 152,152,152,255, 160,160,160,255, 156,156,156,255, 144,144,144,255, 156,156,156,255, 151,151,151,255, 148,148,148,255, 148,148,148,255, 148,148,148,255, 148,148,148,255, 154,154,154,255, 141,141,141,255, 143,143,143,255, 142,142,142,255, 96,96,96,255, 215,203,141,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,203,141,255, 215,203,141,255, 215,193,133,255, 200,183,122,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 186,169,115,255, 66,66,66,255, 66,66,66,255, 67,67,67,255, 67,67,67,255, 69,69,69,255, 72,72,72,255, 77,77,77,255, 78,78,78,255, 69,69,69,255, 78,78,78,255, 71,71,71,255, 69,69,69,255, 68,68,68,255, 66,66,66,255, 64,64,64,255, 63,63,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,60,60,255, 63,59,59,255, 68,64,64,255, 74,70,70,255, 75,71,71,255, 58,55,55,255, 74,70,70,255, 67,63,63,255, 63,59,59,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 237,230,173,255, 222,210,108,255, 237,230,173,255, 222,210,108,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 151,151,151,255, 0,0,0,0, 173,173,173,255, 159,159,159,255, 90,90,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 0,0,0,0, 171,171,171,255, 177,90,33,255, 180,91,34,255, 180,91,34,255, 176,89,34,255, 171,87,32,255, 171,87,32,255, 185,94,35,255, 178,90,34,255, 178,90,34,255, 185,94,35,255, 178,90,33,255, 178,90,34,255, 179,91,34,255, 185,94,35,255, 185,94,35,255, 179,91,34,255, 53,79,244,191, 47,69,244,182, 47,68,244,182, 46,66,244,177, 44,62,244,173, 44,61,244,173, 44,62,244,173, 45,64,244,175, 47,68,244,182, 46,66,244,177, 46,66,244,177, 47,69,244,182, 50,74,244,188, 56,86,245,199, 66,104,245,217, 70,113,245,223, 230,220,174,255, 193,186,113,255, 220,210,162,255, 224,214,165,255, 193,186,113,255, 213,202,156,255, 214,205,155,255, 193,186,113,255, 220,214,158,255, 221,214,161,255, 210,203,152,255, 213,205,155,255, 212,206,154,255, 193,186,113,255, 193,186,113,255, 231,224,176,255, 21,137,144,255, 21,141,147,255, 22,155,156,255, 22,155,156,255, 22,148,151,255, 21,144,148,255, 21,133,142,255, 21,132,142,255, 21,126,139,255, 21,122,138,255, 21,128,140,255, 21,132,142,255, 21,119,136,255, 21,123,138,255, 21,130,141,255, 21,134,143,255, 241,115,18,255, 245,120,22,255, 249,147,43,255, 249,147,43,255, 249,128,29,255, 247,123,25,255, 238,112,14,255, 238,111,14,255, 231,104,7,255, 228,100,3,255, 234,107,10,255, 238,111,14,255, 225,97,0,255, 229,101,4,255, 236,109,11,255, 239,113,15,255, 19,13,11,255, 40,32,28,255, 19,13,11,255, 46,22,4,255, 142,82,46,255, 72,38,16,255, 80,51,32,255, 26,20,16,255, 19,13,11,255, 81,67,57,255, 156,94,56,255, 61,32,11,255, 139,83,45,255, 19,13,11,255, 40,32,28,255, 19,13,11,255, 34,26,19,255, 68,58,48,255, 34,26,19,255, 79,47,7,255, 237,161,78,255, 235,188,139,255, 136,99,55,255, 46,37,28,255, 34,26,19,255, 138,120,96,255, 245,179,109,255, 103,67,20,255, 232,161,77,255, 34,26,19,255, 68,58,48,255, 34,26,19,255, 156,156,156,255, 136,136,136,255, 136,136,136,255, 136,136,136,255, 121,121,121,255, 106,106,106,255, 114,114,114,255, 114,114,114,255, 114,114,114,255, 106,106,106,255, 106,106,106,255, 127,127,127,255, 127,127,127,255, 127,127,127,255, 123,123,123,255, 97,97,97,255, 215,203,141,255, 215,203,141,255, 215,193,133,255, 184,168,117,255, 215,193,133,255, 215,193,133,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,193,133,255, 200,183,122,255, 215,193,133,255, 215,203,141,255, 186,169,115,255, 64,64,64,255, 67,67,67,255, 73,73,73,255, 74,74,74,255, 76,76,76,255, 77,77,77,255, 71,71,71,255, 72,72,72,255, 71,71,71,255, 77,77,77,255, 76,76,76,255, 74,74,74,255, 65,65,65,255, 68,68,68,255, 66,66,66,255, 60,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,69,69,255, 74,70,70,255, 74,70,70,255, 64,60,60,255, 64,60,60,255, 64,60,60,255, 74,70,70,255, 74,70,70,255, 73,69,69,255, 56,53,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,210,108,255, 237,230,173,255, 222,210,108,255, 222,210,108,255, 237,230,173,255, 222,210,108,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 38,55,58,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 34,47,52,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 135,135,135,255, 0,0,0,0, 187,187,187,255, 153,153,153,255, 0,0,0,0, 84,84,84,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 78,78,78,255, 0,0,0,0, 179,179,179,255, 180,180,180,255, 80,80,80,255, 0,0,0,0, 84,84,84,255, 175,88,32,255, 164,82,30,255, 166,84,30,255, 167,85,30,255, 166,84,30,255, 164,83,31,255, 161,82,30,255, 156,80,27,255, 163,84,29,255, 162,83,29,255, 165,84,30,255, 167,85,30,255, 161,83,29,255, 174,90,33,255, 174,90,34,255, 174,89,33,255, 43,60,244,173, 44,62,244,173, 43,60,244,170, 44,61,244,170, 45,64,244,175, 46,67,244,180, 46,66,244,177, 45,65,244,177, 45,64,244,177, 45,64,244,177, 44,61,244,170, 43,60,244,170, 43,60,244,173, 43,60,244,170, 44,61,244,173, 43,60,244,173, 202,197,137,255, 224,215,164,255, 219,211,159,255, 193,186,113,255, 193,186,113,255, 211,202,156,255, 206,197,147,255, 209,202,146,255, 193,186,113,255, 208,200,148,255, 206,199,145,255, 228,223,165,255, 193,186,113,255, 236,230,175,255, 224,217,163,255, 193,186,113,255, 22,148,151,255, 22,150,152,255, 21,132,142,255, 21,135,143,255, 22,154,154,255, 22,150,152,255, 21,139,145,255, 21,132,142,255, 21,144,148,255, 22,150,152,255, 21,143,148,255, 21,143,148,255, 22,154,155,255, 22,155,156,255, 21,144,148,255, 21,141,147,255, 249,128,29,255, 249,132,32,255, 238,111,14,255, 240,113,16,255, 249,142,39,255, 249,132,32,255, 243,118,20,255, 238,111,14,255, 247,123,25,255, 249,132,32,255, 246,123,24,255, 246,123,24,255, 249,144,40,255, 249,147,43,255, 247,123,25,255, 245,120,22,255, 26,20,16,255, 19,13,11,255, 79,42,17,255, 113,63,33,255, 119,67,35,255, 146,86,50,255, 72,38,16,255, 40,32,28,255, 19,13,11,255, 81,67,57,255, 139,80,45,255, 114,64,34,255, 78,43,20,255, 50,22,6,255, 19,13,11,255, 26,20,16,255, 46,37,28,255, 34,26,19,255, 134,86,31,255, 192,126,56,255, 229,193,154,255, 247,229,210,255, 124,81,30,255, 68,58,48,255, 34,26,19,255, 138,120,96,255, 232,158,77,255, 193,127,57,255, 134,89,35,255, 86,49,10,255, 34,26,19,255, 46,37,28,255, 144,144,144,255, 121,121,121,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 106,106,106,255, 115,115,115,255, 116,116,116,255, 93,93,93,255, 215,203,141,255, 215,203,141,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,193,133,255, 215,193,133,255, 184,168,117,255, 215,203,141,255, 215,203,141,255, 215,193,133,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 186,169,115,255, 64,64,64,255, 61,61,61,255, 67,67,67,255, 68,68,68,255, 66,66,66,255, 70,70,70,255, 71,71,71,255, 71,71,71,255, 77,77,77,255, 70,70,70,255, 72,72,72,255, 71,71,71,255, 69,69,69,255, 71,71,71,255, 64,64,64,255, 61,61,61,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,59,59,255, 58,54,54,255, 63,59,59,255, 63,59,59,255, 63,59,59,255, 60,57,57,255, 63,59,59,255, 68,63,64,255, 67,63,63,255, 66,62,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 211,195,57,255, 233,225,155,255, 211,195,57,255, 211,195,57,255, 233,225,155,255, 211,195,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 34,49,52,255, 93,107,107,255, 39,55,57,255, 44,62,64,255, 81,103,92,255, 39,55,57,255, 47,67,70,255, 112,128,127,255, 39,55,57,255, 39,55,57,255, 68,86,79,255, 36,50,52,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 34,47,52,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 34,47,52,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 143,143,143,255, 0,0,0,0, 81,81,81,255, 175,175,175,255, 162,162,162,255, 0,0,0,0, 158,158,158,255, 170,170,170,255, 95,95,95,255, 177,177,177,255, 148,148,148,255, 0,0,0,0, 176,176,176,255, 171,171,171,255, 151,78,25,255, 162,84,29,255, 161,82,27,255, 151,77,24,255, 154,79,24,255, 151,78,25,255, 154,80,26,255, 150,77,25,255, 151,78,25,255, 152,78,24,255, 149,75,23,255, 148,75,21,255, 157,80,25,255, 157,81,28,255, 148,76,26,255, 148,75,24,255, 45,65,244,177, 46,66,244,177, 45,63,244,175, 44,62,244,173, 43,60,244,170, 44,61,244,170, 43,60,244,170, 44,62,244,173, 46,67,244,180, 47,68,244,182, 49,73,244,186, 49,72,244,186, 49,73,244,186, 45,64,244,175, 45,63,244,175, 45,63,244,173, 202,197,137,255, 221,213,159,255, 193,186,113,255, 232,223,178,255, 232,223,178,255, 193,186,113,255, 217,209,157,255, 222,213,164,255, 208,202,139,255, 212,205,150,255, 215,208,154,255, 193,186,113,255, 232,223,178,255, 229,223,166,255, 216,208,158,255, 211,202,151,255, 21,137,144,255, 21,130,141,255, 21,146,149,255, 22,150,152,255, 21,132,142,255, 21,131,141,255, 21,136,144,255, 22,150,152,255, 21,127,140,255, 21,133,142,255, 22,150,152,255, 22,150,152,255, 21,137,144,255, 21,130,141,255, 22,155,156,255, 22,150,152,255, 241,115,18,255, 236,109,11,255, 248,125,26,255, 249,132,32,255, 238,111,14,255, 236,109,12,255, 241,115,17,255, 249,132,32,255, 233,105,8,255, 238,112,14,255, 249,132,32,255, 249,132,32,255, 241,115,18,255, 236,109,11,255, 249,147,43,255, 249,130,30,255, 19,13,11,255, 46,22,4,255, 119,67,35,255, 127,74,39,255, 146,86,50,255, 121,67,35,255, 48,24,6,255, 26,20,16,255, 19,13,11,255, 41,19,3,255, 132,75,40,255, 107,58,29,255, 110,63,34,255, 78,41,18,255, 75,40,17,255, 19,13,11,255, 34,26,19,255, 80,48,8,255, 198,130,58,255, 186,120,50,255, 247,229,210,255, 201,132,59,255, 83,50,11,255, 46,37,28,255, 34,26,19,255, 72,43,4,255, 221,148,70,255, 179,117,50,255, 255,255,255,255, 131,83,31,255, 126,82,30,255, 34,26,19,255, 151,151,151,255, 114,114,114,255, 93,93,93,255, 159,159,159,255, 151,151,151,255, 151,151,151,255, 151,151,151,255, 156,156,156,255, 151,151,151,255, 136,136,136,255, 156,156,156,255, 156,156,156,255, 96,96,96,255, 143,143,143,255, 118,118,118,255, 95,95,95,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 165,148,103,255, 165,148,103,255, 63,63,63,255, 67,67,67,255, 67,67,67,255, 70,70,70,255, 69,69,69,255, 67,67,67,255, 71,71,71,255, 75,75,75,255, 72,72,72,255, 71,71,71,255, 69,69,69,255, 68,68,68,255, 65,65,65,255, 64,64,64,255, 62,62,62,255, 61,61,61,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 68,64,64,255, 58,55,55,255, 67,63,63,255, 59,56,56,255, 81,77,77,255, 67,63,63,255, 63,59,59,255, 62,58,58,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 193,177,43,255, 222,210,108,255, 193,177,43,255, 193,177,43,255, 222,210,108,255, 193,177,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 74,94,85,255, 49,70,72,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 49,70,72,255, 44,62,64,255, 49,70,72,255, 44,62,64,255, 44,62,64,255, 44,62,64,255, 61,81,75,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 25,35,40,255, 47,66,70,255, 108,139,113,255, 36,54,56,255, 47,66,70,255, 146,162,158,255, 47,66,70,255, 36,54,56,255, 108,139,113,255, 36,54,56,255, 47,66,70,255, 108,139,113,255, 47,66,70,255, 21,31,35,255, 0,0,0,0, 0,0,0,0, 25,35,40,255, 36,54,56,255, 146,162,158,255, 36,54,56,255, 47,66,70,255, 108,139,113,255, 47,66,70,255, 36,54,56,255, 108,139,113,255, 36,54,56,255, 47,66,70,255, 108,139,113,255, 36,54,56,255, 21,31,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 138,138,138,255, 0,0,0,0, 171,171,171,255, 154,154,154,255, 79,79,79,255, 175,175,175,255, 139,139,139,255, 0,0,0,0, 173,173,173,255, 154,154,154,255, 154,78,27,255, 185,95,37,255, 175,89,34,255, 181,92,34,255, 154,79,24,255, 184,95,37,255, 185,94,35,255, 185,94,35,255, 177,90,35,255, 174,89,34,255, 145,73,21,255, 185,94,35,255, 174,89,34,255, 177,90,34,255, 185,94,35,255, 185,94,35,255, 45,64,244,177, 44,61,244,173, 43,60,244,170, 44,62,244,173, 45,65,244,177, 52,77,244,190, 50,73,244,186, 47,68,244,180, 47,68,244,182, 48,70,244,184, 51,76,244,190, 53,79,244,191, 47,69,244,182, 46,66,244,180, 47,68,244,180, 46,67,244,180, 217,209,157,255, 193,186,113,255, 232,223,178,255, 216,208,165,255, 215,207,153,255, 208,202,139,255, 236,227,180,255, 236,227,180,255, 193,186,113,255, 202,197,137,255, 202,197,137,255, 232,223,178,255, 226,218,165,255, 225,217,164,255, 217,209,159,255, 220,211,160,255, 21,141,147,255, 21,134,143,255, 21,127,140,255, 21,137,144,255, 21,146,149,255, 21,146,149,255, 21,121,137,255, 21,120,137,255, 21,129,141,255, 21,138,145,255, 21,128,140,255, 21,123,138,255, 21,146,149,255, 21,146,149,255, 21,125,139,255, 21,121,137,255, 245,120,22,255, 239,113,15,255, 233,105,8,255, 241,115,18,255, 248,125,27,255, 248,125,26,255, 227,99,2,255, 226,98,1,255, 235,107,10,255, 243,117,19,255, 234,107,10,255, 229,102,4,255, 248,125,27,255, 248,125,27,255, 231,103,6,255, 227,99,2,255, 19,13,11,255, 158,93,54,255, 141,82,47,255, 139,80,45,255, 121,67,35,255, 60,34,16,255, 26,20,16,255, 50,24,6,255, 77,51,33,255, 19,13,11,255, 73,39,17,255, 115,65,35,255, 140,80,44,255, 142,82,46,255, 141,84,49,255, 19,13,11,255, 34,26,19,255, 247,181,109,255, 235,160,78,255, 223,149,70,255, 241,166,88,255, 103,68,26,255, 46,37,28,255, 86,51,10,255, 132,97,56,255, 34,26,19,255, 125,84,31,255, 195,128,57,255, 250,210,169,255, 255,236,210,255, 234,161,83,255, 34,26,19,255, 148,148,148,255, 105,105,105,255, 93,93,93,255, 159,159,159,255, 115,115,115,255, 127,127,127,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 115,115,115,255, 115,115,115,255, 106,106,106,255, 96,96,96,255, 143,143,143,255, 121,121,121,255, 93,93,93,255, 215,203,141,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,203,141,255, 215,203,141,255, 186,169,115,255, 215,203,141,255, 200,183,122,255, 200,183,122,255, 184,168,117,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 215,203,141,255, 63,63,63,255, 69,69,69,255, 71,71,71,255, 67,67,67,255, 69,69,69,255, 69,69,69,255, 67,67,67,255, 67,67,67,255, 68,68,68,255, 68,68,68,255, 76,76,76,255, 73,73,73,255, 70,70,70,255, 71,71,71,255, 68,68,68,255, 56,56,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,59,58,255, 63,59,59,255, 63,59,59,255, 51,48,47,255, 76,73,73,255, 62,58,58,255, 51,48,48,255, 74,69,69,255, 73,69,69,255, 72,68,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 193,177,43,255, 215,200,75,255, 193,177,43,255, 193,177,43,255, 215,200,75,255, 193,177,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 46,64,66,255, 44,62,64,255, 39,55,57,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 44,62,64,255, 48,67,71,255, 44,62,64,255, 49,70,72,255, 44,62,64,255, 44,61,64,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 25,35,40,255, 30,45,46,255, 92,112,95,255, 30,44,46,255, 39,56,57,255, 92,112,95,255, 30,44,46,255, 30,44,46,255, 39,58,59,255, 30,44,46,255, 30,44,46,255, 94,115,99,255, 30,44,46,255, 21,31,35,255, 0,0,0,0, 0,0,0,0, 23,34,37,255, 31,45,47,255, 92,115,97,255, 30,44,46,255, 30,44,46,255, 122,134,130,255, 39,58,59,255, 30,44,46,255, 122,134,130,255, 30,44,46,255, 30,45,48,255, 41,57,59,255, 30,45,48,255, 21,31,35,255, 0,0,0,0, 0,0,0,0, 161,161,161,255, 160,160,160,255, 0,0,0,0, 0,0,0,0, 165,165,165,255, 82,82,82,255, 0,0,0,0, 153,153,153,255, 141,141,141,255, 0,0,0,0, 0,0,0,0, 141,141,141,255, 0,0,0,0, 147,147,147,255, 138,138,138,255, 154,79,24,255, 165,85,31,255, 165,84,29,255, 164,84,29,255, 154,79,24,255, 171,87,30,255, 175,89,32,255, 171,87,31,255, 165,84,29,255, 148,75,21,255, 173,88,33,255, 164,84,29,255, 168,86,30,255, 174,89,34,255, 164,83,30,255, 169,86,30,255, 44,62,244,173, 44,62,244,173, 45,64,244,175, 45,65,244,177, 47,68,244,180, 45,63,244,175, 44,62,244,173, 44,62,244,173, 45,63,244,175, 45,65,244,177, 44,62,244,173, 44,61,244,173, 44,62,244,173, 45,65,244,177, 48,70,244,182, 45,64,244,175, 215,207,153,255, 193,186,113,255, 214,206,154,255, 216,208,165,255, 216,208,165,255, 208,202,139,255, 193,186,113,255, 193,186,113,255, 228,221,166,255, 220,211,164,255, 217,208,159,255, 193,186,113,255, 213,203,155,255, 216,208,157,255, 207,198,150,255, 210,202,152,255, 21,123,138,255, 21,121,137,255, 21,127,140,255, 22,150,152,255, 21,127,140,255, 21,120,137,255, 21,126,139,255, 21,130,141,255, 21,127,140,255, 21,120,137,255, 21,130,141,255, 21,132,142,255, 21,122,138,255, 21,128,140,255, 21,126,139,255, 21,131,142,255, 229,101,4,255, 227,99,2,255, 233,106,9,255, 249,132,32,255, 233,105,8,255, 226,98,1,255, 232,104,7,255, 236,109,11,255, 233,105,8,255, 226,98,1,255, 236,109,11,255, 238,111,14,255, 228,100,3,255, 234,107,10,255, 231,104,7,255, 237,110,12,255, 19,13,11,255, 141,82,47,255, 144,85,50,255, 112,64,32,255, 71,39,17,255, 26,20,16,255, 79,52,33,255, 127,70,35,255, 142,76,36,255, 81,67,57,255, 19,13,11,255, 50,25,6,255, 140,80,44,255, 140,80,44,255, 169,115,79,255, 19,13,11,255, 34,26,19,255, 247,229,210,255, 240,165,86,255, 190,125,55,255, 121,77,30,255, 46,37,28,255, 135,101,56,255, 188,129,59,255, 237,153,62,255, 138,120,96,255, 34,26,19,255, 88,53,11,255, 234,158,74,255, 255,233,207,255, 255,211,155,255, 34,26,19,255, 147,147,147,255, 114,114,114,255, 93,93,93,255, 144,144,144,255, 110,110,110,255, 112,112,112,255, 108,108,108,255, 107,107,107,255, 116,116,116,255, 116,116,116,255, 127,127,127,255, 114,114,114,255, 91,91,91,255, 156,156,156,255, 115,115,115,255, 97,97,97,255, 200,183,122,255, 200,183,122,255, 184,168,117,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 215,203,141,255, 186,169,115,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 59,59,59,255, 62,62,62,255, 66,66,66,255, 69,69,69,255, 71,71,71,255, 66,66,66,255, 66,66,66,255, 68,68,68,255, 71,71,71,255, 65,65,65,255, 71,71,71,255, 68,68,68,255, 62,62,62,255, 64,64,64,255, 58,58,58,255, 61,61,61,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 67,63,63,255, 63,59,59,255, 50,47,47,255, 63,59,59,255, 67,63,63,255, 46,43,43,255, 67,63,63,255, 67,63,63,255, 49,46,46,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 40,58,61,255, 49,70,72,255, 39,55,57,255, 44,62,64,255, 48,67,71,255, 48,67,71,255, 49,70,72,255, 48,67,71,255, 49,70,72,255, 44,62,64,255, 49,70,72,255, 44,62,64,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 23,32,37,255, 32,46,48,255, 103,110,109,255, 26,37,39,255, 32,46,48,255, 32,46,48,255, 32,46,48,255, 32,46,48,255, 79,94,81,255, 32,46,48,255, 32,46,48,255, 103,110,109,255, 32,46,48,255, 20,29,34,255, 0,0,0,0, 0,0,0,0, 22,32,36,255, 31,44,45,255, 79,94,81,255, 32,46,48,255, 26,37,39,255, 26,37,39,255, 32,46,48,255, 32,46,48,255, 79,94,81,255, 32,46,48,255, 26,37,39,255, 32,46,48,255, 26,37,39,255, 20,29,34,255, 0,0,0,0, 0,0,0,0, 176,176,176,255, 134,134,134,255, 0,0,0,0, 79,79,79,255, 141,141,141,255, 93,93,93,255, 0,0,0,0, 82,82,82,255, 154,154,154,255, 0,0,0,0, 87,87,87,255, 0,0,0,0, 91,91,91,255, 0,0,0,0, 132,132,132,255, 164,84,31,255, 164,84,29,255, 164,84,29,255, 167,86,30,255, 154,79,24,255, 171,88,33,255, 169,86,31,255, 178,90,34,255, 171,87,31,255, 150,76,22,255, 173,88,33,255, 165,84,30,255, 167,84,30,255, 169,86,31,255, 168,86,32,255, 147,75,23,255, 43,60,244,170, 44,61,244,173, 45,64,244,175, 45,63,244,173, 45,64,244,175, 46,66,244,177, 50,74,244,188, 48,69,244,182, 48,69,244,184, 48,70,244,184, 51,76,244,190, 46,67,244,180, 45,64,244,175, 44,62,244,173, 44,61,244,173, 43,60,244,170, 193,186,113,255, 221,213,159,255, 216,209,158,255, 232,223,178,255, 214,207,153,255, 208,202,139,255, 193,186,113,255, 226,219,172,255, 193,186,113,255, 217,209,157,255, 225,217,164,255, 209,203,150,255, 202,197,137,255, 202,197,137,255, 232,223,178,255, 193,186,113,255, 22,155,156,255, 22,155,156,255, 21,148,150,255, 21,146,149,255, 21,136,144,255, 21,136,144,255, 21,134,143,255, 21,138,145,255, 22,148,151,255, 22,155,156,255, 21,142,147,255, 21,133,142,255, 22,155,156,255, 22,155,156,255, 21,144,148,255, 21,139,145,255, 249,147,43,255, 249,147,43,255, 249,127,28,255, 248,125,26,255, 241,115,17,255, 241,115,17,255, 239,113,15,255, 243,117,19,255, 249,128,29,255, 249,147,43,255, 245,121,23,255, 238,112,14,255, 249,147,43,255, 249,147,43,255, 247,123,25,255, 243,118,20,255, 19,13,11,255, 81,67,57,255, 117,66,35,255, 40,18,2,255, 26,20,16,255, 80,65,58,255, 132,78,46,255, 167,108,73,255, 151,103,71,255, 137,82,49,255, 74,38,16,255, 19,13,11,255, 50,22,6,255, 81,67,57,255, 73,39,17,255, 19,13,11,255, 34,26,19,255, 136,119,96,255, 196,129,58,255, 69,41,3,255, 46,37,28,255, 135,116,97,255, 222,144,60,255, 241,209,175,255, 218,201,183,255, 247,229,210,255, 126,79,27,255, 34,26,19,255, 86,49,10,255, 138,120,96,255, 125,81,28,255, 34,26,19,255, 141,141,141,255, 105,105,105,255, 93,93,93,255, 152,152,152,255, 127,127,127,255, 108,108,108,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 144,144,144,255, 127,127,127,255, 106,106,106,255, 91,91,91,255, 156,156,156,255, 120,120,120,255, 97,97,97,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,193,133,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 186,169,115,255, 200,183,122,255, 200,183,122,255, 184,168,117,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 64,64,64,255, 67,67,67,255, 65,65,65,255, 66,66,66,255, 67,67,67,255, 65,65,65,255, 72,72,72,255, 72,72,72,255, 70,70,70,255, 69,69,69,255, 70,70,70,255, 68,68,68,255, 68,68,68,255, 68,68,68,255, 66,66,66,255, 54,54,54,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 53,50,50,255, 50,47,47,255, 59,56,56,255, 72,69,69,255, 67,63,63,255, 80,77,77,255, 53,50,50,255, 53,50,50,255, 85,82,82,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 89,113,99,255, 49,70,72,255, 44,62,64,255, 39,55,57,255, 44,62,64,255, 48,67,71,255, 44,62,64,255, 44,62,64,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 66,89,84,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 0,0,0,0, 0,0,0,0, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 1,12,17,255, 0,0,0,0, 83,83,83,255, 148,148,148,255, 0,0,0,0, 80,80,80,255, 88,88,88,255, 0,0,0,0, 162,162,162,255, 167,167,167,255, 0,0,0,0, 0,0,0,0, 101,101,101,255, 0,0,0,0, 0,0,0,0, 82,82,82,255, 89,89,89,255, 92,92,92,255, 167,85,31,255, 158,81,26,255, 158,81,26,255, 154,80,26,255, 154,79,24,255, 155,80,26,255, 171,87,34,255, 173,89,34,255, 146,74,21,255, 150,76,22,255, 151,78,25,255, 172,88,33,255, 169,87,32,255, 164,84,30,255, 169,86,32,255, 147,75,23,255, 49,72,244,184, 46,67,244,180, 45,65,244,177, 45,65,244,177, 45,64,244,175, 45,64,244,177, 45,65,244,177, 46,66,244,180, 48,70,244,184, 48,70,244,184, 46,66,244,180, 46,66,244,177, 55,83,244,197, 57,86,245,200, 58,89,245,202, 50,73,244,186, 228,220,166,255, 193,186,113,255, 232,223,178,255, 208,202,139,255, 193,186,113,255, 193,186,113,255, 208,200,148,255, 208,200,147,255, 193,186,113,255, 224,216,164,255, 223,215,163,255, 222,213,162,255, 222,213,163,255, 231,223,168,255, 193,186,113,255, 230,222,168,255, 21,130,141,255, 21,130,141,255, 22,155,156,255, 22,155,156,255, 21,144,148,255, 21,142,147,255, 22,150,152,255, 22,150,152,255, 21,126,139,255, 21,128,140,255, 21,146,149,255, 22,150,152,255, 21,142,147,255, 21,141,147,255, 22,151,152,255, 22,150,152,255, 236,109,11,255, 236,109,11,255, 249,147,43,255, 249,147,43,255, 247,123,25,255, 245,121,23,255, 249,132,32,255, 249,130,30,255, 231,104,7,255, 234,107,10,255, 248,125,26,255, 249,132,32,255, 245,121,23,255, 245,120,22,255, 249,133,33,255, 249,130,30,255, 19,13,11,255, 26,20,16,255, 40,32,28,255, 26,20,16,255, 46,23,4,255, 115,67,35,255, 146,93,58,255, 151,103,71,255, 151,103,71,255, 153,100,65,255, 116,68,36,255, 38,17,2,255, 26,20,16,255, 40,32,28,255, 26,20,16,255, 19,13,11,255, 34,26,19,255, 46,37,28,255, 68,58,48,255, 46,37,28,255, 79,47,7,255, 193,131,59,255, 241,209,175,255, 241,207,162,255, 205,140,65,255, 195,132,59,255, 194,134,62,255, 66,38,2,255, 46,37,28,255, 68,58,48,255, 46,37,28,255, 34,26,19,255, 151,151,151,255, 114,114,114,255, 93,93,93,255, 144,144,144,255, 110,110,110,255, 108,108,108,255, 93,93,93,255, 95,95,95,255, 93,93,93,255, 153,153,153,255, 115,115,115,255, 106,106,106,255, 91,91,91,255, 156,156,156,255, 120,120,120,255, 93,93,93,255, 165,148,103,255, 165,148,103,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 165,148,103,255, 165,148,103,255, 59,59,59,255, 62,62,62,255, 64,64,64,255, 63,63,63,255, 64,64,64,255, 64,64,64,255, 66,66,66,255, 65,65,65,255, 66,66,66,255, 64,64,64,255, 65,65,65,255, 65,65,65,255, 63,63,63,255, 62,62,62,255, 62,62,62,255, 59,59,59,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,46,46,255, 75,72,72,255, 76,73,72,255, 76,73,73,255, 50,47,47,255, 62,58,58,255, 46,43,43,255, 75,71,72,255, 74,71,71,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 44,62,64,255, 49,70,72,255, 48,67,71,255, 44,62,64,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 39,55,57,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 48,67,71,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 2,14,20,255, 10,25,32,255, 2,14,20,255, 10,25,32,255, 2,14,20,255, 2,14,20,255, 2,14,20,255, 2,14,20,255, 10,25,32,255, 2,14,20,255, 2,14,20,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 2,14,20,255, 2,14,20,255, 16,30,38,255, 16,30,38,255, 8,42,43,255, 8,42,43,255, 16,30,38,255, 16,30,38,255, 2,14,20,255, 2,14,20,255, 10,25,32,255, 0,0,4,255, 0,0,0,0, 162,162,162,255, 182,182,182,255, 0,0,0,0, 166,166,166,255, 181,181,181,255, 88,88,88,255, 175,175,175,255, 145,145,145,255, 0,0,0,0, 168,168,168,255, 187,187,187,255, 83,83,83,255, 0,0,0,0, 82,82,82,255, 0,0,0,0, 98,98,98,255, 148,75,21,255, 184,94,36,255, 180,91,34,255, 177,90,34,255, 184,95,37,255, 180,92,36,255, 154,79,26,255, 151,78,25,255, 180,92,34,255, 180,92,34,255, 186,95,35,255, 151,78,25,255, 156,80,28,255, 154,79,24,255, 147,75,23,255, 181,93,36,255, 55,83,244,197, 66,104,245,217, 55,83,244,195, 47,69,244,182, 45,64,244,175, 45,65,244,177, 51,75,244,188, 47,68,244,180, 48,69,244,182, 47,68,244,182, 45,64,244,175, 45,64,244,175, 45,64,244,177, 47,68,244,180, 52,78,244,190, 51,75,244,188, 210,204,150,255, 209,201,147,255, 193,186,113,255, 219,210,161,255, 225,216,165,255, 226,217,167,255, 202,197,137,255, 215,207,157,255, 219,209,161,255, 193,186,113,255, 193,186,113,255, 217,208,157,255, 234,228,177,255, 193,186,113,255, 220,211,160,255, 212,206,150,255, 21,144,148,255, 21,143,148,255, 21,123,138,255, 21,129,141,255, 22,150,152,255, 21,142,147,255, 21,127,140,255, 21,131,141,255, 21,129,141,255, 21,132,142,255, 21,128,140,255, 21,122,138,255, 21,136,144,255, 21,133,142,255, 21,124,138,255, 21,123,138,255, 247,123,25,255, 246,123,24,255, 229,101,4,255, 235,107,10,255, 249,130,30,255, 245,121,23,255, 233,105,8,255, 236,109,12,255, 235,107,10,255, 238,111,14,255, 234,107,10,255, 228,100,3,255, 241,115,17,255, 238,112,14,255, 230,102,5,255, 229,102,4,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 79,51,31,255, 176,120,78,255, 155,96,61,255, 147,92,59,255, 176,116,80,255, 176,116,76,255, 141,85,47,255, 69,34,13,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 134,100,55,255, 255,220,161,255, 225,154,70,255, 198,137,65,255, 255,217,164,255, 255,216,156,255, 234,164,81,255, 118,72,22,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 141,141,141,255, 105,105,105,255, 93,93,93,255, 144,144,144,255, 121,121,121,255, 121,121,121,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 144,144,144,255, 127,127,127,255, 106,106,106,255, 91,91,91,255, 143,143,143,255, 120,120,120,255, 95,95,95,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 184,168,117,255, 200,183,122,255, 215,203,141,255, 215,203,141,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 186,169,115,255, 58,58,58,255, 64,64,64,255, 67,67,67,255, 59,59,59,255, 70,70,70,255, 63,63,63,255, 67,67,67,255, 67,67,67,255, 67,67,67,255, 71,71,71,255, 71,71,71,255, 70,70,70,255, 69,69,69,255, 67,67,67,255, 65,65,65,255, 62,62,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,67,67,255, 71,67,67,255, 61,57,57,255, 66,62,62,255, 80,76,76,255, 53,50,50,255, 86,82,82,255, 71,67,67,255, 71,67,67,255, 72,68,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 48,67,71,255, 49,70,72,255, 48,67,71,255, 48,67,71,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 48,67,71,255, 39,55,57,255, 44,62,64,255, 49,70,72,255, 48,67,71,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 4,18,25,255, 2,14,20,255, 10,25,32,255, 4,18,25,255, 10,25,32,255, 2,14,20,255, 10,25,32,255, 4,18,25,255, 10,25,32,255, 10,25,32,255, 10,25,32,255, 2,14,20,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 4,18,25,255, 16,30,38,255, 16,30,38,255, 60,107,96,255, 39,72,57,255, 39,72,57,255, 60,107,96,255, 16,30,38,255, 16,30,38,255, 2,14,20,255, 4,18,25,255, 0,0,4,255, 0,0,0,0, 184,184,184,255, 143,143,143,255, 0,0,0,0, 155,155,155,255, 148,148,148,255, 84,84,84,255, 151,151,151,255, 145,145,145,255, 0,0,0,0, 148,148,148,255, 145,145,145,255, 0,0,0,0, 0,0,0,0, 187,187,187,255, 158,158,158,255, 86,86,86,255, 181,93,36,255, 166,85,31,255, 174,88,33,255, 167,84,30,255, 168,86,30,255, 151,77,23,255, 180,92,34,255, 177,91,35,255, 167,85,32,255, 166,85,29,255, 173,88,32,255, 159,82,26,255, 185,94,35,255, 179,91,34,255, 151,77,24,255, 181,93,36,255, 61,94,245,207, 60,93,245,207, 54,81,244,195, 50,74,244,188, 56,85,245,199, 63,98,245,210, 55,84,244,197, 50,74,244,188, 48,70,244,182, 49,72,244,184, 47,68,244,182, 49,72,244,184, 51,75,244,190, 47,69,244,182, 48,69,244,182, 54,81,244,195, 214,207,153,255, 218,212,154,255, 202,197,137,255, 208,201,148,255, 219,210,160,255, 221,212,163,255, 192,186,120,255, 208,200,149,255, 226,218,165,255, 212,205,151,255, 207,199,145,255, 193,186,113,255, 197,189,117,255, 202,197,137,255, 224,217,166,255, 214,207,154,255, 21,129,141,255, 21,133,142,255, 21,131,142,255, 22,148,151,255, 21,120,137,255, 21,121,137,255, 21,133,142,255, 21,140,146,255, 21,127,140,255, 21,141,147,255, 22,155,156,255, 22,155,156,255, 21,135,143,255, 21,143,148,255, 22,155,156,255, 22,155,156,255, 235,107,10,255, 238,112,14,255, 237,110,12,255, 249,128,29,255, 226,98,1,255, 227,99,2,255, 238,112,14,255, 244,119,22,255, 233,105,8,255, 245,120,22,255, 249,147,43,255, 249,147,43,255, 240,113,16,255, 246,123,24,255, 249,147,43,255, 249,147,43,255, 19,13,11,255, 77,66,55,255, 78,53,34,255, 46,23,6,255, 19,13,11,255, 81,67,57,255, 170,117,82,255, 143,89,57,255, 168,102,62,255, 176,116,76,255, 69,34,13,255, 19,13,11,255, 71,39,17,255, 81,67,57,255, 79,51,31,255, 19,13,11,255, 34,26,19,255, 134,118,92,255, 134,101,57,255, 79,48,9,255, 34,26,19,255, 138,120,96,255, 255,217,163,255, 189,129,58,255, 233,163,80,255, 247,229,210,255, 254,205,147,255, 34,26,19,255, 120,78,28,255, 138,120,96,255, 134,99,53,255, 34,26,19,255, 148,148,148,255, 105,105,105,255, 93,93,93,255, 144,144,144,255, 110,110,110,255, 121,121,121,255, 150,150,150,255, 153,153,153,255, 150,150,150,255, 144,144,144,255, 115,115,115,255, 106,106,106,255, 91,91,91,255, 151,151,151,255, 118,118,118,255, 93,93,93,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,203,141,255, 215,193,133,255, 215,193,133,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 184,168,117,255, 215,203,141,255, 200,183,122,255, 200,183,122,255, 186,169,115,255, 57,57,57,255, 57,57,57,255, 60,60,60,255, 61,61,61,255, 63,63,63,255, 62,62,62,255, 62,62,62,255, 66,66,66,255, 62,62,62,255, 66,66,66,255, 66,66,66,255, 62,62,62,255, 62,62,62,255, 60,60,60,255, 64,64,64,255, 57,57,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 61,57,57,255, 61,57,57,255, 66,62,62,255, 44,42,42,255, 65,61,61,255, 65,61,61,255, 60,56,56,255, 61,57,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 75,100,92,255, 49,70,72,255, 48,67,71,255, 44,62,64,255, 39,55,57,255, 48,67,71,255, 49,70,72,255, 41,58,59,255, 39,55,57,255, 39,55,57,255, 44,62,64,255, 49,70,72,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 4,18,25,255, 2,14,20,255, 10,25,32,255, 10,25,32,255, 4,18,25,255, 2,14,20,255, 10,25,32,255, 4,18,25,255, 10,25,32,255, 4,18,25,255, 10,25,32,255, 2,14,20,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 10,25,32,255, 16,30,38,255, 8,42,43,255, 221,253,240,255, 85,107,93,255, 23,49,30,255, 98,155,106,255, 8,42,43,255, 16,30,38,255, 10,25,32,255, 4,18,25,255, 0,0,4,255, 0,0,0,0, 141,141,141,255, 78,78,78,255, 0,0,0,0, 89,89,89,255, 141,141,141,255, 0,0,0,0, 154,154,154,255, 0,0,0,0, 86,86,86,255, 0,0,0,0, 149,149,149,255, 0,0,0,0, 86,86,86,255, 172,172,172,255, 146,146,146,255, 0,0,0,0, 163,84,29,255, 171,88,32,255, 171,88,32,255, 171,88,32,255, 167,84,30,255, 150,76,22,255, 178,90,34,255, 168,86,32,255, 172,88,33,255, 169,87,32,255, 163,83,30,255, 147,74,21,255, 175,89,33,255, 171,88,32,255, 148,76,23,255, 170,87,32,255, 43,60,244,173, 43,60,244,173, 43,60,244,170, 43,60,244,170, 43,60,244,170, 43,60,244,170, 43,59,244,170, 43,59,244,170, 43,60,244,170, 44,61,244,173, 43,60,244,170, 44,61,244,173, 44,61,244,173, 45,64,244,175, 44,62,244,173, 44,62,244,173, 210,203,148,255, 193,186,113,255, 212,205,150,255, 211,204,152,255, 223,214,164,255, 225,216,165,255, 193,186,113,255, 218,211,160,255, 221,213,160,255, 215,207,153,255, 193,186,113,255, 236,227,180,255, 221,214,165,255, 202,197,137,255, 225,218,166,255, 221,214,157,255, 22,150,152,255, 22,151,152,255, 21,144,148,255, 21,144,148,255, 22,155,156,255, 22,150,152,255, 21,144,148,255, 21,142,147,255, 22,151,152,255, 22,148,151,255, 21,132,142,255, 21,138,145,255, 21,141,147,255, 21,136,144,255, 21,125,139,255, 21,137,144,255, 249,130,30,255, 249,133,33,255, 247,123,25,255, 247,123,25,255, 249,147,43,255, 249,132,32,255, 247,123,25,255, 245,121,23,255, 249,133,33,255, 249,128,29,255, 238,111,14,255, 243,117,19,255, 245,120,22,255, 241,115,17,255, 231,103,6,255, 241,115,18,255, 19,13,11,255, 61,39,23,255, 137,76,43,255, 112,60,32,255, 48,23,6,255, 19,13,11,255, 72,39,14,255, 69,34,13,255, 115,67,35,255, 63,39,25,255, 19,13,11,255, 102,56,28,255, 110,60,30,255, 129,73,39,255, 139,81,43,255, 19,13,11,255, 34,26,19,255, 103,77,39,255, 231,151,73,255, 188,119,53,255, 84,50,10,255, 34,26,19,255, 121,80,25,255, 158,104,42,255, 195,129,59,255, 109,77,42,255, 34,26,19,255, 172,112,47,255, 185,120,51,255, 247,229,210,255, 234,158,74,255, 34,26,19,255, 151,151,151,255, 114,114,114,255, 93,93,93,255, 156,156,156,255, 115,115,115,255, 121,121,121,255, 136,136,136,255, 115,115,115,255, 136,136,136,255, 115,115,115,255, 115,115,115,255, 106,106,106,255, 91,91,91,255, 151,151,151,255, 122,122,122,255, 96,96,96,255, 215,203,141,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 215,203,141,255, 215,203,141,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 215,193,133,255, 186,169,115,255, 57,57,57,255, 59,59,59,255, 65,65,65,255, 61,61,61,255, 62,62,62,255, 68,68,68,255, 67,67,67,255, 61,61,61,255, 59,59,59,255, 62,62,62,255, 69,69,69,255, 68,68,68,255, 67,67,67,255, 62,62,62,255, 59,59,59,255, 57,57,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 71,67,67,255, 71,67,67,255, 61,57,57,255, 44,42,42,255, 60,56,56,255, 71,67,67,255, 71,67,67,255, 71,67,67,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 48,67,71,255, 49,70,72,255, 39,55,57,255, 39,55,57,255, 44,62,64,255, 39,55,57,255, 48,67,71,255, 39,55,57,255, 39,55,57,255, 39,55,57,255, 44,62,64,255, 47,66,70,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 2,14,20,255, 2,14,20,255, 10,25,32,255, 4,18,25,255, 2,14,20,255, 2,14,20,255, 10,25,32,255, 10,25,32,255, 2,14,20,255, 10,25,32,255, 2,14,20,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 2,14,20,255, 8,42,43,255, 33,68,53,255, 149,205,148,255, 0,0,0,255, 0,0,0,255, 116,183,107,255, 33,68,53,255, 8,42,43,255, 10,25,32,255, 2,14,20,255, 0,0,4,255, 0,0,0,0, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,75,75,255, 88,88,88,255, 0,0,0,0, 169,169,169,255, 171,171,171,255, 0,0,0,0, 0,0,0,0, 88,88,88,255, 153,153,153,255, 0,0,0,0, 0,0,0,0, 148,75,22,255, 151,77,23,255, 151,77,23,255, 151,77,23,255, 163,83,29,255, 156,80,25,255, 166,85,29,255, 166,85,29,255, 175,90,34,255, 166,85,29,255, 167,86,30,255, 154,78,25,255, 169,87,33,255, 151,77,22,255, 151,77,22,255, 147,74,21,255, 45,64,244,175, 45,63,244,175, 44,62,244,173, 44,62,244,173, 44,62,244,173, 45,64,244,175, 44,62,244,173, 44,62,244,175, 44,62,244,175, 45,64,244,175, 47,68,244,180, 49,72,244,184, 45,65,244,177, 45,64,244,177, 47,69,244,182, 45,65,244,177, 193,186,113,255, 236,227,180,255, 236,227,180,255, 225,217,162,255, 216,208,159,255, 225,216,165,255, 227,218,166,255, 193,186,113,255, 212,204,152,255, 236,227,180,255, 193,186,113,255, 236,227,180,255, 220,211,163,255, 193,186,113,255, 220,213,160,255, 219,212,160,255, 21,125,139,255, 21,127,140,255, 21,140,146,255, 21,140,146,255, 21,130,141,255, 21,131,141,255, 21,146,149,255, 21,143,148,255, 21,126,139,255, 21,127,140,255, 21,129,141,255, 21,141,147,255, 21,121,137,255, 21,121,137,255, 21,131,142,255, 21,141,147,255, 231,103,6,255, 233,105,8,255, 244,119,22,255, 244,119,22,255, 236,109,11,255, 236,109,12,255, 248,125,27,255, 246,123,24,255, 231,104,7,255, 233,105,8,255, 235,107,10,255, 245,120,22,255, 227,99,2,255, 226,99,2,255, 237,110,12,255, 245,120,22,255, 19,13,11,255, 77,38,15,255, 82,41,16,255, 137,88,55,255, 141,89,57,255, 50,25,6,255, 19,13,11,255, 37,17,1,255, 65,34,11,255, 19,13,11,255, 50,25,8,255, 133,76,41,255, 176,117,78,255, 129,73,39,255, 107,58,31,255, 19,13,11,255, 34,26,19,255, 131,83,26,255, 139,86,30,255, 178,119,49,255, 188,119,53,255, 88,53,11,255, 34,26,19,255, 66,39,2,255, 108,69,19,255, 34,26,19,255, 88,54,13,255, 222,148,69,255, 216,142,65,255, 216,143,67,255, 183,119,51,255, 34,26,19,255, 156,156,156,255, 115,115,115,255, 93,93,93,255, 156,156,156,255, 105,105,105,255, 114,114,114,255, 114,114,114,255, 105,105,105,255, 105,105,105,255, 106,106,106,255, 106,106,106,255, 106,106,106,255, 91,91,91,255, 143,143,143,255, 118,118,118,255, 95,95,95,255, 165,148,103,255, 158,139,97,255, 165,148,103,255, 165,148,103,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 158,139,97,255, 158,139,97,255, 158,139,97,255, 165,148,103,255, 51,51,51,255, 59,59,59,255, 61,61,61,255, 63,63,63,255, 61,61,61,255, 63,63,63,255, 62,62,62,255, 61,61,61,255, 65,65,65,255, 65,65,65,255, 63,63,63,255, 63,63,63,255, 63,63,63,255, 65,65,65,255, 63,63,63,255, 52,52,52,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,61,61,255, 60,56,56,255, 52,48,48,255, 52,48,48,255, 52,48,48,255, 84,81,81,255, 71,67,67,255, 64,60,60,255, 64,60,60,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 41,59,62,255, 44,62,64,255, 39,55,57,255, 48,67,71,255, 48,67,71,255, 48,67,71,255, 39,55,57,255, 49,70,72,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 39,57,59,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 19,34,35,255, 2,14,20,255, 2,14,20,255, 19,34,35,255, 10,25,32,255, 2,14,20,255, 2,14,20,255, 2,14,20,255, 10,25,32,255, 2,14,20,255, 10,25,32,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 4,18,25,255, 9,21,27,255, 8,42,43,255, 33,68,53,255, 116,183,107,255, 0,0,0,255, 0,0,0,255, 116,183,107,255, 33,68,53,255, 8,42,43,255, 26,41,44,255, 2,14,20,255, 0,0,4,255, 0,0,0,0, 173,173,173,255, 0,0,0,0, 173,173,173,255, 180,180,180,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 153,153,153,255, 0,0,0,0, 171,171,171,255, 135,135,135,255, 0,0,0,0, 81,81,81,255, 169,169,169,255, 183,93,35,255, 183,93,35,255, 183,93,35,255, 172,88,32,255, 153,78,25,255, 144,73,21,255, 151,76,22,255, 151,76,22,255, 166,85,29,255, 148,76,22,255, 148,76,22,255, 179,92,35,255, 151,77,22,255, 173,88,31,255, 181,92,36,255, 181,92,36,255, 44,62,244,173, 44,61,244,170, 44,61,244,173, 44,61,244,170, 43,60,244,173, 43,60,244,173, 43,60,244,173, 43,60,244,170, 43,59,244,170, 43,60,244,170, 43,60,244,170, 43,60,244,170, 44,61,244,173, 45,63,244,175, 44,62,244,173, 45,64,244,175, 223,214,164,255, 202,197,137,255, 193,186,113,255, 225,218,171,255, 202,197,137,255, 202,197,137,255, 193,186,113,255, 211,205,151,255, 210,203,145,255, 193,186,113,255, 236,227,180,255, 219,212,155,255, 213,205,150,255, 223,216,161,255, 193,186,113,255, 202,197,137,255, 21,131,141,255, 21,130,141,255, 21,120,137,255, 21,121,137,255, 22,150,152,255, 22,154,154,255, 21,123,138,255, 21,120,137,255, 21,136,144,255, 21,146,149,255, 21,138,145,255, 21,143,148,255, 22,155,156,255, 22,155,156,255, 21,141,147,255, 21,122,138,255, 236,109,12,255, 236,109,11,255, 226,98,1,255, 227,99,2,255, 249,130,30,255, 249,142,39,255, 229,102,4,255, 226,98,1,255, 241,115,17,255, 248,125,27,255, 243,117,19,255, 246,123,24,255, 249,147,43,255, 249,147,43,255, 245,120,22,255, 228,100,3,255, 19,13,11,255, 65,34,11,255, 139,84,47,255, 115,64,33,255, 170,117,82,255, 135,78,47,255, 50,25,6,255, 26,20,16,255, 19,13,11,255, 52,29,12,255, 132,76,42,255, 111,61,31,255, 176,117,78,255, 173,117,83,255, 133,78,45,255, 19,13,11,255, 34,26,19,255, 255,209,151,255, 233,163,80,255, 194,130,56,255, 255,217,163,255, 247,214,174,255, 88,53,11,255, 46,37,28,255, 34,26,19,255, 91,60,21,255, 221,149,72,255, 187,123,54,255, 247,201,138,255, 255,237,210,255, 223,152,77,255, 34,26,19,255, 148,148,148,255, 121,121,121,255, 106,106,106,255, 93,93,93,255, 91,91,91,255, 91,91,91,255, 91,91,91,255, 91,91,91,255, 91,91,91,255, 91,91,91,255, 91,91,91,255, 91,91,91,255, 91,91,91,255, 151,151,151,255, 115,115,115,255, 93,93,93,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 200,183,122,255, 215,203,141,255, 186,169,115,255, 200,183,122,255, 184,168,117,255, 200,183,122,255, 200,183,122,255, 215,193,133,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 57,57,57,255, 57,57,57,255, 59,59,59,255, 60,60,60,255, 61,61,61,255, 59,59,59,255, 58,58,58,255, 58,58,58,255, 64,64,64,255, 65,65,65,255, 60,60,60,255, 60,60,60,255, 61,61,61,255, 59,59,59,255, 58,58,58,255, 58,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 74,71,71,255, 74,70,70,255, 74,70,70,255, 57,53,53,255, 70,66,66,255, 60,56,56,255, 60,56,56,255, 60,56,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 62,82,76,255, 48,67,71,255, 49,70,72,255, 49,70,72,255, 49,70,72,255, 48,67,71,255, 44,62,64,255, 44,62,64,255, 49,70,72,255, 44,62,64,255, 49,70,72,255, 62,82,76,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 4,18,25,255, 19,34,35,255, 4,18,25,255, 10,25,32,255, 62,74,75,255, 9,21,29,255, 1,11,17,255, 17,30,32,255, 1,11,17,255, 9,21,29,255, 19,31,32,255, 10,25,32,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 2,14,20,255, 18,34,36,255, 16,30,38,255, 8,42,43,255, 98,155,106,255, 23,49,30,255, 23,49,30,255, 98,155,106,255, 8,42,43,255, 16,30,38,255, 26,41,44,255, 10,25,32,255, 0,0,4,255, 0,0,0,0, 138,138,138,255, 0,0,0,0, 178,178,178,255, 153,153,153,255, 0,0,0,0, 172,172,172,255, 179,179,179,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 148,148,148,255, 144,144,144,255, 0,0,0,0, 78,78,78,255, 164,164,164,255, 178,91,34,255, 177,90,35,255, 172,88,32,255, 156,80,26,255, 180,92,34,255, 183,93,35,255, 180,92,34,255, 180,92,34,255, 148,76,22,255, 180,93,37,255, 177,90,34,255, 167,85,32,255, 154,79,26,255, 176,90,34,255, 175,90,35,255, 171,88,33,255, 43,60,244,173, 44,61,244,173, 44,62,244,175, 44,61,244,173, 44,61,244,173, 44,62,244,173, 44,61,244,173, 44,61,244,173, 44,61,244,170, 44,61,244,173, 44,62,244,173, 45,64,244,175, 45,63,244,175, 44,61,244,170, 43,60,244,170, 44,61,244,173, 226,217,166,255, 225,215,165,255, 236,227,180,255, 193,186,113,255, 193,186,113,255, 217,210,164,255, 219,210,158,255, 193,186,113,255, 213,206,151,255, 202,197,137,255, 217,210,157,255, 218,210,161,255, 224,216,163,255, 193,186,113,255, 232,223,178,255, 220,211,160,255, 21,143,148,255, 21,142,147,255, 22,154,155,255, 22,155,156,255, 22,150,152,255, 21,144,148,255, 21,138,145,255, 21,132,142,255, 21,120,137,255, 21,135,143,255, 21,143,148,255, 22,150,152,255, 21,134,143,255, 21,135,143,255, 22,150,152,255, 22,155,156,255, 246,123,24,255, 245,121,23,255, 249,144,40,255, 249,147,43,255, 249,130,30,255, 247,123,25,255, 243,117,19,255, 238,111,14,255, 226,98,1,255, 240,113,16,255, 246,123,24,255, 249,132,32,255, 239,113,15,255, 240,113,16,255, 249,132,32,255, 249,147,43,255, 26,20,16,255, 19,13,11,255, 65,34,11,255, 111,63,31,255, 135,78,47,255, 135,78,47,255, 79,51,33,255, 40,32,28,255, 19,13,11,255, 81,66,57,255, 176,118,80,255, 107,60,31,255, 137,77,45,255, 65,34,11,255, 19,13,11,255, 26,20,16,255, 46,37,28,255, 34,26,19,255, 255,216,163,255, 186,125,53,255, 224,149,82,255, 247,229,210,255, 135,99,56,255, 68,58,48,255, 34,26,19,255, 136,117,96,255, 255,220,165,255, 183,119,51,255, 230,152,77,255, 247,229,210,255, 34,26,19,255, 46,37,28,255, 147,147,147,255, 136,136,136,255, 136,136,136,255, 151,151,151,255, 151,151,151,255, 136,136,136,255, 156,156,156,255, 156,156,156,255, 143,143,143,255, 151,151,151,255, 136,136,136,255, 151,151,151,255, 151,151,151,255, 131,131,131,255, 115,115,115,255, 97,97,97,255, 215,193,133,255, 200,183,122,255, 184,168,117,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 186,169,115,255, 215,203,141,255, 215,193,133,255, 215,193,133,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,193,133,255, 57,57,57,255, 62,62,62,255, 65,65,65,255, 66,66,66,255, 67,67,67,255, 65,65,65,255, 61,61,61,255, 59,59,59,255, 59,59,59,255, 59,59,59,255, 56,56,56,255, 60,60,60,255, 63,63,63,255, 62,62,62,255, 63,63,63,255, 61,61,61,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 71,67,67,255, 70,66,66,255, 70,66,66,255, 64,60,60,255, 59,55,55,255, 74,69,70,255, 59,55,55,255, 54,51,51,255, 59,55,55,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,35,40,255, 35,48,50,255, 72,90,82,255, 43,59,63,255, 48,67,71,255, 74,99,90,255, 48,67,71,255, 44,62,64,255, 73,98,90,255, 49,67,70,255, 44,62,64,255, 61,81,75,255, 39,55,57,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,7,12,255, 0,9,14,255, 40,56,52,255, 2,12,18,255, 7,18,25,255, 39,55,50,255, 0,8,13,255, 0,8,13,255, 53,63,64,255, 7,18,25,255, 0,8,13,255, 13,26,27,255, 1,11,17,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 65,77,79,255, 16,30,38,255, 16,30,38,255, 60,107,96,255, 39,72,57,255, 39,72,57,255, 60,107,96,255, 16,30,38,255, 16,30,38,255, 18,34,36,255, 10,25,32,255, 0,0,4,255, 0,0,0,0, 147,147,147,255, 0,0,0,0, 90,90,90,255, 146,146,146,255, 0,0,0,0, 165,165,165,255, 139,139,139,255, 0,0,0,0, 0,0,0,0, 81,81,81,255, 0,0,0,0, 148,148,148,255, 79,79,79,255, 174,174,174,255, 171,171,171,255, 0,0,0,0, 176,90,34,255, 177,90,35,255, 163,83,29,255, 151,77,23,255, 164,83,30,255, 165,84,31,255, 167,84,30,255, 169,87,32,255, 148,76,22,255, 164,84,31,255, 164,84,29,255, 163,83,29,255, 147,74,21,255, 174,90,34,255, 171,87,32,255, 166,84,31,255, 45,65,244,177, 44,62,244,173, 44,62,244,173, 45,63,244,173, 45,63,244,175, 45,64,244,175, 47,69,244,180, 46,66,244,180, 45,64,244,175, 46,66,244,177, 50,73,244,186, 52,77,244,190, 45,65,244,177, 45,63,244,173, 45,64,244,175, 44,62,244,173, 226,219,164,255, 224,217,163,255, 215,207,154,255, 236,227,180,255, 193,186,113,255, 221,214,166,255, 212,204,155,255, 193,186,113,255, 202,197,137,255, 193,186,113,255, 202,197,137,255, 220,212,162,255, 193,186,113,255, 232,223,178,255, 217,209,158,255, 222,214,162,255, 22,154,154,255, 22,153,153,255, 21,137,144,255, 21,133,142,255, 22,150,152,255, 21,138,145,255, 21,141,147,255, 21,146,149,255, 22,155,156,255, 22,148,151,255, 21,128,140,255, 21,129,141,255, 21,139,145,255, 21,143,148,255, 21,131,141,255, 21,126,139,255, 249,142,39,255, 249,138,37,255, 241,115,18,255, 238,112,14,255, 249,132,32,255, 243,117,19,255, 245,120,22,255, 248,125,26,255, 249,147,43,255, 249,128,29,255, 234,107,10,255, 235,107,10,255, 243,118,20,255, 246,123,24,255, 236,109,12,255, 231,104,7,255, 19,13,11,255, 40,32,28,255, 19,13,11,255, 65,34,11,255, 75,43,19,255, 85,55,35,255, 75,39,17,255, 26,20,16,255, 19,13,11,255, 81,67,57,255, 133,83,47,255, 64,33,12,255, 71,37,17,255, 19,13,11,255, 40,32,28,255, 19,13,11,255, 34,26,19,255, 68,58,48,255, 34,26,19,255, 109,70,20,255, 128,86,32,255, 144,103,59,255, 126,82,30,255, 46,37,28,255, 34,26,19,255, 138,120,96,255, 223,160,79,255, 109,69,22,255, 121,76,30,255, 34,26,19,255, 68,58,48,255, 34,26,19,255, 138,138,138,255, 116,116,116,255, 122,122,122,255, 120,120,120,255, 118,118,118,255, 118,118,118,255, 115,115,115,255, 115,115,115,255, 115,115,115,255, 115,115,115,255, 115,115,115,255, 118,118,118,255, 115,115,115,255, 121,121,121,255, 120,120,120,255, 98,98,98,255, 215,203,141,255, 215,203,141,255, 200,183,122,255, 200,183,122,255, 200,183,122,255, 215,203,141,255, 215,203,141,255, 186,169,115,255, 215,203,141,255, 215,203,141,255, 200,183,122,255, 215,193,133,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 215,203,141,255, 57,57,57,255, 59,59,59,255, 61,61,61,255, 60,60,60,255, 61,61,61,255, 59,59,59,255, 59,59,59,255, 59,59,59,255, 62,62,62,255, 62,62,62,255, 66,66,66,255, 66,66,66,255, 63,63,63,255, 59,59,59,255, 57,57,57,255, 58,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 60,56,56,255, 59,55,55,255, 59,55,55,255, 63,59,59,255, 63,59,59,255, 69,65,65,255, 70,66,66,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 34,47,52,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 25,35,40,255, 0,0,0,0, 0,0,0,0, 0,4,9,255, 0,8,13,255, 38,54,49,255, 7,18,25,255, 7,18,25,255, 13,26,27,255, 0,8,13,255, 7,18,25,255, 38,54,49,255, 7,18,25,255, 0,8,13,255, 53,64,66,255, 1,11,17,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 10,25,32,255, 50,68,63,255, 2,14,20,255, 16,30,38,255, 102,127,110,255, 39,63,64,255, 39,63,64,255, 102,127,110,255, 16,30,38,255, 2,14,20,255, 61,76,75,255, 2,14,20,255, 0,0,4,255, 0,0,0,0, 102,102,102,255, 0,0,0,0, 0,0,0,0, 90,90,90,255, 92,92,92,255, 134,134,134,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,100,100,255, 80,80,80,255, 149,149,149,255, 0,0,0,0, 178,178,178,255, 146,146,146,255, 88,88,88,255, 157,80,27,255, 151,78,25,255, 174,88,33,255, 154,80,26,255, 167,85,31,255, 177,90,34,255, 170,87,33,255, 145,74,22,255, 176,90,34,255, 154,78,24,255, 171,87,32,255, 173,88,32,255, 151,78,25,255, 143,72,21,255, 171,87,30,255, 145,74,21,255, 44,62,244,173, 44,62,244,173, 44,62,244,173, 44,62,244,173, 44,62,244,173, 45,63,244,173, 44,62,244,175, 45,64,244,175, 46,67,244,180, 52,77,244,190, 63,98,245,210, 61,95,245,208, 66,104,245,217, 51,75,244,188, 46,66,244,180, 45,63,244,175, 226,218,168,255, 220,212,162,255, 221,213,159,255, 193,186,113,255, 219,209,161,255, 227,217,168,255, 218,208,158,255, 193,186,113,255, 223,215,163,255, 219,210,161,255, 216,207,156,255, 193,186,113,255, 216,209,157,255, 221,214,165,255, 220,214,163,255, 228,221,169,255, 21,122,138,255, 21,127,140,255, 22,150,152,255, 21,139,145,255, 21,126,139,255, 21,131,141,255, 22,150,152,255, 22,154,155,255, 21,134,143,255, 21,130,141,255, 21,142,147,255, 22,150,152,255, 21,126,139,255, 21,127,140,255, 22,148,151,255, 22,150,152,255, 228,100,3,255, 233,105,8,255, 249,130,30,255, 243,118,20,255, 231,104,7,255, 236,109,12,255, 249,132,32,255, 249,144,40,255, 239,113,15,255, 236,109,11,255, 245,121,23,255, 249,130,30,255, 231,104,7,255, 233,105,8,255, 249,128,29,255, 249,132,32,255, 19,13,11,255, 19,13,11,255, 26,20,16,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 19,13,11,255, 26,20,16,255, 19,13,11,255, 19,13,11,255, 34,26,19,255, 34,26,19,255, 46,37,28,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 34,26,19,255, 46,37,28,255, 34,26,19,255, 34,26,19,255, 93,93,93,255, 94,94,94,255, 98,98,98,255, 96,96,96,255, 95,95,95,255, 93,93,93,255, 93,93,93,255, 93,93,93,255, 96,96,96,255, 96,96,96,255, 95,95,95,255, 95,95,95,255, 95,95,95,255, 95,95,95,255, 93,93,93,255, 93,93,93,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 174,152,105,255, 158,139,97,255, 158,139,97,255, 174,152,105,255, 158,139,97,255, 165,148,103,255, 165,148,103,255, 165,148,103,255, 158,139,97,255, 142,129,94,255, 158,139,97,255, 158,139,97,255, 165,148,103,255, 55,55,55,255, 57,57,57,255, 59,59,59,255, 61,61,61,255, 58,58,58,255, 66,66,66,255, 65,65,65,255, 61,61,61,255, 61,61,61,255, 61,61,61,255, 62,62,62,255, 60,60,60,255, 61,61,61,255, 60,60,60,255, 60,60,60,255, 58,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 55,52,52,255, 70,66,66,255, 70,66,66,255, 63,59,59,255, 63,59,59,255, 64,60,60,255, 64,60,59,255, 59,55,55,255, 59,55,55,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,7,12,255, 0,0,2,255, 0,0,2,255, 0,0,2,255, 0,0,2,255, 0,0,2,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,0,0, 0,0,0,0, 0,8,14,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,4,255, 0,0,0,0, 163,163,163,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 154,154,154,255, 0,0,0,0, 83,83,83,255, 171,171,171,255, 175,175,175,255, 82,82,82,255, 0,0,0,0, 0,0,0,0, 143,143,143,255, 87,87,87,255, 175,175,175,255, 176,90,35,255, 180,92,34,255, 157,80,26,255, 171,87,30,255, 152,78,25,255, 152,78,25,255, 148,75,23,255, 174,88,33,255, 171,87,31,255, 167,84,30,255, 147,74,21,255, 156,80,25,255, 177,90,34,255, 181,92,34,255, 150,76,21,255, 183,93,35,255, 47,68,244,180, 52,77,244,191, 48,70,244,184, 48,70,244,182, 53,80,244,193, 62,96,245,209, 60,93,245,207, 50,73,244,186, 47,68,244,180, 47,69,244,182, 49,72,244,186, 46,66,244,177, 45,64,244,175, 45,65,244,177, 48,69,244,182, 46,66,244,180, 36,20,23,255, 31,15,19,255, 25,13,15,255, 25,13,15,255, 36,20,23,255, 36,20,23,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 31,15,19,255, 36,20,23,255, 36,20,23,255, 36,20,23,255, 132,132,123,255, 135,135,127,255, 130,130,120,255, 131,131,122,255, 141,141,133,255, 150,150,144,255, 132,133,124,255, 134,134,125,255, 146,146,139,255, 148,148,142,255, 127,127,117,255, 130,130,121,255, 143,143,135,255, 143,143,135,255, 130,130,121,255, 128,128,119,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 232,223,177,255, 235,226,182,255, 235,226,182,255, 230,221,178,255, 224,215,172,255, 224,216,172,255, 242,233,186,255, 233,224,181,255, 233,224,181,255, 242,233,186,255, 233,224,176,255, 233,224,181,255, 234,225,182,255, 242,233,186,255, 242,233,186,255, 234,225,180,255, 232,223,177,255, 235,226,182,255, 235,226,182,255, 230,221,178,255, 224,215,172,255, 224,216,172,255, 242,233,186,255, 233,224,181,255, 233,224,181,255, 242,233,186,255, 233,224,176,255, 233,224,181,255, 234,225,182,255, 242,233,186,255, 242,233,186,255, 234,225,180,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,60,60,255, 63,59,59,255, 68,64,64,255, 74,70,70,255, 75,71,71,255, 58,55,55,255, 74,70,70,255, 67,63,63,255, 63,59,59,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,60,60,255, 63,59,59,255, 68,64,64,255, 74,70,70,255, 75,71,71,255, 58,55,55,255, 74,70,70,255, 67,63,63,255, 63,59,59,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 255,255,255,255, 145,239,172,255, 145,239,172,255, 131,237,161,255, 115,235,149,255, 112,236,147,255, 47,201,83,255, 145,239,172,255, 145,239,172,255, 145,239,172,255, 47,201,83,255, 140,236,167,255, 140,236,167,255, 140,236,167,255, 123,233,154,255, 123,233,154,255, 124,228,153,255, 21,21,21,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 5,5,5,255, 5,5,5,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 146,146,146,255, 120,120,120,255, 146,146,146,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 146,146,146,255, 120,120,120,255, 146,146,146,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 36,20,23,255, 62,30,36,255, 70,38,44,255, 70,38,44,255, 70,38,44,255, 62,30,36,255, 62,30,36,255, 56,26,31,255, 36,20,23,255, 56,26,31,255, 62,30,36,255, 70,38,44,255, 70,38,44,255, 68,36,42,255, 56,26,31,255, 56,26,31,255, 141,141,134,255, 145,146,139,255, 157,157,151,255, 157,157,151,255, 152,152,145,255, 148,148,142,255, 138,138,130,255, 137,137,129,255, 131,131,122,255, 128,128,119,255, 134,134,125,255, 137,137,129,255, 125,125,115,255, 129,129,119,255, 135,135,127,255, 139,139,131,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 133,19,22,255, 133,19,22,255, 133,19,22,255, 120,11,13,255, 120,11,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 133,19,22,255, 133,19,22,255, 133,19,22,255, 120,11,13,255, 120,11,13,255, 0,0,0,0, 229,219,169,255, 215,204,162,255, 217,208,162,255, 219,210,161,255, 217,208,162,255, 214,205,163,255, 210,202,157,255, 204,197,144,255, 213,207,155,255, 212,205,155,255, 216,209,159,255, 219,210,161,255, 211,206,155,255, 228,223,176,255, 228,222,182,255, 227,220,174,255, 229,219,169,255, 215,204,162,255, 217,208,162,255, 219,210,161,255, 217,208,162,255, 214,205,163,255, 210,202,157,255, 204,197,144,255, 213,207,155,255, 212,205,155,255, 216,209,159,255, 219,210,161,255, 211,206,155,255, 228,223,176,255, 228,222,182,255, 227,220,174,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,69,69,255, 74,70,70,255, 74,70,70,255, 64,60,60,255, 64,60,60,255, 64,60,60,255, 74,70,70,255, 74,70,70,255, 73,69,69,255, 56,53,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,69,69,255, 56,53,53,255, 56,53,53,255, 64,60,60,255, 64,60,60,255, 64,60,60,255, 74,70,70,255, 74,70,70,255, 73,69,69,255, 56,53,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 43,38,31,255, 51,46,37,255, 51,46,37,255, 51,46,37,255, 55,49,39,255, 55,49,39,255, 54,48,38,255, 51,46,37,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 51,46,37,255, 51,46,37,255, 55,49,39,255, 55,49,39,255, 54,48,38,255, 51,46,37,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 54,48,38,255, 51,46,37,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 55,49,39,255, 40,36,29,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 43,185,176,255, 43,185,176,255, 43,185,176,255, 43,185,176,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,185,176,255, 43,185,176,255, 43,185,176,255, 204,236,240,255, 145,239,172,255, 79,227,121,255, 77,227,119,255, 71,221,113,255, 57,203,92,255, 145,239,172,255, 132,236,162,255, 89,231,129,255, 89,231,129,255, 89,231,129,255, 47,201,83,255, 94,232,133,255, 81,227,122,255, 80,226,121,255, 87,231,128,255, 54,198,95,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 35,35,35,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 35,35,35,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 128,128,128,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 128,128,128,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 52,24,29,255, 52,24,29,255, 48,24,28,255, 48,24,28,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 52,24,29,255, 52,24,29,255, 52,24,29,255, 48,24,28,255, 48,24,28,255, 152,152,145,255, 153,153,147,255, 137,137,129,255, 139,140,132,255, 156,156,150,255, 153,153,147,255, 143,143,136,255, 137,137,129,255, 148,148,142,255, 153,153,147,255, 147,148,141,255, 147,148,141,255, 156,156,150,255, 157,157,151,255, 148,148,142,255, 145,146,139,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,11,13,255, 161,37,41,255, 161,37,41,255, 161,37,41,255, 217,67,71,255, 161,37,41,255, 101,0,0,255, 0,0,0,0, 120,11,13,255, 161,37,41,255, 161,37,41,255, 217,67,71,255, 161,37,41,255, 161,37,41,255, 101,0,0,255, 197,192,134,255, 212,207,155,255, 210,203,143,255, 198,191,129,255, 201,195,130,255, 198,193,133,255, 202,197,137,255, 196,191,131,255, 197,192,131,255, 199,192,126,255, 195,186,122,255, 194,186,114,255, 205,199,135,255, 205,201,150,255, 194,189,139,255, 193,186,125,255, 197,192,134,255, 212,207,155,255, 210,203,143,255, 198,191,129,255, 201,195,130,255, 198,193,133,255, 202,197,137,255, 196,191,131,255, 197,192,131,255, 199,192,126,255, 195,186,122,255, 194,186,114,255, 205,199,135,255, 205,201,150,255, 194,189,139,255, 193,186,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,59,59,255, 58,54,54,255, 63,59,59,255, 63,59,59,255, 63,59,59,255, 74,70,70,255, 63,59,59,255, 68,63,64,255, 67,63,63,255, 66,62,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,59,59,255, 77,73,73,255, 81,78,78,255, 48,45,45,255, 63,59,59,255, 56,53,53,255, 48,45,45,255, 68,63,64,255, 67,63,63,255, 66,62,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,49,39,255, 132,98,47,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 144,102,42,255, 127,95,34,255, 146,99,35,255, 144,102,42,255, 144,102,42,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 144,102,42,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 127,95,34,255, 144,102,42,255, 127,95,34,255, 132,98,47,255, 51,46,37,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 73,213,204,255, 73,213,204,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,185,176,255, 204,236,240,255, 131,237,161,255, 79,227,121,255, 71,221,113,255, 57,203,92,255, 145,239,172,255, 115,235,149,255, 91,231,131,255, 77,227,119,255, 76,226,118,255, 76,226,118,255, 71,213,108,255, 47,201,83,255, 89,231,129,255, 76,224,118,255, 75,223,117,255, 48,182,77,255, 13,13,13,255, 13,13,13,255, 35,35,35,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 27,27,27,255, 27,27,27,255, 21,21,21,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 135,135,135,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 135,135,135,255, 135,135,135,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 135,135,135,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 36,20,23,255, 48,24,28,255, 48,24,28,255, 36,20,23,255, 28,14,16,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 36,20,23,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 36,20,23,255, 141,141,134,255, 135,135,127,255, 149,149,143,255, 153,153,147,255, 137,137,129,255, 136,136,127,255, 141,141,133,255, 153,153,147,255, 132,133,124,255, 138,138,130,255, 153,153,147,255, 153,153,147,255, 141,141,134,255, 135,135,127,255, 157,157,151,255, 153,153,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,11,13,255, 161,37,41,255, 194,49,53,255, 143,23,25,255, 129,8,10,255, 129,8,10,255, 129,8,10,255, 101,0,0,255, 108,11,13,255, 161,37,41,255, 143,23,25,255, 129,8,10,255, 114,26,23,255, 142,24,27,255, 118,0,0,255, 101,0,0,255, 242,236,194,255, 242,236,194,255, 229,221,181,255, 237,228,181,255, 237,228,181,255, 241,234,196,255, 241,234,196,255, 242,233,186,255, 232,224,187,255, 242,233,186,255, 242,233,186,255, 242,233,186,255, 228,220,182,255, 231,223,180,255, 242,233,186,255, 192,186,120,255, 242,236,194,255, 242,236,194,255, 229,221,181,255, 237,228,181,255, 237,228,181,255, 241,234,196,255, 241,234,196,255, 242,233,186,255, 232,224,187,255, 242,233,186,255, 242,233,186,255, 242,233,186,255, 228,220,182,255, 231,223,180,255, 242,233,186,255, 192,186,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 68,64,64,255, 58,55,55,255, 67,63,63,255, 73,69,69,255, 67,63,63,255, 67,63,63,255, 63,59,59,255, 62,58,58,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,48,48,255, 68,64,64,255, 58,55,55,255, 85,81,81,255, 55,52,52,255, 85,81,81,255, 85,81,81,255, 63,59,59,255, 62,58,58,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,47,38,255, 142,97,38,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 146,99,35,255, 54,47,37,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 43,203,192,255, 43,203,192,255, 43,222,214,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 43,222,214,255, 43,203,192,255, 43,203,192,255, 43,185,176,255, 204,236,240,255, 112,236,147,255, 71,221,113,255, 57,203,92,255, 145,239,172,255, 115,235,149,255, 117,235,150,255, 93,231,132,255, 79,227,121,255, 72,224,115,255, 71,221,113,255, 69,213,106,255, 57,203,92,255, 47,201,83,255, 76,224,118,255, 74,218,115,255, 48,182,77,255, 13,13,13,255, 27,27,27,255, 27,27,27,255, 27,27,27,255, 21,21,21,255, 13,13,13,255, 5,5,5,255, 13,13,13,255, 35,35,35,255, 35,35,35,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 21,21,21,255, 135,135,135,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 135,135,135,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 168,168,168,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 36,20,23,255, 30,16,19,255, 30,16,19,255, 30,16,19,255, 28,14,16,255, 25,13,15,255, 25,13,16,255, 28,14,16,255, 25,13,16,255, 28,14,17,255, 31,15,19,255, 31,15,19,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 31,15,19,255, 145,146,139,255, 139,139,131,255, 132,133,124,255, 141,141,134,255, 150,150,144,255, 149,149,143,255, 127,127,117,255, 126,126,116,255, 134,134,126,255, 143,143,135,255, 134,134,125,255, 129,129,120,255, 150,150,144,255, 150,150,144,255, 130,130,121,255, 127,127,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,11,13,255, 161,37,41,255, 143,23,25,255, 129,8,10,255, 129,8,10,255, 129,8,10,255, 118,0,0,255, 101,0,0,255, 108,11,13,255, 161,37,41,255, 129,8,10,255, 129,8,10,255, 116,26,22,255, 133,0,1,255, 137,10,14,255, 101,0,0,255, 242,236,194,255, 216,210,163,255, 233,224,179,255, 214,207,153,255, 214,207,153,255, 201,192,130,255, 200,192,126,255, 224,216,165,255, 216,207,155,255, 196,188,123,255, 202,194,134,255, 214,207,155,255, 220,212,160,255, 228,221,179,255, 214,206,157,255, 192,186,120,255, 242,236,194,255, 222,215,165,255, 233,224,179,255, 214,207,153,255, 214,207,153,255, 233,224,179,255, 229,221,168,255, 224,216,165,255, 216,207,155,255, 216,208,157,255, 214,207,155,255, 214,207,155,255, 220,212,160,255, 228,221,179,255, 214,206,157,255, 192,186,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,59,58,255, 63,59,59,255, 63,59,59,255, 63,59,58,255, 62,58,58,255, 62,58,58,255, 63,59,59,255, 74,69,69,255, 73,69,69,255, 72,68,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,78,77,255, 48,45,45,255, 63,59,59,255, 48,45,44,255, 80,77,77,255, 62,58,58,255, 48,45,45,255, 56,52,52,255, 73,69,69,255, 72,68,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,49,39,255, 127,95,34,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 164,114,39,255, 144,102,42,255, 55,49,39,255, 0,0,0,0, 255,255,255,255, 43,203,192,255, 43,203,192,255, 43,222,214,255, 73,213,204,255, 84,217,208,255, 111,227,220,255, 111,227,220,255, 111,227,220,255, 111,227,220,255, 84,217,208,255, 73,213,204,255, 43,222,214,255, 43,203,192,255, 43,203,192,255, 204,236,240,255, 112,236,147,255, 57,203,92,255, 145,239,172,255, 117,235,150,255, 115,235,149,255, 104,234,141,255, 93,231,132,255, 77,227,119,255, 71,221,113,255, 71,221,113,255, 69,213,106,255, 64,208,98,255, 57,203,91,255, 47,201,83,255, 74,218,115,255, 48,182,77,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 43,43,43,255, 27,27,27,255, 27,27,27,255, 27,27,27,255, 21,21,21,255, 35,35,35,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 135,135,135,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 135,135,135,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 163,163,163,255, 163,163,163,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 146,146,146,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 56,26,31,255, 56,26,31,255, 36,20,23,255, 62,30,36,255, 70,38,44,255, 70,38,44,255, 74,42,48,255, 70,38,44,255, 62,30,36,255, 62,30,36,255, 36,20,23,255, 62,30,36,255, 62,30,36,255, 56,26,31,255, 56,26,31,255, 56,26,31,255, 129,129,119,255, 127,127,117,255, 133,133,124,255, 153,153,147,255, 132,133,124,255, 126,126,116,255, 132,132,123,255, 135,135,127,255, 132,133,124,255, 126,126,116,255, 135,135,127,255, 137,137,129,255, 128,128,118,255, 134,134,125,255, 131,131,122,255, 136,136,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 116,15,26,255, 116,15,26,255, 116,15,26,255, 0,0,0,0, 120,11,13,255, 201,53,57,255, 129,8,10,255, 129,8,10,255, 189,47,51,255, 133,0,1,255, 118,0,0,255, 101,0,0,255, 83,0,0,255, 161,37,41,255, 129,8,10,255, 177,66,60,255, 129,8,10,255, 118,19,15,255, 118,0,0,255, 101,0,0,255, 242,236,194,255, 214,207,153,255, 233,224,179,255, 219,212,159,255, 233,224,179,255, 201,192,130,255, 205,197,139,255, 233,224,179,255, 223,215,164,255, 196,188,123,255, 196,188,123,255, 233,224,179,255, 218,209,158,255, 221,212,165,255, 220,212,172,255, 192,186,120,255, 242,233,186,255, 221,213,160,255, 233,224,179,255, 219,212,159,255, 233,224,179,255, 233,224,179,255, 221,213,165,255, 233,224,179,255, 223,215,164,255, 230,223,178,255, 216,208,157,255, 233,224,179,255, 218,209,158,255, 221,212,165,255, 220,212,172,255, 192,186,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 67,63,63,255, 63,59,59,255, 62,58,58,255, 63,59,59,255, 67,63,63,255, 57,54,54,255, 67,63,63,255, 67,63,63,255, 61,57,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 50,48,48,255, 63,59,59,255, 47,44,44,255, 63,59,59,255, 67,63,63,255, 43,40,40,255, 85,81,81,255, 67,63,63,255, 46,43,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 51,46,37,255, 127,95,34,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 127,95,34,255, 51,46,37,255, 0,0,0,0, 255,255,255,255, 43,203,192,255, 43,203,192,255, 73,213,204,255, 84,217,208,255, 111,227,220,255, 156,242,237,255, 196,255,254,255, 196,255,254,255, 156,242,237,255, 111,227,220,255, 84,217,208,255, 73,213,204,255, 43,203,192,255, 43,203,192,255, 204,236,240,255, 47,201,83,255, 145,239,172,255, 117,235,150,255, 111,235,146,255, 95,233,134,255, 99,233,137,255, 91,231,131,255, 76,226,118,255, 71,221,113,255, 72,224,115,255, 69,213,106,255, 69,213,106,255, 69,213,106,255, 57,203,95,255, 47,201,83,255, 48,182,77,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 35,35,35,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 43,43,43,255, 27,27,27,255, 27,27,27,255, 21,21,21,255, 13,13,13,255, 128,128,128,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 130,130,130,255, 120,120,120,255, 120,120,120,255, 129,129,129,255, 197,197,197,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 135,135,135,255, 128,128,128,255, 163,163,163,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 130,130,130,255, 120,120,120,255, 120,120,120,255, 129,129,129,255, 197,197,197,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 157,157,157,255, 135,135,135,255, 46,22,27,255, 41,21,25,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 56,24,30,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 51,27,31,255, 64,32,38,255, 36,20,23,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 157,157,151,255, 157,157,151,255, 151,151,145,255, 149,149,143,255, 141,141,133,255, 141,141,133,255, 139,139,131,255, 143,143,135,255, 152,152,145,255, 157,157,151,255, 146,146,139,255, 138,138,130,255, 157,157,151,255, 157,157,151,255, 148,148,142,255, 143,143,136,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 116,15,26,255, 116,15,26,255, 116,15,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 154,39,52,255, 189,49,65,255, 154,39,52,255, 154,39,52,255, 99,4,15,255, 120,11,13,255, 161,37,41,255, 129,8,10,255, 129,8,10,255, 116,26,22,255, 133,0,1,255, 118,0,0,255, 101,0,0,255, 118,0,0,255, 83,0,0,255, 129,8,10,255, 114,26,23,255, 133,0,1,255, 105,17,12,255, 101,0,0,255, 0,0,0,0, 242,233,186,255, 206,200,140,255, 206,200,140,255, 216,207,155,255, 216,207,155,255, 233,224,179,255, 223,216,180,255, 199,191,130,255, 203,194,134,255, 216,208,157,255, 225,219,174,255, 225,219,174,255, 221,216,171,255, 214,208,159,255, 221,214,172,255, 192,186,120,255, 242,233,186,255, 230,223,178,255, 216,209,153,255, 216,207,155,255, 224,215,166,255, 233,224,179,255, 223,216,180,255, 226,220,179,255, 216,207,155,255, 216,208,157,255, 225,219,174,255, 225,219,174,255, 221,216,171,255, 214,208,159,255, 221,214,172,255, 192,186,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 66,62,62,255, 62,58,58,255, 73,69,69,255, 72,69,69,255, 67,63,63,255, 66,63,63,255, 66,62,62,255, 66,62,62,255, 72,68,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,63,63,255, 50,47,47,255, 47,44,44,255, 55,52,52,255, 72,69,69,255, 67,63,63,255, 84,81,81,255, 50,47,47,255, 50,47,47,255, 90,86,86,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,49,39,255, 149,108,46,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 171,121,45,255, 149,108,46,255, 55,49,39,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 43,203,192,255, 73,213,204,255, 111,227,220,255, 156,242,237,255, 196,255,254,255, 214,255,254,255, 214,255,254,255, 196,255,254,255, 156,242,237,255, 111,227,220,255, 73,213,204,255, 43,203,192,255, 43,203,192,255, 204,236,240,255, 145,239,172,255, 87,233,128,255, 98,234,137,255, 98,234,137,255, 98,234,137,255, 97,233,136,255, 131,237,161,255, 131,237,161,255, 116,236,150,255, 103,235,140,255, 68,216,110,255, 70,216,108,255, 63,213,102,255, 57,209,96,255, 57,209,96,255, 48,182,77,255, 5,5,5,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 35,35,35,255, 27,27,27,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 21,21,21,255, 27,27,27,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 120,120,120,255, 128,128,128,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 146,146,146,255, 211,199,185,255, 211,199,185,255, 163,163,163,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 120,120,120,255, 120,120,120,255, 128,128,128,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 146,146,146,255, 146,146,146,255, 211,199,185,255, 211,199,185,255, 163,163,163,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 120,120,120,255, 41,21,25,255, 36,20,23,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 54,24,30,255, 48,24,28,255, 41,21,25,255, 36,20,23,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 36,20,23,255, 48,24,28,255, 36,20,23,255, 135,135,127,255, 135,135,127,255, 157,157,151,255, 157,157,151,255, 148,148,142,255, 146,146,139,255, 153,153,147,255, 153,153,147,255, 131,131,122,255, 134,134,125,255, 149,149,143,255, 153,153,147,255, 146,146,139,255, 145,146,139,255, 154,154,148,255, 153,153,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 154,39,52,255, 154,39,52,255, 154,39,52,255, 154,39,52,255, 99,4,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 189,49,65,255, 154,39,52,255, 119,6,20,255, 125,0,13,255, 99,4,15,255, 0,0,0,0, 101,0,0,255, 129,8,10,255, 114,26,23,255, 133,0,1,255, 118,0,0,255, 101,0,0,255, 118,0,0,255, 137,10,14,255, 118,0,0,255, 83,0,0,255, 129,8,10,255, 102,18,15,255, 91,15,9,255, 0,0,0,0, 0,0,0,0, 242,233,186,255, 230,223,178,255, 218,209,159,255, 218,209,159,255, 218,209,159,255, 233,224,179,255, 205,197,139,255, 197,189,125,255, 213,205,147,255, 203,195,135,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 196,188,115,255, 242,233,186,255, 230,223,178,255, 225,216,168,255, 225,216,168,255, 218,209,159,255, 233,224,179,255, 221,212,165,255, 221,212,165,255, 230,223,178,255, 216,208,157,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 196,188,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,57,57,255, 61,57,57,255, 62,58,57,255, 62,58,58,255, 62,58,58,255, 62,58,58,255, 57,53,53,255, 61,56,57,255, 60,56,56,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 46,43,43,255, 79,76,76,255, 80,77,76,255, 80,77,77,255, 47,44,44,255, 62,58,58,255, 43,40,40,255, 79,75,76,255, 45,42,42,255, 62,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 54,47,37,255, 146,99,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 146,99,35,255, 54,47,37,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 73,213,204,255, 73,213,204,255, 111,227,220,255, 196,255,254,255, 214,255,254,255, 238,255,255,255, 238,255,255,255, 214,255,254,255, 196,255,254,255, 111,227,220,255, 73,213,204,255, 73,213,204,255, 43,203,192,255, 204,236,240,255, 145,239,172,255, 87,233,128,255, 87,233,128,255, 94,232,133,255, 79,231,122,255, 79,231,122,255, 112,236,147,255, 100,234,138,255, 100,234,138,255, 87,233,128,255, 66,216,109,255, 63,213,102,255, 63,213,102,255, 55,209,95,255, 57,209,96,255, 47,179,75,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 27,27,27,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 135,135,135,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 211,199,185,255, 226,214,203,255, 219,204,191,255, 211,199,185,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 120,120,120,255, 135,135,135,255, 135,135,135,255, 135,135,135,255, 146,146,146,255, 128,128,128,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 211,199,185,255, 233,154,145,255, 219,204,191,255, 211,199,185,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 120,120,120,255, 135,135,135,255, 135,135,135,255, 36,20,23,255, 36,20,23,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 31,15,19,255, 30,16,19,255, 30,16,19,255, 30,16,19,255, 30,16,19,255, 36,20,23,255, 36,20,23,255, 36,20,23,255, 36,20,23,255, 36,20,23,255, 36,20,23,255, 148,148,142,255, 147,148,141,255, 129,129,119,255, 134,134,126,255, 153,153,147,255, 146,146,139,255, 132,133,124,255, 136,136,127,255, 134,134,126,255, 137,137,129,255, 134,134,125,255, 128,128,118,255, 141,141,133,255, 138,138,130,255, 130,130,120,255, 129,129,120,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 189,49,65,255, 154,39,52,255, 119,6,20,255, 125,0,13,255, 99,4,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 154,39,52,255, 119,6,20,255, 125,0,13,255, 106,0,1,255, 99,4,15,255, 0,0,0,0, 0,0,0,0, 101,0,0,255, 129,8,10,255, 103,18,14,255, 101,0,0,255, 118,0,0,255, 83,0,0,255, 118,0,0,255, 118,0,0,255, 83,0,0,255, 142,24,27,255, 95,28,21,255, 101,0,0,255, 0,0,0,0, 0,0,0,0, 242,233,186,255, 230,223,178,255, 218,209,159,255, 218,209,159,255, 218,209,159,255, 233,224,179,255, 197,189,125,255, 221,212,165,255, 236,227,180,255, 203,195,135,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 196,188,115,255, 242,233,186,255, 230,223,178,255, 218,209,159,255, 218,209,159,255, 218,209,159,255, 233,224,179,255, 221,212,165,255, 221,212,165,255, 236,227,180,255, 216,208,157,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 216,208,157,255, 221,212,165,255, 196,188,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,52,52,255, 71,67,67,255, 61,57,57,255, 66,62,62,255, 66,62,62,255, 66,62,62,255, 73,69,69,255, 71,67,67,255, 71,67,67,255, 72,68,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 74,71,71,255, 71,67,67,255, 46,43,43,255, 66,62,62,255, 84,80,80,255, 50,47,47,255, 91,87,87,255, 71,67,67,255, 53,50,50,255, 72,68,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,49,39,255, 149,108,46,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 171,121,45,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 167,110,31,255, 143,105,29,255, 171,121,45,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 149,108,46,255, 51,46,37,255, 0,0,0,0, 255,255,255,255, 43,203,192,255, 73,213,204,255, 73,213,204,255, 111,227,220,255, 196,255,254,255, 214,255,254,255, 238,255,255,255, 238,255,255,255, 214,255,254,255, 196,255,254,255, 111,227,220,255, 73,213,204,255, 73,213,204,255, 43,185,176,255, 204,236,240,255, 131,237,161,255, 87,233,128,255, 91,233,131,255, 85,233,127,255, 91,233,131,255, 79,231,122,255, 107,235,143,255, 100,234,138,255, 95,233,134,255, 86,232,127,255, 62,216,106,255, 63,213,102,255, 60,208,99,255, 60,208,98,255, 57,209,96,255, 47,179,75,255, 13,13,13,255, 21,21,21,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 5,5,5,255, 5,5,5,255, 5,5,5,255, 146,146,146,255, 135,135,135,255, 197,197,197,255, 157,157,157,255, 146,146,146,255, 128,128,128,255, 211,199,185,255, 221,203,190,255, 232,226,217,255, 211,199,185,255, 155,155,155,255, 205,205,205,255, 176,176,176,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 146,146,146,255, 135,135,135,255, 197,197,197,255, 157,157,157,255, 146,146,146,255, 128,128,128,255, 211,199,185,255, 221,203,190,255, 241,117,111,255, 211,199,185,255, 155,155,155,255, 205,205,205,255, 176,176,176,255, 128,128,128,255, 135,135,135,255, 146,146,146,255, 36,20,23,255, 56,26,31,255, 56,26,31,255, 56,26,31,255, 36,20,23,255, 62,30,36,255, 62,30,36,255, 62,30,36,255, 36,20,23,255, 62,30,36,255, 56,26,31,255, 56,26,31,255, 30,16,19,255, 56,26,31,255, 56,26,31,255, 56,26,31,255, 134,134,126,255, 138,138,130,255, 136,136,128,255, 152,152,145,255, 126,126,116,255, 127,127,117,255, 138,138,130,255, 145,145,138,255, 132,133,124,255, 145,146,139,255, 157,157,151,255, 157,157,151,255, 139,140,132,255, 147,148,141,255, 157,157,151,255, 157,157,151,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,15,26,255, 154,39,52,255, 119,6,20,255, 125,0,13,255, 106,0,1,255, 99,4,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,4,15,255, 119,6,20,255, 106,0,1,255, 99,4,15,255, 0,0,0,0, 0,0,0,0, 83,0,0,255, 101,0,0,255, 142,24,27,255, 104,17,13,255, 101,0,0,255, 133,0,1,255, 118,0,0,255, 83,0,0,255, 118,0,0,255, 83,0,0,255, 116,25,21,255, 113,42,35,255, 101,0,0,255, 0,0,0,0, 0,0,0,0, 192,186,120,255, 202,196,127,255, 191,183,113,255, 192,186,120,255, 191,183,113,255, 191,183,113,255, 203,197,137,255, 191,183,113,255, 202,196,127,255, 189,181,111,255, 191,183,113,255, 203,197,137,255, 203,197,137,255, 202,196,127,255, 203,197,137,255, 196,188,115,255, 242,233,186,255, 221,212,165,255, 221,212,165,255, 216,208,157,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 236,227,180,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 216,208,157,255, 216,208,157,255, 221,212,165,255, 221,212,165,255, 196,188,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 61,57,57,255, 61,57,57,255, 66,62,62,255, 55,52,52,255, 65,61,61,255, 65,61,61,255, 60,56,56,255, 61,57,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 45,42,42,255, 79,76,76,255, 61,57,57,255, 66,62,62,255, 41,39,39,255, 65,61,61,255, 65,61,61,255, 78,75,75,255, 46,43,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 51,46,37,255, 127,95,34,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 164,114,39,255, 164,114,39,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 167,110,31,255, 171,121,45,255, 127,95,34,255, 51,46,37,255, 0,0,0,0, 255,255,255,255, 43,203,192,255, 43,203,192,255, 73,213,204,255, 111,227,220,255, 156,242,237,255, 196,255,254,255, 214,255,254,255, 214,255,254,255, 196,255,254,255, 156,242,237,255, 111,227,220,255, 73,213,204,255, 43,203,192,255, 43,203,192,255, 204,236,240,255, 47,203,84,255, 95,225,132,255, 92,234,132,255, 95,225,132,255, 89,233,130,255, 89,233,130,255, 117,235,150,255, 97,233,135,255, 97,233,135,255, 97,233,135,255, 63,207,100,255, 60,202,97,255, 60,204,97,255, 61,201,97,255, 57,209,96,255, 47,179,75,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 27,27,27,255, 13,13,13,255, 5,5,5,255, 5,5,5,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 5,5,5,255, 5,5,5,255, 197,197,197,255, 197,197,197,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 211,199,185,255, 219,204,191,255, 228,219,209,255, 219,204,191,255, 232,226,217,255, 221,203,190,255, 157,157,157,255, 205,205,205,255, 163,163,163,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 211,199,185,255, 219,204,191,255, 240,114,106,255, 219,204,191,255, 237,163,155,255, 221,203,190,255, 157,157,157,255, 205,205,205,255, 163,163,163,255, 197,197,197,255, 197,197,197,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 36,20,23,255, 62,30,36,255, 48,24,28,255, 48,24,28,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 153,153,147,255, 154,154,148,255, 148,148,142,255, 148,148,142,255, 157,157,151,255, 153,153,147,255, 148,148,142,255, 146,146,139,255, 154,154,148,255, 152,152,145,255, 137,137,129,255, 143,143,135,255, 145,146,139,255, 141,141,133,255, 130,130,121,255, 141,141,134,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,16,33,255, 109,16,33,255, 109,16,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,4,15,255, 125,0,13,255, 106,0,1,255, 99,4,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,4,15,255, 119,6,20,255, 106,0,1,255, 99,4,15,255, 0,0,0,0, 101,0,0,255, 161,37,41,255, 101,0,0,255, 129,8,10,255, 102,18,15,255, 89,15,11,255, 133,0,1,255, 118,0,0,255, 83,0,0,255, 118,0,0,255, 83,0,0,255, 115,26,23,255, 87,36,28,255, 101,0,0,255, 0,0,0,0, 0,0,0,0, 241,234,196,255, 239,230,184,255, 239,230,184,255, 239,230,184,255, 239,230,184,255, 241,234,196,255, 241,234,196,255, 239,230,184,255, 239,230,184,255, 231,223,180,255, 239,230,184,255, 241,234,196,255, 241,234,196,255, 239,230,184,255, 239,230,184,255, 196,188,115,255, 241,234,196,255, 221,212,165,255, 230,223,178,255, 216,208,157,255, 221,212,165,255, 221,212,165,255, 230,223,178,255, 221,212,165,255, 221,212,165,255, 221,212,165,255, 230,223,178,255, 230,223,178,255, 230,223,178,255, 221,212,165,255, 221,212,165,255, 196,188,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 71,67,67,255, 71,67,67,255, 61,57,57,255, 55,52,52,255, 60,56,56,255, 71,67,67,255, 71,67,67,255, 71,67,67,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 78,75,75,255, 53,50,50,255, 71,67,67,255, 61,57,57,255, 41,39,39,255, 45,42,42,255, 71,67,67,255, 71,67,67,255, 89,85,85,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,49,39,255, 144,102,42,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 164,114,39,255, 164,114,39,255, 144,102,42,255, 51,46,37,255, 0,0,0,0, 255,255,255,255, 43,203,192,255, 43,203,192,255, 73,213,204,255, 84,217,208,255, 111,227,220,255, 156,242,237,255, 196,255,254,255, 196,255,254,255, 156,242,237,255, 111,227,220,255, 84,217,208,255, 73,213,204,255, 43,203,192,255, 43,203,192,255, 204,236,240,255, 146,238,172,255, 47,203,84,255, 95,225,132,255, 89,231,129,255, 92,226,130,255, 83,223,123,255, 77,225,119,255, 77,215,113,255, 75,215,111,255, 60,206,98,255, 52,194,85,255, 60,198,93,255, 61,197,93,255, 51,191,84,255, 47,179,75,255, 63,197,98,255, 5,5,5,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 27,27,27,255, 13,13,13,255, 5,5,5,255, 13,13,13,255, 13,13,13,255, 43,43,43,255, 35,35,35,255, 27,27,27,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 128,128,128,255, 219,204,191,255, 232,226,217,255, 219,204,191,255, 228,219,209,255, 221,203,190,255, 221,203,190,255, 163,163,163,255, 205,205,205,255, 168,168,168,255, 168,168,168,255, 135,135,135,255, 135,135,135,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 128,128,128,255, 219,204,191,255, 237,163,155,255, 219,204,191,255, 235,158,149,255, 221,203,190,255, 221,203,190,255, 163,163,163,255, 205,205,205,255, 168,168,168,255, 168,168,168,255, 135,135,135,255, 36,20,23,255, 56,26,31,255, 36,20,23,255, 48,24,28,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 36,20,23,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 130,130,121,255, 132,133,124,255, 145,145,138,255, 145,145,138,255, 135,135,127,255, 136,136,127,255, 150,150,144,255, 147,148,141,255, 131,131,122,255, 132,133,124,255, 134,134,126,255, 145,146,139,255, 127,127,117,255, 126,126,117,255, 136,136,128,255, 145,146,139,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,16,33,255, 109,16,33,255, 109,16,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 109,16,33,255, 147,40,60,255, 185,48,74,255, 147,40,60,255, 109,16,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,4,15,255, 119,6,20,255, 106,0,1,255, 99,4,15,255, 0,0,0,0, 99,4,15,255, 99,4,15,255, 99,4,15,255, 0,0,0,0, 99,4,15,255, 119,6,20,255, 106,0,1,255, 99,4,15,255, 0,0,0,0, 101,0,0,255, 116,25,21,255, 90,15,10,255, 116,25,21,255, 103,34,27,255, 82,24,17,255, 145,18,21,255, 118,0,0,255, 83,0,0,255, 124,28,25,255, 74,12,9,255, 115,26,23,255, 83,42,31,255, 101,0,0,255, 0,0,0,0, 0,0,0,0, 242,233,186,255, 218,209,159,255, 218,209,159,255, 197,189,125,255, 213,206,154,255, 230,223,178,255, 205,197,139,255, 205,197,139,255, 217,210,154,255, 221,212,165,255, 212,205,150,255, 201,193,131,255, 197,189,125,255, 199,191,126,255, 237,229,189,255, 196,188,115,255, 242,233,186,255, 218,209,159,255, 218,209,159,255, 216,208,157,255, 213,206,154,255, 230,223,178,255, 221,212,165,255, 221,212,165,255, 217,210,154,255, 221,212,165,255, 234,227,185,255, 234,227,185,255, 221,212,165,255, 226,218,167,255, 237,229,189,255, 196,188,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,61,61,255, 60,56,56,255, 64,60,60,255, 64,60,60,255, 64,60,60,255, 71,67,67,255, 71,67,67,255, 64,60,60,255, 64,60,60,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,61,61,255, 60,56,56,255, 48,45,45,255, 48,45,45,255, 48,45,45,255, 89,85,85,255, 89,85,85,255, 48,45,45,255, 48,45,45,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 54,47,37,255, 142,97,38,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 162,107,35,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 167,110,31,255, 162,107,35,255, 142,97,38,255, 54,47,37,255, 0,0,0,0, 255,255,255,255, 43,203,192,255, 43,203,192,255, 43,222,214,255, 73,213,204,255, 84,217,208,255, 111,227,220,255, 111,227,220,255, 111,227,220,255, 111,227,220,255, 84,217,208,255, 73,213,204,255, 43,222,214,255, 43,203,192,255, 43,185,176,255, 204,236,240,255, 146,238,172,255, 137,237,165,255, 47,203,84,255, 77,217,113,255, 77,217,113,255, 95,225,132,255, 77,225,119,255, 77,215,113,255, 66,212,107,255, 60,202,97,255, 61,197,93,255, 57,191,88,255, 49,187,78,255, 47,179,75,255, 137,237,168,255, 51,191,87,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 35,35,35,255, 27,27,27,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 5,5,5,255, 120,120,120,255, 168,168,168,255, 146,146,146,255, 128,128,128,255, 86,6,0,255, 84,2,0,255, 85,0,0,255, 88,1,1,255, 91,0,3,255, 76,0,0,255, 73,1,0,255, 71,1,2,255, 163,163,163,255, 205,205,205,255, 176,176,176,255, 120,120,120,255, 120,120,120,255, 168,168,168,255, 146,146,146,255, 128,128,128,255, 255,0,3,255, 255,0,0,255, 253,1,1,255, 214,0,0,255, 214,0,2,255, 253,3,0,255, 255,2,1,255, 215,3,4,255, 163,163,163,255, 205,205,205,255, 176,176,176,255, 120,120,120,255, 31,15,19,255, 31,15,19,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 25,13,15,255, 36,20,23,255, 30,16,19,255, 27,13,16,255, 29,15,18,255, 33,17,20,255, 27,13,16,255, 34,18,22,255, 31,15,19,255, 36,20,23,255, 36,20,23,255, 136,136,127,255, 135,135,127,255, 126,126,116,255, 127,127,117,255, 153,153,147,255, 156,156,150,255, 129,129,120,255, 126,126,116,255, 141,141,133,255, 150,150,144,255, 143,143,135,255, 147,148,141,255, 157,157,151,255, 157,157,151,255, 145,146,139,255, 128,128,118,255, 0,0,0,0, 0,0,0,0, 109,16,33,255, 147,40,60,255, 147,40,60,255, 147,40,60,255, 92,6,21,255, 0,0,0,0, 0,0,0,0, 109,16,33,255, 147,40,60,255, 112,8,28,255, 115,0,21,255, 92,6,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 78,3,10,255, 99,4,15,255, 106,23,28,255, 106,0,1,255, 88,18,22,255, 78,3,10,255, 154,39,52,255, 154,39,52,255, 154,39,52,255, 78,3,10,255, 88,18,22,255, 106,23,28,255, 106,0,1,255, 88,18,22,255, 0,0,0,0, 0,0,0,0, 73,12,9,255, 89,15,12,255, 115,26,23,255, 86,38,29,255, 80,25,20,255, 117,20,16,255, 104,18,13,255, 73,12,9,255, 104,18,13,255, 67,20,14,255, 96,53,41,255, 82,42,33,255, 75,34,26,255, 0,0,0,0, 0,0,0,0, 242,233,186,255, 218,209,159,255, 205,197,139,255, 213,206,154,255, 193,185,118,255, 210,203,146,255, 236,227,180,255, 195,187,121,255, 205,197,139,255, 205,197,139,255, 192,184,118,255, 218,211,168,255, 221,212,165,255, 210,203,146,255, 229,224,187,255, 196,188,115,255, 242,233,186,255, 218,209,159,255, 221,212,165,255, 213,206,154,255, 221,212,165,255, 230,223,178,255, 236,227,180,255, 236,227,180,255, 221,212,165,255, 221,212,165,255, 218,211,168,255, 218,211,168,255, 221,212,165,255, 230,223,178,255, 229,224,187,255, 196,188,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 60,56,56,255, 59,55,55,255, 59,55,55,255, 70,66,66,255, 70,66,66,255, 60,56,56,255, 60,56,56,255, 60,56,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 45,42,42,255, 78,75,75,255, 78,74,74,255, 78,74,74,255, 53,50,50,255, 70,66,66,255, 78,75,75,255, 78,75,75,255, 60,56,56,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,49,39,255, 149,108,46,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 171,121,45,255, 171,121,45,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 171,121,45,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 143,105,29,255, 164,114,39,255, 149,108,46,255, 55,49,39,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 43,203,192,255, 43,203,192,255, 43,222,214,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 73,213,204,255, 43,222,214,255, 43,203,192,255, 43,203,192,255, 43,185,176,255, 204,236,240,255, 120,236,153,255, 111,235,146,255, 108,234,144,255, 47,203,84,255, 77,217,113,255, 77,217,113,255, 77,225,119,255, 66,212,107,255, 60,208,98,255, 59,205,97,255, 56,198,90,255, 51,191,84,255, 47,179,75,255, 141,237,168,255, 77,225,119,255, 51,191,87,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 27,27,27,255, 13,13,13,255, 21,21,21,255, 35,35,35,255, 27,27,27,255, 35,35,35,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 135,135,135,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 88,0,0,255, 73,4,2,255, 42,0,0,255, 44,3,0,255, 40,0,0,255, 42,0,2,255, 42,0,2,255, 38,0,3,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 135,135,135,255, 135,135,135,255, 163,163,163,255, 146,146,146,255, 128,128,128,255, 251,0,6,255, 212,1,2,255, 171,3,1,255, 214,0,6,255, 177,0,1,255, 219,2,7,255, 177,3,0,255, 177,0,2,255, 163,163,163,255, 197,197,197,255, 163,163,163,255, 135,135,135,255, 51,27,31,255, 62,30,36,255, 62,30,36,255, 70,38,44,255, 62,30,36,255, 56,26,31,255, 56,26,31,255, 56,26,31,255, 30,16,19,255, 56,26,31,255, 62,30,36,255, 70,38,44,255, 70,38,44,255, 68,36,42,255, 68,36,42,255, 56,26,31,255, 147,148,141,255, 146,146,139,255, 156,156,150,255, 157,157,151,255, 153,153,147,255, 148,148,142,255, 143,143,135,255, 137,137,129,255, 126,126,116,255, 139,140,132,255, 147,148,141,255, 153,153,147,255, 139,139,131,255, 139,140,132,255, 153,153,147,255, 157,157,151,255, 0,0,0,0, 0,0,0,0, 109,16,33,255, 147,40,60,255, 112,8,28,255, 112,8,28,255, 92,6,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 92,6,21,255, 112,8,28,255, 92,6,21,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,4,15,255, 154,39,52,255, 87,18,23,255, 96,35,35,255, 93,16,13,255, 87,18,23,255, 78,3,10,255, 154,39,52,255, 119,6,20,255, 125,0,13,255, 78,3,10,255, 80,28,28,255, 105,23,29,255, 93,16,13,255, 87,18,23,255, 0,0,0,0, 0,0,0,0, 66,21,17,255, 79,25,20,255, 114,59,49,255, 86,38,29,255, 73,32,25,255, 116,20,17,255, 86,38,29,255, 66,21,17,255, 93,30,23,255, 60,27,22,255, 93,50,40,255, 82,43,32,255, 63,47,38,255, 0,0,0,0, 0,0,0,0, 242,233,186,255, 192,184,117,255, 221,212,165,255, 196,188,124,255, 221,212,165,255, 221,212,165,255, 218,209,158,255, 205,199,141,255, 221,212,165,255, 218,211,168,255, 201,193,134,255, 213,205,156,255, 221,212,165,255, 194,186,120,255, 223,216,171,255, 196,188,115,255, 242,233,186,255, 218,209,159,255, 221,212,165,255, 218,209,159,255, 221,212,165,255, 221,212,165,255, 218,209,158,255, 221,215,168,255, 221,212,165,255, 218,211,168,255, 213,205,156,255, 213,205,156,255, 221,212,165,255, 228,222,178,255, 223,216,171,255, 196,188,115,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 71,67,67,255, 70,66,66,255, 70,66,66,255, 64,60,60,255, 59,55,55,255, 59,54,55,255, 59,55,55,255, 54,51,51,255, 59,55,55,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,50,50,255, 88,84,84,255, 70,66,66,255, 64,60,60,255, 59,55,55,255, 78,73,74,255, 45,41,41,255, 40,38,38,255, 45,41,41,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,49,39,255, 132,98,47,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 127,95,34,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 149,108,46,255, 149,108,46,255, 127,95,34,255, 144,102,42,255, 149,108,46,255, 132,98,47,255, 55,49,39,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 73,213,204,255, 73,213,204,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,185,176,255, 204,236,240,255, 98,226,134,255, 84,226,124,255, 79,225,120,255, 74,220,115,255, 47,203,84,255, 75,217,112,255, 75,215,111,255, 66,212,104,255, 58,208,97,255, 58,202,95,255, 48,192,82,255, 47,179,75,255, 136,236,167,255, 77,225,122,255, 61,209,99,255, 50,188,86,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 35,35,35,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 21,21,21,255, 21,21,21,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 135,135,135,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 157,157,157,255, 163,163,163,255, 151,151,151,255, 168,168,168,255, 170,164,168,255, 176,176,176,255, 168,160,166,255, 205,205,205,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 135,135,135,255, 176,176,176,255, 163,163,163,255, 176,176,176,255, 157,157,157,255, 163,163,163,255, 151,151,151,255, 168,168,168,255, 170,164,168,255, 176,176,176,255, 168,160,166,255, 205,205,205,255, 205,205,205,255, 168,168,168,255, 176,176,176,255, 146,146,146,255, 36,20,23,255, 56,26,31,255, 52,24,29,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 36,20,23,255, 156,156,150,255, 155,155,149,255, 141,141,134,255, 138,138,130,255, 153,153,147,255, 143,143,135,255, 145,146,139,255, 149,149,143,255, 157,157,151,255, 152,152,145,255, 134,134,125,255, 134,134,126,255, 143,143,136,255, 147,148,141,255, 136,136,127,255, 131,131,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,4,14,255, 112,8,28,255, 70,4,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,4,14,255, 112,8,28,255, 70,4,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 78,3,10,255, 119,6,20,255, 64,22,20,255, 99,34,32,255, 85,25,20,255, 69,14,16,255, 0,0,0,0, 69,14,16,255, 119,6,20,255, 69,14,16,255, 0,0,0,0, 64,22,20,255, 107,22,27,255, 85,25,20,255, 69,14,16,255, 0,0,0,0, 0,0,0,0, 66,20,15,255, 66,20,15,255, 101,41,32,255, 89,37,28,255, 61,25,19,255, 95,29,22,255, 108,49,39,255, 66,20,15,255, 95,29,22,255, 61,25,19,255, 110,70,53,255, 78,48,37,255, 57,35,26,255, 0,0,0,0, 0,0,0,0, 232,224,187,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 202,196,127,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 218,211,168,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 202,196,127,255, 232,224,187,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 202,196,127,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 218,211,168,255, 230,223,178,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 213,206,154,255, 202,196,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 60,56,56,255, 60,56,56,255, 59,55,55,255, 59,55,55,255, 63,59,59,255, 63,59,59,255, 69,65,65,255, 70,66,66,255, 64,60,60,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 78,75,75,255, 45,42,42,255, 60,56,56,255, 59,55,55,255, 59,55,55,255, 48,45,45,255, 81,78,78,255, 87,83,83,255, 88,84,84,255, 48,45,45,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 42,37,29,255, 54,47,37,255, 56,47,37,255, 53,47,38,255, 53,47,38,255, 56,47,37,255, 53,47,38,255, 54,47,37,255, 54,47,37,255, 54,47,37,255, 53,47,38,255, 50,45,38,255, 56,47,37,255, 53,47,38,255, 53,47,38,255, 56,47,37,255, 53,47,38,255, 54,47,37,255, 54,47,37,255, 54,47,37,255, 53,47,38,255, 56,47,37,255, 53,47,38,255, 54,47,37,255, 54,47,37,255, 54,47,37,255, 53,47,38,255, 50,45,38,255, 53,47,38,255, 51,46,37,255, 0,0,0,0, 255,255,255,255, 43,185,176,255, 43,185,176,255, 43,185,176,255, 43,185,176,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,203,192,255, 43,185,176,255, 43,203,192,255, 43,185,176,255, 43,185,176,255, 43,185,176,255, 204,236,240,255, 98,226,134,255, 84,226,124,255, 74,220,115,255, 74,220,115,255, 72,216,109,255, 47,203,84,255, 68,214,109,255, 62,212,101,255, 56,208,95,255, 57,205,95,255, 47,179,75,255, 132,236,162,255, 77,225,119,255, 77,225,119,255, 62,206,96,255, 49,185,84,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 21,21,21,255, 135,135,135,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 205,205,205,255, 176,176,176,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 135,135,135,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 205,205,205,255, 176,176,176,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 135,135,135,255, 36,20,23,255, 56,26,31,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 48,24,28,255, 30,16,19,255, 30,16,19,255, 30,16,19,255, 56,26,31,255, 48,24,28,255, 36,20,23,255, 36,20,23,255, 30,16,19,255, 36,20,23,255, 36,20,23,255, 128,128,119,255, 132,133,124,255, 153,153,147,255, 143,143,136,255, 131,131,122,255, 136,136,127,255, 153,153,147,255, 156,156,150,255, 139,139,131,255, 135,135,127,255, 146,146,139,255, 153,153,147,255, 131,131,122,255, 132,133,124,255, 152,152,145,255, 153,153,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,0,0,255, 112,8,28,255, 64,0,0,255, 0,0,0,0, 110,23,38,255, 70,4,14,255, 0,0,0,0, 64,0,0,255, 112,8,28,255, 64,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,0,0,255, 54,17,13,255, 96,35,35,255, 83,27,22,255, 60,10,8,255, 0,0,0,0, 60,10,8,255, 105,23,29,255, 60,10,8,255, 0,0,0,0, 54,17,13,255, 105,23,29,255, 83,27,22,255, 60,10,8,255, 0,0,0,0, 0,0,0,0, 58,18,15,255, 58,18,15,255, 97,43,34,255, 86,38,29,255, 54,23,19,255, 93,30,23,255, 86,38,29,255, 58,18,15,255, 86,38,29,255, 58,18,15,255, 87,57,46,255, 78,47,37,255, 48,31,25,255, 0,0,0,0, 0,0,0,0, 202,196,127,255, 195,186,122,255, 202,196,127,255, 192,186,120,255, 202,196,127,255, 202,196,127,255, 202,196,127,255, 195,186,122,255, 202,196,127,255, 192,186,120,255, 191,183,113,255, 192,186,120,255, 202,196,127,255, 192,186,120,255, 196,188,115,255, 191,183,113,255, 202,196,127,255, 195,186,122,255, 202,196,127,255, 192,186,120,255, 202,196,127,255, 202,196,127,255, 202,196,127,255, 195,186,122,255, 202,196,127,255, 192,186,120,255, 191,183,113,255, 192,186,120,255, 202,196,127,255, 192,186,120,255, 196,188,115,255, 191,183,113,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 55,52,52,255, 70,66,66,255, 70,66,66,255, 63,59,59,255, 63,59,59,255, 64,60,60,255, 64,60,59,255, 59,55,55,255, 59,55,55,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,56,56,255, 74,71,71,255, 70,66,66,255, 70,66,66,255, 63,59,59,255, 81,78,78,255, 64,60,60,255, 64,60,59,255, 59,55,55,255, 78,74,74,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 204,236,240,255, 98,226,134,255, 54,200,92,255, 51,191,87,255, 51,191,87,255, 50,190,86,255, 50,190,86,255, 47,179,75,255, 47,179,75,255, 47,179,75,255, 47,179,75,255, 63,197,98,255, 51,191,87,255, 51,191,87,255, 50,190,86,255, 50,188,86,255, 50,188,86,255, 21,21,21,255, 21,21,21,255, 27,27,27,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 5,5,5,255, 5,5,5,255, 13,13,13,255, 13,13,13,255, 13,13,13,255, 21,21,21,255, 13,13,13,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 120,120,120,255, 146,146,146,255, 143,136,141,255, 129,129,129,255, 129,129,129,255, 129,129,129,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 120,120,120,255, 146,146,146,255, 143,136,141,255, 129,129,129,255, 129,129,129,255, 129,129,129,255, 135,135,135,255, 128,128,128,255, 128,128,128,255, 128,128,128,255, 135,135,135,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 140,114,20,255, 186,160,18,255, 134,126,24,255, 169,141,12,255, 138,114,16,255, 132,104,20,255, 128,126,25,255, 181,155,16,255, 129,103,13,255, 180,153,18,255, 129,121,23,255, 170,136,20,255, 128,120,27,255, 184,156,17,255, 161,129,17,255, 187,151,17,255, 171,140,19,255, 165,139,19,255, 179,146,17,255, 155,127,15,255, 168,138,18,255, 130,103,20,255, 179,146,17,255, 163,137,17,255, 166,136,16,255, 161,136,19,255, 179,146,17,255, 154,124,20,255, 190,155,14,255, 164,138,18,255, 173,142,17,255, 157,126,19,255, 57,57,57,255, 61,61,61,255, 61,61,61,255, 61,61,61,255, 58,58,58,255, 60,60,60,255, 55,55,55,255, 57,57,57,255, 56,56,56,255, 61,61,61,255, 57,57,57,255, 60,60,60,255, 58,58,58,255, 61,61,61,255, 58,58,58,255, 61,61,61,255, 65,65,65,255, 71,71,71,255, 72,72,72,255, 68,68,68,255, 66,66,66,255, 74,74,74,255, 68,68,68,255, 66,66,66,255, 81,81,81,255, 68,68,68,255, 72,72,72,255, 68,68,68,255, 72,72,72,255, 70,70,70,255, 77,77,77,255, 58,58,58,255, 72,72,72,255, 81,81,81,255, 78,78,78,255, 74,74,74,255, 67,67,67,255, 83,83,83,255, 82,82,82,255, 77,77,77,255, 75,75,75,255, 77,77,77,255, 77,77,77,255, 75,75,75,255, 74,74,74,255, 79,79,79,255, 75,75,75,255, 78,78,78,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 209,43,19,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 198,32,11,255, 187,32,10,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 220,113,29,255, 213,87,15,255, 212,85,14,255, 220,111,27,255, 232,162,61,255, 230,153,55,255, 223,124,35,255, 212,85,14,255, 202,59,6,255, 206,70,9,255, 210,81,13,255, 213,87,15,255, 217,102,22,255, 220,111,27,255, 217,102,22,255, 222,120,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 51,43,27,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 51,43,27,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 60,51,34,255, 60,51,34,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 60,51,34,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 157,125,29,255, 188,160,26,255, 154,126,22,255, 142,133,21,255, 153,126,16,255, 169,141,17,255, 138,128,24,255, 191,163,17,255, 142,114,16,255, 200,168,24,255, 150,121,20,255, 170,136,20,255, 146,118,32,255, 196,165,16,255, 145,116,21,255, 141,130,22,255, 146,117,26,255, 193,162,15,255, 186,152,16,255, 193,162,15,255, 171,140,15,255, 192,160,14,255, 131,122,23,255, 179,146,17,255, 135,115,19,255, 181,148,19,255, 165,135,17,255, 179,155,17,255, 168,136,24,255, 172,141,18,255, 161,129,17,255, 185,155,15,255, 60,60,60,255, 63,63,63,255, 64,64,64,255, 56,56,56,255, 59,59,59,255, 59,59,59,255, 55,55,55,255, 60,60,60,255, 64,64,64,255, 60,60,60,255, 59,59,59,255, 56,56,56,255, 58,58,58,255, 55,55,55,255, 60,60,60,255, 60,60,60,255, 48,48,48,255, 64,64,64,255, 70,70,70,255, 74,74,74,255, 62,62,62,255, 81,81,81,255, 70,70,70,255, 61,61,61,255, 79,79,79,255, 78,78,78,255, 77,77,77,255, 69,69,69,255, 74,74,74,255, 67,67,67,255, 77,77,77,255, 56,56,56,255, 72,72,72,255, 59,59,59,255, 64,64,64,255, 60,60,60,255, 62,62,62,255, 64,64,64,255, 61,61,61,255, 63,63,63,255, 68,68,68,255, 59,59,59,255, 63,63,63,255, 60,60,60,255, 61,61,61,255, 63,63,63,255, 59,59,59,255, 63,63,63,255, 227,38,12,255, 201,35,11,255, 192,34,10,255, 208,35,11,255, 176,32,9,255, 193,32,10,255, 161,27,8,255, 161,27,8,255, 158,26,8,255, 128,18,6,255, 168,29,9,255, 185,34,10,255, 194,34,10,255, 192,34,10,255, 201,35,11,255, 227,38,12,255, 222,120,33,255, 218,103,23,255, 215,96,19,255, 215,94,18,255, 224,128,38,255, 219,109,26,255, 222,122,34,255, 211,82,14,255, 211,85,16,255, 222,121,34,255, 226,136,43,255, 213,87,15,255, 215,94,18,255, 225,131,40,255, 229,149,52,255, 226,135,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 60,51,34,255, 60,51,34,255, 210,193,171,255, 228,219,206,255, 217,203,184,255, 202,182,156,255, 71,61,41,255, 210,193,171,255, 223,212,197,255, 217,203,184,255, 202,182,156,255, 71,61,41,255, 210,193,171,255, 228,219,206,255, 217,203,184,255, 202,182,156,255, 60,51,34,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 92,92,92,255, 92,92,92,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 147,118,20,255, 155,129,17,255, 136,110,16,255, 150,125,16,255, 138,113,16,255, 143,117,16,255, 139,111,16,255, 155,128,16,255, 135,109,16,255, 158,131,16,255, 150,121,16,255, 144,116,17,255, 138,111,20,255, 152,125,16,255, 136,109,17,255, 154,127,16,255, 179,146,17,255, 148,122,16,255, 179,154,17,255, 143,124,17,255, 182,148,14,255, 162,132,14,255, 191,156,15,255, 149,122,15,255, 181,151,15,255, 174,146,14,255, 196,159,14,255, 190,155,14,255, 196,159,14,255, 145,119,15,255, 182,148,14,255, 145,119,17,255, 60,60,60,255, 60,60,60,255, 58,58,58,255, 59,59,59,255, 59,59,59,255, 58,58,58,255, 56,56,56,255, 60,60,60,255, 57,57,57,255, 59,59,59,255, 59,59,59,255, 57,57,57,255, 56,56,56,255, 62,62,62,255, 60,60,60,255, 62,62,62,255, 48,48,48,255, 66,66,66,255, 72,72,72,255, 74,74,74,255, 66,66,66,255, 78,78,78,255, 80,80,80,255, 61,61,61,255, 68,68,68,255, 77,77,77,255, 62,62,62,255, 77,77,77,255, 68,68,68,255, 70,70,70,255, 77,77,77,255, 53,53,53,255, 76,76,76,255, 65,65,65,255, 64,64,64,255, 60,60,60,255, 62,62,62,255, 64,64,64,255, 61,61,61,255, 63,63,63,255, 68,68,68,255, 59,59,59,255, 63,63,63,255, 60,60,60,255, 61,61,61,255, 63,63,63,255, 62,62,62,255, 80,80,80,255, 227,38,12,255, 192,34,10,255, 185,34,10,255, 201,34,11,255, 182,31,10,255, 168,30,9,255, 152,24,8,255, 154,26,8,255, 134,21,7,255, 125,17,6,255, 157,26,8,255, 159,26,8,255, 166,28,9,255, 150,23,8,255, 192,34,10,255, 227,38,12,255, 224,126,37,255, 224,128,38,255, 217,100,21,255, 213,87,15,255, 209,80,12,255, 203,63,7,255, 208,74,10,255, 214,91,17,255, 209,77,12,255, 220,113,29,255, 223,126,37,255, 210,81,13,255, 213,87,15,255, 227,140,46,255, 250,235,114,255, 237,181,74,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 60,51,34,255, 60,51,34,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 190,170,142,255, 71,61,41,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 202,182,156,255, 71,61,41,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 190,170,142,255, 60,51,34,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 95,95,95,255, 200,200,200,255, 197,197,197,255, 81,81,81,255, 111,111,111,255, 111,111,111,255, 111,111,111,255, 197,197,197,255, 200,200,200,255, 95,95,95,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 135,135,135,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 191,64,23,255, 200,77,22,255, 200,77,22,255, 202,78,22,255, 200,77,22,255, 201,78,22,255, 191,65,22,255, 194,69,22,255, 187,61,22,255, 202,78,22,255, 200,77,22,255, 200,77,22,255, 200,76,23,255, 193,67,22,255, 187,62,22,255, 191,65,22,255, 133,107,17,255, 182,148,14,255, 162,132,14,255, 195,163,15,255, 132,108,14,255, 182,148,14,255, 157,129,15,255, 197,161,15,255, 161,135,17,255, 182,148,14,255, 132,108,14,255, 151,134,19,255, 181,148,15,255, 182,148,14,255, 132,108,14,255, 168,138,18,255, 57,57,57,255, 58,58,58,255, 59,59,59,255, 59,59,59,255, 58,58,58,255, 54,54,54,255, 54,54,54,255, 53,53,53,255, 55,55,55,255, 52,52,52,255, 55,55,55,255, 60,60,60,255, 59,59,59,255, 56,56,56,255, 60,60,60,255, 58,58,58,255, 48,48,48,255, 54,54,54,255, 66,66,66,255, 75,75,75,255, 66,66,66,255, 75,75,75,255, 75,75,75,255, 61,61,61,255, 67,67,67,255, 68,68,68,255, 62,62,62,255, 65,65,65,255, 64,64,64,255, 64,64,64,255, 62,62,62,255, 52,52,52,255, 77,77,77,255, 62,62,62,255, 62,62,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 62,62,62,255, 62,62,62,255, 74,74,74,255, 227,38,12,255, 188,32,10,255, 174,31,9,255, 170,30,9,255, 209,43,19,255, 150,24,8,255, 112,14,6,255, 123,17,6,255, 121,16,6,255, 141,21,8,255, 134,21,7,255, 154,25,8,255, 180,31,10,255, 181,31,10,255, 186,33,10,255, 227,38,12,255, 224,126,37,255, 219,107,25,255, 212,85,14,255, 209,79,12,255, 207,74,10,255, 205,66,8,255, 215,93,18,255, 221,117,31,255, 220,111,28,255, 208,74,10,255, 204,65,8,255, 209,79,12,255, 217,100,21,255, 236,179,73,255, 237,183,75,255, 236,177,71,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 51,43,27,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 51,43,27,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 60,51,34,255, 60,51,34,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 60,51,34,255, 56,56,56,255, 114,114,114,255, 142,142,142,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 111,111,111,255, 81,81,81,255, 132,132,132,255, 132,132,132,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 121,121,121,255, 112,112,112,255, 36,36,36,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 105,105,105,255, 143,143,143,255, 123,123,123,255, 123,123,123,255, 91,91,91,255, 105,105,105,255, 137,137,137,255, 149,149,149,255, 148,148,148,255, 115,115,115,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 105,43,12,255, 105,43,12,255, 85,38,9,255, 86,38,9,255, 85,38,9,255, 106,44,12,255, 77,36,9,255, 78,37,9,255, 77,36,9,255, 78,37,9,255, 77,36,9,255, 106,44,12,255, 104,43,12,255, 106,44,12,255, 104,43,12,255, 105,43,12,255, 168,138,18,255, 132,108,14,255, 155,134,19,255, 162,132,14,255, 197,161,15,255, 157,129,15,255, 191,156,15,255, 132,108,14,255, 172,145,18,255, 132,108,14,255, 168,138,18,255, 178,145,14,255, 168,138,18,255, 161,132,17,255, 182,148,14,255, 159,130,15,255, 60,60,60,255, 61,61,61,255, 59,59,59,255, 58,58,58,255, 53,53,53,255, 51,51,51,255, 49,49,49,255, 49,49,49,255, 48,48,48,255, 50,50,50,255, 52,52,52,255, 57,57,57,255, 57,57,57,255, 59,59,59,255, 57,57,57,255, 55,55,55,255, 59,59,59,255, 60,60,60,255, 68,68,68,255, 68,68,68,255, 66,66,66,255, 70,70,70,255, 68,68,68,255, 61,61,61,255, 67,67,67,255, 68,68,68,255, 61,61,61,255, 68,68,68,255, 64,64,64,255, 70,70,70,255, 61,61,61,255, 52,52,52,255, 76,76,76,255, 65,65,65,255, 65,65,65,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,63,63,255, 63,63,63,255, 75,75,75,255, 227,38,12,255, 182,33,10,255, 135,20,6,255, 152,25,8,255, 176,30,9,255, 135,19,7,255, 120,15,6,255, 119,15,6,255, 119,15,6,255, 119,15,6,255, 120,15,6,255, 133,19,6,255, 170,29,9,255, 200,32,11,255, 209,43,19,255, 228,36,12,255, 220,113,29,255, 210,81,13,255, 213,87,15,255, 209,79,12,255, 209,79,12,255, 211,85,14,255, 224,129,39,255, 228,143,48,255, 223,125,36,255, 217,101,22,255, 216,99,21,255, 209,79,12,255, 217,102,22,255, 232,162,61,255, 224,128,38,255, 227,142,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 46,39,23,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 46,39,23,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 60,51,34,255, 60,51,34,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 60,51,34,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 197,197,197,255, 101,101,101,255, 197,197,197,255, 176,176,176,255, 111,111,111,255, 81,81,81,255, 197,197,197,255, 176,176,176,255, 121,121,121,255, 197,197,197,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 111,111,111,255, 124,124,124,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 131,131,131,255, 123,123,123,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 147,118,20,255, 147,120,16,255, 142,116,16,255, 177,149,16,255, 145,118,16,255, 147,120,16,255, 138,112,15,255, 157,131,16,255, 143,117,16,255, 148,119,20,255, 146,121,15,255, 159,133,15,255, 150,124,17,255, 187,159,17,255, 145,117,20,255, 147,120,16,255, 140,113,20,255, 194,158,14,255, 137,110,17,255, 175,151,17,255, 162,132,14,255, 185,151,17,255, 132,108,14,255, 171,147,17,255, 137,112,15,255, 152,125,16,255, 139,115,17,255, 196,164,14,255, 165,135,15,255, 182,152,14,255, 139,112,19,255, 181,148,15,255, 60,60,60,255, 57,57,57,255, 59,59,59,255, 56,56,56,255, 52,52,52,255, 48,48,48,255, 46,46,46,255, 46,46,46,255, 46,46,46,255, 47,47,47,255, 50,50,50,255, 54,54,54,255, 57,57,57,255, 61,61,61,255, 58,58,58,255, 56,56,56,255, 53,53,53,255, 60,60,60,255, 64,64,64,255, 75,75,75,255, 62,62,62,255, 70,70,70,255, 69,69,69,255, 75,75,75,255, 67,67,67,255, 68,68,68,255, 61,61,61,255, 68,68,68,255, 64,64,64,255, 70,70,70,255, 58,58,58,255, 55,55,55,255, 79,79,79,255, 61,61,61,255, 61,61,61,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,57,57,255, 57,57,57,255, 74,74,74,255, 227,38,12,255, 181,33,10,255, 158,26,8,255, 127,17,6,255, 148,24,8,255, 116,15,6,255, 144,16,8,255, 116,15,6,255, 116,15,6,255, 116,15,6,255, 118,15,6,255, 156,26,8,255, 187,28,10,255, 171,30,9,255, 185,34,10,255, 228,35,12,255, 218,105,24,255, 211,83,13,255, 214,92,17,255, 211,83,13,255, 211,84,14,255, 220,113,29,255, 228,143,48,255, 226,135,43,255, 215,95,19,255, 215,93,18,255, 225,135,44,255, 222,122,34,255, 210,81,13,255, 218,105,24,255, 218,103,23,255, 222,122,34,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 51,43,27,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 51,43,27,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 60,51,34,255, 60,51,34,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 60,51,34,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 197,197,197,255, 121,121,121,255, 197,197,197,255, 168,168,168,255, 197,197,197,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 132,132,132,255, 197,197,197,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 111,111,111,255, 89,89,89,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 142,142,142,255, 130,130,130,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 190,150,30,255, 179,149,18,255, 164,139,18,255, 218,180,15,255, 149,123,15,255, 180,150,17,255, 172,144,14,255, 188,159,19,255, 169,141,18,255, 177,149,22,255, 178,151,14,255, 204,176,17,255, 171,144,20,255, 204,174,17,255, 149,120,19,255, 212,178,18,255, 183,150,17,255, 172,145,18,255, 152,125,16,255, 210,175,14,255, 194,158,14,255, 156,138,18,255, 193,157,15,255, 167,141,19,255, 193,157,15,255, 149,122,17,255, 197,164,13,255, 160,135,16,255, 147,120,15,255, 164,134,16,255, 182,152,14,255, 163,133,15,255, 58,58,58,255, 59,59,59,255, 58,58,58,255, 54,54,54,255, 49,49,49,255, 46,46,46,255, 44,44,44,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 48,48,48,255, 50,50,50,255, 56,56,56,255, 56,56,56,255, 59,59,59,255, 58,58,58,255, 52,52,52,255, 60,60,60,255, 62,62,62,255, 58,58,58,255, 62,62,62,255, 70,70,70,255, 58,58,58,255, 61,61,61,255, 75,75,75,255, 68,68,68,255, 61,61,61,255, 65,65,65,255, 70,70,70,255, 63,63,63,255, 57,57,57,255, 51,51,51,255, 76,76,76,255, 62,62,62,255, 62,62,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,64,64,255, 64,64,64,255, 71,71,71,255, 227,38,12,255, 181,33,10,255, 158,26,8,255, 118,15,6,255, 115,15,6,255, 116,15,6,255, 116,15,6,255, 116,15,6,255, 112,14,6,255, 116,15,6,255, 116,15,6,255, 119,15,6,255, 188,28,10,255, 172,30,9,255, 185,34,10,255, 227,38,12,255, 217,100,21,255, 213,89,16,255, 218,105,24,255, 217,100,21,255, 219,109,27,255, 230,152,54,255, 234,170,67,255, 221,115,30,255, 205,66,8,255, 219,108,26,255, 233,165,64,255, 225,133,41,255, 208,74,10,255, 219,109,26,255, 223,124,35,255, 219,107,25,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 60,51,34,255, 60,51,34,255, 210,193,171,255, 228,219,206,255, 217,203,184,255, 202,182,156,255, 71,61,41,255, 210,193,171,255, 228,219,206,255, 228,219,206,255, 202,182,156,255, 71,61,41,255, 210,193,171,255, 228,219,206,255, 217,203,184,255, 202,182,156,255, 60,51,34,255, 47,47,47,255, 92,92,92,255, 197,197,197,255, 176,176,176,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 82,82,82,255, 58,58,58,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 101,101,101,255, 89,89,89,255, 33,33,33,255, 20,20,20,255, 0,0,0,255, 0,0,0,255, 20,20,20,255, 33,33,33,255, 142,142,142,255, 135,135,135,255, 89,89,89,255, 82,82,82,255, 58,58,58,255, 191,158,27,255, 183,152,18,255, 186,161,21,255, 210,177,15,255, 172,146,16,255, 181,157,19,255, 172,144,14,255, 186,158,18,255, 181,151,23,255, 206,170,28,255, 164,137,16,255, 207,182,16,255, 161,133,20,255, 205,176,17,255, 171,135,25,255, 189,160,18,255, 183,149,15,255, 197,160,15,255, 165,139,21,255, 145,119,17,255, 168,145,16,255, 175,151,17,255, 154,133,16,255, 167,141,19,255, 150,124,18,255, 205,172,17,255, 160,131,16,255, 184,158,16,255, 181,151,15,255, 145,119,17,255, 164,129,24,255, 183,150,17,255, 62,62,62,255, 59,59,59,255, 57,57,57,255, 54,54,54,255, 48,48,48,255, 46,46,46,255, 44,44,44,255, 44,44,44,255, 45,45,45,255, 45,45,45,255, 46,46,46,255, 49,49,49,255, 54,54,54,255, 58,58,58,255, 59,59,59,255, 60,60,60,255, 48,48,48,255, 56,56,56,255, 62,62,62,255, 58,58,58,255, 62,62,62,255, 75,75,75,255, 58,58,58,255, 61,61,61,255, 67,67,67,255, 68,68,68,255, 62,62,62,255, 65,65,65,255, 70,70,70,255, 58,58,58,255, 56,56,56,255, 48,48,48,255, 76,76,76,255, 59,59,59,255, 59,59,59,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,60,60,255, 60,60,60,255, 68,68,68,255, 227,38,12,255, 193,33,10,255, 163,27,8,255, 129,18,6,255, 115,15,6,255, 116,15,6,255, 116,15,6,255, 116,15,6,255, 116,15,6,255, 144,16,8,255, 116,15,6,255, 156,26,8,255, 159,26,8,255, 171,30,9,255, 194,34,10,255, 227,38,12,255, 215,96,19,255, 213,89,16,255, 213,89,16,255, 212,85,14,255, 223,124,36,255, 238,186,78,255, 237,182,76,255, 225,129,39,255, 205,68,9,255, 209,76,11,255, 219,109,26,255, 210,81,13,255, 201,57,6,255, 210,81,13,255, 210,81,13,255, 212,85,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 60,51,34,255, 60,51,34,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 190,170,142,255, 71,61,41,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 190,170,142,255, 71,61,41,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 190,170,142,255, 60,51,34,255, 47,47,47,255, 68,68,68,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 157,157,157,255, 157,157,157,255, 168,168,168,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 120,120,120,255, 59,59,59,255, 47,47,47,255, 68,68,68,255, 112,112,112,255, 139,139,139,255, 89,89,89,255, 33,33,33,255, 20,20,20,255, 0,0,0,255, 0,0,0,255, 20,20,20,255, 33,33,33,255, 142,142,142,255, 93,93,93,255, 75,75,75,255, 120,120,120,255, 59,59,59,255, 194,164,26,255, 212,181,19,255, 176,154,22,255, 196,172,15,255, 172,145,16,255, 200,175,18,255, 172,144,14,255, 208,183,18,255, 173,149,21,255, 206,171,28,255, 165,137,16,255, 204,178,17,255, 171,144,20,255, 202,174,16,255, 174,148,26,255, 203,175,18,255, 170,141,24,255, 207,173,15,255, 154,126,16,255, 188,165,14,255, 194,162,14,255, 177,148,17,255, 193,161,13,255, 158,136,18,255, 143,124,17,255, 162,133,20,255, 191,156,15,255, 159,133,15,255, 198,165,14,255, 177,156,17,255, 195,163,17,255, 147,121,17,255, 60,60,60,255, 59,59,59,255, 57,57,57,255, 54,54,54,255, 48,48,48,255, 46,46,46,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 46,46,46,255, 49,49,49,255, 54,54,54,255, 54,54,54,255, 59,59,59,255, 57,57,57,255, 48,48,48,255, 53,53,53,255, 60,60,60,255, 58,58,58,255, 69,69,69,255, 66,66,66,255, 58,58,58,255, 68,68,68,255, 64,64,64,255, 68,68,68,255, 68,68,68,255, 65,65,65,255, 62,62,62,255, 65,65,65,255, 55,55,55,255, 48,48,48,255, 76,76,76,255, 58,58,58,255, 58,58,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 68,68,68,255, 68,68,68,255, 79,79,79,255, 227,38,12,255, 194,34,10,255, 163,27,8,255, 133,19,7,255, 117,15,6,255, 112,14,6,255, 116,15,6,255, 116,15,6,255, 116,15,6,255, 116,15,6,255, 116,15,6,255, 123,17,6,255, 127,18,6,255, 157,26,8,255, 178,32,10,255, 227,38,12,255, 220,113,29,255, 227,140,46,255, 219,107,25,255, 211,83,13,255, 209,78,12,255, 224,130,40,255, 227,141,47,255, 219,110,27,255, 206,70,9,255, 204,65,8,255, 204,64,8,255, 211,83,13,255, 210,81,13,255, 203,61,7,255, 208,74,10,255, 214,92,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 51,43,27,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 51,43,27,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 60,51,34,255, 60,51,34,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 60,51,34,255, 75,75,75,255, 142,142,142,255, 197,197,197,255, 168,168,168,255, 168,168,168,255, 33,33,33,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 33,33,33,255, 200,200,200,255, 176,176,176,255, 176,176,176,255, 142,142,142,255, 63,63,63,255, 41,41,41,255, 82,82,82,255, 144,144,144,255, 146,146,146,255, 89,89,89,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 33,33,33,255, 142,142,142,255, 107,107,107,255, 151,151,151,255, 80,80,80,255, 48,48,48,255, 176,153,26,255, 213,183,18,255, 148,124,18,255, 196,171,15,255, 173,148,15,255, 203,175,17,255, 148,122,14,255, 207,182,18,255, 175,152,22,255, 183,160,29,255, 165,138,17,255, 204,178,17,255, 160,132,23,255, 201,174,17,255, 161,130,15,255, 203,175,18,255, 184,154,16,255, 157,132,17,255, 185,155,15,255, 167,137,19,255, 158,139,16,255, 140,112,14,255, 134,110,16,255, 205,171,15,255, 180,155,18,255, 210,175,14,255, 139,115,17,255, 181,151,15,255, 154,128,22,255, 203,170,15,255, 173,145,15,255, 181,152,17,255, 60,60,60,255, 59,59,59,255, 58,58,58,255, 55,55,55,255, 51,51,51,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 52,52,52,255, 55,55,55,255, 56,56,56,255, 57,57,57,255, 58,58,58,255, 46,46,46,255, 52,52,52,255, 59,59,59,255, 60,60,60,255, 63,63,63,255, 66,66,66,255, 58,58,58,255, 66,66,66,255, 66,66,66,255, 65,65,65,255, 68,68,68,255, 75,75,75,255, 60,60,60,255, 65,65,65,255, 54,54,54,255, 45,45,45,255, 70,70,70,255, 62,62,62,255, 62,62,62,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,58,58,255, 58,58,58,255, 80,80,80,255, 227,38,12,255, 194,34,10,255, 161,27,8,255, 125,17,6,255, 114,14,6,255, 119,15,6,255, 119,15,6,255, 156,26,8,255, 112,14,6,255, 119,15,6,255, 119,15,6,255, 123,17,6,255, 127,18,6,255, 157,26,8,255, 178,32,10,255, 227,38,12,255, 226,137,44,255, 229,149,52,255, 230,151,53,255, 217,102,22,255, 207,72,10,255, 211,82,13,255, 215,96,19,255, 208,74,10,255, 201,56,6,255, 200,54,5,255, 208,74,11,255, 237,181,74,255, 235,173,68,255, 209,79,12,255, 209,79,12,255, 223,124,35,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 46,39,23,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 46,39,23,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 51,43,27,255, 60,51,34,255, 60,51,34,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 60,51,34,255, 75,75,75,255, 121,121,121,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 157,157,157,255, 33,33,33,255, 19,19,19,255, 16,16,16,255, 33,33,33,255, 200,200,200,255, 176,176,176,255, 157,157,157,255, 168,168,168,255, 121,121,121,255, 48,48,48,255, 45,45,45,255, 80,80,80,255, 119,119,119,255, 122,122,122,255, 122,122,122,255, 142,142,142,255, 142,142,142,255, 142,142,142,255, 142,142,142,255, 142,142,142,255, 142,142,142,255, 89,89,89,255, 107,107,107,255, 106,106,106,255, 105,105,105,255, 41,41,41,255, 147,123,18,255, 156,130,16,255, 142,117,16,255, 152,126,15,255, 141,116,16,255, 188,160,16,255, 138,112,15,255, 155,131,16,255, 145,120,17,255, 148,124,20,255, 147,121,15,255, 155,130,16,255, 137,110,19,255, 155,129,16,255, 141,114,15,255, 150,124,16,255, 171,140,17,255, 149,125,15,255, 133,116,19,255, 173,145,17,255, 144,118,14,255, 186,156,14,255, 168,138,18,255, 147,127,19,255, 163,133,15,255, 149,122,17,255, 159,130,17,255, 153,126,17,255, 181,148,15,255, 149,125,15,255, 185,155,15,255, 141,116,17,255, 59,59,59,255, 58,58,58,255, 55,55,55,255, 57,57,57,255, 52,52,52,255, 50,50,50,255, 47,47,47,255, 46,46,46,255, 46,46,46,255, 47,47,47,255, 50,50,50,255, 53,53,53,255, 57,57,57,255, 57,57,57,255, 57,57,57,255, 60,60,60,255, 45,45,45,255, 60,60,60,255, 53,53,53,255, 60,60,60,255, 75,75,75,255, 66,66,66,255, 58,58,58,255, 75,75,75,255, 66,66,66,255, 55,55,55,255, 55,55,55,255, 75,75,75,255, 61,61,61,255, 78,78,78,255, 49,49,49,255, 47,47,47,255, 80,80,80,255, 67,67,67,255, 67,67,67,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,60,60,255, 60,60,60,255, 76,76,76,255, 227,38,12,255, 194,34,10,255, 121,15,6,255, 121,15,6,255, 120,15,6,255, 116,15,6,255, 119,15,6,255, 119,15,6,255, 209,43,19,255, 119,15,6,255, 123,17,6,255, 122,17,6,255, 139,21,7,255, 163,28,8,255, 209,43,19,255, 227,38,12,255, 227,142,47,255, 227,142,47,255, 235,175,70,255, 220,113,29,255, 209,77,11,255, 208,74,10,255, 202,59,6,255, 199,52,5,255, 203,61,7,255, 204,65,8,255, 215,94,18,255, 242,205,91,255, 235,175,70,255, 209,79,12,255, 208,74,10,255, 221,117,31,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 51,43,27,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 51,43,27,255, 86,69,43,255, 86,69,43,255, 86,69,43,255, 79,64,41,255, 60,51,34,255, 60,51,34,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 210,193,171,255, 210,193,171,255, 101,79,49,255, 60,51,34,255, 75,75,75,255, 127,127,127,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 19,19,19,255, 19,19,19,255, 200,200,200,255, 168,168,168,255, 176,176,176,255, 176,176,176,255, 163,163,163,255, 118,118,118,255, 50,50,50,255, 56,56,56,255, 114,114,114,255, 136,136,136,255, 122,122,122,255, 115,115,115,255, 89,89,89,255, 122,122,122,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 89,89,89,255, 100,100,100,255, 142,142,142,255, 106,106,106,255, 112,112,112,255, 36,36,36,255, 191,66,23,255, 202,78,22,255, 189,64,22,255, 190,64,22,255, 190,64,22,255, 201,78,22,255, 199,76,22,255, 201,78,22,255, 200,77,22,255, 191,66,23,255, 191,65,22,255, 193,68,22,255, 200,77,23,255, 193,68,22,255, 187,63,22,255, 192,66,22,255, 133,107,17,255, 191,156,15,255, 132,108,14,255, 190,155,14,255, 150,123,16,255, 182,148,14,255, 157,129,15,255, 182,148,14,255, 136,115,18,255, 192,160,14,255, 185,155,15,255, 200,167,14,255, 181,148,15,255, 192,160,14,255, 162,132,14,255, 191,156,15,255, 60,60,60,255, 60,60,60,255, 57,57,57,255, 58,58,58,255, 59,59,59,255, 54,54,54,255, 51,51,51,255, 51,51,51,255, 49,49,49,255, 50,50,50,255, 52,52,52,255, 53,53,53,255, 59,59,59,255, 58,58,58,255, 60,60,60,255, 60,60,60,255, 45,45,45,255, 60,60,60,255, 75,75,75,255, 59,59,59,255, 75,75,75,255, 58,58,58,255, 61,61,61,255, 61,61,61,255, 56,56,56,255, 56,56,56,255, 61,61,61,255, 75,75,75,255, 60,60,60,255, 78,78,78,255, 52,52,52,255, 45,45,45,255, 74,74,74,255, 67,67,67,255, 67,67,67,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,66,66,255, 66,66,66,255, 76,76,76,255, 227,38,12,255, 148,21,8,255, 129,18,6,255, 163,28,8,255, 132,16,7,255, 120,15,6,255, 156,26,8,255, 160,26,8,255, 125,15,6,255, 120,15,6,255, 129,19,6,255, 138,21,7,255, 153,25,8,255, 163,28,8,255, 182,33,10,255, 227,38,12,255, 210,81,13,255, 214,92,17,255, 215,96,19,255, 215,94,18,255, 226,135,42,255, 231,155,56,255, 209,77,11,255, 200,54,5,255, 206,70,9,255, 209,79,12,255, 207,72,10,255, 219,107,25,255, 214,92,17,255, 203,61,7,255, 208,74,10,255, 209,77,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 60,51,34,255, 60,51,34,255, 210,193,171,255, 228,219,206,255, 217,203,184,255, 190,170,142,255, 71,61,41,255, 210,193,171,255, 228,219,206,255, 217,203,184,255, 202,182,156,255, 71,61,41,255, 210,193,171,255, 228,219,206,255, 217,203,184,255, 202,182,156,255, 60,51,34,255, 75,75,75,255, 127,127,127,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 176,176,176,255, 200,200,200,255, 200,200,200,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 176,176,176,255, 127,127,127,255, 45,45,45,255, 43,43,43,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 89,89,89,255, 110,110,110,255, 122,122,122,255, 96,96,96,255, 88,88,88,255, 144,144,144,255, 136,136,136,255, 122,122,122,255, 122,122,122,255, 56,56,56,255, 36,36,36,255, 104,43,12,255, 106,44,12,255, 104,43,12,255, 77,36,9,255, 77,36,9,255, 95,41,11,255, 95,40,11,255, 78,37,9,255, 77,36,9,255, 105,43,12,255, 86,38,9,255, 86,38,9,255, 86,38,9,255, 86,38,9,255, 103,43,12,255, 78,37,9,255, 179,146,17,255, 178,145,14,255, 181,151,15,255, 144,118,16,255, 185,151,15,255, 157,129,15,255, 170,146,16,255, 132,108,14,255, 182,148,14,255, 132,108,14,255, 168,138,18,255, 157,129,15,255, 186,160,16,255, 136,115,18,255, 192,160,14,255, 163,133,15,255, 60,60,60,255, 63,63,63,255, 60,60,60,255, 54,54,54,255, 60,60,60,255, 60,60,60,255, 58,58,58,255, 57,57,57,255, 55,55,55,255, 56,56,56,255, 58,58,58,255, 58,58,58,255, 55,55,55,255, 60,60,60,255, 58,58,58,255, 60,60,60,255, 46,46,46,255, 50,50,50,255, 75,75,75,255, 55,55,55,255, 61,61,61,255, 66,66,66,255, 78,78,78,255, 61,61,61,255, 51,51,51,255, 65,65,65,255, 61,61,61,255, 57,57,57,255, 65,65,65,255, 78,78,78,255, 53,53,53,255, 47,47,47,255, 79,79,79,255, 64,64,64,255, 64,64,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,60,60,255, 60,60,60,255, 73,73,73,255, 199,32,11,255, 185,30,10,255, 185,34,10,255, 165,28,9,255, 163,28,8,255, 188,30,10,255, 183,31,10,255, 159,26,8,255, 125,17,6,255, 147,24,8,255, 139,21,7,255, 153,25,8,255, 163,28,8,255, 131,19,6,255, 182,33,10,255, 227,38,12,255, 215,94,18,255, 213,87,15,255, 209,79,12,255, 213,89,16,255, 232,160,59,255, 237,183,75,255, 213,87,15,255, 204,65,8,255, 209,79,12,255, 215,94,18,255, 222,122,34,255, 211,83,13,255, 202,59,6,255, 202,59,6,255, 211,83,13,255, 218,103,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 51,43,27,255, 86,69,43,255, 73,60,39,255, 73,60,39,255, 66,55,36,255, 60,51,34,255, 60,51,34,255, 210,193,171,255, 228,219,206,255, 210,193,171,255, 190,170,142,255, 71,61,41,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 190,170,142,255, 71,61,41,255, 210,193,171,255, 217,203,184,255, 210,193,171,255, 190,170,142,255, 60,51,34,255, 74,74,74,255, 118,118,118,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 168,168,168,255, 113,113,113,255, 50,50,50,255, 50,50,50,255, 97,97,97,255, 115,115,115,255, 147,147,147,255, 140,140,140,255, 147,147,147,255, 106,106,106,255, 89,89,89,255, 110,110,110,255, 157,157,157,255, 137,137,137,255, 122,122,122,255, 129,129,129,255, 122,122,122,255, 97,97,97,255, 35,35,35,255, 132,116,19,255, 145,118,16,255, 142,118,16,255, 144,117,16,255, 148,123,17,255, 147,123,16,255, 136,110,17,255, 140,120,17,255, 137,112,18,255, 142,116,19,255, 141,116,15,255, 140,119,17,255, 144,116,19,255, 150,125,16,255, 134,112,18,255, 151,122,16,255, 129,110,19,255, 184,150,14,255, 133,115,17,255, 187,157,15,255, 150,123,16,255, 200,163,14,255, 144,118,16,255, 168,138,18,255, 157,128,15,255, 182,152,14,255, 164,134,14,255, 188,153,14,255, 178,146,16,255, 203,170,15,255, 155,130,15,255, 171,140,17,255, 58,58,58,255, 57,57,57,255, 63,63,63,255, 60,60,60,255, 59,59,59,255, 60,60,60,255, 59,59,59,255, 58,58,58,255, 59,59,59,255, 56,56,56,255, 56,56,56,255, 56,56,56,255, 55,55,55,255, 62,62,62,255, 56,56,56,255, 62,62,62,255, 46,46,46,255, 49,49,49,255, 75,75,75,255, 59,59,59,255, 75,75,75,255, 66,66,66,255, 78,78,78,255, 61,61,61,255, 55,55,55,255, 75,75,75,255, 53,53,53,255, 61,61,61,255, 60,60,60,255, 78,78,78,255, 65,65,65,255, 47,47,47,255, 84,84,84,255, 59,59,59,255, 60,60,60,255, 60,60,60,255, 63,63,63,255, 63,63,63,255, 62,62,62,255, 64,64,64,255, 61,61,61,255, 62,62,62,255, 64,64,64,255, 65,65,65,255, 61,61,61,255, 66,66,66,255, 62,62,62,255, 75,75,75,255, 199,32,11,255, 207,35,11,255, 194,34,10,255, 131,19,6,255, 185,34,10,255, 209,43,19,255, 175,30,9,255, 163,28,8,255, 163,28,8,255, 163,28,8,255, 163,28,8,255, 178,32,10,255, 178,32,10,255, 185,34,10,255, 192,34,10,255, 227,38,12,255, 235,175,70,255, 226,135,42,255, 213,89,16,255, 218,105,24,255, 217,102,22,255, 216,98,20,255, 203,63,7,255, 206,68,9,255, 214,92,17,255, 217,100,21,255, 225,133,41,255, 211,83,13,255, 209,79,12,255, 206,68,9,255, 214,92,17,255, 234,169,65,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 51,43,27,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 51,43,27,255, 79,64,41,255, 66,55,36,255, 66,55,36,255, 63,53,35,255, 60,51,34,255, 60,51,34,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 202,182,156,255, 202,182,156,255, 101,79,49,255, 71,61,41,255, 101,79,49,255, 202,182,156,255, 190,170,142,255, 101,79,49,255, 60,51,34,255, 77,77,77,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 113,113,113,255, 113,113,113,255, 121,121,121,255, 121,121,121,255, 113,113,113,255, 113,113,113,255, 113,113,113,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 45,45,45,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 129,132,26,255, 173,143,19,255, 155,140,20,255, 164,136,19,255, 130,124,27,255, 136,121,20,255, 195,167,17,255, 152,141,23,255, 147,121,24,255, 194,168,17,255, 183,150,17,255, 147,138,23,255, 158,126,28,255, 149,139,22,255, 132,107,16,255, 187,151,16,255, 167,141,19,255, 166,136,18,255, 187,157,15,255, 158,130,18,255, 180,155,18,255, 157,135,17,255, 203,170,15,255, 167,148,19,255, 185,151,17,255, 186,160,16,255, 202,164,14,255, 163,144,19,255, 188,154,18,255, 143,133,21,255, 210,175,14,255, 167,133,17,255, 57,57,57,255, 62,62,62,255, 61,61,61,255, 60,60,60,255, 57,57,57,255, 60,60,60,255, 59,59,59,255, 61,61,61,255, 59,59,59,255, 58,58,58,255, 60,60,60,255, 60,60,60,255, 63,63,63,255, 58,58,58,255, 60,60,60,255, 61,61,61,255, 46,46,46,255, 50,50,50,255, 54,54,54,255, 58,58,58,255, 75,75,75,255, 61,61,61,255, 61,61,61,255, 61,61,61,255, 56,56,56,255, 75,75,75,255, 53,53,53,255, 61,61,61,255, 57,57,57,255, 75,75,75,255, 65,65,65,255, 49,49,49,255, 76,76,76,255, 58,58,58,255, 60,60,60,255, 60,60,60,255, 63,63,63,255, 63,63,63,255, 62,62,62,255, 64,64,64,255, 61,61,61,255, 62,62,62,255, 64,64,64,255, 65,65,65,255, 61,61,61,255, 66,66,66,255, 59,59,59,255, 77,77,77,255, 227,38,12,255, 209,43,19,255, 207,35,11,255, 194,34,10,255, 213,36,11,255, 212,36,11,255, 185,34,10,255, 185,34,10,255, 131,19,6,255, 194,34,10,255, 194,34,10,255, 209,43,19,255, 186,33,10,255, 192,34,10,255, 201,35,11,255, 227,38,12,255, 238,186,78,255, 238,186,78,255, 223,124,35,255, 227,142,47,255, 215,94,18,255, 208,74,10,255, 201,57,6,255, 203,61,7,255, 208,74,10,255, 210,81,13,255, 214,92,17,255, 217,100,21,255, 226,137,44,255, 217,100,21,255, 212,85,14,255, 227,142,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 63,63,63,255, 48,48,48,255, 50,50,50,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 48,48,48,255, 41,41,41,255, 41,41,41,255, 41,41,41,255, 48,48,48,255, 48,48,48,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 121,122,26,255, 168,140,18,255, 129,119,22,255, 162,132,19,255, 120,121,25,255, 136,118,20,255, 183,155,18,255, 143,131,26,255, 146,118,24,255, 188,161,18,255, 182,149,17,255, 127,128,26,255, 158,126,28,255, 145,135,22,255, 132,109,16,255, 187,151,16,255, 177,148,17,255, 181,148,17,255, 166,140,18,255, 175,143,17,255, 123,115,23,255, 179,146,17,255, 163,137,19,255, 179,146,17,255, 139,113,23,255, 179,146,17,255, 162,133,18,255, 187,153,15,255, 167,138,21,255, 170,143,18,255, 129,106,17,255, 171,140,19,255, 58,58,58,255, 63,63,63,255, 60,60,60,255, 60,60,60,255, 58,58,58,255, 65,65,65,255, 58,58,58,255, 61,61,61,255, 60,60,60,255, 61,61,61,255, 59,59,59,255, 61,61,61,255, 61,61,61,255, 58,58,58,255, 58,58,58,255, 60,60,60,255, 46,46,46,255, 51,51,51,255, 54,54,54,255, 63,63,63,255, 56,56,56,255, 56,56,56,255, 61,61,61,255, 65,65,65,255, 53,53,53,255, 75,75,75,255, 53,53,53,255, 57,57,57,255, 57,57,57,255, 65,65,65,255, 53,53,53,255, 47,47,47,255, 73,73,73,255, 76,76,76,255, 77,77,77,255, 71,71,71,255, 77,77,77,255, 75,75,75,255, 82,82,82,255, 74,74,74,255, 82,82,82,255, 77,77,77,255, 79,79,79,255, 75,75,75,255, 76,76,76,255, 71,71,71,255, 80,80,80,255, 76,76,76,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 227,38,12,255, 222,120,33,255, 223,124,35,255, 221,117,31,255, 231,158,58,255, 226,135,42,255, 218,105,24,255, 212,85,14,255, 206,68,9,255, 205,66,8,255, 208,74,10,255, 213,87,15,255, 224,126,37,255, 230,151,53,255, 225,131,40,255, 213,89,16,255, 217,100,21,255, 209,177,161,255, 207,175,160,255, 207,175,160,255, 207,175,160,255, 209,175,161,255, 210,179,163,255, 212,183,164,255, 211,180,163,255, 207,177,160,255, 212,183,163,255, 211,182,163,255, 209,177,160,255, 207,174,159,255, 207,174,159,255, 207,174,159,255, 209,177,160,255, 160,83,37,255, 159,82,36,255, 159,82,36,255, 159,82,36,255, 160,82,37,255, 162,84,39,255, 165,89,41,255, 164,86,40,255, 159,83,36,255, 165,88,40,255, 164,87,40,255, 160,82,36,255, 158,81,34,255, 158,81,34,255, 158,81,35,255, 160,82,36,255, 149,87,108,255, 147,86,107,255, 147,86,107,255, 147,86,107,255, 149,86,108,255, 150,89,110,255, 154,92,112,255, 152,91,110,255, 147,87,107,255, 154,92,110,255, 152,92,110,255, 149,86,107,255, 145,84,105,255, 145,84,105,255, 146,85,105,255, 149,86,107,255, 112,108,138,255, 111,107,137,255, 111,107,137,255, 111,107,137,255, 112,107,138,255, 114,109,139,255, 117,111,140,255, 115,110,139,255, 111,108,137,255, 117,111,139,255, 115,110,139,255, 112,108,137,255, 111,106,136,255, 111,106,136,255, 111,106,136,255, 112,108,137,255, 185,132,35,255, 184,131,34,255, 184,131,34,255, 184,131,34,255, 185,131,35,255, 186,134,37,255, 190,138,38,255, 189,136,37,255, 184,132,34,255, 190,137,37,255, 189,137,37,255, 185,131,34,255, 183,129,32,255, 183,129,32,255, 183,130,32,255, 185,131,34,255, 103,117,52,255, 100,116,51,255, 100,116,51,255, 100,116,51,255, 103,116,52,255, 104,119,55,255, 108,122,56,255, 107,119,55,255, 100,117,51,255, 108,121,55,255, 107,121,55,255, 103,116,51,255, 99,114,49,255, 99,114,49,255, 100,114,49,255, 103,116,51,255, 160,77,78,255, 159,76,77,255, 159,76,77,255, 159,76,77,255, 160,76,78,255, 163,79,81,255, 166,82,82,255, 164,81,81,255, 159,77,77,255, 166,82,81,255, 164,82,81,255, 160,77,77,255, 158,74,75,255, 158,74,75,255, 159,75,75,255, 160,77,77,255, 57,42,36,255, 57,41,35,255, 57,41,35,255, 57,41,35,255, 57,41,36,255, 58,43,36,255, 59,45,37,255, 59,44,36,255, 57,42,35,255, 59,45,36,255, 59,44,36,255, 57,42,35,255, 56,40,34,255, 56,40,34,255, 56,41,34,255, 57,42,35,255, 135,106,97,255, 133,105,96,255, 133,105,96,255, 133,105,96,255, 135,105,97,255, 135,107,99,255, 138,110,100,255, 138,109,99,255, 133,106,96,255, 138,110,99,255, 138,109,99,255, 135,106,96,255, 132,104,95,255, 132,104,95,255, 132,105,95,255, 135,106,96,255, 86,90,91,255, 85,89,90,255, 85,89,90,255, 85,89,90,255, 86,89,91,255, 87,92,92,255, 90,95,94,255, 89,93,93,255, 85,90,90,255, 90,95,93,255, 89,94,93,255, 86,90,90,255, 83,87,87,255, 83,87,87,255, 84,88,88,255, 86,90,90,255, 118,69,86,255, 115,68,84,255, 115,68,84,255, 115,68,84,255, 118,68,86,255, 119,71,88,255, 123,74,90,255, 122,73,89,255, 115,69,84,255, 123,74,89,255, 122,73,89,255, 118,69,84,255, 114,66,82,255, 114,66,82,255, 115,67,83,255, 118,69,84,255, 74,59,91,255, 73,58,90,255, 73,58,90,255, 73,58,90,255, 74,58,91,255, 74,60,92,255, 76,63,93,255, 76,61,92,255, 73,59,90,255, 76,63,92,255, 76,62,92,255, 74,59,90,255, 73,57,89,255, 73,57,89,255, 73,57,89,255, 74,59,90,255, 77,50,36,255, 76,50,35,255, 76,50,35,255, 76,50,35,255, 77,50,36,255, 77,52,36,255, 79,54,38,255, 79,53,37,255, 76,50,35,255, 79,54,37,255, 79,54,37,255, 77,50,35,255, 75,48,33,255, 75,48,33,255, 75,49,34,255, 77,50,35,255, 75,82,42,255, 75,82,41,255, 75,82,41,255, 75,82,41,255, 75,82,42,255, 76,84,44,255, 78,86,45,255, 77,85,44,255, 75,82,41,255, 78,86,44,255, 77,86,44,255, 75,82,41,255, 74,81,40,255, 74,81,40,255, 74,82,40,255, 75,82,41,255, 142,60,46,255, 141,59,46,255, 141,59,46,255, 141,59,46,255, 142,59,46,255, 144,62,48,255, 147,65,50,255, 146,64,49,255, 141,60,46,255, 147,64,49,255, 146,64,49,255, 142,59,46,255, 139,57,43,255, 139,57,43,255, 140,58,44,255, 142,59,46,255, 37,22,16,255, 36,22,16,255, 36,22,16,255, 36,22,16,255, 37,22,16,255, 37,23,17,255, 39,25,18,255, 38,24,17,255, 36,22,16,255, 39,25,17,255, 38,24,17,255, 37,22,16,255, 36,21,15,255, 36,21,15,255, 36,21,15,255, 37,22,16,255, 209,177,161,255, 210,177,161,255, 212,182,164,255, 212,183,164,255, 212,180,164,255, 210,179,166,255, 209,177,161,255, 209,177,160,255, 209,177,160,255, 210,180,161,255, 212,183,163,255, 211,182,163,255, 207,175,160,255, 210,177,161,255, 210,177,161,255, 207,175,160,255, 160,83,37,255, 162,83,36,255, 165,87,41,255, 167,88,42,255, 167,85,42,255, 162,84,43,255, 159,83,36,255, 160,82,36,255, 160,83,36,255, 162,85,37,255, 165,88,41,255, 163,87,39,255, 158,82,36,255, 162,83,36,255, 162,83,36,255, 159,82,36,255, 149,87,108,255, 149,87,108,255, 154,92,112,255, 155,92,112,255, 155,89,112,255, 150,89,113,255, 148,88,108,255, 149,86,107,255, 149,88,107,255, 150,89,108,255, 153,92,111,255, 151,91,110,255, 146,85,107,255, 149,87,108,255, 149,87,108,255, 147,86,107,255, 112,108,138,255, 114,108,138,255, 117,110,140,255, 117,111,140,255, 117,110,140,255, 114,109,141,255, 112,108,138,255, 112,108,137,255, 112,108,137,255, 114,110,138,255, 116,111,140,255, 115,110,139,255, 111,107,137,255, 114,108,138,255, 114,108,138,255, 111,107,137,255, 185,132,35,255, 186,132,35,255, 190,137,38,255, 191,137,39,255, 191,134,39,255, 186,134,40,255, 185,133,35,255, 185,131,34,255, 185,133,34,255, 186,134,35,255, 190,137,38,255, 188,136,37,255, 183,130,33,255, 186,132,35,255, 186,132,35,255, 184,131,34,255, 103,117,52,255, 103,117,52,255, 108,121,56,255, 108,121,56,255, 108,119,56,255, 104,119,57,255, 102,117,52,255, 103,116,51,255, 103,117,51,255, 104,119,52,255, 107,121,55,255, 105,120,55,255, 100,115,51,255, 103,117,52,255, 103,117,52,255, 100,116,51,255, 160,77,78,255, 162,77,78,255, 166,82,82,255, 167,82,82,255, 167,80,82,255, 163,79,83,255, 160,78,78,255, 160,77,77,255, 160,78,77,255, 163,80,78,255, 165,82,82,255, 164,81,81,255, 159,75,76,255, 162,77,78,255, 162,77,78,255, 159,76,77,255, 57,42,36,255, 58,42,35,255, 59,44,37,255, 60,45,37,255, 60,43,37,255, 58,43,38,255, 57,42,35,255, 57,42,35,255, 57,42,35,255, 58,43,36,255, 59,45,36,255, 58,44,36,255, 56,41,35,255, 58,42,35,255, 58,42,35,255, 57,41,35,255, 135,106,97,255, 135,106,97,255, 138,109,100,255, 139,110,100,255, 139,108,100,255, 135,107,101,255, 134,107,97,255, 135,106,96,255, 135,107,96,255, 135,108,97,255, 138,110,100,255, 136,109,99,255, 132,105,96,255, 135,106,97,255, 135,106,97,255, 133,105,96,255, 86,90,91,255, 86,90,90,255, 90,94,94,255, 91,95,95,255, 91,92,95,255, 87,92,96,255, 85,91,90,255, 86,90,90,255, 86,91,90,255, 87,92,91,255, 89,95,93,255, 88,93,92,255, 84,88,89,255, 86,90,90,255, 86,90,90,255, 85,89,90,255, 118,69,86,255, 118,69,85,255, 123,73,90,255, 123,74,90,255, 123,72,90,255, 119,71,92,255, 116,70,85,255, 118,69,84,255, 118,70,84,255, 119,72,86,255, 122,74,89,255, 120,73,88,255, 115,68,84,255, 118,69,85,255, 118,69,85,255, 115,68,84,255, 74,59,91,255, 74,59,91,255, 76,62,93,255, 77,63,93,255, 77,61,93,255, 74,60,94,255, 73,59,91,255, 74,59,90,255, 74,59,90,255, 74,61,91,255, 76,63,92,255, 75,62,92,255, 73,58,90,255, 74,59,91,255, 74,59,91,255, 73,58,90,255, 77,50,36,255, 77,50,35,255, 79,54,38,255, 80,54,38,255, 80,52,38,255, 77,52,39,255, 76,51,35,255, 77,50,35,255, 77,51,35,255, 77,52,36,255, 79,54,37,255, 78,53,36,255, 75,49,35,255, 77,50,35,255, 77,50,35,255, 76,50,35,255, 75,82,42,255, 76,82,42,255, 78,86,45,255, 79,86,45,255, 79,84,45,255, 76,84,46,255, 75,83,42,255, 75,82,41,255, 75,83,41,255, 76,84,42,255, 78,86,44,255, 77,85,44,255, 74,82,41,255, 76,82,42,255, 76,82,42,255, 75,82,41,255, 142,60,46,255, 142,60,46,255, 147,64,50,255, 148,64,51,255, 148,62,51,255, 144,62,52,255, 141,61,46,255, 142,59,46,255, 142,61,46,255, 144,62,46,255, 146,64,50,255, 145,64,48,255, 140,58,45,255, 142,60,46,255, 142,60,46,255, 141,59,46,255, 37,22,16,255, 37,22,16,255, 39,24,18,255, 39,25,18,255, 39,23,18,255, 37,23,19,255, 37,23,16,255, 37,22,16,255, 37,23,16,255, 37,23,16,255, 38,25,18,255, 38,24,17,255, 36,22,15,255, 37,22,16,255, 37,22,16,255, 36,22,16,255, 209,177,162,255, 205,177,161,255, 209,177,161,255, 209,177,160,255, 207,175,159,255, 207,174,159,255, 207,175,159,255, 209,177,160,255, 211,180,162,255, 210,179,162,255, 210,180,162,255, 210,179,162,255, 209,177,162,255, 210,183,162,255, 210,179,161,255, 210,179,159,255, 160,83,38,255, 155,82,36,255, 159,83,36,255, 160,82,36,255, 159,82,36,255, 158,81,36,255, 159,82,36,255, 160,82,36,255, 164,86,39,255, 162,84,39,255, 162,86,39,255, 162,84,39,255, 160,83,38,255, 163,89,39,255, 163,84,36,255, 162,84,36,255, 149,88,110,255, 144,86,108,255, 148,88,108,255, 149,86,107,255, 147,85,106,255, 145,85,106,255, 147,85,106,255, 149,86,107,255, 152,90,110,255, 149,89,110,255, 149,90,110,255, 149,89,110,255, 149,88,110,255, 151,92,110,255, 151,89,108,255, 150,89,106,255, 112,108,138,255, 108,108,138,255, 112,108,138,255, 112,108,137,255, 111,107,137,255, 111,106,137,255, 111,107,137,255, 112,108,137,255, 115,110,138,255, 114,109,138,255, 114,110,138,255, 114,109,138,255, 112,108,138,255, 114,111,138,255, 114,109,138,255, 114,109,137,255, 185,133,36,255, 180,131,35,255, 185,133,35,255, 185,131,34,255, 184,130,33,255, 183,130,33,255, 184,130,33,255, 185,131,34,255, 189,135,36,255, 186,134,36,255, 186,135,36,255, 186,134,36,255, 185,133,36,255, 187,138,36,255, 187,134,35,255, 186,134,33,255, 103,117,54,255, 97,116,52,255, 102,117,52,255, 103,116,51,255, 100,115,50,255, 99,114,50,255, 100,115,50,255, 103,116,51,255, 107,119,54,255, 103,119,54,255, 103,119,54,255, 103,119,54,255, 103,117,54,255, 104,122,54,255, 104,119,52,255, 104,119,50,255, 160,78,79,255, 155,77,78,255, 160,78,78,255, 160,77,77,255, 159,75,76,255, 158,75,76,255, 159,75,76,255, 160,77,77,255, 164,80,80,255, 162,79,80,255, 162,80,80,255, 162,79,80,255, 160,78,79,255, 163,82,80,255, 163,79,78,255, 163,79,76,255, 57,42,36,255, 55,42,35,255, 57,42,35,255, 57,42,35,255, 57,41,34,255, 56,41,34,255, 57,41,34,255, 57,42,35,255, 59,43,36,255, 58,43,36,255, 58,43,36,255, 58,43,36,255, 57,42,36,255, 58,45,36,255, 58,43,35,255, 58,43,34,255, 135,107,98,255, 131,106,97,255, 134,107,97,255, 135,106,96,255, 133,105,96,255, 132,105,96,255, 133,105,96,255, 135,106,96,255, 138,108,98,255, 135,107,98,255, 135,108,98,255, 135,107,98,255, 135,107,98,255, 136,110,98,255, 136,107,97,255, 135,107,96,255, 86,91,92,255, 82,90,90,255, 85,91,90,255, 86,90,90,255, 85,88,88,255, 83,88,88,255, 85,88,88,255, 86,90,90,255, 89,92,92,255, 86,92,92,255, 86,92,92,255, 86,92,92,255, 86,91,92,255, 88,95,92,255, 88,92,90,255, 87,92,88,255, 118,70,87,255, 111,69,85,255, 116,70,85,255, 118,69,84,255, 115,68,83,255, 114,67,83,255, 115,68,83,255, 118,69,84,255, 122,72,87,255, 118,71,87,255, 118,72,87,255, 118,71,87,255, 118,70,87,255, 119,74,87,255, 119,71,85,255, 119,71,83,255, 74,59,92,255, 72,59,91,255, 73,59,91,255, 74,59,90,255, 73,58,89,255, 73,57,89,255, 73,58,89,255, 74,59,90,255, 76,61,92,255, 74,60,92,255, 74,61,92,255, 74,60,92,255, 74,59,92,255, 75,63,92,255, 75,60,91,255, 74,60,89,255, 77,51,36,255, 74,50,35,255, 76,51,35,255, 77,50,35,255, 76,49,34,255, 75,49,34,255, 76,49,34,255, 77,50,35,255, 79,52,36,255, 77,52,36,255, 77,52,36,255, 77,52,36,255, 77,51,36,255, 78,54,36,255, 78,52,35,255, 77,52,34,255, 75,83,43,255, 73,82,42,255, 75,83,42,255, 75,82,41,255, 75,82,40,255, 74,82,40,255, 75,82,40,255, 75,82,41,255, 77,84,43,255, 76,84,43,255, 76,84,43,255, 76,84,43,255, 75,83,43,255, 77,86,43,255, 77,84,42,255, 76,84,40,255, 142,61,47,255, 137,59,46,255, 141,61,46,255, 142,59,46,255, 141,58,45,255, 139,58,45,255, 141,58,45,255, 142,59,46,255, 146,63,48,255, 142,62,48,255, 142,63,48,255, 142,62,48,255, 142,61,47,255, 145,65,48,255, 145,62,46,255, 144,62,45,255, 37,23,17,255, 35,22,16,255, 37,23,16,255, 37,22,16,255, 36,22,15,255, 36,21,15,255, 36,22,15,255, 37,22,16,255, 38,24,17,255, 37,23,17,255, 37,24,17,255, 37,23,17,255, 37,23,17,255, 38,25,17,255, 38,23,16,255, 37,23,15,255, 210,180,162,255, 211,182,163,255, 210,179,162,255, 210,175,160,255, 207,174,159,255, 206,174,159,255, 207,175,160,255, 212,177,161,255, 210,177,161,255, 209,177,161,255, 209,177,161,255, 209,179,161,255, 210,177,161,255, 210,177,161,255, 210,177,160,255, 209,177,159,255, 163,85,39,255, 164,87,40,255, 162,84,38,255, 162,82,36,255, 158,81,36,255, 157,81,35,255, 159,82,36,255, 165,83,38,255, 162,83,38,255, 160,83,37,255, 160,83,37,255, 160,84,37,255, 162,83,38,255, 162,83,38,255, 162,83,36,255, 160,82,36,255, 151,89,110,255, 152,92,110,255, 150,89,110,255, 149,86,107,255, 145,85,106,255, 145,84,105,255, 147,86,107,255, 154,88,109,255, 149,88,109,255, 149,87,108,255, 149,87,108,255, 149,89,108,255, 149,88,109,255, 149,88,109,255, 149,87,107,255, 149,86,106,255, 114,110,138,255, 115,110,139,255, 114,109,138,255, 114,107,137,255, 111,106,137,255, 109,106,136,255, 111,107,137,255, 117,108,138,255, 114,108,138,255, 112,108,138,255, 112,108,138,255, 112,109,138,255, 114,108,138,255, 114,108,138,255, 114,108,137,255, 112,108,137,255, 187,134,36,255, 189,137,37,255, 186,134,36,255, 186,131,33,255, 183,130,33,255, 181,129,32,255, 184,131,34,255, 190,133,36,255, 186,133,36,255, 185,132,35,255, 185,132,35,255, 185,134,35,255, 186,133,36,255, 186,133,36,255, 186,132,33,255, 185,131,33,255, 104,119,54,255, 107,121,55,255, 104,119,54,255, 103,116,51,255, 99,114,50,255, 99,114,49,255, 100,116,51,255, 108,117,53,255, 103,117,53,255, 103,117,52,255, 103,117,52,255, 103,119,52,255, 103,117,53,255, 103,117,53,255, 103,117,51,255, 103,116,50,255, 163,80,80,255, 164,82,81,255, 163,79,79,255, 162,76,76,255, 158,75,76,255, 157,74,75,255, 159,76,77,255, 166,78,79,255, 162,78,79,255, 160,77,78,255, 160,77,78,255, 160,79,78,255, 162,78,79,255, 162,78,79,255, 162,77,76,255, 160,77,76,255, 58,43,36,255, 59,44,36,255, 58,43,36,255, 58,41,35,255, 56,41,34,255, 56,40,34,255, 57,41,35,255, 59,42,36,255, 58,42,36,255, 57,42,36,255, 57,42,36,255, 57,43,36,255, 58,42,36,255, 58,42,36,255, 58,42,35,255, 57,42,34,255, 136,108,98,255, 138,109,99,255, 135,107,98,255, 135,105,96,255, 132,105,96,255, 132,104,95,255, 133,105,96,255, 138,107,98,255, 135,107,98,255, 135,106,97,255, 135,106,97,255, 135,107,97,255, 135,107,98,255, 135,107,98,255, 135,106,96,255, 135,106,96,255, 88,92,92,255, 89,94,93,255, 87,92,92,255, 86,89,89,255, 83,88,88,255, 83,87,88,255, 85,89,90,255, 90,91,91,255, 86,91,91,255, 86,90,91,255, 86,90,91,255, 86,92,91,255, 86,91,91,255, 86,91,91,255, 86,90,89,255, 86,90,88,255, 119,72,87,255, 122,73,89,255, 119,71,87,255, 118,68,84,255, 114,67,83,255, 114,66,83,255, 115,68,84,255, 123,70,86,255, 118,70,86,255, 118,69,86,255, 118,69,86,255, 118,71,86,255, 118,70,86,255, 118,70,86,255, 118,69,84,255, 118,69,83,255, 75,61,92,255, 76,62,92,255, 74,60,92,255, 74,58,90,255, 73,57,89,255, 73,57,89,255, 73,58,90,255, 76,59,91,255, 74,59,91,255, 74,59,91,255, 74,59,91,255, 74,60,91,255, 74,59,91,255, 74,59,91,255, 74,59,90,255, 74,59,89,255, 78,52,36,255, 79,54,37,255, 77,52,36,255, 77,50,35,255, 75,49,34,255, 75,48,34,255, 76,50,35,255, 79,51,36,255, 77,51,36,255, 77,50,36,255, 77,50,36,255, 77,52,36,255, 77,51,36,255, 77,51,36,255, 77,50,35,255, 77,50,34,255, 77,84,43,255, 77,86,44,255, 76,84,43,255, 76,82,41,255, 74,82,40,255, 73,81,40,255, 75,82,41,255, 78,83,42,255, 76,83,42,255, 75,82,42,255, 75,82,42,255, 75,84,42,255, 76,83,42,255, 76,83,42,255, 76,82,41,255, 75,82,40,255, 145,62,48,255, 146,64,49,255, 144,62,47,255, 142,59,45,255, 139,58,45,255, 138,57,44,255, 141,59,46,255, 147,61,47,255, 142,61,47,255, 142,60,46,255, 142,60,46,255, 142,62,46,255, 142,61,47,255, 142,61,47,255, 142,60,45,255, 142,59,45,255, 38,23,17,255, 38,24,17,255, 37,23,17,255, 37,22,15,255, 36,21,15,255, 36,21,15,255, 36,22,16,255, 39,23,16,255, 37,23,16,255, 37,22,16,255, 37,22,16,255, 37,23,16,255, 37,23,16,255, 37,23,16,255, 37,22,15,255, 37,22,15,255, 210,179,162,255, 212,182,163,255, 212,182,163,255, 211,180,162,255, 210,180,162,255, 206,173,159,255, 207,174,159,255, 209,174,159,255, 209,175,161,255, 207,175,160,255, 213,183,164,255, 213,183,164,255, 210,177,161,255, 209,177,161,255, 210,179,162,255, 209,177,160,255, 162,84,38,255, 167,87,41,255, 165,87,41,255, 164,86,39,255, 163,85,39,255, 156,80,34,255, 158,81,35,255, 159,81,35,255, 159,82,36,255, 159,82,36,255, 167,88,41,255, 167,88,41,255, 162,83,37,255, 160,83,37,255, 162,84,38,255, 160,82,36,255, 150,89,110,255, 155,92,111,255, 153,91,111,255, 152,90,110,255, 151,89,110,255, 144,83,105,255, 146,85,105,255, 148,85,105,255, 148,85,108,255, 147,86,107,255, 155,92,112,255, 155,92,112,255, 150,88,108,255, 149,87,108,255, 150,89,110,255, 149,86,107,255, 114,109,138,255, 117,110,140,255, 116,110,140,255, 115,110,138,255, 114,110,138,255, 109,106,136,255, 111,106,136,255, 112,106,136,255, 112,107,138,255, 111,107,137,255, 118,111,140,255, 118,111,140,255, 114,108,138,255, 112,108,138,255, 114,109,138,255, 112,108,137,255, 186,134,36,255, 191,137,38,255, 190,136,38,255, 189,135,36,255, 187,134,36,255, 181,128,32,255, 183,130,32,255, 185,130,32,255, 185,130,35,255, 184,131,34,255, 192,137,38,255, 192,137,38,255, 186,133,35,255, 185,132,35,255, 186,134,36,255, 185,131,34,255, 104,119,54,255, 108,121,55,255, 107,120,55,255, 107,119,54,255, 104,119,54,255, 98,113,49,255, 100,114,49,255, 102,114,49,255, 102,115,52,255, 100,116,51,255, 109,121,56,255, 109,121,56,255, 104,117,52,255, 103,117,52,255, 104,119,54,255, 103,116,51,255, 163,79,79,255, 167,82,82,255, 165,81,82,255, 164,80,80,255, 163,80,80,255, 157,74,75,255, 159,75,75,255, 160,75,75,255, 160,75,78,255, 159,76,77,255, 168,82,82,255, 168,82,82,255, 163,78,78,255, 160,77,78,255, 163,79,79,255, 160,77,77,255, 58,43,36,255, 60,44,36,255, 59,44,36,255, 59,43,36,255, 58,43,36,255, 55,40,34,255, 56,41,34,255, 57,41,34,255, 57,41,35,255, 57,41,35,255, 60,45,37,255, 60,45,37,255, 58,42,36,255, 57,42,36,255, 58,43,36,255, 57,42,35,255, 135,107,98,255, 139,109,100,255, 138,109,100,255, 138,108,98,255, 136,108,98,255, 131,104,95,255, 132,105,95,255, 134,105,95,255, 134,105,97,255, 133,105,96,255, 139,110,100,255, 139,110,100,255, 135,107,97,255, 135,106,97,255, 135,107,98,255, 135,106,96,255, 87,92,92,255, 91,94,93,255, 89,93,93,255, 89,92,92,255, 88,92,92,255, 82,87,87,255, 84,88,88,255, 85,88,88,255, 85,88,90,255, 85,89,90,255, 91,95,94,255, 91,95,94,255, 87,91,91,255, 86,90,91,255, 87,92,92,255, 86,90,90,255, 119,71,87,255, 123,73,89,255, 122,73,89,255, 122,72,87,255, 119,72,87,255, 113,66,82,255, 115,67,83,255, 116,67,83,255, 116,68,85,255, 115,68,84,255, 124,74,90,255, 124,74,90,255, 119,70,86,255, 118,69,86,255, 119,71,87,255, 118,69,84,255, 74,60,92,255, 77,62,92,255, 76,62,92,255, 76,61,92,255, 75,61,92,255, 72,57,89,255, 73,57,89,255, 73,57,89,255, 73,58,91,255, 73,58,90,255, 77,63,93,255, 77,63,93,255, 74,59,91,255, 74,59,91,255, 74,60,92,255, 74,59,90,255, 77,52,36,255, 80,54,37,255, 79,53,37,255, 79,52,36,255, 78,52,36,255, 74,48,33,255, 75,49,34,255, 76,49,34,255, 76,49,35,255, 76,50,35,255, 80,54,38,255, 80,54,38,255, 77,51,36,255, 77,50,36,255, 77,52,36,255, 77,50,35,255, 76,84,43,255, 79,86,44,255, 78,85,44,255, 77,84,43,255, 77,84,43,255, 73,81,40,255, 74,82,40,255, 75,82,40,255, 75,82,42,255, 75,82,41,255, 79,86,45,255, 79,86,45,255, 76,83,42,255, 75,82,42,255, 76,84,43,255, 75,82,41,255, 144,62,47,255, 148,64,50,255, 146,64,50,255, 146,63,48,255, 145,62,48,255, 137,56,43,255, 140,58,44,255, 141,58,44,255, 141,58,46,255, 141,59,46,255, 149,64,50,255, 149,64,50,255, 144,61,46,255, 142,60,46,255, 144,62,47,255, 142,59,46,255, 37,23,17,255, 39,24,18,255, 38,24,18,255, 38,24,17,255, 38,23,17,255, 35,21,15,255, 36,21,15,255, 37,21,15,255, 37,22,16,255, 36,22,16,255, 39,25,18,255, 39,25,18,255, 37,23,16,255, 37,22,16,255, 37,23,17,255, 37,22,16,255, 212,182,163,255, 210,179,162,255, 211,180,163,255, 209,177,162,255, 209,175,160,255, 210,177,161,255, 210,177,161,255, 210,177,161,255, 210,177,161,255, 210,177,161,255, 210,179,162,255, 210,180,162,255, 210,180,162,255, 210,179,162,255, 209,177,161,255, 212,182,163,255, 167,87,41,255, 162,84,38,255, 163,86,39,255, 160,83,38,255, 159,82,36,255, 162,83,37,255, 162,83,37,255, 162,83,38,255, 162,83,38,255, 162,83,38,255, 162,84,38,255, 163,85,39,255, 163,85,39,255, 162,84,38,255, 160,83,37,255, 167,87,41,255, 155,92,111,255, 150,89,110,255, 151,90,110,255, 149,88,110,255, 148,86,107,255, 150,88,108,255, 150,88,108,255, 149,88,109,255, 149,88,109,255, 149,88,109,255, 150,89,110,255, 151,89,110,255, 151,89,110,255, 150,89,110,255, 149,87,108,255, 155,92,111,255, 117,110,140,255, 114,109,138,255, 115,110,139,255, 112,108,138,255, 112,107,137,255, 114,108,138,255, 114,108,138,255, 114,108,138,255, 114,108,138,255, 114,108,138,255, 114,109,138,255, 114,110,138,255, 114,110,138,255, 114,109,138,255, 112,108,138,255, 117,110,140,255, 191,137,38,255, 186,134,36,255, 188,135,37,255, 185,133,36,255, 185,131,33,255, 186,133,35,255, 186,133,35,255, 186,133,36,255, 186,133,36,255, 186,133,36,255, 186,134,36,255, 187,134,36,255, 187,134,36,255, 186,134,36,255, 185,132,35,255, 191,137,38,255, 108,121,55,255, 104,119,54,255, 105,119,55,255, 103,117,54,255, 102,116,51,255, 104,117,52,255, 104,117,52,255, 103,117,53,255, 103,117,53,255, 103,117,53,255, 104,119,54,255, 104,119,54,255, 104,119,54,255, 104,119,54,255, 103,117,52,255, 108,121,55,255, 167,82,82,255, 163,79,79,255, 164,80,81,255, 160,78,79,255, 160,76,76,255, 163,78,78,255, 163,78,78,255, 162,78,79,255, 162,78,79,255, 162,78,79,255, 163,79,79,255, 163,80,80,255, 163,80,80,255, 163,79,79,255, 160,77,78,255, 167,82,82,255, 60,44,36,255, 58,43,36,255, 58,43,36,255, 57,42,36,255, 57,41,35,255, 58,42,36,255, 58,42,36,255, 58,42,36,255, 58,42,36,255, 58,42,36,255, 58,43,36,255, 58,43,36,255, 58,43,36,255, 58,43,36,255, 57,42,36,255, 60,44,36,255, 139,109,100,255, 135,107,98,255, 136,108,99,255, 135,107,98,255, 134,105,96,255, 135,107,97,255, 135,107,97,255, 135,107,98,255, 135,107,98,255, 135,107,98,255, 135,107,98,255, 136,108,98,255, 136,108,98,255, 135,107,98,255, 135,106,97,255, 139,109,100,255, 91,94,93,255, 87,92,92,255, 88,92,92,255, 86,91,92,255, 85,89,89,255, 87,91,91,255, 87,91,91,255, 86,91,91,255, 86,91,91,255, 86,91,91,255, 87,92,92,255, 88,92,92,255, 88,92,92,255, 87,92,92,255, 86,90,91,255, 91,94,93,255, 123,73,89,255, 119,71,87,255, 120,72,88,255, 118,70,87,255, 116,68,84,255, 119,70,86,255, 119,70,86,255, 118,70,86,255, 118,70,86,255, 118,70,86,255, 119,71,87,255, 119,72,87,255, 119,72,87,255, 119,71,87,255, 118,69,86,255, 123,73,89,255, 77,62,92,255, 74,60,92,255, 75,61,92,255, 74,59,92,255, 73,58,90,255, 74,59,91,255, 74,59,91,255, 74,59,91,255, 74,59,91,255, 74,59,91,255, 74,60,92,255, 75,61,92,255, 75,61,92,255, 74,60,92,255, 74,59,91,255, 77,62,92,255, 80,54,37,255, 77,52,36,255, 78,52,36,255, 77,51,36,255, 76,50,35,255, 77,51,36,255, 77,51,36,255, 77,51,36,255, 77,51,36,255, 77,51,36,255, 77,52,36,255, 78,52,36,255, 78,52,36,255, 77,52,36,255, 77,50,36,255, 80,54,37,255, 79,86,44,255, 76,84,43,255, 77,84,44,255, 75,83,43,255, 75,82,41,255, 76,83,42,255, 76,83,42,255, 76,83,42,255, 76,83,42,255, 76,83,42,255, 76,84,43,255, 77,84,43,255, 77,84,43,255, 76,84,43,255, 75,82,42,255, 79,86,44,255, 148,64,50,255, 144,62,47,255, 145,63,48,255, 142,61,47,255, 141,59,45,255, 144,61,46,255, 144,61,46,255, 142,61,47,255, 142,61,47,255, 142,61,47,255, 144,62,47,255, 145,62,48,255, 145,62,48,255, 144,62,47,255, 142,60,46,255, 148,64,50,255, 39,24,18,255, 37,23,17,255, 38,24,17,255, 37,23,17,255, 37,22,15,255, 37,23,16,255, 37,23,16,255, 37,23,16,255, 37,23,16,255, 37,23,16,255, 37,23,17,255, 38,23,17,255, 38,23,17,255, 37,23,17,255, 37,22,16,255, 39,24,18,255, 211,180,162,255, 211,182,163,255, 210,180,163,255, 209,177,162,255, 209,177,160,255, 207,175,160,255, 210,177,161,255, 212,177,163,255, 210,175,160,255, 207,175,160,255, 209,177,161,255, 210,179,161,255, 211,182,163,255, 212,180,163,255, 211,180,162,255, 209,175,160,255, 164,86,39,255, 163,87,39,255, 162,85,39,255, 160,83,38,255, 160,82,36,255, 159,82,36,255, 162,82,38,255, 167,83,41,255, 162,82,36,255, 159,82,36,255, 160,83,37,255, 163,84,38,255, 164,87,40,255, 165,86,39,255, 163,85,38,255, 159,82,36,255, 152,90,110,255, 151,91,110,255, 150,89,110,255, 149,88,110,255, 149,86,107,255, 147,86,107,255, 149,86,109,255, 155,88,111,255, 149,86,107,255, 147,86,107,255, 149,87,108,255, 151,89,109,255, 152,92,110,255, 153,91,110,255, 151,89,110,255, 148,86,107,255, 115,110,138,255, 115,110,139,255, 114,110,139,255, 112,108,138,255, 112,108,137,255, 111,107,137,255, 114,108,138,255, 117,108,140,255, 114,107,137,255, 111,107,137,255, 112,108,138,255, 114,109,138,255, 115,110,139,255, 116,110,139,255, 115,110,138,255, 112,107,137,255, 189,135,36,255, 188,136,37,255, 186,134,37,255, 185,133,36,255, 185,131,34,255, 184,131,34,255, 186,131,36,255, 191,133,38,255, 186,131,33,255, 184,131,34,255, 185,132,35,255, 187,134,36,255, 189,137,37,255, 190,136,37,255, 188,134,36,255, 185,131,33,255, 107,119,54,255, 105,120,55,255, 104,119,55,255, 103,117,54,255, 103,116,51,255, 100,116,51,255, 103,116,53,255, 108,117,55,255, 103,116,51,255, 100,116,51,255, 103,117,52,255, 104,119,53,255, 107,121,55,255, 107,119,55,255, 105,119,54,255, 102,116,51,255, 164,80,80,255, 164,81,81,255, 163,80,81,255, 160,78,79,255, 160,77,77,255, 159,76,77,255, 162,77,79,255, 167,78,82,255, 162,76,76,255, 159,76,77,255, 160,77,78,255, 163,79,79,255, 164,82,81,255, 165,81,81,255, 164,80,79,255, 160,76,76,255, 59,43,36,255, 58,44,36,255, 58,43,36,255, 57,42,36,255, 57,42,35,255, 57,41,35,255, 58,42,36,255, 60,42,36,255, 58,41,35,255, 57,41,35,255, 57,42,36,255, 58,43,36,255, 59,44,36,255, 59,44,36,255, 58,43,36,255, 57,41,35,255, 138,108,98,255, 136,109,99,255, 135,108,99,255, 135,107,98,255, 135,106,96,255, 133,105,96,255, 135,106,98,255, 139,107,100,255, 135,105,96,255, 133,105,96,255, 135,106,97,255, 136,107,98,255, 138,109,99,255, 138,109,99,255, 136,108,98,255, 134,105,96,255, 89,92,92,255, 88,93,92,255, 87,92,92,255, 86,91,92,255, 86,90,90,255, 85,89,90,255, 86,90,91,255, 91,91,93,255, 86,89,89,255, 85,89,90,255, 86,90,91,255, 88,92,91,255, 89,94,93,255, 89,93,92,255, 88,92,92,255, 85,89,89,255, 122,72,87,255, 120,73,88,255, 119,72,88,255, 118,70,87,255, 118,69,84,255, 115,68,84,255, 118,69,86,255, 123,70,89,255, 118,68,84,255, 115,68,84,255, 118,69,86,255, 119,71,86,255, 122,73,89,255, 122,73,88,255, 120,72,87,255, 116,68,84,255, 76,61,92,255, 75,62,92,255, 74,61,92,255, 74,59,92,255, 74,59,90,255, 73,58,90,255, 74,59,91,255, 77,59,92,255, 74,58,90,255, 73,58,90,255, 74,59,91,255, 75,60,91,255, 76,62,92,255, 76,61,92,255, 75,61,92,255, 73,58,90,255, 79,52,36,255, 78,53,36,255, 77,52,36,255, 77,51,36,255, 77,50,35,255, 76,50,35,255, 77,50,36,255, 80,51,37,255, 77,50,35,255, 76,50,35,255, 77,50,36,255, 78,52,36,255, 79,54,37,255, 79,53,36,255, 78,52,36,255, 76,50,35,255, 77,84,43,255, 77,85,44,255, 76,84,44,255, 75,83,43,255, 75,82,41,255, 75,82,41,255, 76,82,42,255, 79,83,44,255, 76,82,41,255, 75,82,41,255, 75,82,42,255, 77,84,42,255, 77,86,44,255, 78,85,44,255, 77,84,43,255, 75,82,41,255, 146,63,48,255, 145,64,48,255, 144,62,48,255, 142,61,47,255, 142,59,46,255, 141,59,46,255, 142,59,47,255, 148,61,50,255, 142,59,45,255, 141,59,46,255, 142,60,46,255, 145,62,47,255, 146,64,49,255, 146,64,48,255, 145,62,47,255, 141,59,45,255, 38,24,17,255, 38,24,17,255, 37,23,17,255, 37,23,17,255, 37,22,16,255, 36,22,16,255, 37,22,16,255, 39,23,18,255, 37,22,15,255, 36,22,16,255, 37,22,16,255, 38,23,16,255, 38,24,17,255, 38,24,17,255, 38,23,17,255, 37,22,15,255, 211,180,163,255, 210,177,161,255, 209,177,160,255, 207,175,160,255, 211,180,162,255, 211,180,162,255, 207,175,160,255, 211,182,162,255, 212,182,163,255, 210,177,161,255, 209,177,161,255, 210,177,161,255, 210,177,161,255, 210,179,162,255, 211,180,163,255, 211,180,163,255, 163,86,41,255, 162,83,36,255, 160,82,36,255, 159,82,36,255, 164,86,39,255, 164,86,39,255, 159,82,36,255, 164,87,39,255, 165,87,40,255, 162,83,38,255, 160,83,37,255, 162,83,38,255, 162,83,38,255, 162,84,38,255, 163,86,39,255, 163,86,39,255, 151,90,111,255, 149,87,108,255, 149,86,107,255, 147,86,107,255, 152,90,110,255, 152,90,110,255, 147,86,107,255, 152,91,110,255, 154,91,110,255, 149,88,109,255, 149,87,108,255, 149,88,109,255, 149,88,109,255, 150,89,110,255, 151,90,110,255, 151,90,110,255, 115,110,140,255, 114,108,138,255, 112,108,137,255, 111,107,137,255, 115,110,138,255, 115,110,138,255, 111,107,137,255, 115,110,138,255, 117,110,139,255, 114,108,138,255, 112,108,138,255, 114,108,138,255, 114,108,138,255, 114,109,138,255, 115,110,139,255, 115,110,139,255, 188,135,38,255, 186,132,35,255, 185,131,34,255, 184,131,34,255, 189,135,36,255, 189,135,36,255, 184,131,34,255, 189,136,36,255, 190,136,37,255, 186,133,36,255, 185,132,35,255, 186,133,36,255, 186,133,36,255, 186,134,36,255, 188,135,37,255, 188,135,37,255, 105,119,55,255, 103,117,52,255, 103,116,51,255, 100,116,51,255, 107,119,54,255, 107,119,54,255, 100,116,51,255, 107,120,54,255, 108,120,55,255, 103,117,53,255, 103,117,52,255, 103,117,53,255, 103,117,53,255, 104,119,54,255, 105,119,55,255, 105,119,55,255, 164,80,82,255, 162,77,78,255, 160,77,77,255, 159,76,77,255, 164,80,80,255, 164,80,80,255, 159,76,77,255, 164,81,80,255, 166,81,81,255, 162,78,79,255, 160,77,78,255, 162,78,79,255, 162,78,79,255, 163,79,79,255, 164,80,81,255, 164,80,81,255, 58,43,36,255, 58,42,35,255, 57,42,35,255, 57,41,35,255, 59,43,36,255, 59,43,36,255, 57,41,35,255, 59,44,36,255, 59,44,36,255, 58,42,36,255, 57,42,36,255, 58,42,36,255, 58,42,36,255, 58,43,36,255, 58,43,36,255, 58,43,36,255, 136,108,100,255, 135,106,97,255, 135,106,96,255, 133,105,96,255, 138,108,98,255, 138,108,98,255, 133,105,96,255, 138,109,98,255, 138,109,99,255, 135,107,98,255, 135,106,97,255, 135,107,98,255, 135,107,98,255, 135,107,98,255, 136,108,99,255, 136,108,99,255, 88,92,93,255, 86,90,90,255, 86,90,90,255, 85,89,90,255, 89,92,92,255, 89,92,92,255, 85,89,90,255, 89,93,92,255, 90,93,93,255, 86,91,91,255, 86,90,91,255, 86,91,91,255, 86,91,91,255, 87,92,92,255, 88,92,92,255, 88,92,92,255, 120,72,89,255, 118,69,85,255, 118,69,84,255, 115,68,84,255, 122,72,87,255, 122,72,87,255, 115,68,84,255, 122,73,87,255, 123,73,89,255, 118,70,86,255, 118,69,86,255, 118,70,86,255, 118,70,86,255, 119,71,87,255, 120,72,88,255, 120,72,88,255, 75,61,92,255, 74,59,91,255, 74,59,90,255, 73,58,90,255, 76,61,92,255, 76,61,92,255, 73,58,90,255, 76,62,92,255, 76,62,92,255, 74,59,91,255, 74,59,91,255, 74,59,91,255, 74,59,91,255, 74,60,92,255, 75,61,92,255, 75,61,92,255, 78,52,37,255, 77,50,35,255, 77,50,35,255, 76,50,35,255, 79,52,36,255, 79,52,36,255, 76,50,35,255, 79,53,36,255, 79,53,37,255, 77,51,36,255, 77,50,36,255, 77,51,36,255, 77,51,36,255, 77,52,36,255, 78,52,36,255, 78,52,36,255, 77,84,44,255, 76,82,42,255, 75,82,41,255, 75,82,41,255, 77,84,43,255, 77,84,43,255, 75,82,41,255, 77,85,43,255, 78,85,44,255, 76,83,42,255, 75,82,42,255, 76,83,42,255, 76,83,42,255, 76,84,43,255, 77,84,44,255, 77,84,44,255, 145,63,50,255, 142,60,46,255, 142,59,46,255, 141,59,46,255, 146,63,48,255, 146,63,48,255, 141,59,46,255, 146,64,48,255, 147,64,49,255, 142,61,47,255, 142,60,46,255, 142,61,47,255, 142,61,47,255, 144,62,47,255, 145,63,48,255, 145,63,48,255, 38,24,18,255, 37,22,16,255, 37,22,16,255, 36,22,16,255, 38,24,17,255, 38,24,17,255, 36,22,16,255, 38,24,17,255, 39,24,17,255, 37,23,16,255, 37,22,16,255, 37,23,16,255, 37,23,16,255, 37,23,17,255, 38,24,17,255, 38,24,17,255, 211,180,163,255, 211,180,163,255, 210,180,163,255, 206,174,159,255, 209,177,161,255, 207,175,159,255, 209,177,161,255, 209,177,161,255, 209,177,161,255, 210,180,163,255, 212,182,163,255, 212,182,163,255, 212,182,163,255, 212,182,164,255, 212,183,166,255, 210,177,161,255, 163,86,41,255, 164,86,40,255, 162,86,39,255, 157,81,35,255, 159,82,36,255, 159,82,36,255, 159,82,36,255, 159,82,36,255, 160,83,37,255, 162,85,39,255, 165,87,40,255, 165,87,39,255, 165,87,40,255, 165,87,41,255, 167,89,43,255, 162,83,38,255, 151,90,111,255, 152,91,110,255, 150,91,110,255, 145,84,105,255, 148,86,108,255, 147,85,106,255, 148,86,108,255, 148,86,108,255, 149,87,108,255, 150,89,110,255, 154,91,110,255, 153,92,110,255, 154,91,110,255, 154,92,112,255, 155,92,113,255, 149,88,109,255, 115,110,140,255, 115,110,139,255, 114,110,139,255, 109,106,136,255, 112,108,138,255, 111,107,137,255, 112,108,138,255, 112,108,138,255, 112,108,138,255, 114,110,139,255, 117,110,139,255, 116,110,139,255, 117,110,139,255, 117,110,140,255, 117,111,141,255, 114,108,138,255, 188,135,38,255, 189,136,37,255, 186,136,37,255, 181,129,32,255, 185,131,35,255, 184,130,33,255, 185,131,35,255, 185,131,35,255, 185,132,35,255, 186,134,37,255, 190,136,37,255, 190,137,37,255, 190,136,37,255, 190,137,38,255, 191,138,40,255, 186,133,36,255, 105,119,55,255, 107,119,55,255, 104,119,55,255, 99,114,49,255, 102,116,52,255, 100,115,50,255, 102,116,52,255, 102,116,52,255, 103,117,52,255, 104,119,55,255, 108,120,55,255, 107,121,55,255, 108,120,55,255, 108,121,56,255, 108,122,57,255, 103,117,53,255, 164,80,82,255, 164,81,81,255, 163,81,81,255, 157,74,75,255, 160,77,78,255, 159,75,76,255, 160,77,78,255, 160,77,78,255, 160,77,78,255, 163,80,81,255, 166,81,81,255, 165,82,81,255, 166,81,81,255, 166,82,82,255, 167,82,83,255, 162,78,79,255, 58,43,36,255, 59,44,36,255, 58,44,36,255, 56,40,34,255, 57,42,35,255, 57,41,34,255, 57,42,35,255, 57,42,35,255, 57,42,36,255, 58,43,36,255, 59,44,36,255, 59,44,36,255, 59,44,36,255, 59,44,37,255, 60,45,38,255, 58,42,36,255, 136,108,100,255, 138,109,99,255, 135,109,99,255, 132,104,95,255, 134,106,97,255, 133,105,96,255, 134,106,97,255, 134,106,97,255, 135,106,97,255, 135,108,99,255, 138,109,99,255, 138,109,99,255, 138,109,99,255, 138,109,100,255, 139,110,101,255, 135,107,98,255, 88,92,93,255, 89,93,93,255, 87,93,92,255, 83,87,88,255, 85,90,90,255, 85,88,88,255, 85,90,90,255, 85,90,90,255, 86,90,91,255, 87,92,92,255, 90,93,93,255, 89,94,92,255, 90,93,93,255, 90,94,94,255, 91,95,96,255, 86,91,91,255, 120,72,89,255, 122,73,89,255, 119,73,88,255, 114,66,83,255, 116,69,85,255, 115,68,83,255, 116,69,85,255, 116,69,85,255, 118,69,86,255, 119,72,88,255, 123,73,89,255, 122,73,88,255, 123,73,89,255, 123,73,90,255, 123,74,92,255, 118,70,86,255, 75,61,92,255, 76,61,92,255, 74,61,92,255, 73,57,89,255, 73,59,91,255, 73,58,89,255, 73,59,91,255, 73,59,91,255, 74,59,91,255, 74,61,92,255, 76,62,92,255, 76,62,92,255, 76,62,92,255, 76,62,93,255, 77,63,94,255, 74,59,91,255, 78,52,37,255, 79,53,37,255, 77,53,36,255, 75,48,34,255, 76,50,35,255, 76,49,34,255, 76,50,35,255, 76,50,35,255, 77,50,36,255, 77,52,36,255, 79,53,37,255, 79,54,36,255, 79,53,37,255, 79,54,38,255, 80,54,39,255, 77,51,36,255, 77,84,44,255, 77,85,44,255, 76,85,44,255, 73,81,40,255, 75,82,42,255, 75,82,40,255, 75,82,42,255, 75,82,42,255, 75,82,42,255, 76,84,44,255, 78,85,44,255, 78,86,44,255, 78,85,44,255, 78,86,45,255, 79,86,46,255, 76,83,42,255, 145,63,50,255, 146,64,49,255, 144,64,48,255, 138,57,44,255, 141,59,46,255, 141,58,45,255, 141,59,46,255, 141,59,46,255, 142,60,46,255, 144,62,48,255, 147,64,49,255, 146,64,48,255, 147,64,49,255, 147,64,50,255, 148,65,52,255, 142,61,47,255, 38,24,18,255, 38,24,17,255, 37,24,17,255, 36,21,15,255, 37,22,16,255, 36,22,15,255, 37,22,16,255, 37,22,16,255, 37,22,16,255, 37,23,17,255, 39,24,17,255, 38,24,17,255, 39,24,17,255, 39,24,18,255, 39,25,19,255, 37,23,16,255, 211,180,163,255, 210,177,161,255, 209,177,161,255, 207,175,159,255, 207,175,159,255, 207,175,160,255, 209,177,161,255, 207,175,160,255, 210,177,161,255, 209,177,160,255, 209,177,161,255, 209,177,161,255, 210,180,162,255, 210,180,162,255, 213,183,164,255, 212,182,164,255, 163,86,39,255, 162,83,38,255, 159,82,36,255, 159,82,36,255, 159,82,36,255, 159,82,36,255, 159,82,36,255, 159,82,36,255, 162,83,38,255, 160,83,36,255, 159,82,36,255, 159,82,36,255, 162,86,39,255, 162,86,39,255, 167,89,41,255, 165,87,42,255, 151,90,110,255, 149,88,109,255, 148,86,108,255, 147,85,106,255, 147,85,106,255, 147,86,107,255, 148,86,108,255, 147,86,107,255, 149,88,109,255, 149,88,107,255, 148,86,108,255, 148,86,108,255, 149,90,110,255, 149,90,110,255, 155,93,112,255, 153,92,112,255, 115,110,139,255, 114,108,138,255, 112,108,138,255, 111,107,137,255, 111,107,137,255, 111,107,137,255, 112,108,138,255, 111,107,137,255, 114,108,138,255, 112,108,137,255, 112,108,138,255, 112,108,138,255, 114,110,138,255, 114,110,138,255, 118,111,140,255, 116,110,140,255, 188,135,37,255, 186,133,36,255, 185,131,35,255, 184,130,33,255, 184,130,33,255, 184,131,34,255, 185,131,35,255, 184,131,34,255, 186,133,36,255, 185,133,34,255, 185,131,35,255, 185,131,35,255, 186,135,36,255, 186,135,36,255, 192,139,38,255, 190,137,39,255, 105,119,55,255, 103,117,53,255, 102,116,52,255, 100,115,50,255, 100,115,50,255, 100,116,51,255, 102,116,52,255, 100,116,51,255, 103,117,53,255, 103,117,51,255, 102,116,52,255, 102,116,52,255, 103,119,54,255, 103,119,54,255, 109,122,56,255, 107,121,56,255, 164,80,81,255, 162,78,79,255, 160,77,78,255, 159,75,76,255, 159,75,76,255, 159,76,77,255, 160,77,78,255, 159,76,77,255, 162,78,79,255, 160,78,77,255, 160,77,78,255, 160,77,78,255, 162,80,80,255, 162,80,80,255, 168,83,82,255, 165,82,82,255, 58,43,36,255, 58,42,36,255, 57,42,35,255, 57,41,34,255, 57,41,34,255, 57,41,35,255, 57,42,35,255, 57,41,35,255, 58,42,36,255, 57,42,35,255, 57,42,35,255, 57,42,35,255, 58,43,36,255, 58,43,36,255, 60,45,37,255, 59,44,37,255, 136,108,99,255, 135,107,98,255, 134,106,97,255, 133,105,96,255, 133,105,96,255, 133,105,96,255, 134,106,97,255, 133,105,96,255, 135,107,98,255, 135,107,96,255, 134,106,97,255, 134,106,97,255, 135,108,98,255, 135,108,98,255, 139,110,100,255, 138,109,100,255, 88,92,92,255, 86,91,91,255, 85,90,90,255, 85,88,88,255, 85,88,88,255, 85,89,90,255, 85,90,90,255, 85,89,90,255, 86,91,91,255, 86,91,90,255, 85,90,90,255, 85,90,90,255, 86,92,92,255, 86,92,92,255, 91,96,94,255, 89,94,95,255, 120,72,88,255, 118,70,86,255, 116,69,85,255, 115,68,83,255, 115,68,83,255, 115,68,84,255, 116,69,85,255, 115,68,84,255, 118,70,86,255, 118,70,84,255, 116,69,85,255, 116,69,85,255, 118,72,87,255, 118,72,87,255, 124,75,90,255, 122,73,90,255, 75,61,92,255, 74,59,91,255, 73,59,91,255, 73,58,89,255, 73,58,89,255, 73,58,90,255, 73,59,91,255, 73,58,90,255, 74,59,91,255, 74,59,90,255, 73,59,91,255, 73,59,91,255, 74,61,92,255, 74,61,92,255, 77,63,93,255, 76,62,93,255, 78,52,36,255, 77,51,36,255, 76,50,35,255, 76,49,34,255, 76,49,34,255, 76,50,35,255, 76,50,35,255, 76,50,35,255, 77,51,36,255, 77,51,35,255, 76,50,35,255, 76,50,35,255, 77,52,36,255, 77,52,36,255, 80,55,38,255, 79,54,38,255, 77,84,44,255, 76,83,42,255, 75,82,42,255, 75,82,40,255, 75,82,40,255, 75,82,41,255, 75,82,42,255, 75,82,41,255, 76,83,42,255, 75,83,41,255, 75,82,42,255, 75,82,42,255, 76,84,43,255, 76,84,43,255, 79,87,45,255, 78,86,45,255, 145,63,48,255, 142,61,47,255, 141,59,46,255, 141,58,45,255, 141,58,45,255, 141,59,46,255, 141,59,46,255, 141,59,46,255, 142,61,47,255, 142,61,46,255, 141,59,46,255, 141,59,46,255, 142,63,48,255, 142,63,48,255, 149,66,50,255, 146,64,51,255, 38,24,17,255, 37,23,16,255, 37,22,16,255, 36,22,15,255, 36,22,15,255, 36,22,16,255, 37,22,16,255, 36,22,16,255, 37,23,16,255, 37,23,16,255, 37,22,16,255, 37,22,16,255, 37,24,17,255, 37,24,17,255, 39,25,18,255, 38,24,18,255, 210,177,160,255, 210,177,161,255, 209,177,162,255, 207,175,159,255, 207,174,160,255, 213,183,164,255, 213,183,164,255, 209,175,158,255, 210,179,162,255, 210,180,162,255, 212,183,163,255, 212,182,164,255, 210,177,161,255, 210,179,161,255, 210,177,161,255, 207,175,160,255, 162,83,36,255, 162,83,37,255, 160,83,38,255, 159,82,36,255, 159,81,36,255, 167,88,41,255, 168,89,42,255, 159,82,34,255, 162,84,39,255, 163,85,39,255, 167,89,41,255, 165,87,41,255, 162,83,37,255, 162,84,36,255, 162,83,36,255, 159,82,36,255, 149,87,107,255, 150,88,108,255, 149,88,110,255, 147,85,106,255, 147,85,107,255, 155,92,112,255, 156,92,112,255, 148,85,104,255, 149,89,110,255, 151,89,110,255, 155,92,111,255, 154,92,112,255, 150,88,108,255, 149,89,108,255, 149,87,108,255, 147,86,107,255, 114,108,137,255, 114,108,138,255, 112,108,138,255, 111,107,137,255, 111,106,137,255, 118,111,140,255, 118,111,140,255, 112,107,135,255, 114,109,138,255, 114,110,138,255, 117,111,140,255, 117,110,140,255, 114,108,138,255, 114,109,138,255, 114,108,138,255, 111,107,137,255, 186,132,33,255, 186,133,35,255, 185,133,36,255, 184,130,33,255, 184,130,34,255, 192,137,38,255, 192,138,39,255, 185,130,31,255, 186,134,36,255, 187,134,36,255, 191,138,38,255, 190,137,38,255, 186,133,35,255, 186,134,35,255, 186,132,35,255, 184,131,34,255, 103,117,51,255, 104,117,52,255, 103,117,54,255, 100,115,50,255, 100,114,51,255, 109,121,56,255, 111,122,56,255, 102,115,48,255, 103,119,54,255, 104,119,54,255, 108,122,55,255, 108,121,56,255, 104,117,52,255, 103,119,52,255, 103,117,52,255, 100,116,51,255, 162,77,76,255, 163,78,78,255, 160,78,79,255, 159,75,76,255, 159,75,77,255, 168,82,82,255, 168,82,82,255, 160,75,74,255, 162,79,80,255, 163,80,80,255, 167,82,82,255, 166,82,82,255, 163,78,78,255, 162,79,78,255, 162,77,78,255, 159,76,77,255, 58,42,35,255, 58,42,36,255, 57,42,36,255, 57,41,34,255, 57,41,35,255, 60,45,37,255, 60,45,37,255, 57,41,33,255, 58,43,36,255, 58,43,36,255, 60,45,36,255, 59,44,37,255, 58,42,36,255, 58,43,35,255, 58,42,35,255, 57,41,35,255, 135,106,96,255, 135,107,97,255, 135,107,98,255, 133,105,96,255, 133,105,96,255, 139,110,100,255, 140,110,100,255, 134,105,94,255, 135,107,98,255, 136,108,98,255, 139,110,100,255, 138,109,100,255, 135,107,97,255, 135,107,97,255, 135,106,97,255, 133,105,96,255, 86,90,89,255, 87,91,91,255, 86,91,92,255, 85,88,88,255, 85,88,90,255, 91,95,94,255, 93,95,95,255, 85,88,87,255, 86,92,92,255, 88,92,92,255, 91,95,93,255, 90,94,94,255, 87,91,91,255, 86,92,90,255, 86,90,90,255, 85,89,90,255, 118,69,84,255, 119,70,86,255, 118,70,87,255, 115,68,83,255, 115,67,84,255, 124,74,90,255, 125,74,90,255, 116,68,82,255, 118,71,87,255, 119,72,87,255, 123,74,89,255, 123,73,90,255, 119,70,86,255, 118,71,85,255, 118,69,85,255, 115,68,84,255, 74,59,90,255, 74,59,91,255, 74,59,92,255, 73,58,89,255, 73,57,90,255, 77,63,93,255, 78,63,93,255, 73,58,88,255, 74,60,92,255, 75,61,92,255, 77,63,92,255, 76,62,93,255, 74,59,91,255, 74,60,91,255, 74,59,91,255, 73,58,90,255, 77,50,35,255, 77,51,36,255, 77,51,36,255, 76,49,34,255, 76,49,35,255, 80,54,38,255, 81,54,38,255, 76,49,33,255, 77,52,36,255, 78,52,36,255, 80,54,37,255, 79,54,38,255, 77,51,36,255, 77,52,35,255, 77,50,35,255, 76,50,35,255, 76,82,41,255, 76,83,42,255, 75,83,43,255, 75,82,40,255, 75,82,41,255, 79,86,45,255, 79,86,45,255, 75,82,39,255, 76,84,43,255, 77,84,43,255, 79,86,44,255, 78,86,45,255, 76,83,42,255, 76,84,42,255, 76,82,42,255, 75,82,41,255, 142,60,45,255, 144,61,46,255, 142,61,47,255, 141,58,45,255, 141,58,46,255, 149,64,50,255, 150,65,51,255, 141,58,43,255, 142,62,48,255, 145,62,48,255, 148,65,50,255, 147,64,50,255, 144,61,46,255, 142,62,46,255, 142,60,46,255, 141,59,46,255, 37,22,15,255, 37,23,16,255, 37,23,17,255, 36,22,15,255, 36,21,16,255, 39,25,18,255, 39,25,18,255, 37,22,14,255, 37,23,17,255, 38,23,17,255, 39,25,18,255, 39,24,18,255, 37,23,16,255, 37,23,16,255, 37,22,16,255, 36,22,16,255, 207,174,160,255, 210,177,161,255, 210,177,161,255, 209,177,161,255, 207,175,160,255, 210,177,161,255, 210,179,162,255, 209,177,162,255, 212,182,163,255, 212,183,163,255, 211,180,163,255, 210,180,162,255, 210,180,162,255, 212,182,163,255, 211,180,163,255, 210,177,161,255, 159,81,36,255, 162,83,36,255, 162,83,37,255, 159,82,36,255, 159,82,36,255, 162,83,37,255, 162,84,39,255, 160,83,38,255, 165,87,40,255, 167,89,41,255, 163,86,39,255, 163,85,39,255, 163,85,39,255, 165,87,39,255, 164,86,40,255, 162,83,38,255, 147,85,107,255, 149,87,108,255, 150,88,108,255, 148,86,108,255, 147,86,107,255, 150,88,108,255, 149,89,110,255, 149,87,110,255, 154,91,110,255, 155,92,111,255, 151,90,110,255, 151,89,110,255, 151,89,110,255, 153,92,110,255, 152,91,110,255, 149,88,109,255, 111,106,137,255, 114,108,138,255, 114,108,138,255, 112,108,138,255, 111,107,137,255, 114,108,138,255, 114,109,138,255, 112,108,138,255, 117,110,139,255, 117,111,140,255, 115,110,139,255, 114,110,138,255, 114,110,138,255, 116,110,139,255, 115,110,139,255, 114,108,138,255, 184,130,34,255, 186,132,35,255, 186,133,35,255, 185,131,35,255, 184,131,34,255, 186,133,35,255, 186,134,36,255, 185,132,36,255, 190,136,37,255, 191,138,38,255, 188,135,37,255, 187,134,36,255, 187,134,36,255, 190,137,37,255, 189,136,37,255, 186,133,36,255, 100,114,51,255, 103,117,52,255, 104,117,52,255, 102,116,52,255, 100,116,51,255, 104,117,52,255, 103,119,54,255, 103,117,54,255, 108,120,55,255, 108,122,55,255, 105,119,55,255, 104,119,54,255, 104,119,54,255, 107,121,55,255, 107,119,55,255, 103,117,53,255, 159,75,77,255, 162,77,78,255, 163,78,78,255, 160,77,78,255, 159,76,77,255, 163,78,78,255, 162,79,80,255, 160,77,79,255, 166,81,81,255, 167,82,82,255, 164,80,81,255, 163,80,80,255, 163,80,80,255, 165,82,81,255, 164,81,81,255, 162,78,79,255, 57,41,35,255, 58,42,35,255, 58,42,36,255, 57,42,35,255, 57,41,35,255, 58,42,36,255, 58,43,36,255, 57,42,36,255, 59,44,36,255, 60,45,36,255, 58,43,36,255, 58,43,36,255, 58,43,36,255, 59,44,36,255, 59,44,36,255, 58,42,36,255, 133,105,96,255, 135,106,97,255, 135,107,97,255, 134,106,97,255, 133,105,96,255, 135,107,97,255, 135,107,98,255, 135,106,98,255, 138,109,99,255, 139,110,100,255, 136,108,99,255, 136,108,98,255, 136,108,98,255, 138,109,99,255, 138,109,99,255, 135,107,98,255, 85,88,90,255, 86,90,90,255, 87,91,91,255, 85,90,90,255, 85,89,90,255, 87,91,91,255, 86,92,92,255, 86,90,92,255, 90,93,93,255, 91,95,93,255, 88,92,92,255, 88,92,92,255, 88,92,92,255, 89,94,92,255, 89,93,93,255, 86,91,91,255, 115,67,84,255, 118,69,85,255, 119,70,86,255, 116,69,85,255, 115,68,84,255, 119,70,86,255, 118,71,87,255, 118,69,87,255, 123,73,89,255, 123,74,89,255, 120,72,88,255, 119,72,87,255, 119,72,87,255, 122,73,88,255, 122,73,89,255, 118,70,86,255, 73,57,90,255, 74,59,91,255, 74,59,91,255, 73,59,91,255, 73,58,90,255, 74,59,91,255, 74,60,92,255, 74,59,92,255, 76,62,92,255, 77,63,92,255, 75,61,92,255, 75,61,92,255, 75,61,92,255, 76,62,92,255, 76,61,92,255, 74,59,91,255, 76,49,35,255, 77,50,35,255, 77,51,36,255, 76,50,35,255, 76,50,35,255, 77,51,36,255, 77,52,36,255, 77,50,36,255, 79,53,37,255, 80,54,37,255, 78,52,36,255, 78,52,36,255, 78,52,36,255, 79,54,36,255, 79,53,37,255, 77,51,36,255, 75,82,41,255, 76,82,42,255, 76,83,42,255, 75,82,42,255, 75,82,41,255, 76,83,42,255, 76,84,43,255, 75,82,43,255, 78,85,44,255, 79,86,44,255, 77,84,44,255, 77,84,43,255, 77,84,43,255, 78,86,44,255, 77,85,44,255, 76,83,42,255, 141,58,46,255, 142,60,46,255, 144,61,46,255, 141,59,46,255, 141,59,46,255, 144,61,46,255, 142,62,48,255, 142,60,47,255, 147,64,49,255, 148,65,50,255, 145,63,48,255, 145,62,48,255, 145,62,48,255, 146,64,48,255, 146,64,49,255, 142,61,47,255, 36,21,16,255, 37,22,16,255, 37,23,16,255, 37,22,16,255, 36,22,16,255, 37,23,16,255, 37,23,17,255, 37,22,17,255, 39,24,17,255, 39,25,18,255, 38,24,17,255, 38,23,17,255, 38,23,17,255, 38,24,17,255, 38,24,17,255, 37,23,16,255, 209,175,161,255, 209,177,161,255, 209,177,161,255, 210,177,161,255, 209,177,160,255, 210,175,160,255, 207,175,160,255, 209,177,161,255, 213,183,166,255, 214,180,162,255, 209,177,160,255, 207,175,160,255, 209,175,160,255, 210,179,161,255, 210,177,161,255, 210,179,162,255, 159,82,36,255, 159,82,36,255, 160,83,37,255, 162,83,36,255, 160,83,36,255, 162,82,36,255, 159,82,36,255, 159,82,36,255, 167,89,44,255, 169,86,39,255, 160,82,36,255, 158,82,36,255, 159,82,36,255, 162,84,36,255, 162,83,38,255, 162,84,38,255, 148,85,108,255, 148,86,108,255, 149,87,108,255, 149,87,108,255, 149,88,107,255, 149,86,107,255, 147,86,107,255, 148,86,108,255, 155,93,114,255, 156,90,110,255, 149,86,107,255, 146,85,107,255, 148,86,107,255, 149,89,108,255, 149,88,109,255, 150,89,110,255, 112,107,138,255, 112,108,138,255, 112,108,138,255, 114,108,138,255, 112,108,137,255, 114,107,137,255, 111,107,137,255, 112,108,138,255, 118,111,142,255, 119,110,138,255, 112,108,137,255, 111,107,137,255, 112,107,137,255, 114,109,138,255, 114,108,138,255, 114,109,138,255, 185,130,35,255, 185,131,35,255, 185,132,35,255, 186,132,35,255, 185,133,34,255, 186,131,33,255, 184,131,34,255, 185,131,35,255, 192,139,41,255, 193,135,36,255, 185,131,34,255, 183,130,33,255, 185,131,33,255, 186,134,35,255, 186,133,36,255, 186,134,36,255, 102,115,52,255, 102,116,52,255, 103,117,52,255, 103,117,52,255, 103,117,51,255, 103,116,51,255, 100,116,51,255, 102,116,52,255, 109,122,58,255, 111,119,54,255, 103,116,51,255, 100,115,51,255, 102,116,51,255, 103,119,52,255, 103,117,53,255, 104,119,54,255, 160,75,78,255, 160,77,78,255, 160,77,78,255, 162,77,78,255, 160,78,77,255, 162,76,76,255, 159,76,77,255, 160,77,78,255, 168,83,84,255, 169,80,80,255, 160,77,77,255, 159,75,76,255, 160,76,76,255, 162,79,78,255, 162,78,79,255, 163,79,79,255, 57,41,35,255, 57,42,35,255, 57,42,36,255, 58,42,35,255, 57,42,35,255, 58,41,35,255, 57,41,35,255, 57,42,35,255, 60,45,38,255, 61,43,36,255, 57,42,35,255, 56,41,35,255, 57,41,35,255, 58,43,35,255, 58,42,36,255, 58,43,36,255, 134,105,97,255, 134,106,97,255, 135,106,97,255, 135,106,97,255, 135,107,96,255, 135,105,96,255, 133,105,96,255, 134,106,97,255, 139,110,101,255, 140,108,98,255, 135,106,96,255, 132,105,96,255, 134,105,96,255, 135,107,97,255, 135,107,98,255, 135,107,98,255, 85,88,90,255, 85,90,90,255, 86,90,91,255, 86,90,90,255, 86,91,90,255, 86,89,89,255, 85,89,90,255, 85,90,90,255, 91,96,96,255, 93,92,92,255, 86,90,90,255, 84,88,89,255, 85,89,89,255, 86,92,90,255, 86,91,91,255, 87,92,92,255, 116,68,85,255, 116,69,85,255, 118,69,86,255, 118,69,85,255, 118,70,84,255, 118,68,84,255, 115,68,84,255, 116,69,85,255, 124,75,92,255, 126,72,87,255, 118,69,84,255, 115,68,84,255, 116,68,84,255, 118,71,85,255, 118,70,86,255, 119,71,87,255, 73,58,91,255, 73,59,91,255, 74,59,91,255, 74,59,91,255, 74,59,90,255, 74,58,90,255, 73,58,90,255, 73,59,91,255, 77,63,94,255, 78,61,92,255, 74,59,90,255, 73,58,90,255, 73,58,90,255, 74,60,91,255, 74,59,91,255, 74,60,92,255, 76,49,35,255, 76,50,35,255, 77,50,36,255, 77,50,35,255, 77,51,35,255, 77,50,35,255, 76,50,35,255, 76,50,35,255, 80,55,39,255, 81,52,36,255, 77,50,35,255, 75,49,35,255, 76,50,35,255, 77,52,35,255, 77,51,36,255, 77,52,36,255, 75,82,42,255, 75,82,42,255, 75,82,42,255, 76,82,42,255, 75,83,41,255, 76,82,41,255, 75,82,41,255, 75,82,42,255, 79,87,46,255, 80,84,43,255, 75,82,41,255, 74,82,41,255, 75,82,41,255, 76,84,42,255, 76,83,42,255, 76,84,43,255, 141,58,46,255, 141,59,46,255, 142,60,46,255, 142,60,46,255, 142,61,46,255, 142,59,45,255, 141,59,46,255, 141,59,46,255, 149,66,53,255, 150,63,48,255, 142,59,46,255, 140,58,45,255, 141,59,45,255, 142,62,46,255, 142,61,47,255, 144,62,47,255, 37,22,16,255, 37,22,16,255, 37,22,16,255, 37,22,16,255, 37,23,16,255, 37,22,15,255, 36,22,16,255, 37,22,16,255, 39,25,19,255, 40,24,17,255, 37,22,16,255, 36,22,15,255, 37,22,15,255, 37,23,16,255, 37,23,16,255, 37,23,17,255, 210,179,162,255, 210,180,162,255, 210,180,162,255, 211,182,163,255, 209,180,162,255, 211,183,164,255, 210,177,160,255, 207,175,159,255, 209,177,160,255, 210,175,160,255, 205,175,158,255, 207,175,160,255, 210,175,160,255, 210,177,161,255, 212,185,163,255, 212,182,163,255, 162,84,39,255, 162,86,38,255, 162,86,38,255, 164,87,40,255, 160,85,38,255, 163,89,42,255, 162,83,36,255, 159,82,36,255, 160,82,36,255, 162,82,36,255, 154,82,33,255, 159,82,36,255, 162,82,36,255, 162,83,37,255, 165,90,39,255, 167,87,41,255, 149,89,110,255, 150,90,110,255, 150,90,110,255, 152,92,110,255, 149,89,110,255, 151,93,112,255, 149,87,107,255, 147,85,106,255, 149,86,107,255, 149,86,107,255, 142,86,104,255, 147,86,107,255, 149,86,107,255, 150,88,108,255, 153,93,110,255, 155,92,111,255, 114,109,138,255, 114,110,138,255, 114,110,138,255, 115,110,139,255, 112,110,138,255, 115,111,140,255, 114,108,137,255, 111,107,137,255, 112,108,137,255, 114,107,137,255, 108,107,135,255, 111,107,137,255, 114,107,137,255, 114,108,138,255, 116,112,139,255, 117,110,140,255, 186,134,36,255, 186,135,36,255, 186,135,36,255, 189,137,37,255, 185,134,36,255, 188,139,39,255, 186,132,33,255, 184,130,33,255, 185,131,34,255, 186,131,33,255, 179,131,30,255, 184,131,34,255, 186,131,33,255, 186,133,35,255, 190,139,37,255, 191,137,38,255, 103,119,54,255, 104,119,54,255, 104,119,54,255, 107,121,55,255, 103,119,54,255, 105,122,56,255, 103,117,51,255, 100,115,50,255, 103,116,51,255, 103,116,51,255, 97,116,48,255, 100,116,51,255, 103,116,51,255, 104,117,52,255, 107,123,55,255, 108,121,55,255, 162,79,80,255, 163,80,79,255, 163,80,79,255, 164,82,81,255, 160,80,79,255, 164,83,82,255, 162,77,76,255, 159,75,76,255, 160,77,77,255, 162,76,76,255, 155,76,73,255, 159,76,77,255, 162,76,76,255, 163,78,78,255, 165,83,81,255, 167,82,82,255, 58,43,36,255, 58,43,36,255, 58,43,36,255, 59,44,36,255, 57,43,36,255, 58,45,37,255, 58,42,35,255, 57,41,34,255, 57,42,35,255, 58,41,35,255, 55,41,33,255, 57,41,35,255, 58,41,35,255, 58,42,36,255, 59,46,36,255, 60,44,36,255, 135,107,98,255, 135,108,98,255, 135,108,98,255, 138,109,99,255, 135,108,98,255, 136,110,100,255, 135,106,96,255, 133,105,96,255, 135,106,96,255, 135,105,96,255, 129,105,94,255, 133,105,96,255, 135,105,96,255, 135,107,97,255, 138,110,99,255, 139,109,100,255, 86,92,92,255, 87,92,92,255, 87,92,92,255, 89,94,93,255, 86,92,92,255, 88,96,95,255, 86,90,89,255, 85,88,88,255, 86,90,90,255, 86,89,89,255, 82,89,86,255, 85,89,90,255, 86,89,89,255, 87,91,91,255, 89,96,92,255, 91,94,93,255, 118,71,87,255, 119,72,87,255, 119,72,87,255, 122,73,89,255, 118,72,87,255, 120,75,90,255, 118,69,84,255, 115,68,83,255, 118,69,84,255, 118,68,84,255, 111,68,82,255, 115,68,84,255, 118,68,84,255, 119,70,86,255, 122,76,88,255, 123,73,89,255, 74,60,92,255, 74,61,92,255, 74,61,92,255, 76,62,92,255, 74,61,92,255, 75,63,93,255, 74,59,90,255, 73,58,89,255, 74,59,90,255, 74,58,90,255, 71,58,88,255, 73,58,90,255, 74,58,90,255, 74,59,91,255, 76,64,92,255, 77,62,92,255, 77,52,36,255, 77,52,36,255, 77,52,36,255, 79,54,37,255, 77,52,36,255, 78,55,38,255, 77,50,35,255, 76,49,34,255, 77,50,35,255, 77,50,35,255, 73,50,33,255, 76,50,35,255, 77,50,35,255, 77,51,36,255, 79,55,36,255, 80,54,37,255, 76,84,43,255, 76,84,43,255, 76,84,43,255, 77,86,44,255, 75,84,43,255, 77,87,45,255, 76,82,41,255, 75,82,40,255, 75,82,41,255, 76,82,41,255, 73,82,39,255, 75,82,41,255, 76,82,41,255, 76,83,42,255, 78,87,44,255, 79,86,44,255, 142,62,48,255, 144,63,47,255, 144,63,47,255, 146,64,49,255, 142,62,47,255, 145,66,51,255, 142,60,45,255, 141,58,45,255, 142,59,46,255, 142,59,45,255, 136,59,42,255, 141,59,46,255, 142,59,45,255, 144,61,46,255, 146,66,48,255, 148,64,50,255, 37,23,17,255, 37,24,17,255, 37,24,17,255, 38,24,17,255, 37,23,17,255, 38,25,18,255, 37,22,15,255, 36,22,15,255, 37,22,16,255, 37,22,15,255, 35,22,14,255, 36,22,16,255, 37,22,15,255, 37,23,16,255, 38,25,17,255, 39,24,18,255, 210,177,161,255, 209,180,162,255, 209,177,162,255, 210,172,158,255, 207,174,159,255, 209,177,161,255, 210,175,160,255, 207,175,160,255, 209,177,161,255, 209,177,162,255, 210,180,162,255, 211,180,162,255, 210,177,161,255, 207,177,159,255, 210,175,160,255, 211,180,162,255, 162,83,38,255, 160,85,38,255, 160,83,38,255, 162,79,33,255, 158,81,34,255, 160,83,37,255, 162,82,36,255, 159,82,36,255, 160,83,37,255, 160,83,38,255, 163,85,39,255, 163,85,38,255, 162,83,36,255, 159,82,36,255, 162,82,36,255, 164,86,39,255, 149,88,109,255, 149,89,110,255, 149,88,110,255, 150,83,104,255, 145,84,105,255, 149,87,108,255, 149,86,107,255, 147,86,107,255, 149,87,108,255, 149,88,110,255, 151,89,110,255, 151,89,110,255, 149,87,108,255, 147,86,106,255, 149,86,107,255, 152,90,110,255, 114,108,138,255, 112,110,138,255, 112,108,138,255, 114,105,135,255, 111,106,136,255, 112,108,138,255, 114,107,137,255, 111,107,137,255, 112,108,138,255, 112,108,138,255, 114,110,138,255, 115,110,138,255, 114,108,138,255, 111,108,137,255, 114,107,137,255, 115,110,138,255, 186,133,36,255, 185,134,36,255, 185,133,36,255, 186,128,30,255, 183,129,32,255, 185,132,35,255, 186,131,33,255, 184,131,34,255, 185,132,35,255, 185,133,36,255, 187,134,36,255, 188,134,36,255, 186,132,35,255, 184,131,33,255, 186,131,33,255, 189,135,36,255, 103,117,53,255, 103,119,54,255, 103,117,54,255, 104,113,48,255, 99,114,49,255, 103,117,52,255, 103,116,51,255, 100,116,51,255, 103,117,52,255, 103,117,54,255, 104,119,54,255, 105,119,54,255, 103,117,52,255, 100,116,50,255, 103,116,51,255, 107,119,54,255, 162,78,79,255, 160,80,79,255, 160,78,79,255, 163,73,73,255, 158,74,75,255, 160,77,78,255, 162,76,76,255, 159,76,77,255, 160,77,78,255, 160,78,79,255, 163,80,80,255, 164,80,79,255, 162,77,78,255, 159,77,76,255, 162,76,76,255, 164,80,80,255, 58,42,36,255, 57,43,36,255, 57,42,36,255, 58,40,33,255, 56,40,34,255, 57,42,36,255, 58,41,35,255, 57,41,35,255, 57,42,36,255, 57,42,36,255, 58,43,36,255, 58,43,36,255, 58,42,35,255, 57,42,34,255, 58,41,35,255, 59,43,36,255, 135,107,98,255, 135,108,98,255, 135,107,98,255, 135,103,94,255, 132,104,95,255, 135,106,97,255, 135,105,96,255, 133,105,96,255, 135,106,97,255, 135,107,98,255, 136,108,98,255, 136,108,98,255, 135,106,97,255, 133,106,96,255, 135,105,96,255, 138,108,98,255, 86,91,91,255, 86,92,92,255, 86,91,92,255, 87,86,86,255, 83,87,87,255, 86,90,91,255, 86,89,89,255, 85,89,90,255, 86,90,91,255, 86,91,92,255, 88,92,92,255, 88,92,92,255, 86,90,90,255, 85,90,88,255, 86,89,89,255, 89,92,92,255, 118,70,86,255, 118,72,87,255, 118,70,87,255, 119,65,82,255, 114,66,82,255, 118,69,86,255, 118,68,84,255, 115,68,84,255, 118,69,86,255, 118,70,87,255, 119,72,87,255, 120,72,87,255, 118,69,85,255, 115,69,83,255, 118,68,84,255, 122,72,87,255, 74,59,91,255, 74,61,92,255, 74,59,92,255, 74,56,88,255, 73,57,89,255, 74,59,91,255, 74,58,90,255, 73,58,90,255, 74,59,91,255, 74,59,92,255, 75,61,92,255, 75,61,92,255, 74,59,91,255, 73,59,89,255, 74,58,90,255, 76,61,92,255, 77,51,36,255, 77,52,36,255, 77,51,36,255, 77,48,33,255, 75,48,33,255, 77,50,36,255, 77,50,35,255, 76,50,35,255, 77,50,36,255, 77,51,36,255, 78,52,36,255, 78,52,36,255, 77,50,35,255, 76,50,34,255, 77,50,35,255, 79,52,36,255, 76,83,42,255, 75,84,43,255, 75,83,43,255, 76,81,39,255, 74,81,40,255, 75,82,42,255, 76,82,41,255, 75,82,41,255, 75,82,42,255, 75,83,43,255, 77,84,43,255, 77,84,43,255, 76,82,42,255, 75,82,40,255, 76,82,41,255, 77,84,43,255, 142,61,47,255, 142,62,47,255, 142,61,47,255, 144,56,42,255, 139,57,43,255, 142,60,46,255, 142,59,45,255, 141,59,46,255, 142,60,46,255, 142,61,47,255, 145,62,48,255, 145,62,47,255, 142,60,46,255, 141,59,45,255, 142,59,45,255, 146,63,48,255, 37,23,16,255, 37,23,17,255, 37,23,17,255, 37,21,14,255, 36,21,15,255, 37,22,16,255, 37,22,15,255, 36,22,16,255, 37,22,16,255, 37,23,17,255, 38,23,17,255, 38,23,17,255, 37,22,16,255, 36,22,15,255, 37,22,15,255, 38,24,17,255, 209,177,162,255, 210,179,162,255, 210,179,162,255, 209,180,162,255, 209,180,162,255, 211,180,163,255, 212,182,163,255, 210,180,163,255, 209,179,162,255, 210,180,163,255, 210,179,162,255, 210,175,160,255, 209,174,159,255, 207,174,159,255, 210,177,161,255, 210,179,162,255, 160,83,38,255, 162,84,39,255, 162,84,39,255, 160,85,38,255, 160,85,38,255, 163,86,39,255, 167,87,41,255, 162,85,39,255, 160,84,38,255, 162,85,39,255, 162,84,38,255, 162,82,36,255, 159,81,35,255, 158,81,35,255, 162,83,36,255, 162,84,39,255, 149,88,110,255, 149,89,110,255, 149,89,110,255, 149,89,110,255, 149,89,110,255, 151,90,110,255, 155,92,111,255, 150,89,110,255, 149,89,110,255, 150,89,110,255, 150,89,110,255, 149,86,107,255, 148,85,105,255, 146,85,105,255, 149,87,108,255, 149,89,110,255, 112,108,138,255, 114,109,138,255, 114,109,138,255, 112,110,138,255, 112,110,138,255, 115,110,139,255, 117,110,140,255, 114,110,139,255, 112,109,138,255, 114,110,139,255, 114,109,138,255, 114,107,137,255, 112,106,136,255, 111,106,136,255, 114,108,138,255, 114,109,138,255, 185,133,36,255, 186,134,36,255, 186,134,36,255, 185,134,36,255, 185,134,36,255, 188,135,37,255, 191,137,38,255, 186,134,37,255, 185,134,36,255, 186,134,37,255, 186,134,36,255, 186,131,33,255, 185,130,32,255, 183,130,32,255, 186,132,35,255, 186,134,36,255, 103,117,54,255, 103,119,54,255, 103,119,54,255, 103,119,54,255, 103,119,54,255, 105,119,55,255, 108,121,55,255, 104,119,55,255, 103,119,54,255, 104,119,55,255, 104,119,54,255, 103,116,51,255, 102,114,49,255, 100,114,49,255, 103,117,52,255, 103,119,54,255, 160,78,79,255, 162,79,80,255, 162,79,80,255, 160,80,79,255, 160,80,79,255, 164,80,81,255, 167,82,82,255, 163,80,81,255, 160,79,79,255, 163,80,81,255, 163,79,79,255, 162,76,76,255, 160,75,75,255, 159,75,75,255, 162,77,78,255, 162,79,80,255, 57,42,36,255, 58,43,36,255, 58,43,36,255, 57,43,36,255, 57,43,36,255, 58,43,36,255, 60,44,36,255, 58,43,36,255, 57,43,36,255, 58,43,36,255, 58,43,36,255, 58,41,35,255, 57,41,34,255, 56,41,34,255, 58,42,35,255, 58,43,36,255, 135,107,98,255, 135,107,98,255, 135,107,98,255, 135,108,98,255, 135,108,98,255, 136,108,99,255, 139,109,100,255, 135,108,99,255, 135,107,98,255, 135,108,99,255, 135,107,98,255, 135,105,96,255, 134,105,95,255, 132,105,95,255, 135,106,97,255, 135,107,98,255, 86,91,92,255, 86,92,92,255, 86,92,92,255, 86,92,92,255, 86,92,92,255, 88,92,92,255, 91,94,93,255, 87,92,92,255, 86,92,92,255, 87,92,92,255, 87,92,92,255, 86,89,89,255, 85,88,88,255, 84,88,88,255, 86,90,90,255, 86,92,92,255, 118,70,87,255, 118,71,87,255, 118,71,87,255, 118,72,87,255, 118,72,87,255, 120,72,88,255, 123,73,89,255, 119,72,88,255, 118,71,87,255, 119,72,88,255, 119,71,87,255, 118,68,84,255, 116,67,83,255, 115,67,83,255, 118,69,85,255, 118,71,87,255, 74,59,92,255, 74,60,92,255, 74,60,92,255, 74,61,92,255, 74,61,92,255, 75,61,92,255, 77,62,92,255, 74,61,92,255, 74,60,92,255, 74,61,92,255, 74,60,92,255, 74,58,90,255, 73,57,89,255, 73,57,89,255, 74,59,91,255, 74,60,92,255, 77,51,36,255, 77,52,36,255, 77,52,36,255, 77,52,36,255, 77,52,36,255, 78,52,36,255, 80,54,37,255, 77,52,36,255, 77,52,36,255, 77,52,36,255, 77,52,36,255, 77,50,35,255, 76,49,34,255, 75,49,34,255, 77,50,35,255, 77,52,36,255, 75,83,43,255, 76,84,43,255, 76,84,43,255, 75,84,43,255, 75,84,43,255, 77,84,44,255, 79,86,44,255, 76,84,44,255, 75,84,43,255, 76,84,44,255, 76,84,43,255, 76,82,41,255, 75,82,40,255, 74,82,40,255, 76,82,42,255, 76,84,43,255, 142,61,47,255, 142,62,48,255, 142,62,48,255, 142,62,47,255, 142,62,47,255, 145,63,48,255, 148,64,50,255, 144,62,48,255, 142,62,47,255, 144,62,48,255, 144,62,47,255, 142,59,45,255, 141,58,44,255, 140,58,44,255, 142,60,46,255, 142,62,48,255, 37,23,17,255, 37,23,17,255, 37,23,17,255, 37,23,17,255, 37,23,17,255, 38,24,17,255, 39,24,18,255, 37,23,17,255, 37,23,17,255, 37,23,17,255, 37,23,17,255, 37,22,15,255, 37,21,15,255, 36,21,15,255, 37,22,16,255, 37,23,17,255, 149,91,66,255, 147,89,64,255, 147,89,64,255, 147,89,64,255, 149,89,66,255, 151,94,70,255, 156,101,73,255, 154,97,71,255, 147,91,64,255, 156,100,71,255, 154,99,71,255, 149,90,64,255, 145,86,60,255, 145,86,60,255, 146,87,61,255, 149,90,64,255, 235,232,224,255, 235,233,225,255, 235,232,224,255, 232,229,221,255, 229,225,216,255, 237,235,228,255, 237,235,228,255, 235,233,225,255, 230,227,218,255, 226,221,212,255, 223,218,207,255, 223,218,207,255, 225,220,210,255, 230,227,218,255, 233,230,222,255, 233,230,222,255, 241,239,233,255, 241,239,233,255, 241,239,233,255, 238,235,228,255, 238,235,228,255, 227,223,213,255, 238,235,228,255, 227,223,213,255, 238,235,228,255, 227,223,213,255, 238,235,228,255, 227,223,213,255, 238,235,229,255, 240,237,231,255, 241,238,233,255, 241,238,233,255, 241,239,233,255, 241,239,233,255, 241,239,233,255, 240,238,232,255, 227,223,213,255, 242,240,234,255, 227,223,213,255, 241,239,233,255, 227,223,213,255, 238,236,229,255, 227,223,213,255, 238,235,228,255, 238,235,229,255, 240,237,231,255, 241,238,233,255, 241,238,233,255, 221,216,204,255, 241,239,233,255, 241,239,233,255, 221,216,204,255, 221,216,204,255, 242,240,234,255, 242,240,234,255, 221,216,204,255, 221,216,204,255, 238,236,229,255, 238,235,228,255, 221,216,204,255, 221,216,204,255, 240,237,231,255, 241,238,233,255, 221,216,204,255, 221,216,204,255, 242,240,234,255, 236,234,226,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 238,236,229,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 238,236,229,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 236,232,226,255, 225,220,211,255, 241,239,233,255, 241,239,233,255, 241,239,233,255, 240,238,232,255, 239,237,231,255, 242,240,234,255, 242,240,234,255, 241,239,233,255, 240,238,231,255, 238,236,229,255, 238,235,228,255, 238,235,228,255, 238,235,229,255, 240,237,231,255, 241,238,233,255, 241,238,233,255, 241,239,233,255, 241,239,233,255, 241,239,233,255, 240,238,232,255, 239,237,231,255, 242,240,234,255, 242,240,234,255, 241,239,233,255, 240,238,231,255, 238,236,229,255, 238,235,228,255, 238,235,228,255, 238,235,229,255, 240,237,231,255, 241,238,233,255, 241,238,233,255, 215,199,186,255, 215,199,186,255, 64,25,25,255, 154,83,83,255, 194,134,105,255, 115,60,60,255, 82,40,40,255, 78,39,39,255, 78,39,39,255, 131,13,13,255, 194,115,115,255, 166,89,89,255, 116,61,61,255, 78,39,39,255, 216,200,190,255, 171,150,138,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 170,201,255,255, 170,201,255,255, 170,201,255,255, 169,200,254,255, 169,200,254,255, 168,199,252,255, 168,199,252,255, 166,196,249,255, 165,194,246,255, 165,194,246,255, 165,195,248,255, 168,199,253,255, 168,199,252,255, 168,199,252,255, 170,201,255,255, 170,201,255,255, 155,75,26,255, 173,89,35,255, 172,89,35,255, 168,87,30,255, 177,93,37,255, 168,89,34,255, 164,87,32,255, 168,89,32,255, 173,93,34,255, 172,93,35,255, 168,89,34,255, 170,87,34,255, 167,84,30,255, 189,106,46,255, 155,77,26,255, 167,86,30,255, 79,53,28,255, 68,49,28,255, 103,67,30,255, 71,44,27,255, 104,71,30,255, 103,71,30,255, 70,47,27,255, 73,46,28,255, 71,47,27,255, 117,72,31,255, 117,72,31,255, 173,102,36,255, 99,72,30,255, 84,88,18,255, 66,55,28,255, 78,59,28,255, 84,54,28,255, 94,61,29,255, 79,58,28,255, 81,87,18,255, 69,56,27,255, 69,57,27,255, 68,52,28,255, 68,46,28,255, 78,52,28,255, 139,87,32,255, 139,87,32,255, 82,58,28,255, 76,55,28,255, 117,72,31,255, 66,49,28,255, 91,58,28,255, 149,91,66,255, 150,91,65,255, 156,99,73,255, 157,100,74,255, 157,95,74,255, 151,94,76,255, 148,92,65,255, 149,90,64,255, 149,92,64,255, 151,95,66,255, 155,100,72,255, 153,98,70,255, 146,88,63,255, 150,91,65,255, 150,91,65,255, 147,89,64,255, 234,231,224,255, 235,233,225,255, 235,233,225,255, 236,233,225,255, 237,234,227,255, 237,235,228,255, 236,233,225,255, 236,233,225,255, 230,225,217,255, 225,220,210,255, 225,220,210,255, 225,220,210,255, 230,227,218,255, 230,227,218,255, 232,230,221,255, 233,231,222,255, 241,239,233,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 239,237,230,255, 227,223,213,255, 236,232,226,255, 227,223,213,255, 233,229,221,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 227,223,213,255, 227,222,212,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 221,216,204,255, 240,238,232,255, 227,223,213,255, 239,237,230,255, 227,223,213,255, 233,229,221,255, 221,216,204,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,222,212,255, 241,239,233,255, 230,226,218,255, 230,226,218,255, 227,223,213,255, 228,224,214,255, 230,226,218,255, 230,226,218,255, 227,223,213,255, 226,222,212,255, 230,226,218,255, 230,226,218,255, 225,220,210,255, 226,222,212,255, 230,226,218,255, 230,226,218,255, 227,222,212,255, 221,216,204,255, 242,240,234,255, 239,237,230,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 233,229,221,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 236,234,226,255, 225,220,211,255, 241,239,233,255, 239,237,230,255, 239,237,230,255, 239,237,230,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 239,237,230,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 233,229,221,255, 236,234,226,255, 236,234,226,255, 237,235,228,255, 227,222,212,255, 241,239,233,255, 239,237,230,255, 239,237,230,255, 239,237,230,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 239,237,230,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 233,229,221,255, 236,234,226,255, 236,234,226,255, 237,235,228,255, 227,222,212,255, 175,136,120,255, 68,42,40,255, 69,7,7,255, 136,79,79,255, 29,10,10,255, 78,39,39,255, 194,115,115,255, 131,13,13,255, 143,117,110,255, 200,177,165,255, 57,32,32,255, 90,6,6,255, 104,8,8,255, 109,47,35,255, 193,172,164,255, 219,205,195,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 185,1,1,255, 212,1,2,255, 137,70,40,255, 164,128,74,255, 181,103,62,255, 153,82,52,255, 212,1,2,255, 185,1,1,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 57,0,0,255, 75,0,0,255, 113,93,53,255, 164,128,74,255, 172,136,82,255, 135,109,69,255, 75,0,0,255, 57,0,0,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 92,77,48,255, 113,93,53,255, 164,128,74,255, 164,128,74,255, 172,136,82,255, 172,136,82,255, 135,109,69,255, 104,85,56,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 170,201,255,255, 170,201,255,255, 169,200,253,255, 168,199,252,255, 167,197,250,255, 166,196,249,255, 165,196,248,255, 172,202,247,255, 165,195,246,255, 165,194,246,255, 165,195,246,255, 165,195,248,255, 166,196,250,255, 168,199,251,255, 169,200,253,255, 168,199,252,255, 170,90,34,255, 167,86,30,255, 175,92,38,255, 182,96,41,255, 151,70,28,255, 163,84,34,255, 160,82,28,255, 162,83,28,255, 175,95,41,255, 179,93,37,255, 200,119,57,255, 170,92,34,255, 170,86,34,255, 167,86,30,255, 172,89,34,255, 179,96,35,255, 145,104,62,255, 85,62,28,255, 124,84,31,255, 99,65,30,255, 84,54,28,255, 78,52,28,255, 84,54,28,255, 74,46,28,255, 78,52,28,255, 78,52,28,255, 117,72,31,255, 79,58,28,255, 80,62,28,255, 78,84,18,255, 77,62,28,255, 72,57,27,255, 94,61,29,255, 117,72,31,255, 78,60,28,255, 144,104,60,255, 80,87,18,255, 70,51,27,255, 70,47,27,255, 78,52,28,255, 173,102,36,255, 87,56,28,255, 89,57,28,255, 71,51,27,255, 117,72,31,255, 76,55,28,255, 73,53,27,255, 80,52,28,255, 149,92,68,255, 142,90,65,255, 148,92,65,255, 149,90,64,255, 147,88,62,255, 145,87,62,255, 147,88,62,255, 149,90,64,255, 154,96,69,255, 150,94,69,255, 150,96,69,255, 150,94,69,255, 149,92,68,255, 152,101,69,255, 152,94,65,255, 151,94,62,255, 233,231,222,255, 235,233,225,255, 236,234,226,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 236,233,225,255, 230,225,217,255, 230,225,217,255, 225,220,210,255, 225,220,210,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 233,231,222,255, 233,231,222,255, 241,239,233,255, 221,216,204,255, 242,240,234,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 239,237,230,255, 227,223,213,255, 236,232,226,255, 227,223,213,255, 233,229,221,255, 237,235,229,255, 242,240,234,255, 242,240,234,255, 227,223,213,255, 227,222,212,255, 227,223,213,255, 239,237,230,255, 240,237,231,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 227,223,213,255, 236,232,226,255, 227,223,213,255, 233,229,221,255, 233,229,221,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 238,235,229,255, 227,222,212,255, 241,239,233,255, 230,226,218,255, 240,237,231,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 236,232,226,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 230,226,218,255, 241,239,233,255, 221,216,204,255, 242,240,234,255, 239,237,230,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 233,229,221,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 241,239,233,255, 239,237,230,255, 240,237,231,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 236,232,226,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 238,235,229,255, 227,222,212,255, 241,239,233,255, 239,237,230,255, 240,237,231,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 236,232,226,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 238,235,229,255, 227,222,212,255, 68,42,40,255, 120,69,69,255, 136,79,79,255, 40,19,19,255, 77,37,37,255, 131,13,13,255, 218,195,182,255, 152,98,92,255, 205,193,179,255, 162,151,140,255, 51,26,26,255, 90,6,6,255, 41,17,17,255, 85,28,28,255, 185,164,156,255, 83,22,22,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 136,3,0,255, 171,3,1,255, 113,50,30,255, 100,79,42,255, 100,79,42,255, 76,61,37,255, 171,3,1,255, 136,3,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 22,0,0,255, 40,0,0,255, 82,67,40,255, 100,79,42,255, 100,79,42,255, 76,61,37,255, 40,0,0,255, 22,0,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 69,59,39,255, 82,67,40,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 76,61,37,255, 65,54,37,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 170,201,255,255, 169,200,254,255, 168,198,251,255, 206,222,248,255, 164,194,246,255, 164,194,246,255, 171,200,245,255, 163,192,243,255, 162,192,243,255, 161,191,243,255, 163,192,243,255, 164,192,245,255, 164,194,246,255, 165,195,247,255, 168,198,251,255, 169,200,254,255, 175,90,37,255, 180,96,40,255, 191,103,43,255, 164,84,30,255, 165,85,30,255, 164,84,30,255, 168,87,32,255, 168,87,32,255, 170,91,34,255, 176,93,35,255, 179,94,40,255, 180,93,40,255, 167,84,34,255, 161,85,28,255, 163,84,28,255, 192,103,41,255, 84,61,28,255, 105,74,31,255, 105,74,31,255, 89,66,29,255, 68,49,28,255, 77,52,28,255, 89,57,28,255, 68,46,28,255, 139,87,32,255, 111,73,31,255, 76,58,28,255, 97,73,30,255, 66,55,28,255, 77,62,28,255, 80,85,17,255, 70,47,27,255, 112,71,30,255, 73,53,27,255, 72,57,27,255, 97,73,30,255, 68,56,28,255, 72,50,27,255, 95,60,28,255, 84,54,28,255, 143,90,32,255, 87,59,28,255, 88,58,28,255, 78,82,18,255, 80,83,17,255, 68,51,28,255, 173,102,36,255, 78,52,28,255, 152,95,69,255, 154,99,71,255, 151,94,68,255, 150,89,63,255, 145,87,62,255, 144,86,61,255, 147,89,64,255, 156,92,67,255, 150,92,67,255, 149,91,66,255, 149,91,66,255, 149,94,66,255, 150,92,67,255, 150,92,67,255, 150,91,63,255, 149,90,62,255, 229,225,216,255, 232,229,221,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 235,232,224,255, 230,225,217,255, 230,225,217,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 233,231,222,255, 233,231,222,255, 229,225,216,255, 239,237,231,255, 227,223,213,255, 242,240,234,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 221,216,204,255, 236,232,226,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 237,235,229,255, 227,223,213,255, 221,216,204,255, 225,221,211,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 227,223,213,255, 242,240,234,255, 227,223,213,255, 221,216,204,255, 237,235,229,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 225,221,211,255, 221,216,204,255, 227,223,213,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 238,235,229,255, 227,223,213,255, 221,216,204,255, 225,221,211,255, 242,240,234,255, 237,235,228,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 238,235,229,255, 225,220,211,255, 239,237,231,255, 237,235,228,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 238,235,229,255, 238,235,229,255, 225,221,211,255, 239,237,231,255, 237,235,228,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 238,235,229,255, 238,235,229,255, 225,221,211,255, 42,14,14,255, 70,38,38,255, 23,9,9,255, 95,54,54,255, 195,146,139,255, 232,226,217,255, 219,204,191,255, 218,202,186,255, 170,155,144,255, 75,36,36,255, 31,13,13,255, 40,20,20,255, 78,39,39,255, 184,109,109,255, 94,20,20,255, 93,52,52,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,1,2,255, 160,0,2,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,0,0,255, 75,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 170,201,255,255, 168,199,252,255, 206,222,248,255, 163,193,245,255, 163,193,245,255, 163,193,245,255, 161,191,243,255, 159,189,239,255, 158,186,237,255, 158,186,237,255, 159,188,239,255, 161,191,242,255, 162,192,244,255, 164,193,245,255, 172,203,248,255, 168,199,253,255, 158,82,28,255, 167,87,32,255, 167,86,32,255, 170,89,32,255, 159,80,28,255, 170,90,32,255, 161,81,28,255, 172,87,34,255, 140,64,20,255, 164,84,30,255, 167,86,30,255, 175,93,35,255, 180,95,38,255, 180,94,38,255, 168,87,30,255, 149,72,22,255, 87,59,28,255, 80,59,28,255, 185,133,92,255, 88,66,29,255, 70,51,27,255, 100,65,30,255, 121,85,58,255, 101,65,30,255, 150,108,74,255, 105,74,31,255, 77,58,28,255, 97,73,30,255, 77,62,28,255, 72,57,27,255, 150,108,74,255, 112,71,30,255, 94,61,29,255, 80,57,28,255, 103,71,30,255, 68,54,28,255, 72,50,27,255, 117,72,31,255, 84,58,28,255, 92,67,29,255, 95,68,29,255, 83,62,28,255, 74,55,27,255, 75,50,27,255, 71,44,27,255, 76,50,28,255, 173,102,36,255, 78,52,28,255, 151,94,68,255, 157,99,72,255, 155,98,72,255, 154,96,69,255, 152,95,69,255, 143,85,60,255, 146,87,61,255, 148,87,61,255, 148,88,65,255, 147,89,64,255, 158,100,73,255, 158,100,73,255, 151,92,66,255, 149,91,66,255, 151,94,68,255, 149,90,64,255, 229,225,216,255, 230,228,218,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 232,230,221,255, 230,225,217,255, 230,225,217,255, 230,225,217,255, 233,230,222,255, 233,230,222,255, 237,235,228,255, 237,235,228,255, 233,230,222,255, 229,225,216,255, 229,225,216,255, 227,223,213,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 235,232,225,255, 225,221,211,255, 239,237,231,255, 236,234,226,255, 240,238,232,255, 221,216,204,255, 240,238,232,255, 227,223,213,255, 242,240,234,255, 242,240,234,255, 236,232,226,255, 221,216,204,255, 237,235,229,255, 221,216,204,255, 245,244,240,255, 245,244,240,255, 235,232,225,255, 237,235,229,255, 221,216,204,255, 226,222,212,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 240,238,232,255, 237,235,229,255, 226,222,211,255, 221,216,204,255, 225,221,211,255, 242,240,234,255, 236,234,226,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 237,235,228,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 239,237,231,255, 236,234,226,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 237,235,228,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 237,235,229,255, 235,232,225,255, 225,221,211,255, 239,237,231,255, 236,234,226,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 237,235,228,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 237,235,229,255, 235,232,225,255, 225,221,211,255, 225,165,129,255, 194,115,115,255, 103,57,47,255, 86,57,55,255, 232,223,214,255, 215,199,186,255, 209,190,177,255, 33,9,9,255, 61,34,34,255, 58,30,30,255, 180,138,131,255, 192,149,143,255, 34,16,16,255, 170,109,85,255, 126,13,13,255, 95,54,54,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,0,2,255, 171,3,1,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,0,0,255, 75,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 120,72,73,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,72,73,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 172,202,246,255, 209,224,250,255, 165,194,246,255, 163,192,245,255, 162,192,245,255, 162,192,243,255, 158,188,239,255, 154,183,233,255, 153,182,232,255, 191,206,232,255, 155,183,233,255, 159,188,238,255, 161,192,243,255, 171,200,245,255, 168,199,252,255, 165,196,248,255, 177,95,35,255, 167,89,32,255, 181,96,40,255, 167,87,32,255, 180,94,40,255, 177,91,37,255, 177,90,35,255, 179,91,37,255, 160,80,28,255, 158,80,26,255, 165,86,32,255, 181,95,40,255, 167,83,32,255, 151,74,24,255, 184,98,40,255, 155,76,26,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 71,60,27,255, 93,73,30,255, 150,108,74,255, 83,58,28,255, 68,46,28,255, 68,46,28,255, 89,61,41,255, 144,104,60,255, 108,108,108,255, 121,85,58,255, 112,71,30,255, 94,61,29,255, 121,85,58,255, 68,46,28,255, 94,61,29,255, 173,102,36,255, 73,48,27,255, 173,102,36,255, 68,49,28,255, 77,58,28,255, 74,60,28,255, 74,60,28,255, 70,57,27,255, 78,56,28,255, 68,46,28,255, 75,50,27,255, 74,46,28,255, 73,49,27,255, 117,72,31,255, 157,99,72,255, 151,94,68,255, 153,96,70,255, 149,92,68,255, 148,89,63,255, 151,92,66,255, 151,92,66,255, 150,92,67,255, 150,92,67,255, 150,92,67,255, 151,94,68,255, 152,95,69,255, 152,95,69,255, 151,94,68,255, 149,91,66,255, 157,99,72,255, 230,228,218,255, 230,228,218,255, 237,235,228,255, 237,235,228,255, 223,218,207,255, 223,218,207,255, 223,218,207,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 233,230,222,255, 230,228,218,255, 240,238,231,255, 236,234,226,255, 240,238,232,255, 227,223,213,255, 242,240,234,255, 242,240,234,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 240,238,231,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 232,228,220,255, 227,223,213,255, 227,223,213,255, 237,235,229,255, 221,216,204,255, 221,216,204,255, 240,238,232,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 237,235,229,255, 240,238,231,255, 230,226,218,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 236,232,226,255, 236,232,226,255, 237,234,228,255, 237,234,228,255, 237,234,228,255, 240,238,232,255, 230,226,218,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 226,222,211,255, 226,222,211,255, 242,240,234,255, 236,234,226,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 232,228,220,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 240,238,231,255, 236,234,226,255, 240,238,232,255, 240,238,232,255, 232,228,220,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 237,235,229,255, 226,222,211,255, 240,238,231,255, 236,234,226,255, 240,238,232,255, 240,238,232,255, 232,228,220,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 237,235,229,255, 226,222,211,255, 79,7,7,255, 143,84,84,255, 189,165,154,255, 62,41,40,255, 207,190,170,255, 175,136,120,255, 105,66,63,255, 36,18,18,255, 210,180,170,255, 221,203,190,255, 194,170,159,255, 180,142,136,255, 58,33,27,255, 93,52,52,255, 20,10,10,255, 43,18,18,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 185,1,1,255, 212,1,2,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 127,60,32,255, 212,1,2,255, 185,1,1,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 57,0,0,255, 75,0,0,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 100,79,42,255, 75,0,0,255, 57,0,0,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 120,72,73,255, 108,89,60,255, 212,1,2,255, 212,1,2,255, 160,0,2,255, 171,3,1,255, 171,3,1,255, 160,0,2,255, 108,89,60,255, 120,72,73,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 172,202,246,255, 166,196,250,255, 163,193,246,255, 163,193,245,255, 162,192,244,255, 159,188,240,255, 154,183,233,255, 153,181,232,255, 189,205,231,255, 152,182,231,255, 154,182,232,255, 158,185,236,255, 168,197,242,255, 163,193,245,255, 165,196,248,255, 168,199,252,255, 161,83,30,255, 172,91,34,255, 161,83,30,255, 197,114,60,255, 162,83,28,255, 180,97,37,255, 171,90,34,255, 170,86,35,255, 165,85,32,255, 187,101,40,255, 170,90,34,255, 154,76,26,255, 161,83,30,255, 162,83,30,255, 167,87,32,255, 154,76,26,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 68,46,28,255, 173,102,36,255, 84,54,28,255, 76,51,28,255, 75,52,28,255, 132,89,32,255, 70,57,27,255, 79,85,18,255, 72,59,27,255, 74,59,28,255, 147,106,67,255, 68,46,28,255, 73,48,27,255, 68,46,28,255, 73,49,27,255, 94,61,29,255, 154,96,69,255, 153,98,70,255, 151,95,70,255, 149,92,68,255, 149,90,64,255, 147,89,64,255, 150,90,67,255, 157,92,72,255, 150,89,63,255, 147,89,64,255, 149,91,66,255, 152,94,67,255, 154,99,71,255, 155,97,70,255, 153,95,68,255, 148,89,63,255, 233,230,222,255, 230,228,218,255, 237,235,228,255, 230,225,217,255, 225,220,210,255, 223,218,207,255, 223,218,207,255, 233,230,222,255, 233,230,222,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 233,230,222,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 242,240,234,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 227,223,213,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 227,222,212,255, 241,238,233,255, 227,223,213,255, 240,238,232,255, 236,232,226,255, 233,229,221,255, 245,244,240,255, 227,223,213,255, 237,235,229,255, 227,223,213,255, 242,240,234,255, 242,240,234,255, 240,238,232,255, 240,238,232,255, 236,232,226,255, 227,223,213,255, 237,235,229,255, 241,238,233,255, 230,226,218,255, 240,238,232,255, 236,232,226,255, 230,226,218,255, 236,232,226,255, 233,229,222,255, 236,232,226,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 241,239,233,255, 221,216,204,255, 242,240,234,255, 236,234,226,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 232,228,220,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 241,238,233,255, 236,234,226,255, 240,238,232,255, 236,232,226,255, 233,229,221,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 227,222,212,255, 241,238,233,255, 236,234,226,255, 240,238,232,255, 236,232,226,255, 233,229,221,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 227,222,212,255, 90,6,6,255, 136,79,79,255, 212,197,183,255, 201,185,172,255, 58,29,29,255, 22,9,9,255, 36,18,18,255, 232,226,216,255, 218,206,193,255, 175,136,124,255, 185,138,129,255, 83,47,47,255, 101,52,52,255, 62,29,29,255, 188,158,151,255, 55,8,8,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 136,3,0,255, 171,3,1,255, 76,61,37,255, 120,53,28,255, 100,79,42,255, 120,53,28,255, 171,3,1,255, 136,3,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 22,0,0,255, 40,0,0,255, 76,61,37,255, 91,70,37,255, 100,79,42,255, 91,70,37,255, 40,0,0,255, 22,0,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 120,72,73,255, 65,54,37,255, 160,0,2,255, 205,94,88,255, 188,114,110,255, 205,98,92,255, 188,78,72,255, 212,1,2,255, 65,54,37,255, 120,72,73,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 168,199,253,255, 165,196,248,255, 163,193,246,255, 162,192,245,255, 159,189,240,255, 154,183,235,255, 153,181,232,255, 158,186,231,255, 151,180,231,255, 151,181,231,255, 152,182,232,255, 157,186,236,255, 161,191,242,255, 163,193,246,255, 166,196,249,255, 168,199,253,255, 148,73,22,255, 173,91,37,255, 158,77,30,255, 168,89,32,255, 149,72,22,255, 173,91,34,255, 167,85,32,255, 165,83,32,255, 165,84,30,255, 164,85,30,255, 180,93,38,255, 199,109,47,255, 170,92,35,255, 180,94,40,255, 170,92,34,255, 166,83,34,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 82,53,28,255, 84,54,28,255, 87,56,28,255, 95,60,28,255, 72,57,27,255, 69,57,27,255, 91,92,19,255, 70,57,27,255, 68,53,28,255, 73,53,27,255, 68,46,28,255, 139,87,32,255, 95,60,28,255, 89,57,28,255, 68,46,28,255, 84,58,28,255, 153,96,72,255, 150,91,65,255, 149,90,64,255, 147,89,64,255, 154,96,69,255, 154,96,69,255, 147,89,64,255, 154,98,69,255, 156,98,71,255, 150,92,67,255, 149,91,66,255, 150,92,67,255, 150,92,67,255, 151,94,68,255, 153,96,70,255, 153,96,70,255, 233,230,222,255, 237,235,228,255, 230,225,217,255, 230,225,217,255, 225,220,210,255, 225,220,210,255, 223,218,207,255, 223,218,207,255, 233,230,222,255, 233,230,222,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 235,233,225,255, 233,230,222,255, 241,238,233,255, 240,238,232,255, 236,232,226,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 221,216,204,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 241,238,233,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 245,244,240,255, 227,223,213,255, 232,228,220,255, 227,223,213,255, 242,240,234,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 237,235,229,255, 221,216,204,255, 228,224,214,255, 236,232,226,255, 236,232,226,255, 230,226,218,255, 236,232,226,255, 234,230,223,255, 233,229,222,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 230,226,218,255, 240,238,232,255, 240,238,232,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 233,229,221,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 241,238,233,255, 240,238,232,255, 236,232,226,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 227,222,212,255, 241,238,233,255, 240,238,232,255, 236,232,226,255, 236,232,226,255, 233,229,221,255, 233,229,221,255, 232,228,220,255, 232,228,220,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 239,237,230,255, 227,222,212,255, 115,60,60,255, 136,79,79,255, 168,153,143,255, 55,29,29,255, 159,85,85,255, 207,158,151,255, 231,225,216,255, 229,222,213,255, 153,125,119,255, 64,51,48,255, 36,18,18,255, 125,70,70,255, 52,23,22,255, 216,208,199,255, 196,177,165,255, 88,13,13,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,0,2,255, 160,0,2,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,0,0,255, 75,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 132,50,51,255, 0,0,0,0, 171,3,1,255, 205,98,92,255, 168,168,168,255, 168,168,168,255, 181,106,102,255, 160,0,2,255, 0,0,0,0, 120,72,73,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 168,199,251,255, 165,195,247,255, 171,200,245,255, 161,191,243,255, 157,185,236,255, 152,181,232,255, 158,186,231,255, 151,180,231,255, 151,180,231,255, 151,181,232,255, 154,183,234,255, 158,188,239,255, 162,192,243,255, 165,194,246,255, 166,197,250,255, 166,196,249,255, 169,90,34,255, 165,85,30,255, 177,91,37,255, 165,86,30,255, 170,91,34,255, 163,84,30,255, 176,93,35,255, 195,110,43,255, 172,93,35,255, 161,78,32,255, 164,85,30,255, 164,83,30,255, 172,91,34,255, 173,89,37,255, 185,103,49,255, 180,94,40,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 87,56,28,255, 87,56,28,255, 102,65,29,255, 80,57,28,255, 72,57,27,255, 79,85,17,255, 68,56,28,255, 113,72,31,255, 68,51,28,255, 84,54,28,255, 84,54,28,255, 84,54,28,255, 102,65,29,255, 101,65,30,255, 117,72,31,255, 84,58,28,255, 153,96,72,255, 154,97,71,255, 151,97,70,255, 144,86,61,255, 148,90,65,255, 147,88,62,255, 148,90,65,255, 148,90,65,255, 149,91,66,255, 151,95,70,255, 156,98,71,255, 155,99,70,255, 156,98,71,255, 156,99,73,255, 157,101,76,255, 150,92,67,255, 233,230,222,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 232,230,221,255, 230,225,217,255, 223,218,207,255, 223,218,207,255, 230,225,217,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 237,235,228,255, 233,230,222,255, 230,227,218,255, 227,223,213,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 236,232,226,255, 232,228,220,255, 232,228,220,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 237,235,229,255, 226,221,211,255, 241,238,233,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 227,223,213,255, 236,232,226,255, 227,223,213,255, 232,228,220,255, 227,223,213,255, 242,240,234,255, 227,223,213,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 233,229,221,255, 233,229,221,255, 221,216,204,255, 228,224,214,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 236,232,226,255, 233,229,222,255, 233,229,222,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 230,226,218,255, 237,235,229,255, 240,238,232,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 236,232,226,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 241,238,233,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 237,235,228,255, 236,232,226,255, 232,228,220,255, 232,228,220,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 237,235,229,255, 226,221,211,255, 241,238,233,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 237,235,228,255, 236,232,226,255, 232,228,220,255, 232,228,220,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 240,238,232,255, 237,235,229,255, 226,221,211,255, 112,58,58,255, 20,10,10,255, 61,34,34,255, 138,15,15,255, 172,102,95,255, 231,224,214,255, 226,217,206,255, 125,100,88,255, 89,65,62,255, 113,58,58,255, 91,49,49,255, 125,80,78,255, 229,223,214,255, 229,222,212,255, 219,166,160,255, 80,55,45,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,0,2,255, 171,3,1,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,0,0,255, 40,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 132,50,51,255, 0,0,0,0, 160,0,2,255, 198,91,85,255, 168,168,168,255, 168,168,168,255, 184,77,70,255, 160,0,2,255, 0,0,0,0, 132,50,51,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 167,198,251,255, 172,202,246,255, 162,192,245,255, 159,189,240,255, 154,183,233,255, 152,181,231,255, 152,180,231,255, 151,180,231,255, 151,180,232,255, 153,182,234,255, 157,186,237,255, 160,191,243,255, 163,192,245,255, 165,195,247,255, 166,197,250,255, 166,196,249,255, 175,93,37,255, 173,90,38,255, 184,98,41,255, 177,91,35,255, 171,87,35,255, 162,83,28,255, 179,92,37,255, 170,86,35,255, 164,83,30,255, 198,116,50,255, 152,75,26,255, 171,92,34,255, 167,87,32,255, 170,89,37,255, 175,92,37,255, 169,89,32,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 87,56,28,255, 102,65,29,255, 68,46,28,255, 66,49,28,255, 82,60,28,255, 74,60,28,255, 68,54,28,255, 115,72,31,255, 71,44,27,255, 73,49,27,255, 84,54,28,255, 102,65,29,255, 104,67,30,255, 102,71,30,255, 113,72,31,255, 115,72,31,255, 153,96,70,255, 150,92,67,255, 148,90,65,255, 147,88,62,255, 147,88,62,255, 147,89,64,255, 148,90,65,255, 147,89,64,255, 150,92,67,255, 149,92,64,255, 148,90,65,255, 148,90,65,255, 150,96,69,255, 150,96,69,255, 158,102,73,255, 155,99,74,255, 232,228,221,255, 233,230,223,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 230,225,217,255, 223,218,207,255, 223,218,207,255, 230,225,217,255, 230,225,217,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 233,230,222,255, 229,225,216,255, 240,238,232,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 227,223,213,255, 236,232,226,255, 232,228,220,255, 232,228,220,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 236,232,226,255, 227,223,213,255, 232,228,220,255, 221,216,204,255, 236,232,226,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 237,235,229,255, 233,229,221,255, 240,238,232,255, 230,226,218,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 236,232,226,255, 233,229,222,255, 233,229,222,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 230,226,218,255, 237,235,229,255, 237,235,229,255, 230,226,218,255, 225,221,211,255, 221,216,204,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 236,232,226,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 236,232,226,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 240,238,232,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 236,232,226,255, 232,228,220,255, 232,228,220,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 225,221,211,255, 240,238,232,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 236,232,226,255, 232,228,220,255, 232,228,220,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 237,235,229,255, 225,221,211,255, 126,66,66,255, 78,39,39,255, 194,115,115,255, 174,103,97,255, 215,201,187,255, 211,199,185,255, 194,169,154,255, 55,36,34,255, 149,92,81,255, 94,41,41,255, 149,105,87,255, 180,146,141,255, 222,214,204,255, 219,185,175,255, 58,7,7,255, 90,6,6,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 185,1,1,255, 212,1,2,255, 153,82,52,255, 142,115,60,255, 142,115,60,255, 175,97,56,255, 212,1,2,255, 185,1,1,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 57,0,0,255, 84,2,0,255, 135,109,69,255, 142,115,60,255, 142,115,60,255, 164,128,74,255, 75,0,0,255, 57,0,0,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 120,72,73,255, 108,89,60,255, 212,1,2,255, 188,78,72,255, 179,104,99,255, 188,80,74,255, 186,73,67,255, 160,0,2,255, 104,85,56,255, 120,72,73,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 169,200,253,255, 165,194,246,255, 162,192,244,255, 158,187,238,255, 154,182,232,255, 152,181,231,255, 151,180,231,255, 151,180,232,255, 192,206,233,255, 155,186,239,255, 159,190,243,255, 163,192,245,255, 163,193,245,255, 165,195,247,255, 168,198,251,255, 166,196,249,255, 151,75,24,255, 167,86,32,255, 175,89,35,255, 166,86,30,255, 165,86,30,255, 170,86,34,255, 160,80,28,255, 161,83,28,255, 168,87,32,255, 169,89,32,255, 168,87,32,255, 183,99,37,255, 168,90,34,255, 173,91,37,255, 169,89,34,255, 183,100,40,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 79,53,28,255, 68,49,28,255, 103,67,30,255, 71,44,27,255, 104,71,30,255, 103,71,30,255, 70,47,27,255, 73,46,28,255, 71,47,27,255, 117,72,31,255, 117,72,31,255, 173,102,36,255, 99,72,30,255, 84,88,18,255, 66,55,28,255, 78,59,28,255, 150,91,63,255, 151,92,66,255, 149,92,68,255, 147,88,62,255, 147,87,64,255, 158,100,73,255, 159,101,74,255, 148,88,59,255, 150,94,69,255, 152,95,69,255, 157,101,72,255, 156,99,73,255, 151,92,66,255, 150,94,65,255, 150,91,65,255, 147,89,64,255, 229,225,216,255, 231,228,220,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 230,225,217,255, 230,225,217,255, 230,225,217,255, 230,225,217,255, 230,225,217,255, 230,225,217,255, 233,230,222,255, 237,235,228,255, 236,234,226,255, 230,226,217,255, 229,225,216,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 240,237,231,255, 236,233,226,255, 225,221,211,255, 227,223,213,255, 245,244,240,255, 240,238,232,255, 245,244,240,255, 245,244,240,255, 236,232,226,255, 227,223,213,255, 236,232,226,255, 221,216,204,255, 236,232,226,255, 236,232,226,255, 245,244,240,255, 240,238,232,255, 221,216,204,255, 236,233,226,255, 233,229,221,255, 240,237,231,255, 230,226,217,255, 240,238,232,255, 240,238,232,255, 230,226,218,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 230,226,218,255, 240,238,232,255, 240,237,231,255, 230,226,218,255, 241,239,233,255, 225,221,211,255, 242,240,234,255, 237,234,227,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 236,232,226,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 236,232,226,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 240,237,231,255, 225,220,211,255, 240,237,231,255, 237,234,227,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 240,238,232,255, 240,237,231,255, 236,233,226,255, 225,221,211,255, 240,237,231,255, 237,234,227,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 236,232,226,255, 237,235,229,255, 240,238,232,255, 240,237,231,255, 236,233,226,255, 225,221,211,255, 78,39,39,255, 123,12,12,255, 168,107,83,255, 214,199,186,255, 180,152,136,255, 71,59,55,255, 43,22,22,255, 115,60,60,255, 62,29,29,255, 190,165,155,255, 70,43,41,255, 141,92,88,255, 175,150,135,255, 51,25,25,255, 114,10,10,255, 120,63,63,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 136,3,0,255, 171,3,1,255, 109,46,28,255, 91,70,37,255, 100,79,42,255, 127,60,32,255, 171,3,1,255, 136,3,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 22,0,0,255, 40,0,0,255, 76,61,37,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 40,0,0,255, 22,0,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 120,72,73,255, 65,54,37,255, 160,0,2,255, 160,0,2,255, 160,0,2,255, 160,0,2,255, 160,0,2,255, 212,1,2,255, 69,59,39,255, 132,50,51,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 169,200,253,255, 165,195,247,255, 163,192,244,255, 158,188,239,255, 154,183,233,255, 152,182,232,255, 152,180,232,255, 191,206,232,255, 155,185,236,255, 160,191,243,255, 162,192,245,255, 163,192,245,255, 163,193,245,255, 206,222,248,255, 168,199,251,255, 169,200,254,255, 172,91,34,255, 173,87,35,255, 134,60,17,255, 176,91,37,255, 154,75,24,255, 186,100,43,255, 170,91,34,255, 168,84,32,255, 187,100,41,255, 188,103,40,255, 181,100,38,255, 167,89,32,255, 168,87,32,255, 195,113,55,255, 165,85,28,255, 167,87,30,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 135,135,135,255, 121,85,58,255, 145,104,62,255, 85,62,28,255, 124,84,31,255, 99,65,30,255, 84,54,28,255, 78,52,28,255, 84,54,28,255, 74,46,28,255, 78,52,28,255, 78,52,28,255, 117,72,31,255, 79,58,28,255, 80,62,28,255, 78,84,18,255, 77,62,28,255, 72,57,27,255, 147,87,64,255, 150,91,65,255, 151,92,66,255, 148,90,65,255, 147,89,64,255, 151,92,66,255, 150,94,69,255, 149,91,68,255, 156,98,71,255, 157,101,72,255, 153,96,70,255, 152,95,69,255, 152,95,69,255, 155,99,70,255, 154,97,71,255, 150,92,67,255, 225,221,210,255, 230,226,218,255, 232,229,221,255, 233,230,223,255, 237,235,228,255, 232,229,221,255, 230,225,217,255, 233,230,222,255, 233,230,222,255, 232,230,221,255, 232,228,219,255, 237,235,228,255, 237,235,228,255, 230,227,218,255, 227,223,213,255, 226,221,212,255, 238,235,229,255, 236,233,226,255, 221,216,204,255, 237,235,229,255, 221,216,204,255, 237,235,228,255, 242,240,234,255, 242,240,234,255, 227,223,213,255, 242,240,234,255, 242,240,234,255, 240,238,232,255, 240,238,232,255, 236,233,226,255, 227,223,213,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 245,244,240,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 238,235,229,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 245,244,240,255, 221,216,204,255, 221,216,204,255, 234,231,223,255, 233,229,221,255, 221,216,204,255, 226,222,212,255, 237,235,228,255, 237,235,229,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 230,226,218,255, 240,238,232,255, 236,233,226,255, 225,221,211,255, 221,216,204,255, 225,220,210,255, 242,240,234,255, 236,233,226,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 237,235,228,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 237,235,228,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 236,233,226,255, 225,220,211,255, 238,235,229,255, 236,233,226,255, 237,235,228,255, 237,235,229,255, 240,238,232,255, 237,235,228,255, 236,232,226,255, 238,235,229,255, 238,235,229,255, 237,235,228,255, 237,234,227,255, 240,238,232,255, 240,238,232,255, 236,233,226,255, 234,231,223,255, 225,220,210,255, 238,235,229,255, 236,233,226,255, 237,235,228,255, 237,235,229,255, 240,238,232,255, 237,235,228,255, 236,232,226,255, 238,235,229,255, 238,235,229,255, 237,235,228,255, 237,234,227,255, 240,238,232,255, 240,238,232,255, 236,233,226,255, 234,231,223,255, 225,220,210,255, 95,54,54,255, 133,100,93,255, 214,193,180,255, 186,157,142,255, 142,120,107,255, 28,9,9,255, 97,46,46,255, 55,24,24,255, 187,146,139,255, 231,224,214,255, 58,38,36,255, 89,38,38,255, 47,26,26,255, 78,39,39,255, 60,8,8,255, 50,25,25,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 160,0,2,255, 212,1,2,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,0,0,255, 40,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 120,72,73,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 132,50,51,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 168,199,253,255, 166,196,248,255, 163,192,245,255, 160,189,240,255, 157,186,236,255, 154,184,234,255, 161,189,234,255, 155,185,237,255, 160,189,242,255, 162,192,245,255, 163,192,245,255, 163,192,245,255, 205,220,246,255, 166,196,250,255, 168,199,253,255, 169,200,254,255, 158,78,26,255, 177,91,37,255, 177,95,35,255, 155,74,26,255, 170,89,32,255, 165,84,30,255, 170,89,34,255, 166,85,32,255, 172,93,35,255, 172,93,35,255, 167,89,32,255, 199,112,46,255, 163,84,30,255, 164,86,30,255, 163,84,30,255, 147,69,22,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 108,108,108,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 84,61,28,255, 105,74,31,255, 105,74,31,255, 89,66,29,255, 68,49,28,255, 77,52,28,255, 89,57,28,255, 68,46,28,255, 139,87,32,255, 111,73,31,255, 76,58,28,255, 97,73,30,255, 66,55,28,255, 77,62,28,255, 80,85,17,255, 70,47,27,255, 148,88,65,255, 148,90,65,255, 149,91,66,255, 150,91,65,255, 149,92,64,255, 150,89,63,255, 147,89,64,255, 148,90,65,255, 158,102,77,255, 160,96,69,255, 149,90,64,255, 146,88,63,255, 148,89,63,255, 150,94,65,255, 150,92,67,255, 151,94,68,255, 225,221,211,255, 227,224,214,255, 229,225,216,255, 228,224,215,255, 233,230,222,255, 234,231,224,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 229,225,216,255, 225,220,210,255, 225,220,210,255, 224,219,209,255, 238,235,229,255, 227,223,213,255, 221,216,204,255, 235,232,224,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 242,240,234,255, 227,223,213,255, 242,240,234,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 233,229,221,255, 227,223,213,255, 225,220,209,255, 238,235,229,255, 234,231,224,255, 221,216,204,255, 235,232,224,255, 227,223,213,255, 245,244,240,255, 245,244,240,255, 240,238,232,255, 240,238,232,255, 245,244,240,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 233,229,221,255, 233,229,221,255, 237,235,229,255, 221,216,204,255, 225,221,211,255, 235,232,225,255, 235,232,224,255, 237,235,229,255, 239,236,230,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 236,232,225,255, 233,229,221,255, 225,220,210,255, 221,216,204,255, 225,220,209,255, 242,240,234,255, 234,231,224,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 239,236,230,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 233,229,221,255, 225,220,211,255, 238,235,229,255, 234,231,224,255, 235,232,225,255, 235,232,224,255, 237,235,229,255, 239,236,230,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 236,232,225,255, 233,229,221,255, 233,229,221,255, 225,220,209,255, 238,235,229,255, 234,231,224,255, 235,232,225,255, 235,232,224,255, 237,235,229,255, 239,236,230,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 236,232,225,255, 233,229,221,255, 233,229,221,255, 225,220,209,255, 194,115,115,255, 166,89,89,255, 41,17,17,255, 36,18,18,255, 41,17,17,255, 28,9,9,255, 79,35,35,255, 182,149,139,255, 226,216,204,255, 39,24,23,255, 65,13,13,255, 131,45,45,255, 136,79,79,255, 202,184,175,255, 46,23,20,255, 95,54,54,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 171,3,1,255, 146,0,2,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,0,0,255, 40,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 120,72,73,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 169,200,254,255, 175,205,251,255, 165,194,246,255, 163,192,243,255, 161,190,242,255, 160,189,240,255, 160,189,240,255, 160,190,242,255, 163,192,245,255, 163,193,245,255, 163,193,245,255, 205,220,246,255, 166,196,248,255, 168,198,251,255, 169,200,254,255, 170,201,255,255, 183,96,40,255, 170,89,32,255, 162,83,30,255, 185,99,37,255, 170,91,34,255, 163,82,28,255, 173,91,34,255, 148,70,22,255, 157,80,30,255, 175,91,34,255, 166,85,30,255, 160,81,28,255, 171,87,35,255, 177,91,37,255, 161,81,30,255, 165,85,32,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 87,59,28,255, 80,59,28,255, 105,74,31,255, 88,66,29,255, 70,51,27,255, 100,65,30,255, 173,102,36,255, 101,65,30,255, 117,72,31,255, 105,74,31,255, 77,58,28,255, 97,73,30,255, 77,62,28,255, 72,57,27,255, 70,45,27,255, 112,71,30,255, 150,94,69,255, 151,96,68,255, 151,96,68,255, 154,99,71,255, 149,95,68,255, 153,102,74,255, 150,91,63,255, 147,88,62,255, 149,90,64,255, 150,89,63,255, 141,89,58,255, 147,89,64,255, 150,89,63,255, 151,92,66,255, 155,103,70,255, 157,99,72,255, 227,222,214,255, 227,224,214,255, 227,223,213,255, 227,222,213,255, 233,230,222,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 237,235,228,255, 236,234,226,255, 235,233,225,255, 237,235,228,255, 226,221,212,255, 225,220,210,255, 223,219,209,255, 227,222,214,255, 239,236,230,255, 227,223,213,255, 234,231,223,255, 234,231,223,255, 237,235,229,255, 240,238,232,255, 227,223,213,255, 240,238,232,255, 221,216,204,255, 240,237,231,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 225,220,211,255, 227,223,213,255, 221,216,204,255, 221,216,204,255, 234,231,223,255, 221,216,204,255, 245,244,240,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,237,231,255, 227,223,213,255, 240,238,232,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 225,220,211,255, 239,236,230,255, 230,226,218,255, 234,231,223,255, 234,231,223,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,237,231,255, 239,237,230,255, 240,238,232,255, 234,230,223,255, 233,229,221,255, 230,226,218,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 234,231,224,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 240,238,232,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 240,237,231,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 233,229,221,255, 225,220,211,255, 239,236,230,255, 234,231,224,255, 234,231,223,255, 234,231,223,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,237,231,255, 239,237,230,255, 240,238,232,255, 234,230,223,255, 233,229,221,255, 232,228,221,255, 225,220,211,255, 239,236,230,255, 234,231,224,255, 234,231,223,255, 234,231,223,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,238,232,255, 240,237,231,255, 239,237,230,255, 240,238,232,255, 234,230,223,255, 233,229,221,255, 232,228,221,255, 225,220,211,255, 202,120,120,255, 131,76,76,255, 99,50,50,255, 201,119,119,255, 124,12,12,255, 115,54,54,255, 174,150,135,255, 180,164,146,255, 52,23,23,255, 154,19,19,255, 178,105,105,255, 197,173,164,255, 211,191,182,255, 36,8,8,255, 124,65,65,255, 49,25,25,255, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 185,1,1,255, 212,1,2,255, 153,82,52,255, 172,136,82,255, 172,136,82,255, 159,87,45,255, 212,1,2,255, 185,1,1,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 57,0,0,255, 75,0,0,255, 135,109,69,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 75,0,0,255, 57,0,0,255, 104,104,104,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 0,0,0,0, 129,103,64,255, 164,164,164,255, 104,104,104,255, 92,77,48,255, 135,109,69,255, 172,136,82,255, 142,115,60,255, 172,136,82,255, 172,136,82,255, 142,115,60,255, 104,85,56,255, 120,72,73,255, 164,164,164,255, 129,103,64,255, 0,0,0,0, 178,208,255,255, 168,199,253,255, 166,197,250,255, 165,195,247,255, 163,193,245,255, 163,192,244,255, 163,192,245,255, 164,194,245,255, 165,194,246,255, 165,194,246,255, 172,202,248,255, 166,196,250,255, 167,198,251,255, 169,199,253,255, 170,200,254,255, 170,201,255,255, 171,91,35,255, 179,94,38,255, 158,82,28,255, 143,68,22,255, 161,83,30,255, 163,87,32,255, 164,83,28,255, 187,99,41,255, 172,87,35,255, 190,100,41,255, 173,91,35,255, 170,91,34,255, 176,93,34,255, 165,85,30,255, 180,97,40,255, 167,84,34,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 116,88,68,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 94,61,29,255, 82,56,28,255, 79,59,28,255, 71,60,27,255, 93,73,30,255, 66,50,28,255, 83,58,28,255, 68,46,28,255, 68,46,28,255, 78,55,28,255, 144,104,60,255, 72,55,27,255, 160,99,35,255, 112,71,30,255, 94,61,29,255, 94,61,29,255, 150,92,67,255, 149,95,68,255, 149,92,68,255, 151,84,58,255, 145,86,60,255, 149,91,66,255, 150,89,63,255, 147,89,64,255, 149,91,66,255, 149,92,68,255, 152,95,69,255, 153,95,68,255, 150,91,65,255, 147,90,62,255, 150,89,63,255, 154,96,69,255, 227,222,214,255, 226,221,211,255, 227,223,213,255, 226,221,212,255, 231,228,220,255, 233,230,222,255, 237,235,228,255, 237,235,228,255, 232,228,220,255, 228,224,215,255, 225,220,210,255, 225,220,210,255, 225,220,210,255, 226,221,212,255, 227,222,214,255, 227,222,214,255, 239,236,230,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 237,235,229,255, 227,223,213,255, 240,238,232,255, 221,216,204,255, 235,231,224,255, 227,223,213,255, 233,229,221,255, 233,229,221,255, 233,230,223,255, 234,231,224,255, 225,220,211,255, 227,223,213,255, 233,230,222,255, 234,231,223,255, 233,230,223,255, 221,216,204,255, 237,235,229,255, 227,222,212,255, 227,222,212,255, 227,222,212,255, 235,231,224,255, 227,223,213,255, 233,229,221,255, 233,229,221,255, 233,230,223,255, 234,231,224,255, 225,220,211,255, 239,236,230,255, 230,226,218,255, 230,226,218,255, 225,221,211,255, 227,222,212,255, 230,226,218,255, 230,226,218,255, 228,224,214,255, 227,222,212,255, 230,226,218,255, 230,226,218,255, 225,220,210,255, 225,220,210,255, 230,226,218,255, 230,226,218,255, 241,239,233,255, 225,220,211,255, 242,240,234,255, 233,230,222,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 237,235,229,255, 225,220,211,255, 225,220,211,255, 242,240,234,255, 235,231,224,255, 225,220,211,255, 221,216,204,255, 242,240,234,255, 233,230,223,255, 225,220,211,255, 239,236,230,255, 233,230,222,255, 234,231,223,255, 233,230,223,255, 237,234,227,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 237,234,227,255, 235,231,224,255, 233,229,221,255, 233,229,221,255, 233,229,221,255, 233,230,223,255, 234,231,224,255, 225,220,211,255, 239,236,230,255, 233,230,222,255, 234,231,223,255, 233,230,223,255, 237,234,227,255, 237,235,229,255, 240,238,232,255, 240,238,232,255, 237,234,227,255, 235,231,224,255, 233,229,221,255, 233,229,221,255, 233,229,221,255, 233,230,223,255, 234,231,224,255, 225,220,211,255, 203,134,130,255, 215,199,186,255, 38,9,9,255, 175,103,103,255, 94,6,6,255, 108,56,56,255, 71,6,6,255, 60,8,8,255, 78,39,39,255, 60,8,8,255, 175,114,89,255, 104,8,8,255, 48,25,25,255, 136,72,72,255, 47,20,20,255, 50,25,25,255, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 136,3,0,255, 171,3,1,255, 109,46,28,255, 109,83,47,255, 100,79,42,255, 127,60,32,255, 171,3,1,255, 136,3,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 22,0,0,255, 40,0,0,255, 76,61,37,255, 109,83,47,255, 100,79,42,255, 100,79,42,255, 40,0,0,255, 22,0,0,255, 104,104,104,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 0,0,0,0, 82,67,40,255, 164,164,164,255, 104,104,104,255, 65,54,37,255, 76,61,37,255, 109,83,47,255, 91,70,37,255, 100,79,42,255, 100,79,42,255, 100,79,42,255, 65,54,37,255, 120,72,73,255, 164,164,164,255, 82,67,40,255, 0,0,0,0, 170,201,255,255, 170,200,254,255, 169,199,253,255, 168,199,252,255, 167,198,251,255, 166,197,250,255, 166,196,249,255, 166,196,249,255, 166,196,250,255, 167,197,250,255, 167,197,251,255, 168,199,253,255, 169,200,253,255, 169,200,254,255, 170,201,255,255, 170,201,255,255, 176,90,37,255, 166,85,34,255, 165,84,32,255, 161,78,26,255, 170,85,32,255, 164,81,32,255, 170,89,32,255, 172,91,34,255, 155,77,26,255, 170,90,34,255, 148,70,22,255, 166,86,32,255, 179,92,37,255, 157,75,28,255, 161,81,26,255, 175,91,37,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 94,61,29,255, 173,102,36,255, 127,84,31,255, 81,88,18,255, 92,92,19,255, 79,62,28,255, 66,54,28,255, 92,66,29,255, 88,61,29,255, 78,52,28,255, 78,52,28,255, 78,52,28,255, 173,102,36,255, 94,61,29,255, 71,44,27,255, 94,61,29,255, 149,92,68,255, 150,94,69,255, 150,94,69,255, 149,95,68,255, 149,95,68,255, 153,96,70,255, 157,99,72,255, 151,95,70,255, 149,94,68,255, 151,95,70,255, 151,94,68,255, 150,89,63,255, 148,87,61,255, 146,87,61,255, 150,91,65,255, 150,94,69,255, 230,227,218,255, 230,226,216,255, 227,222,212,255, 227,222,212,255, 227,224,215,255, 237,235,228,255, 237,235,228,255, 233,230,222,255, 227,223,214,255, 223,218,207,255, 223,218,207,255, 223,218,207,255, 225,220,210,255, 228,224,215,255, 227,222,214,255, 230,227,218,255, 225,221,211,255, 226,221,211,255, 225,220,210,255, 225,220,210,255, 221,216,204,255, 227,223,213,255, 221,216,204,255, 227,222,212,255, 221,216,204,255, 225,220,209,255, 221,216,204,255, 225,220,209,255, 225,220,209,255, 225,220,211,255, 225,220,211,255, 226,221,211,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 227,223,213,255, 221,216,204,255, 227,223,213,255, 227,223,213,255, 241,239,233,255, 221,216,204,255, 225,220,209,255, 225,220,209,255, 225,220,209,255, 225,220,209,255, 225,220,211,255, 225,220,211,255, 226,221,211,255, 221,216,204,255, 236,234,226,255, 232,228,220,255, 221,216,204,255, 221,216,204,255, 236,234,226,255, 232,228,220,255, 221,216,204,255, 221,216,204,255, 236,234,226,255, 232,228,220,255, 221,216,204,255, 221,216,204,255, 236,234,226,255, 232,228,220,255, 221,216,204,255, 221,216,204,255, 242,240,234,255, 233,230,222,255, 225,220,210,255, 221,216,204,255, 242,240,234,255, 236,232,226,255, 227,223,213,255, 227,222,212,255, 242,240,234,255, 235,231,224,255, 225,220,209,255, 221,216,204,255, 242,240,234,255, 233,230,223,255, 225,220,211,255, 225,221,211,255, 226,221,211,255, 225,220,210,255, 225,220,210,255, 225,220,211,255, 227,223,213,255, 227,223,213,255, 227,222,212,255, 225,220,211,255, 225,220,209,255, 225,220,209,255, 225,220,209,255, 225,220,209,255, 225,220,211,255, 225,220,211,255, 226,221,211,255, 225,221,211,255, 226,221,211,255, 225,220,210,255, 225,220,210,255, 225,220,211,255, 227,223,213,255, 227,223,213,255, 227,222,212,255, 225,220,211,255, 225,220,209,255, 225,220,209,255, 225,220,209,255, 225,220,209,255, 225,220,211,255, 225,220,211,255, 226,221,211,255, 207,190,170,255, 215,199,186,255, 38,9,9,255, 63,30,30,255, 93,30,22,255, 25,9,9,255, 41,17,17,255, 60,8,8,255, 164,88,88,255, 175,114,89,255, 73,36,36,255, 144,82,64,255, 56,26,26,255, 60,28,28,255, 56,29,29,255, 178,131,118,255, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 164,164,164,255, 104,104,104,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,104,104,255, 164,164,164,255, 0,0,0,0, 0,0,0,0, 170,201,255,255, 170,201,255,255, 170,201,255,255, 170,200,254,255, 168,199,252,255, 168,199,252,255, 169,200,253,255, 169,199,253,255, 169,199,253,255, 169,200,253,255, 169,200,254,255, 169,200,254,255, 170,201,255,255, 170,201,255,255, 170,201,255,255, 170,201,255,255, 164,84,32,255, 176,94,35,255, 165,86,32,255, 151,74,24,255, 197,116,49,255, 173,93,34,255, 157,80,28,255, 184,97,41,255, 167,89,32,255, 187,100,41,255, 162,83,30,255, 171,86,34,255, 170,86,34,255, 167,87,32,255, 165,85,30,255, 155,76,26,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 173,102,36,255, 94,61,29,255, 92,62,29,255, 74,60,28,255, 73,62,28,255, 98,74,31,255, 102,73,31,255, 85,62,29,255, 80,57,28,255, 84,54,28,255, 78,52,28,255, 84,54,28,255, 78,52,28,255, 94,61,29,255, 94,61,29,255, 112,71,30,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,110,44,255, 58,100,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,139,40,255, 0,0,0,0, 87,164,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 137,137,137,255, 117,117,117,255, 137,137,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,94,94,255, 130,130,130,255, 183,183,183,255, 126,126,126,255, 125,125,125,255, 99,99,99,255, 98,98,98,255, 129,129,129,255, 93,93,93,255, 97,97,97,255, 0,0,0,0, 150,150,150,255, 126,126,126,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,2,5,255, 145,2,5,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 36,144,0,255, 4,60,0,255, 10,85,0,255, 49,55,0,255, 4,60,0,255, 0,0,0,0, 18,114,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 32,67,38,255, 38,90,37,255, 32,67,38,255, 38,90,37,255, 32,67,38,255, 32,67,38,255, 38,90,37,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 0,0,0,0, 85,137,59,255, 58,100,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,120,164,255, 222,192,226,255, 114,147,92,255, 81,145,49,255, 0,0,0,0, 0,0,0,0, 63,129,30,255, 87,164,50,255, 0,0,0,0, 0,0,0,0, 222,192,226,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 177,177,177,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 117,117,117,255, 152,152,152,255, 125,125,125,255, 137,137,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 123,123,123,255, 101,101,101,255, 150,150,150,255, 96,96,96,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 181,181,181,255, 126,126,126,255, 0,0,0,0, 155,155,155,255, 99,99,99,255, 96,96,96,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 62,68,0,255, 0,0,0,0, 4,60,0,255, 12,114,0,255, 62,68,0,255, 10,85,0,255, 4,60,0,255, 4,60,0,255, 22,135,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,69,64,255, 186,5,11,255, 186,5,11,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 40,77,44,255, 0,0,0,0, 32,67,38,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,82,16,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,150,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 66,110,44,255, 73,118,48,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,120,164,255, 105,131,86,255, 87,164,50,255, 0,0,0,0, 53,118,20,255, 0,0,0,0, 222,192,226,255, 186,157,190,255, 159,120,164,255, 159,120,164,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 186,157,190,255, 159,120,164,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 125,125,125,255, 183,183,183,255, 117,117,117,255, 137,137,137,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 130,130,130,255, 131,131,131,255, 184,184,184,255, 126,126,126,255, 97,97,97,255, 96,96,96,255, 125,125,125,255, 126,126,126,255, 130,130,130,255, 184,184,184,255, 126,126,126,255, 125,125,125,255, 100,100,100,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,156,0,255, 0,0,0,0, 4,60,0,255, 33,139,0,255, 7,75,0,255, 4,60,0,255, 16,122,0,255, 16,99,0,255, 247,69,64,255, 209,6,9,255, 247,7,15,255, 209,6,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,7,15,255, 145,2,5,255, 247,7,15,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 32,67,38,255, 38,90,37,255, 32,67,38,255, 32,67,38,255, 40,77,44,255, 38,90,37,255, 32,67,38,255, 40,77,44,255, 38,90,37,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,126,23,255, 126,152,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,150,51,255, 16,82,16,255, 0,0,0,0, 16,82,16,255, 0,0,0,0, 16,82,16,255, 16,82,16,255, 52,128,39,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,100,38,255, 66,110,44,255, 73,118,48,255, 51,90,32,255, 0,0,0,0, 73,118,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 0,0,0,0, 0,0,0,0, 114,147,92,255, 159,120,164,255, 222,192,226,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,192,226,255, 159,120,164,255, 114,147,92,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 0,0,0,0, 183,183,183,255, 117,117,117,255, 152,152,152,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 177,177,177,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 96,96,96,255, 150,150,150,255, 96,96,96,255, 125,125,125,255, 126,126,126,255, 182,182,182,255, 122,122,122,255, 146,146,146,255, 97,97,97,255, 100,100,100,255, 0,0,0,0, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,131,131,255, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 179,179,179,255, 150,150,150,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 16,99,0,255, 4,60,0,255, 48,156,0,255, 49,54,0,255, 4,62,0,255, 4,60,0,255, 4,60,0,255, 48,156,0,255, 247,7,15,255, 209,6,9,255, 209,6,9,255, 209,6,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,69,64,255, 247,7,15,255, 186,5,11,255, 0,0,0,0, 0,0,0,0, 16,99,0,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 247,7,15,255, 247,7,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 38,90,37,255, 32,67,38,255, 40,77,44,255, 32,67,38,255, 40,77,44,255, 240,224,247,255, 240,224,247,255, 228,186,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,142,29,255, 103,126,23,255, 103,126,23,255, 0,0,0,0, 103,126,23,255, 0,0,0,0, 0,0,0,0, 126,152,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,82,16,255, 90,63,30,255, 0,0,0,0, 65,145,48,255, 49,124,37,255, 49,124,37,255, 16,82,16,255, 16,82,16,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 59,99,39,255, 73,118,48,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,228,36,255, 232,190,32,255, 241,228,36,255, 232,190,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,110,44,255, 66,110,44,255, 0,0,0,0, 58,100,38,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,192,226,255, 159,120,164,255, 186,157,190,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 73,139,40,255, 0,0,0,0, 87,164,50,255, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 114,147,92,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,120,164,255, 159,120,164,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 169,169,169,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 117,117,117,255, 0,0,0,0, 177,177,177,255, 0,0,0,0, 183,183,183,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 127,127,127,255, 97,97,97,255, 129,129,129,255, 126,126,126,255, 183,183,183,255, 97,97,97,255, 95,95,95,255, 125,125,125,255, 100,100,100,255, 182,182,182,255, 128,128,128,255, 125,125,125,255, 96,96,96,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,124,124,255, 182,182,182,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,100,100,255, 148,148,148,255, 99,99,99,255, 96,96,96,255, 129,129,129,255, 0,0,0,0, 0,0,0,0, 62,68,0,255, 22,135,0,255, 4,60,0,255, 22,135,0,255, 4,60,0,255, 22,135,0,255, 4,60,0,255, 5,59,0,255, 4,60,0,255, 10,85,0,255, 42,150,0,255, 145,2,5,255, 209,6,9,255, 145,2,5,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 209,6,9,255, 145,2,5,255, 209,6,9,255, 48,156,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,5,11,255, 145,2,5,255, 186,5,11,255, 247,69,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 40,77,44,255, 221,161,247,255, 237,214,247,255, 237,214,247,255, 240,224,247,255, 221,161,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 234,203,247,255, 230,192,247,255, 232,196,248,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,186,247,255, 240,224,247,255, 228,186,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,152,33,255, 103,126,23,255, 122,92,13,255, 104,78,8,255, 0,0,0,0, 103,126,23,255, 118,142,29,255, 126,152,33,255, 132,100,18,255, 0,0,0,0, 126,152,33,255, 103,126,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,82,16,255, 16,82,16,255, 90,63,30,255, 69,150,51,255, 0,0,0,0, 31,101,25,255, 16,82,16,255, 16,82,16,255, 0,0,0,0, 90,63,30,255, 90,63,30,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,99,39,255, 65,107,43,255, 59,99,39,255, 63,103,41,255, 59,99,39,255, 67,110,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,228,36,255, 232,190,32,255, 241,228,36,255, 232,190,32,255, 235,205,33,255, 241,228,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 66,110,44,255, 66,110,44,255, 58,100,38,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 114,147,92,255, 186,157,190,255, 0,0,0,0, 87,164,50,255, 87,164,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 0,0,0,0, 159,120,164,255, 114,147,92,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 169,169,169,255, 117,117,117,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 117,117,117,255, 0,0,0,0, 137,137,137,255, 0,0,0,0, 183,183,183,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 126,126,126,255, 97,97,97,255, 95,95,95,255, 149,149,149,255, 123,123,123,255, 124,124,124,255, 178,178,178,255, 124,124,124,255, 155,155,155,255, 95,95,95,255, 99,99,99,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 123,123,123,255, 182,182,182,255, 129,129,129,255, 0,0,0,0, 124,124,124,255, 128,128,128,255, 179,179,179,255, 126,126,126,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 4,60,0,255, 62,68,0,255, 10,85,0,255, 4,60,0,255, 36,143,0,255, 9,108,0,255, 3,55,0,255, 9,107,0,255, 15,121,0,255, 62,68,0,255, 22,135,0,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,7,15,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 16,99,0,255, 62,68,0,255, 0,0,0,0, 0,0,0,0, 48,156,0,255, 186,5,11,255, 186,5,11,255, 247,7,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 40,77,44,255, 38,90,37,255, 32,67,38,255, 240,224,247,255, 228,186,247,255, 221,161,247,255, 237,214,247,255, 38,90,37,255, 40,77,44,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 233,199,247,255, 222,165,247,255, 222,165,247,255, 227,183,247,255, 229,191,246,255, 0,0,0,0, 32,67,38,255, 221,161,247,255, 240,224,247,255, 240,224,247,255, 228,186,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,152,33,255, 132,100,18,255, 122,92,13,255, 118,142,29,255, 113,136,27,255, 118,142,29,255, 132,100,18,255, 126,152,33,255, 0,0,0,0, 103,126,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 69,150,51,255, 31,101,25,255, 31,101,25,255, 16,82,16,255, 0,0,0,0, 16,82,16,255, 0,0,0,0, 90,63,30,255, 76,50,20,255, 16,82,16,255, 114,85,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 67,110,44,255, 63,103,41,255, 59,99,39,255, 63,103,41,255, 63,103,41,255, 59,99,39,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 232,190,32,255, 241,228,36,255, 237,214,34,255, 225,153,31,255, 225,153,31,255, 238,217,34,255, 232,190,32,255, 241,228,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 66,110,44,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,110,44,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 222,192,226,255, 114,147,92,255, 0,0,0,0, 76,145,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,192,226,255, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 73,139,40,255, 87,164,50,255, 87,164,50,255, 0,0,0,0, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 125,125,125,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 200,200,200,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 117,117,117,255, 188,188,188,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 0,0,0,0, 152,152,152,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 129,129,129,255, 93,93,93,255, 129,129,129,255, 127,127,127,255, 184,184,184,255, 97,97,97,255, 92,92,92,255, 125,125,125,255, 183,183,183,255, 127,127,127,255, 129,129,129,255, 0,0,0,0, 94,94,94,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,97,97,255, 93,93,93,255, 148,148,148,255, 98,98,98,255, 127,127,127,255, 96,96,96,255, 151,151,151,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,69,64,255, 247,7,15,255, 16,99,0,255, 10,85,0,255, 4,60,0,255, 10,85,0,255, 209,6,9,255, 186,5,11,255, 186,5,11,255, 209,6,9,255, 10,85,0,255, 22,135,0,255, 247,7,15,255, 247,7,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 62,68,0,255, 48,156,0,255, 0,0,0,0, 145,2,5,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 38,90,37,255, 38,90,37,255, 0,0,0,0, 32,67,38,255, 38,90,37,255, 32,67,38,255, 38,90,37,255, 228,186,247,255, 221,161,247,255, 40,77,44,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 233,199,247,255, 229,189,247,255, 234,206,247,255, 229,189,247,255, 230,191,247,255, 232,192,249,255, 0,0,0,0, 40,77,44,255, 221,161,247,255, 228,186,247,255, 237,214,247,255, 237,214,247,255, 240,224,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,142,29,255, 132,100,18,255, 121,90,13,255, 104,78,8,255, 103,126,23,255, 112,83,9,255, 103,126,23,255, 103,126,23,255, 103,126,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,82,16,255, 16,82,16,255, 16,82,16,255, 16,82,16,255, 90,63,30,255, 76,50,20,255, 16,82,16,255, 52,128,39,255, 16,82,16,255, 52,128,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 59,99,39,255, 59,99,39,255, 63,103,41,255, 59,99,39,255, 63,103,41,255, 59,99,39,255, 73,118,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,228,36,255, 232,190,32,255, 225,153,31,255, 224,135,33,255, 214,126,25,255, 225,153,31,255, 241,228,36,255, 241,228,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 66,110,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 76,145,42,255, 0,0,0,0, 0,0,0,0, 159,120,164,255, 186,157,190,255, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 186,157,190,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 200,200,200,255, 135,135,135,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 177,177,177,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 177,177,177,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 169,169,169,255, 125,125,125,255, 183,183,183,255, 125,125,125,255, 152,152,152,255, 0,0,0,0, 183,183,183,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 0,0,0,0, 100,100,100,255, 95,95,95,255, 151,151,151,255, 127,127,127,255, 181,181,181,255, 154,154,154,255, 104,104,104,255, 98,98,98,255, 101,101,101,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,99,99,255, 124,124,124,255, 127,127,127,255, 126,126,126,255, 183,183,183,255, 132,132,132,255, 130,130,130,255, 180,180,180,255, 99,99,99,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 209,6,9,255, 209,6,9,255, 209,6,9,255, 145,2,5,255, 4,60,0,255, 10,85,0,255, 209,6,9,255, 247,7,15,255, 209,6,9,255, 145,2,5,255, 145,2,5,255, 10,85,0,255, 247,7,15,255, 209,6,9,255, 209,6,9,255, 209,6,9,255, 0,0,0,0, 0,0,0,0, 62,68,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 247,69,64,255, 247,7,15,255, 0,0,0,0, 0,0,0,0, 16,99,0,255, 0,0,0,0, 16,99,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 40,77,44,255, 40,77,44,255, 32,67,38,255, 38,90,37,255, 32,67,38,255, 38,90,37,255, 38,90,37,255, 38,90,37,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 233,199,247,255, 231,196,247,255, 233,199,247,255, 227,184,247,255, 236,210,247,255, 245,192,255,255, 37,83,38,255, 40,77,44,255, 38,90,37,255, 221,161,247,255, 228,186,247,255, 240,224,247,255, 228,186,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,126,23,255, 103,126,23,255, 104,78,8,255, 103,126,23,255, 132,100,18,255, 0,0,0,0, 121,90,13,255, 118,142,29,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,82,16,255, 16,82,16,255, 16,82,16,255, 52,128,39,255, 83,56,25,255, 86,59,27,255, 69,150,51,255, 16,82,16,255, 16,82,16,255, 52,128,39,255, 69,150,51,255, 52,128,39,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 67,110,44,255, 59,99,39,255, 59,99,39,255, 63,103,41,255, 59,99,39,255, 65,107,43,255, 73,118,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 232,190,32,255, 241,228,36,255, 225,153,31,255, 220,131,30,255, 224,135,33,255, 226,164,31,255, 241,228,36,255, 232,190,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 66,110,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 73,139,40,255, 73,139,40,255, 0,0,0,0, 186,157,190,255, 114,147,92,255, 159,120,164,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,120,164,255, 186,157,190,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 73,139,40,255, 0,0,0,0, 159,120,164,255, 114,147,92,255, 186,157,190,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 137,137,137,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 137,137,137,255, 117,117,117,255, 183,183,183,255, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 119,119,119,255, 100,100,100,255, 126,126,126,255, 126,126,126,255, 180,180,180,255, 99,99,99,255, 128,128,128,255, 182,182,182,255, 95,95,95,255, 126,126,126,255, 125,125,125,255, 99,99,99,255, 126,126,126,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,121,121,255, 0,0,0,0, 97,97,97,255, 99,99,99,255, 152,152,152,255, 124,124,124,255, 151,151,151,255, 95,95,95,255, 125,125,125,255, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,69,64,255, 209,6,9,255, 209,6,9,255, 4,60,0,255, 10,85,0,255, 247,7,15,255, 186,5,11,255, 145,2,5,255, 145,2,5,255, 20,132,0,255, 20,132,0,255, 145,2,5,255, 209,6,9,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 247,7,15,255, 186,5,11,255, 186,5,11,255, 247,7,15,255, 0,0,0,0, 16,99,0,255, 62,68,0,255, 0,0,0,0, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 231,209,240,255, 244,191,255,255, 234,186,255,255, 241,192,255,255, 167,131,189,255, 37,83,38,255, 38,90,37,255, 40,77,44,255, 32,67,38,255, 221,161,247,255, 221,161,247,255, 228,186,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,152,33,255, 116,140,28,255, 103,126,23,255, 116,140,28,255, 103,126,23,255, 104,78,8,255, 121,90,13,255, 103,126,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 52,128,39,255, 0,0,0,0, 114,85,48,255, 106,77,41,255, 114,85,48,255, 52,128,39,255, 69,150,51,255, 52,128,39,255, 16,82,16,255, 16,82,16,255, 16,82,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,99,39,255, 65,107,43,255, 59,99,39,255, 63,103,41,255, 63,103,41,255, 59,99,39,255, 67,110,44,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,228,36,255, 237,208,35,255, 237,214,34,255, 225,153,31,255, 225,153,31,255, 238,219,34,255, 232,190,32,255, 241,228,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 58,100,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,192,226,255, 159,120,164,255, 186,157,190,255, 159,120,164,255, 0,0,0,0, 65,131,32,255, 0,0,0,0, 87,164,50,255, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 222,192,226,255, 114,147,92,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 73,139,40,255, 0,0,0,0, 87,164,50,255, 114,147,92,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 125,125,125,255, 137,137,137,255, 125,125,125,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 117,117,117,255, 152,152,152,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 177,177,177,255, 117,117,117,255, 177,177,177,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,124,124,255, 94,94,94,255, 97,97,97,255, 154,154,154,255, 126,126,126,255, 180,180,180,255, 155,155,155,255, 122,122,122,255, 95,95,95,255, 101,101,101,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,98,98,255, 126,126,126,255, 130,130,130,255, 152,152,152,255, 178,178,178,255, 178,178,178,255, 120,120,120,255, 97,97,97,255, 94,94,94,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,7,15,255, 209,6,9,255, 145,2,5,255, 10,85,0,255, 4,60,0,255, 209,6,9,255, 145,2,5,255, 145,2,5,255, 20,130,0,255, 49,55,0,255, 4,60,0,255, 22,135,0,255, 145,2,5,255, 145,2,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 62,68,0,255, 48,156,0,255, 0,0,0,0, 186,5,11,255, 247,7,15,255, 145,2,5,255, 145,2,5,255, 48,156,0,255, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 62,68,0,255, 0,0,0,0, 0,0,0,0, 38,90,37,255, 38,90,37,255, 32,67,38,255, 40,77,44,255, 40,77,44,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 38,90,37,255, 38,90,37,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 51,87,54,255, 108,102,123,255, 186,142,208,255, 32,67,38,255, 40,77,44,255, 37,83,38,255, 32,67,38,255, 40,77,44,255, 32,67,38,255, 38,90,37,255, 38,90,37,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,152,33,255, 103,126,23,255, 119,90,13,255, 126,152,33,255, 104,78,8,255, 126,152,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 106,78,41,255, 16,82,16,255, 114,85,48,255, 90,63,30,255, 104,76,41,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,99,39,255, 73,118,48,255, 65,107,43,255, 65,107,43,255, 73,118,48,255, 59,99,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,228,36,255, 232,190,32,255, 241,228,36,255, 241,228,36,255, 237,208,35,255, 241,228,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 73,118,48,255, 73,118,48,255, 58,100,38,255, 85,137,59,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,110,44,255, 59,99,39,255, 73,118,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 114,147,92,255, 222,192,226,255, 0,0,0,0, 87,164,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,120,164,255, 114,147,92,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,139,40,255, 87,164,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 188,188,188,255, 125,125,125,255, 137,137,137,255, 117,117,117,255, 0,0,0,0, 137,137,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 137,137,137,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 169,169,169,255, 125,125,125,255, 177,177,177,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,98,98,255, 130,130,130,255, 126,126,126,255, 125,125,125,255, 179,179,179,255, 123,123,123,255, 97,97,97,255, 98,98,98,255, 124,124,124,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,125,125,255, 0,0,0,0, 94,94,94,255, 100,100,100,255, 121,121,121,255, 155,155,155,255, 95,95,95,255, 122,122,122,255, 128,128,128,255, 97,97,97,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,2,5,255, 19,128,0,255, 49,55,0,255, 4,60,0,255, 56,62,0,255, 15,122,0,255, 13,92,0,255, 7,86,0,255, 4,60,0,255, 10,85,0,255, 62,68,0,255, 16,99,0,255, 18,114,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,156,0,255, 62,68,0,255, 0,0,0,0, 0,0,0,0, 145,2,5,255, 16,99,0,255, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 40,77,44,255, 38,90,37,255, 32,67,38,255, 40,77,44,255, 32,67,38,255, 38,90,37,255, 40,77,44,255, 40,77,44,255, 38,90,37,255, 38,90,37,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 37,83,38,255, 32,67,38,255, 32,67,38,255, 32,67,38,255, 240,224,247,255, 237,214,247,255, 40,77,44,255, 38,90,37,255, 38,90,37,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,126,23,255, 116,140,28,255, 127,95,15,255, 112,83,9,255, 103,126,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 52,128,39,255, 0,0,0,0, 30,74,16,255, 86,59,27,255, 76,50,20,255, 86,59,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,99,39,255, 73,118,48,255, 59,99,39,255, 67,110,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,228,36,255, 232,190,32,255, 241,228,36,255, 232,190,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 51,90,32,255, 73,118,48,255, 66,110,44,255, 58,100,38,255, 66,110,44,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,110,44,255, 67,110,44,255, 51,89,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 110,135,92,255, 0,0,0,0, 80,154,44,255, 0,0,0,0, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 0,0,0,0, 0,0,0,0, 87,164,50,255, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 200,200,200,255, 117,117,117,255, 137,137,137,255, 125,125,125,255, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 125,125,125,255, 137,137,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 188,188,188,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 169,169,169,255, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 124,124,124,255, 95,95,95,255, 98,98,98,255, 149,149,149,255, 178,178,178,255, 124,124,124,255, 126,126,126,255, 99,99,99,255, 94,94,94,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 131,131,131,255, 100,100,100,255, 125,125,125,255, 126,126,126,255, 180,180,180,255, 186,186,186,255, 126,126,126,255, 96,96,96,255, 97,97,97,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 10,85,0,255, 4,60,0,255, 10,85,0,255, 21,121,0,255, 7,83,0,255, 33,39,0,255, 10,85,0,255, 4,60,0,255, 4,60,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,99,0,255, 22,135,0,255, 0,0,0,0, 22,135,0,255, 17,111,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 62,68,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 38,90,37,255, 40,77,44,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 32,67,38,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 37,83,38,255, 32,67,38,255, 37,83,38,255, 37,83,38,255, 240,224,247,255, 237,214,247,255, 228,186,247,255, 228,186,247,255, 32,67,38,255, 40,77,44,255, 38,90,37,255, 38,90,37,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 116,140,28,255, 121,90,13,255, 112,83,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,74,39,255, 104,76,41,255, 86,59,27,255, 90,63,30,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 51,90,32,255, 66,110,44,255, 58,100,38,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 67,110,44,255, 73,118,48,255, 67,110,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,139,40,255, 80,154,44,255, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 81,145,49,255, 87,164,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,120,164,255, 186,157,190,255, 159,120,164,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 137,137,137,255, 0,0,0,0, 183,183,183,255, 125,125,125,255, 0,0,0,0, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 183,183,183,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 0,0,0,0, 169,169,169,255, 0,0,0,0, 137,137,137,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,94,94,255, 124,124,124,255, 127,127,127,255, 126,126,126,255, 183,183,183,255, 96,96,96,255, 101,101,101,255, 131,131,131,255, 123,123,123,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 100,100,100,255, 97,97,97,255, 128,128,128,255, 92,92,92,255, 98,98,98,255, 128,128,128,255, 133,133,133,255, 91,91,91,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,61,0,255, 10,85,0,255, 4,60,0,255, 10,85,0,255, 19,119,0,255, 7,86,0,255, 4,60,0,255, 10,85,0,255, 4,60,0,255, 18,127,0,255, 16,99,0,255, 62,68,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,7,15,255, 62,68,0,255, 22,135,0,255, 0,0,0,0, 0,0,0,0, 18,114,0,255, 62,68,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 40,77,44,255, 32,67,38,255, 37,83,38,255, 37,83,38,255, 237,214,247,255, 228,186,247,255, 237,214,247,255, 228,186,247,255, 221,161,247,255, 32,67,38,255, 38,90,37,255, 40,77,44,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 132,100,18,255, 121,90,13,255, 104,78,8,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 96,68,34,255, 86,59,27,255, 86,59,27,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,99,39,255, 67,110,44,255, 85,137,59,255, 51,89,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 78,151,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,118,20,255, 87,164,50,255, 0,0,0,0, 0,0,0,0, 159,120,164,255, 186,157,190,255, 159,120,164,255, 186,157,190,255, 0,0,0,0, 0,0,0,0, 169,169,169,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 117,117,117,255, 0,0,0,0, 152,152,152,255, 125,125,125,255, 137,137,137,255, 117,117,117,255, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,177,177,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 137,137,137,255, 125,125,125,255, 152,152,152,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 98,98,98,255, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 180,180,180,255, 98,98,98,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,122,122,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,125,125,255, 99,99,99,255, 126,126,126,255, 0,0,0,0, 100,100,100,255, 127,127,127,255, 127,127,127,255, 178,178,178,255, 131,131,131,255, 124,124,124,255, 97,97,97,255, 0,0,0,0, 181,181,181,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 31,138,0,255, 49,55,0,255, 9,107,0,255, 4,60,0,255, 7,86,0,255, 4,60,0,255, 49,55,0,255, 15,121,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 209,6,9,255, 247,7,15,255, 209,6,9,255, 247,7,15,255, 145,2,5,255, 16,99,0,255, 0,0,0,0, 18,114,0,255, 0,0,0,0, 0,0,0,0, 62,68,0,255, 48,156,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 38,90,37,255, 32,67,38,255, 38,90,37,255, 40,77,44,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 32,67,38,255, 228,186,247,255, 240,224,247,255, 240,224,247,255, 221,161,247,255, 221,161,247,255, 38,90,37,255, 40,77,44,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 121,90,13,255, 112,83,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,76,41,255, 106,78,41,255, 106,78,41,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,118,48,255, 58,100,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,99,39,255, 85,137,59,255, 67,110,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,129,30,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,139,40,255, 0,0,0,0, 0,0,0,0, 114,147,92,255, 114,147,92,255, 222,192,226,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 0,0,0,0, 137,137,137,255, 117,117,117,255, 152,152,152,255, 125,125,125,255, 137,137,137,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 152,152,152,255, 125,125,125,255, 0,0,0,0, 137,137,137,255, 117,117,117,255, 169,169,169,255, 125,125,125,255, 137,137,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 130,130,130,255, 98,98,98,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 123,123,123,255, 183,183,183,255, 111,111,111,255, 129,129,129,255, 98,98,98,255, 99,99,99,255, 124,124,124,255, 99,99,99,255, 98,98,98,255, 126,126,126,255, 149,149,149,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 15,121,0,255, 4,60,0,255, 4,87,0,255, 32,38,0,255, 6,79,0,255, 6,81,0,255, 8,104,0,255, 6,71,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,7,15,255, 247,69,64,255, 247,7,15,255, 209,6,9,255, 145,2,5,255, 16,99,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 22,135,0,255, 48,156,0,255, 0,0,0,0, 16,99,0,255, 62,68,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 32,67,38,255, 40,77,44,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 39,83,40,255, 39,83,40,255, 228,186,247,255, 221,161,247,255, 221,161,247,255, 38,90,37,255, 40,77,44,255, 32,67,38,255, 38,90,37,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,92,13,255, 121,90,13,255, 112,83,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,76,41,255, 86,59,27,255, 106,78,41,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,98,38,255, 51,90,32,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,137,59,255, 67,110,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,157,190,255, 159,120,164,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,139,40,255, 0,0,0,0, 87,164,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 117,117,117,255, 126,126,126,255, 0,0,0,0, 126,126,126,255, 117,117,117,255, 126,126,126,255, 0,0,0,0, 117,117,117,255, 126,126,126,255, 117,117,117,255, 126,126,126,255, 117,117,117,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 137,137,137,255, 125,125,125,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 117,117,117,255, 0,0,0,0, 169,169,169,255, 117,117,117,255, 137,137,137,255, 117,117,117,255, 169,169,169,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,125,125,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 126,126,126,255, 96,96,96,255, 157,157,157,255, 95,95,95,255, 98,98,98,255, 129,129,129,255, 125,125,125,255, 185,185,185,255, 129,129,129,255, 121,121,121,255, 182,182,182,255, 124,124,124,255, 126,126,126,255, 104,104,104,255, 128,128,128,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 15,121,0,255, 5,94,0,255, 3,57,0,255, 5,93,0,255, 3,58,0,255, 4,60,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,7,15,255, 209,6,9,255, 145,2,5,255, 0,0,0,0, 22,135,0,255, 22,135,0,255, 0,0,0,0, 22,135,0,255, 16,99,0,255, 0,0,0,0, 0,0,0,0, 16,99,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 32,67,38,255, 32,67,38,255, 40,77,44,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 40,77,44,255, 38,90,37,255, 35,78,36,255, 38,90,37,255, 40,77,44,255, 38,90,37,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 104,78,8,255, 121,90,13,255, 112,83,9,255, 104,78,8,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 103,74,39,255, 86,59,27,255, 86,59,27,255, 76,50,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 151,151,151,255, 0,0,0,0, 173,173,173,255, 159,159,159,255, 90,90,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 0,0,0,0, 171,171,171,255, 177,90,33,255, 180,91,34,255, 180,91,34,255, 176,89,34,255, 171,87,32,255, 171,87,32,255, 185,94,35,255, 178,90,34,255, 178,90,34,255, 185,94,35,255, 178,90,33,255, 178,90,34,255, 179,91,34,255, 185,94,35,255, 185,94,35,255, 179,91,34,255, 151,151,151,255, 0,0,0,0, 173,173,173,255, 159,159,159,255, 90,90,90,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,127,127,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,86,86,255, 0,0,0,0, 171,171,171,255, 174,88,32,255, 173,88,31,255, 164,83,29,255, 165,84,30,255, 172,87,31,255, 167,85,30,255, 163,82,29,255, 161,82,28,255, 169,86,30,255, 169,86,31,255, 164,84,29,255, 171,87,30,255, 172,87,30,255, 164,84,30,255, 174,89,31,255, 178,91,33,255, 108,102,92,255, 108,101,90,255, 75,70,63,255, 108,101,90,255, 108,101,90,255, 105,99,89,255, 75,70,63,255, 75,70,63,255, 75,70,63,255, 108,101,90,255, 108,102,92,255, 75,70,63,255, 111,105,95,255, 108,101,90,255, 110,104,94,255, 111,105,95,255, 36,29,18,255, 54,42,24,255, 55,43,25,255, 80,62,36,255, 31,24,13,255, 56,44,26,255, 77,59,33,255, 33,26,15,255, 52,40,22,255, 52,41,24,255, 53,41,23,255, 63,49,29,255, 56,44,26,255, 63,49,29,255, 54,42,24,255, 79,62,37,255, 52,42,26,255, 52,42,26,255, 30,23,14,255, 52,42,26,255, 52,42,26,255, 52,41,24,255, 30,23,14,255, 30,23,14,255, 30,23,14,255, 52,42,26,255, 52,42,26,255, 30,23,14,255, 54,44,28,255, 52,42,26,255, 53,43,27,255, 55,44,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 135,135,135,255, 0,0,0,0, 187,187,187,255, 153,153,153,255, 0,0,0,0, 84,84,84,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 78,78,78,255, 0,0,0,0, 179,179,179,255, 180,180,180,255, 80,80,80,255, 0,0,0,0, 84,84,84,255, 175,88,32,255, 164,82,30,255, 166,84,30,255, 167,85,30,255, 166,84,30,255, 164,83,31,255, 161,82,30,255, 156,80,27,255, 163,84,29,255, 162,83,29,255, 165,84,30,255, 167,85,30,255, 161,83,29,255, 174,90,33,255, 174,90,34,255, 174,89,33,255, 135,135,135,255, 0,0,0,0, 187,187,187,255, 153,153,153,255, 0,0,0,0, 84,84,84,255, 0,0,0,0, 0,0,0,0, 86,86,86,255, 78,78,78,255, 0,0,0,0, 179,179,179,255, 180,180,180,255, 80,80,80,255, 0,0,0,0, 84,84,84,255, 170,86,31,255, 168,85,31,255, 171,86,31,255, 169,85,30,255, 164,82,30,255, 158,80,29,255, 158,80,28,255, 158,80,28,255, 167,86,29,255, 165,84,29,255, 163,83,29,255, 174,88,31,255, 169,87,30,255, 176,90,32,255, 176,90,32,255, 177,90,33,255, 108,101,90,255, 178,91,59,255, 174,90,59,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 172,90,59,255, 174,90,59,255, 178,91,59,255, 178,91,59,255, 183,92,59,255, 184,93,59,255, 178,91,59,255, 104,97,86,255, 32,25,14,255, 52,40,22,255, 57,45,27,255, 29,22,11,255, 32,25,14,255, 78,60,34,255, 33,26,15,255, 52,40,22,255, 79,61,35,255, 31,24,13,255, 52,41,24,255, 78,61,36,255, 38,30,18,255, 63,49,29,255, 38,30,18,255, 77,59,33,255, 52,42,26,255, 91,72,48,255, 89,71,48,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 87,69,47,255, 89,71,48,255, 91,72,48,255, 91,72,48,255, 96,76,50,255, 96,76,50,255, 89,70,47,255, 49,39,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 28,146,214,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 191,117,251,255, 184,101,251,255, 191,117,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,247,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 143,143,143,255, 0,0,0,0, 81,81,81,255, 175,175,175,255, 162,162,162,255, 0,0,0,0, 158,158,158,255, 170,170,170,255, 95,95,95,255, 177,177,177,255, 148,148,148,255, 0,0,0,0, 176,176,176,255, 171,171,171,255, 151,78,25,255, 162,84,29,255, 161,82,27,255, 151,77,24,255, 154,79,24,255, 151,78,25,255, 154,80,26,255, 150,77,25,255, 151,78,25,255, 152,78,24,255, 149,75,23,255, 148,75,21,255, 157,80,25,255, 157,81,28,255, 148,76,26,255, 148,75,24,255, 0,0,0,0, 0,0,0,0, 143,143,143,255, 0,0,0,0, 81,81,81,255, 175,175,175,255, 162,162,162,255, 0,0,0,0, 158,158,158,255, 170,170,170,255, 95,95,95,255, 177,177,177,255, 148,148,148,255, 0,0,0,0, 176,176,176,255, 171,171,171,255, 167,86,31,255, 164,82,30,255, 170,86,31,255, 166,84,30,255, 158,81,28,255, 158,80,29,255, 158,80,28,255, 159,81,28,255, 164,83,28,255, 164,84,29,255, 162,83,28,255, 174,90,31,255, 175,90,32,255, 171,88,31,255, 172,88,31,255, 174,89,32,255, 75,70,63,255, 180,91,60,255, 151,91,58,255, 152,91,59,255, 153,92,59,255, 147,87,54,255, 153,92,59,255, 151,89,56,255, 158,98,65,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 155,95,62,255, 179,91,59,255, 108,101,90,255, 30,23,12,255, 48,37,22,255, 51,39,21,255, 33,26,15,255, 52,41,24,255, 79,61,35,255, 32,25,14,255, 53,41,23,255, 78,60,34,255, 31,24,13,255, 53,41,23,255, 63,49,29,255, 38,30,18,255, 63,49,29,255, 38,30,18,255, 79,61,35,255, 30,23,14,255, 93,73,49,255, 79,65,43,255, 79,65,44,255, 80,65,44,255, 76,62,41,255, 80,65,44,255, 78,64,42,255, 86,69,47,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 82,67,45,255, 90,71,47,255, 52,42,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 28,118,11,255, 47,206,253,255, 28,146,214,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,142,251,255, 184,101,251,255, 188,111,251,255, 222,186,251,255, 184,101,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 213,46,7,255, 0,0,0,0, 211,58,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 227,114,20,255, 0,0,0,0, 225,122,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 243,243,243,255, 0,0,0,0, 243,243,243,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 243,212,243,255, 0,0,0,0, 243,212,243,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,247,247,255, 221,221,221,255, 247,247,247,255, 221,221,221,255, 247,247,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,161,247,255, 228,186,247,255, 240,224,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 138,138,138,255, 0,0,0,0, 171,171,171,255, 154,154,154,255, 79,79,79,255, 175,175,175,255, 139,139,139,255, 0,0,0,0, 173,173,173,255, 154,154,154,255, 185,95,37,255, 185,95,37,255, 175,89,34,255, 181,92,34,255, 181,92,34,255, 184,95,37,255, 184,95,37,255, 185,94,35,255, 177,90,35,255, 185,94,35,255, 185,94,35,255, 185,94,35,255, 174,89,34,255, 177,90,34,255, 185,94,35,255, 147,75,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 138,138,138,255, 0,0,0,0, 171,171,171,255, 154,154,154,255, 79,79,79,255, 175,175,175,255, 139,139,139,255, 0,0,0,0, 173,173,173,255, 154,154,154,255, 171,87,31,255, 167,85,30,255, 167,86,30,255, 167,85,30,255, 162,83,29,255, 165,84,30,255, 166,84,30,255, 171,86,31,255, 163,84,28,255, 165,84,29,255, 159,81,28,255, 168,86,30,255, 174,89,31,255, 168,86,30,255, 169,86,31,255, 162,82,28,255, 108,101,90,255, 178,91,59,255, 157,95,62,255, 181,92,59,255, 186,93,59,255, 186,93,59,255, 186,93,59,255, 186,93,59,255, 186,93,59,255, 182,92,60,255, 186,93,59,255, 183,92,59,255, 187,93,59,255, 153,92,59,255, 178,91,59,255, 75,70,63,255, 56,44,26,255, 35,28,17,255, 51,39,21,255, 33,26,15,255, 63,49,29,255, 63,49,29,255, 32,25,14,255, 52,41,24,255, 78,60,34,255, 31,24,13,255, 52,41,24,255, 78,60,34,255, 31,24,13,255, 79,62,37,255, 34,27,16,255, 63,49,29,255, 52,42,26,255, 91,72,48,255, 83,68,45,255, 94,74,49,255, 97,76,50,255, 97,76,50,255, 97,76,50,255, 97,76,50,255, 97,76,50,255, 95,75,49,255, 97,76,50,255, 96,76,50,255, 99,77,50,255, 80,65,44,255, 89,70,47,255, 30,23,14,255, 0,0,0,0, 0,0,0,0, 42,191,253,255, 41,174,251,255, 0,0,0,0, 41,174,251,255, 42,191,253,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,140,10,255, 28,146,214,255, 41,174,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 191,117,251,255, 222,186,251,255, 191,117,251,255, 222,186,251,255, 184,101,251,255, 180,91,251,255, 198,133,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 197,45,10,255, 208,54,18,255, 197,45,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 211,106,23,255, 222,115,31,255, 211,106,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 231,231,231,255, 243,243,243,255, 231,231,231,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 234,190,234,255, 243,212,243,255, 234,190,234,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 234,230,173,255, 210,199,30,255, 234,230,173,255, 221,221,221,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,161,247,255, 240,224,247,255, 221,161,247,255, 228,186,247,255, 228,186,247,255, 240,224,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 161,161,161,255, 160,160,160,255, 0,0,0,0, 0,0,0,0, 165,165,165,255, 82,82,82,255, 0,0,0,0, 153,153,153,255, 141,141,141,255, 0,0,0,0, 0,0,0,0, 141,141,141,255, 0,0,0,0, 147,147,147,255, 138,138,138,255, 185,95,37,255, 170,87,31,255, 178,90,34,255, 164,84,29,255, 164,84,29,255, 178,90,34,255, 175,89,32,255, 171,87,31,255, 165,84,29,255, 165,84,30,255, 164,84,29,255, 164,84,29,255, 168,86,30,255, 174,89,34,255, 164,83,30,255, 147,75,23,255, 0,0,0,0, 161,161,161,255, 160,160,160,255, 0,0,0,0, 0,0,0,0, 165,165,165,255, 82,82,82,255, 0,0,0,0, 153,153,153,255, 141,141,141,255, 0,0,0,0, 0,0,0,0, 141,141,141,255, 0,0,0,0, 147,147,147,255, 138,138,138,255, 166,84,29,255, 163,83,28,255, 167,86,29,255, 159,81,28,255, 164,84,29,255, 166,84,29,255, 171,87,31,255, 171,87,31,255, 160,81,28,255, 169,86,30,255, 165,84,30,255, 164,84,30,255, 174,89,31,255, 168,86,30,255, 170,86,31,255, 164,83,29,255, 88,82,74,255, 177,91,59,255, 151,91,58,255, 186,93,59,255, 178,91,59,255, 183,92,59,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 181,92,59,255, 178,91,59,255, 182,92,60,255, 186,93,59,255, 153,92,59,255, 178,91,59,255, 108,101,90,255, 54,42,24,255, 33,26,15,255, 55,43,25,255, 53,41,23,255, 63,49,29,255, 63,49,29,255, 55,43,25,255, 53,41,23,255, 56,44,26,255, 34,27,16,255, 54,42,24,255, 78,61,36,255, 31,24,13,255, 78,61,36,255, 31,24,13,255, 63,49,29,255, 37,30,19,255, 91,72,48,255, 79,65,43,255, 97,76,50,255, 91,72,48,255, 96,76,50,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 94,74,49,255, 91,72,48,255, 95,75,49,255, 97,76,50,255, 80,65,44,255, 89,70,47,255, 52,42,26,255, 0,0,0,0, 0,0,0,0, 28,146,214,255, 28,146,214,255, 0,0,0,0, 41,174,251,255, 41,174,251,255, 0,0,0,0, 0,0,0,0, 61,140,10,255, 41,174,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 180,91,251,255, 180,91,251,255, 214,169,251,255, 222,186,251,255, 184,101,251,255, 198,133,251,255, 180,91,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 192,41,6,255, 211,58,23,255, 192,41,6,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,95,19,255, 225,113,36,255, 206,95,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,219,219,255, 231,231,231,255, 219,219,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,167,219,255, 234,190,234,255, 219,167,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,247,247,255, 247,247,247,255, 210,199,30,255, 210,199,30,255, 210,199,30,255, 247,247,247,255, 247,247,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,186,247,255, 228,186,247,255, 237,214,247,255, 221,161,247,255, 228,186,247,255, 233,200,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 176,176,176,255, 134,134,134,255, 0,0,0,0, 79,79,79,255, 141,141,141,255, 93,93,93,255, 0,0,0,0, 82,82,82,255, 154,154,154,255, 0,0,0,0, 87,87,87,255, 0,0,0,0, 91,91,91,255, 0,0,0,0, 132,132,132,255, 185,94,35,255, 169,86,30,255, 178,90,34,255, 167,86,30,255, 178,90,34,255, 178,90,34,255, 169,86,31,255, 178,90,34,255, 171,87,31,255, 176,90,34,255, 165,84,30,255, 178,90,34,255, 167,84,30,255, 169,86,31,255, 168,86,32,255, 147,75,23,255, 0,0,0,0, 176,176,176,255, 134,134,134,255, 0,0,0,0, 79,79,79,255, 141,141,141,255, 93,93,93,255, 0,0,0,0, 82,82,82,255, 154,154,154,255, 0,0,0,0, 87,87,87,255, 0,0,0,0, 91,91,91,255, 0,0,0,0, 132,132,132,255, 161,82,28,255, 166,84,30,255, 167,85,29,255, 156,80,27,255, 155,79,27,255, 161,82,29,255, 173,88,32,255, 182,92,34,255, 170,86,30,255, 162,82,29,255, 165,83,30,255, 163,83,29,255, 167,85,30,255, 165,84,30,255, 167,85,30,255, 166,84,30,255, 75,70,63,255, 178,91,59,255, 152,90,57,255, 186,93,59,255, 178,91,59,255, 153,92,59,255, 157,95,62,255, 158,95,63,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 178,91,59,255, 183,92,59,255, 151,89,56,255, 178,91,59,255, 108,101,90,255, 55,43,25,255, 48,37,22,255, 55,43,25,255, 52,40,22,255, 78,61,36,255, 52,41,24,255, 52,40,22,255, 54,42,24,255, 55,43,25,255, 31,24,13,255, 54,42,24,255, 74,56,30,255, 32,25,14,255, 63,49,29,255, 33,26,15,255, 53,41,23,255, 30,23,14,255, 91,72,48,255, 78,64,43,255, 97,76,50,255, 91,72,48,255, 80,65,44,255, 83,68,45,255, 82,68,46,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 91,72,48,255, 96,76,50,255, 78,64,42,255, 90,71,47,255, 52,42,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,140,10,255, 61,140,10,255, 28,118,11,255, 0,0,0,0, 0,0,0,0, 61,140,10,255, 28,146,214,255, 47,206,253,255, 41,174,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 225,194,251,255, 191,117,251,255, 184,101,251,255, 222,186,251,255, 191,117,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 216,222,230,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 195,44,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 209,90,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 210,210,210,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,167,219,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 221,221,221,255, 234,230,173,255, 210,199,30,255, 234,230,173,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 240,224,247,255, 237,214,247,255, 233,200,247,255, 228,186,247,255, 228,186,247,255, 233,200,247,255, 228,186,247,255, 240,224,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 83,83,83,255, 148,148,148,255, 0,0,0,0, 80,80,80,255, 88,88,88,255, 0,0,0,0, 162,162,162,255, 167,167,167,255, 0,0,0,0, 0,0,0,0, 101,101,101,255, 0,0,0,0, 0,0,0,0, 82,82,82,255, 89,89,89,255, 92,92,92,255, 185,94,35,255, 176,90,34,255, 165,84,29,255, 165,84,29,255, 171,87,31,255, 178,90,34,255, 171,87,34,255, 173,89,34,255, 165,84,29,255, 165,84,30,255, 172,88,33,255, 172,88,33,255, 169,87,32,255, 164,84,30,255, 169,86,32,255, 147,75,23,255, 83,83,83,255, 148,148,148,255, 0,0,0,0, 80,80,80,255, 88,88,88,255, 0,0,0,0, 162,162,162,255, 167,167,167,255, 0,0,0,0, 0,0,0,0, 101,101,101,255, 0,0,0,0, 0,0,0,0, 82,82,82,255, 89,89,89,255, 92,92,92,255, 163,83,29,255, 168,86,30,255, 168,86,31,255, 162,83,29,255, 167,86,29,255, 161,82,28,255, 163,83,29,255, 177,90,33,255, 167,85,30,255, 165,84,29,255, 174,88,31,255, 166,85,30,255, 164,83,29,255, 168,86,30,255, 168,85,30,255, 168,85,31,255, 75,70,63,255, 178,91,59,255, 153,92,59,255, 184,93,59,255, 180,91,60,255, 151,91,58,255, 184,93,59,255, 185,93,59,255, 190,94,59,255, 186,93,59,255, 153,92,59,255, 178,91,59,255, 182,92,60,255, 153,92,59,255, 178,91,59,255, 75,70,63,255, 52,41,24,255, 63,49,29,255, 38,30,18,255, 55,43,25,255, 78,60,34,255, 50,38,20,255, 52,41,24,255, 31,24,13,255, 75,57,31,255, 31,24,13,255, 63,49,29,255, 45,36,21,255, 28,21,10,255, 63,49,29,255, 32,25,14,255, 56,44,26,255, 30,23,14,255, 91,72,48,255, 80,65,44,255, 96,76,50,255, 93,73,49,255, 79,65,43,255, 96,76,50,255, 97,76,50,255, 100,79,51,255, 97,76,50,255, 80,65,44,255, 91,72,48,255, 95,75,49,255, 80,65,44,255, 90,71,47,255, 30,23,14,255, 0,0,0,0, 28,146,214,255, 41,174,251,255, 28,118,11,255, 0,0,0,0, 0,0,0,0, 28,118,11,255, 0,0,0,0, 22,135,0,255, 0,0,0,0, 41,174,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 180,91,251,255, 101,172,68,255, 191,117,251,255, 222,186,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 242,242,156,255, 228,234,242,255, 242,242,156,255, 216,222,230,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,152,48,255, 0,0,0,0, 91,159,57,255, 0,0,0,0, 97,179,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,166,48,255, 0,0,0,0, 0,0,0,0, 51,118,17,255, 0,0,0,0, 72,140,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,135,33,255, 0,0,0,0, 46,113,12,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,161,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,139,40,255, 87,164,50,255, 0,0,0,0, 0,0,0,0, 53,118,20,255, 0,0,0,0, 73,139,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,247,247,255, 221,221,221,255, 247,247,247,255, 221,221,221,255, 247,247,247,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 39,83,40,255, 221,161,247,255, 228,186,247,255, 228,186,247,255, 237,214,247,255, 228,186,247,255, 221,161,247,255, 35,70,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 162,162,162,255, 182,182,182,255, 0,0,0,0, 166,166,166,255, 181,181,181,255, 88,88,88,255, 175,175,175,255, 145,145,145,255, 0,0,0,0, 168,168,168,255, 187,187,187,255, 83,83,83,255, 0,0,0,0, 82,82,82,255, 0,0,0,0, 98,98,98,255, 185,94,35,255, 176,90,34,255, 172,87,32,255, 172,87,32,255, 167,84,30,255, 178,90,34,255, 169,86,31,255, 169,86,31,255, 176,90,34,255, 165,84,30,255, 169,86,31,255, 169,86,31,255, 169,86,31,255, 169,86,31,255, 169,86,31,255, 150,76,22,255, 162,162,162,255, 182,182,182,255, 0,0,0,0, 166,166,166,255, 181,181,181,255, 88,88,88,255, 175,175,175,255, 145,145,145,255, 0,0,0,0, 168,168,168,255, 187,187,187,255, 83,83,83,255, 0,0,0,0, 82,82,82,255, 0,0,0,0, 98,98,98,255, 168,86,30,255, 164,84,29,255, 170,86,30,255, 158,81,28,255, 166,84,30,255, 164,83,30,255, 159,81,28,255, 160,81,28,255, 170,86,31,255, 170,86,30,255, 174,89,31,255, 168,85,30,255, 166,84,30,255, 168,86,30,255, 171,87,31,255, 167,85,30,255, 75,70,63,255, 179,91,59,255, 153,92,59,255, 196,99,64,255, 178,91,59,255, 153,92,59,255, 186,93,59,255, 178,91,59,255, 178,91,59,255, 185,93,59,255, 154,94,61,255, 171,90,59,255, 186,93,59,255, 153,92,59,255, 178,91,59,255, 117,111,101,255, 55,43,25,255, 78,61,36,255, 32,25,14,255, 55,43,25,255, 80,62,36,255, 31,24,13,255, 78,61,36,255, 33,26,15,255, 79,61,35,255, 30,23,12,255, 63,49,29,255, 38,30,18,255, 52,40,22,255, 63,49,29,255, 32,25,14,255, 56,44,26,255, 30,23,14,255, 92,73,48,255, 80,65,44,255, 109,84,53,255, 91,72,48,255, 80,65,44,255, 97,76,50,255, 91,72,48,255, 91,72,48,255, 97,76,50,255, 81,66,45,255, 86,69,46,255, 97,76,50,255, 80,65,44,255, 90,71,47,255, 57,47,31,255, 0,0,0,0, 42,191,253,255, 41,174,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 28,118,11,255, 42,191,253,255, 41,174,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 138,200,98,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 216,222,230,255, 85,147,50,255, 73,132,40,255, 0,0,0,0, 228,234,242,255, 242,242,156,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,152,48,255, 91,159,57,255, 0,0,0,0, 65,139,28,255, 0,0,0,0, 97,179,58,255, 82,152,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 72,140,38,255, 86,166,48,255, 0,0,0,0, 80,146,47,255, 0,0,0,0, 80,146,47,255, 72,140,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,135,33,255, 81,161,43,255, 0,0,0,0, 75,141,42,255, 0,0,0,0, 0,0,0,0, 79,156,42,255, 67,135,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,159,49,255, 67,134,35,255, 0,0,0,0, 87,164,50,255, 0,0,0,0, 87,164,50,255, 73,139,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 247,247,247,255, 81,145,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 32,67,38,255, 221,161,247,255, 228,186,247,255, 221,161,247,255, 221,161,247,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 184,184,184,255, 143,143,143,255, 0,0,0,0, 155,155,155,255, 148,148,148,255, 84,84,84,255, 151,151,151,255, 145,145,145,255, 0,0,0,0, 148,148,148,255, 145,145,145,255, 0,0,0,0, 0,0,0,0, 187,187,187,255, 158,158,158,255, 86,86,86,255, 185,94,35,255, 176,90,34,255, 167,84,30,255, 167,84,30,255, 167,84,30,255, 178,90,34,255, 169,86,31,255, 169,86,31,255, 180,92,34,255, 165,84,30,255, 169,86,31,255, 169,86,31,255, 169,86,31,255, 165,84,30,255, 169,86,31,255, 150,76,22,255, 184,184,184,255, 143,143,143,255, 0,0,0,0, 155,155,155,255, 148,148,148,255, 84,84,84,255, 151,151,151,255, 145,145,145,255, 0,0,0,0, 148,148,148,255, 145,145,145,255, 0,0,0,0, 0,0,0,0, 187,187,187,255, 158,158,158,255, 86,86,86,255, 165,85,29,255, 162,82,28,255, 170,86,31,255, 168,85,30,255, 167,84,30,255, 171,87,31,255, 170,86,31,255, 168,85,30,255, 168,85,30,255, 167,85,29,255, 168,86,30,255, 174,88,31,255, 174,90,33,255, 174,89,32,255, 173,88,31,255, 164,84,29,255, 108,101,90,255, 178,91,59,255, 165,101,67,255, 186,93,59,255, 178,91,59,255, 153,92,59,255, 184,93,59,255, 178,91,59,255, 178,91,59,255, 186,93,59,255, 152,91,59,255, 178,91,59,255, 186,93,59,255, 152,90,57,255, 182,92,60,255, 108,101,90,255, 54,42,24,255, 79,61,35,255, 32,25,14,255, 56,45,28,255, 76,58,32,255, 33,26,15,255, 54,42,24,255, 33,26,15,255, 54,42,24,255, 34,27,16,255, 76,58,32,255, 31,24,13,255, 55,43,25,255, 55,43,25,255, 32,25,14,255, 63,49,29,255, 52,42,26,255, 91,72,48,255, 88,72,49,255, 97,76,50,255, 91,72,48,255, 80,65,44,255, 96,76,50,255, 91,72,48,255, 91,72,48,255, 97,76,50,255, 79,65,44,255, 91,72,48,255, 97,76,50,255, 78,64,43,255, 94,74,48,255, 52,42,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 28,146,214,255, 28,146,214,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 111,180,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 242,242,156,255, 228,234,242,255, 0,0,0,0, 216,222,230,255, 228,234,242,255, 228,234,242,255, 85,147,50,255, 216,222,230,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,139,28,255, 97,179,58,255, 65,139,28,255, 91,159,57,255, 0,0,0,0, 95,174,57,255, 65,139,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,127,19,255, 84,161,47,255, 0,0,0,0, 55,127,19,255, 0,0,0,0, 86,166,48,255, 55,127,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,122,14,255, 81,161,43,255, 0,0,0,0, 50,122,14,255, 0,0,0,0, 79,156,42,255, 61,130,27,255, 50,122,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 67,134,35,255, 85,159,49,255, 0,0,0,0, 87,164,50,255, 0,0,0,0, 87,164,50,255, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 35,70,39,255, 39,81,40,255, 40,77,44,255, 35,70,40,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 141,141,141,255, 78,78,78,255, 0,0,0,0, 89,89,89,255, 141,141,141,255, 0,0,0,0, 154,154,154,255, 0,0,0,0, 86,86,86,255, 0,0,0,0, 149,149,149,255, 0,0,0,0, 86,86,86,255, 172,172,172,255, 146,146,146,255, 0,0,0,0, 185,94,35,255, 169,86,31,255, 169,86,31,255, 165,84,30,255, 169,86,31,255, 169,86,31,255, 169,86,31,255, 180,92,34,255, 169,86,31,255, 169,86,31,255, 169,86,31,255, 165,84,30,255, 165,84,30,255, 169,86,31,255, 169,86,31,255, 150,76,22,255, 141,141,141,255, 78,78,78,255, 0,0,0,0, 89,89,89,255, 141,141,141,255, 0,0,0,0, 154,154,154,255, 0,0,0,0, 86,86,86,255, 0,0,0,0, 149,149,149,255, 0,0,0,0, 86,86,86,255, 172,172,172,255, 146,146,146,255, 0,0,0,0, 160,82,28,255, 161,83,28,255, 161,82,28,255, 164,84,29,255, 169,86,30,255, 173,88,31,255, 167,85,30,255, 157,80,27,255, 172,88,31,255, 164,84,29,255, 164,83,28,255, 168,86,31,255, 174,90,32,255, 170,87,31,255, 167,86,31,255, 167,85,30,255, 108,101,90,255, 181,92,59,255, 152,90,57,255, 186,93,59,255, 177,91,59,255, 150,88,55,255, 186,93,59,255, 186,93,59,255, 186,93,59,255, 189,93,59,255, 153,92,59,255, 178,91,59,255, 187,93,59,255, 151,91,58,255, 178,91,59,255, 108,101,90,255, 54,42,24,255, 79,62,37,255, 36,29,18,255, 53,41,23,255, 56,44,26,255, 76,58,32,255, 34,27,16,255, 54,42,24,255, 54,42,24,255, 29,22,11,255, 77,59,33,255, 34,27,16,255, 55,43,25,255, 77,59,33,255, 33,26,15,255, 63,49,29,255, 52,42,26,255, 94,74,49,255, 78,64,43,255, 97,76,50,255, 91,72,48,255, 78,63,41,255, 97,76,50,255, 97,76,50,255, 97,76,50,255, 99,78,51,255, 80,65,44,255, 91,72,48,255, 99,77,50,255, 79,65,43,255, 90,71,47,255, 52,42,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,140,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,172,68,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,234,242,255, 85,147,50,255, 0,0,0,0, 63,119,31,255, 216,222,230,255, 242,242,156,255, 73,132,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,139,28,255, 97,179,58,255, 65,139,28,255, 91,159,57,255, 65,139,28,255, 90,167,48,255, 65,139,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,127,19,255, 79,154,38,255, 72,140,38,255, 55,127,19,255, 55,127,19,255, 80,146,47,255, 55,127,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,122,14,255, 75,141,42,255, 50,122,14,255, 75,141,42,255, 0,0,0,0, 74,149,33,255, 50,122,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,126,22,255, 80,153,40,255, 0,0,0,0, 81,145,49,255, 57,126,22,255, 81,145,49,255, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,145,49,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 35,73,41,255, 32,67,38,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,75,75,255, 88,88,88,255, 0,0,0,0, 169,169,169,255, 171,171,171,255, 0,0,0,0, 0,0,0,0, 88,88,88,255, 153,153,153,255, 0,0,0,0, 0,0,0,0, 184,95,37,255, 169,86,31,255, 176,90,34,255, 165,84,30,255, 169,86,31,255, 169,86,31,255, 176,90,34,255, 169,86,31,255, 169,86,31,255, 169,86,31,255, 176,90,34,255, 176,90,34,255, 176,90,34,255, 169,86,31,255, 169,86,31,255, 150,76,22,255, 95,95,95,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,75,75,255, 88,88,88,255, 0,0,0,0, 169,169,169,255, 171,171,171,255, 0,0,0,0, 0,0,0,0, 88,88,88,255, 153,153,153,255, 0,0,0,0, 0,0,0,0, 158,80,27,255, 167,86,29,255, 164,84,29,255, 165,84,29,255, 164,83,29,255, 172,88,32,255, 170,86,31,255, 167,85,30,255, 165,84,29,255, 170,87,30,255, 167,86,29,255, 156,80,27,255, 171,88,31,255, 180,92,34,255, 175,90,32,255, 159,81,28,255, 105,98,87,255, 174,90,59,255, 153,92,59,255, 181,92,59,255, 178,91,59,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 183,92,59,255, 187,93,59,255, 153,92,59,255, 178,91,59,255, 106,100,90,255, 35,28,17,255, 63,49,29,255, 33,26,15,255, 54,42,24,255, 53,41,23,255, 76,59,34,255, 30,23,12,255, 51,39,21,255, 32,25,14,255, 48,37,22,255, 82,64,38,255, 33,26,15,255, 54,42,24,255, 80,62,36,255, 34,27,16,255, 77,59,33,255, 50,40,24,255, 89,71,48,255, 80,65,44,255, 94,74,49,255, 91,72,48,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 96,76,50,255, 99,77,50,255, 80,65,44,255, 90,71,47,255, 51,41,25,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 28,118,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 111,180,77,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,119,31,255, 85,147,50,255, 73,132,40,255, 0,0,0,0, 85,147,50,255, 0,0,0,0, 228,234,242,255, 242,242,156,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,152,48,255, 97,179,58,255, 82,152,48,255, 65,139,28,255, 76,147,41,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,127,19,255, 66,135,32,255, 55,127,19,255, 72,140,38,255, 86,166,48,255, 72,140,38,255, 55,127,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,122,14,255, 67,135,33,255, 81,161,43,255, 67,135,33,255, 50,122,14,255, 61,130,27,255, 50,122,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,126,22,255, 73,139,40,255, 57,126,22,255, 73,139,40,255, 87,164,50,255, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,118,20,255, 81,145,49,255, 73,139,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 37,83,38,255, 40,77,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 0,0,0,0, 173,173,173,255, 180,180,180,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 153,153,153,255, 0,0,0,0, 171,171,171,255, 135,135,135,255, 0,0,0,0, 81,81,81,255, 169,169,169,255, 185,94,35,255, 167,84,30,255, 167,84,30,255, 165,84,30,255, 163,83,29,255, 176,90,34,255, 169,86,31,255, 169,86,31,255, 166,85,29,255, 169,86,31,255, 179,92,35,255, 179,92,35,255, 169,86,31,255, 173,88,31,255, 181,92,36,255, 150,76,22,255, 173,173,173,255, 0,0,0,0, 173,173,173,255, 180,180,180,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 173,173,173,255, 153,153,153,255, 0,0,0,0, 171,171,171,255, 135,135,135,255, 0,0,0,0, 81,81,81,255, 169,169,169,255, 167,85,30,255, 174,88,31,255, 168,86,30,255, 169,86,30,255, 164,83,30,255, 165,84,30,255, 172,87,31,255, 157,80,27,255, 164,84,29,255, 164,84,29,255, 160,82,28,255, 164,83,29,255, 169,86,30,255, 167,85,30,255, 164,84,29,255, 167,86,30,255, 75,70,63,255, 177,91,59,255, 153,92,59,255, 186,93,59,255, 177,91,59,255, 180,91,60,255, 178,91,59,255, 177,91,59,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 183,92,59,255, 186,93,59,255, 158,95,63,255, 178,91,59,255, 105,98,87,255, 32,25,14,255, 63,49,29,255, 32,25,14,255, 53,41,23,255, 57,45,27,255, 78,61,36,255, 34,27,16,255, 78,61,36,255, 29,22,11,255, 48,37,22,255, 81,63,37,255, 31,24,13,255, 55,43,25,255, 78,60,34,255, 31,24,13,255, 80,62,36,255, 30,23,14,255, 91,72,48,255, 80,65,44,255, 97,76,50,255, 91,72,48,255, 93,73,49,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 96,76,50,255, 97,76,50,255, 82,68,46,255, 90,72,48,255, 50,40,24,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,192,89,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,234,242,255, 242,242,156,255, 73,132,40,255, 85,147,50,255, 0,0,0,0, 85,147,50,255, 216,222,230,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,139,28,255, 91,159,57,255, 82,152,48,255, 76,147,41,255, 91,159,57,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 80,146,47,255, 66,135,32,255, 72,140,38,255, 80,146,47,255, 55,127,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,122,14,255, 75,141,42,255, 67,135,33,255, 61,130,27,255, 75,141,42,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,145,49,255, 87,164,50,255, 73,139,40,255, 81,145,49,255, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,118,20,255, 73,139,40,255, 0,0,0,0, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 38,90,37,255, 32,67,38,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 138,138,138,255, 0,0,0,0, 178,178,178,255, 153,153,153,255, 0,0,0,0, 172,172,172,255, 179,179,179,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 148,148,148,255, 144,144,144,255, 0,0,0,0, 78,78,78,255, 164,164,164,255, 185,94,35,255, 167,84,30,255, 169,86,31,255, 163,83,29,255, 169,86,31,255, 176,90,34,255, 180,92,34,255, 180,92,34,255, 169,86,31,255, 169,86,31,255, 167,85,32,255, 167,85,32,255, 169,86,31,255, 176,90,34,255, 175,90,35,255, 150,76,22,255, 138,138,138,255, 0,0,0,0, 178,178,178,255, 153,153,153,255, 0,0,0,0, 172,172,172,255, 179,179,179,255, 0,0,0,0, 0,0,0,0, 137,137,137,255, 0,0,0,0, 148,148,148,255, 144,144,144,255, 0,0,0,0, 78,78,78,255, 164,164,164,255, 169,86,30,255, 171,87,31,255, 167,85,30,255, 167,86,31,255, 167,85,31,255, 170,87,31,255, 169,86,30,255, 161,82,28,255, 154,79,26,255, 162,84,28,255, 161,82,28,255, 157,80,28,255, 160,81,28,255, 167,85,30,255, 171,88,30,255, 165,84,30,255, 75,70,63,255, 178,91,59,255, 153,92,59,255, 190,94,59,255, 187,93,59,255, 181,92,59,255, 185,93,59,255, 186,93,59,255, 186,93,59,255, 186,93,59,255, 190,94,59,255, 186,93,59,255, 184,93,59,255, 153,92,59,255, 179,91,59,255, 75,70,63,255, 30,23,12,255, 78,61,36,255, 29,22,11,255, 52,40,22,255, 55,43,25,255, 78,61,36,255, 29,22,11,255, 54,42,24,255, 32,25,14,255, 52,40,22,255, 78,60,34,255, 31,24,13,255, 54,42,24,255, 50,38,20,255, 33,26,15,255, 78,60,34,255, 30,23,14,255, 91,72,48,255, 80,65,44,255, 100,79,51,255, 99,77,50,255, 94,74,49,255, 97,76,50,255, 97,76,50,255, 97,76,50,255, 97,76,50,255, 100,79,51,255, 97,76,50,255, 96,76,50,255, 80,65,44,255, 92,73,48,255, 30,23,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,140,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 138,200,98,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,234,242,255, 216,222,230,255, 85,147,50,255, 85,147,50,255, 85,147,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,139,28,255, 97,179,58,255, 76,147,41,255, 97,179,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,166,48,255, 66,135,32,255, 86,166,48,255, 55,127,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,122,14,255, 81,161,43,255, 61,130,27,255, 81,161,43,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,126,22,255, 67,134,35,255, 87,164,50,255, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,164,50,255, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 35,84,35,255, 35,70,39,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 147,147,147,255, 0,0,0,0, 90,90,90,255, 146,146,146,255, 0,0,0,0, 165,165,165,255, 139,139,139,255, 0,0,0,0, 0,0,0,0, 81,81,81,255, 0,0,0,0, 148,148,148,255, 79,79,79,255, 174,174,174,255, 171,171,171,255, 0,0,0,0, 185,94,35,255, 167,84,30,255, 169,86,31,255, 167,84,30,255, 169,86,31,255, 169,86,31,255, 167,84,30,255, 169,87,32,255, 169,86,31,255, 167,85,32,255, 163,83,29,255, 163,83,29,255, 169,86,31,255, 174,90,34,255, 171,87,32,255, 150,76,22,255, 147,147,147,255, 0,0,0,0, 90,90,90,255, 146,146,146,255, 0,0,0,0, 165,165,165,255, 139,139,139,255, 0,0,0,0, 0,0,0,0, 81,81,81,255, 0,0,0,0, 148,148,148,255, 79,79,79,255, 174,174,174,255, 171,171,171,255, 0,0,0,0, 174,88,32,255, 171,86,31,255, 164,84,30,255, 171,88,32,255, 167,85,31,255, 164,83,31,255, 162,82,29,255, 164,84,29,255, 164,84,29,255, 163,83,29,255, 168,86,30,255, 164,84,30,255, 167,85,30,255, 167,86,31,255, 168,86,30,255, 172,88,31,255, 75,70,63,255, 178,91,59,255, 149,88,55,255, 153,92,59,255, 158,95,63,255, 153,92,59,255, 153,92,59,255, 153,92,59,255, 150,88,55,255, 154,93,60,255, 153,92,59,255, 157,95,62,255, 158,98,65,255, 158,95,63,255, 175,90,59,255, 75,70,63,255, 33,26,15,255, 56,44,26,255, 48,37,22,255, 55,43,25,255, 52,41,24,255, 63,49,29,255, 38,30,18,255, 56,44,26,255, 56,44,26,255, 51,39,21,255, 53,41,23,255, 31,24,13,255, 54,42,24,255, 76,58,32,255, 79,62,37,255, 30,23,12,255, 30,23,14,255, 91,72,48,255, 78,63,41,255, 80,65,44,255, 82,68,46,255, 80,65,44,255, 80,65,44,255, 80,65,44,255, 78,63,41,255, 81,66,44,255, 80,65,44,255, 83,68,45,255, 86,69,47,255, 82,68,46,255, 90,72,48,255, 30,23,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 22,135,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 107,176,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,147,50,255, 73,132,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,139,28,255, 91,159,57,255, 76,147,41,255, 97,179,58,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,166,48,255, 66,135,32,255, 80,146,47,255, 55,127,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,122,14,255, 75,141,42,255, 61,130,27,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,126,22,255, 81,145,49,255, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 81,145,49,255, 53,118,20,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 39,83,40,255, 0,0,0,0, 35,84,35,255, 35,70,40,255, 35,78,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 102,102,102,255, 0,0,0,0, 0,0,0,0, 90,90,90,255, 92,92,92,255, 134,134,134,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,100,100,255, 80,80,80,255, 149,149,149,255, 0,0,0,0, 178,178,178,255, 146,146,146,255, 88,88,88,255, 177,90,35,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 154,79,24,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 167,85,32,255, 176,90,34,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 163,83,29,255, 154,79,24,255, 102,102,102,255, 0,0,0,0, 0,0,0,0, 90,90,90,255, 92,92,92,255, 134,134,134,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 100,100,100,255, 80,80,80,255, 149,149,149,255, 0,0,0,0, 178,178,178,255, 146,146,146,255, 88,88,88,255, 171,88,31,255, 172,88,31,255, 166,85,29,255, 171,88,31,255, 165,84,30,255, 171,87,31,255, 163,83,29,255, 158,81,28,255, 161,82,29,255, 166,84,30,255, 164,84,29,255, 167,86,30,255, 169,86,30,255, 175,89,32,255, 171,87,30,255, 170,86,30,255, 88,82,74,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 181,92,59,255, 171,90,59,255, 172,90,59,255, 178,91,59,255, 178,91,59,255, 169,88,58,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 178,91,59,255, 108,101,90,255, 30,23,12,255, 53,41,23,255, 78,60,34,255, 33,26,15,255, 55,43,25,255, 63,49,29,255, 38,30,18,255, 32,25,14,255, 75,57,31,255, 52,41,24,255, 78,60,34,255, 30,23,12,255, 52,40,22,255, 63,49,29,255, 31,24,13,255, 53,41,23,255, 37,30,19,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 91,72,48,255, 94,74,49,255, 85,68,46,255, 86,68,46,255, 90,71,47,255, 90,71,47,255, 84,67,45,255, 90,71,47,255, 90,71,47,255, 90,71,47,255, 90,71,47,255, 52,42,26,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 28,118,11,255, 28,118,11,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 94,167,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,147,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 65,139,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,127,19,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,122,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 57,126,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 32,67,38,255, 35,70,39,255, 35,78,36,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 163,163,163,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 154,154,154,255, 0,0,0,0, 83,83,83,255, 171,171,171,255, 175,175,175,255, 82,82,82,255, 0,0,0,0, 0,0,0,0, 143,143,143,255, 87,87,87,255, 175,175,175,255, 154,79,24,255, 149,75,23,255, 154,79,24,255, 147,75,23,255, 154,79,24,255, 154,79,24,255, 154,79,24,255, 149,75,23,255, 154,79,24,255, 147,75,23,255, 146,74,21,255, 147,75,23,255, 154,79,24,255, 147,75,23,255, 150,76,22,255, 146,74,21,255, 163,163,163,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 154,154,154,255, 0,0,0,0, 83,83,83,255, 171,171,171,255, 175,175,175,255, 82,82,82,255, 0,0,0,0, 0,0,0,0, 143,143,143,255, 87,87,87,255, 175,175,175,255, 177,90,32,255, 173,88,31,255, 169,86,30,255, 169,86,30,255, 165,83,30,255, 172,87,31,255, 168,84,30,255, 162,83,29,255, 164,84,30,255, 169,86,30,255, 164,84,30,255, 175,89,32,255, 167,85,30,255, 171,87,31,255, 168,86,31,255, 167,86,30,255, 108,101,90,255, 112,106,96,255, 75,70,63,255, 110,104,94,255, 108,101,90,255, 106,100,90,255, 75,70,63,255, 108,102,92,255, 108,101,90,255, 108,101,90,255, 108,101,90,255, 108,101,90,255, 75,70,63,255, 75,70,63,255, 75,70,63,255, 108,101,90,255, 48,37,22,255, 52,41,24,255, 63,49,29,255, 32,25,14,255, 51,39,21,255, 54,42,24,255, 52,41,24,255, 33,26,15,255, 54,42,24,255, 55,43,25,255, 53,41,23,255, 28,21,10,255, 53,41,23,255, 54,42,24,255, 52,40,22,255, 63,49,29,255, 52,42,26,255, 56,45,28,255, 30,23,14,255, 53,43,27,255, 52,42,26,255, 51,41,25,255, 30,23,14,255, 52,42,26,255, 52,42,26,255, 52,42,26,255, 52,42,26,255, 52,42,26,255, 30,23,14,255, 30,23,14,255, 30,23,14,255, 52,42,26,255, 255,255,255,194, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,163, 255,255,255,163, 255,255,255,163, 255,255,255,163, 255,255,255,163, 255,255,255,163, 255,255,255,163, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,194, 216,127,51,194, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,163, 216,127,51,163, 216,127,51,163, 216,127,51,163, 216,127,51,163, 216,127,51,163, 216,127,51,163, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,194, 178,76,216,194, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,163, 178,76,216,163, 178,76,216,163, 178,76,216,163, 178,76,216,163, 178,76,216,163, 178,76,216,163, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,194, 102,153,216,194, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,163, 102,153,216,163, 102,153,216,163, 102,153,216,163, 102,153,216,163, 102,153,216,163, 102,153,216,163, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,194, 229,229,51,194, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,163, 229,229,51,163, 229,229,51,163, 229,229,51,163, 229,229,51,163, 229,229,51,163, 229,229,51,163, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,194, 127,204,25,194, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,163, 127,204,25,163, 127,204,25,163, 127,204,25,163, 127,204,25,163, 127,204,25,163, 127,204,25,163, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,194, 242,127,165,194, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,163, 242,127,165,163, 242,127,165,163, 242,127,165,163, 242,127,165,163, 242,127,165,163, 242,127,165,163, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,194, 76,76,76,194, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,163, 76,76,76,163, 76,76,76,163, 76,76,76,163, 76,76,76,163, 76,76,76,163, 76,76,76,163, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,194, 153,153,153,194, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,163, 153,153,153,163, 153,153,153,163, 153,153,153,163, 153,153,153,163, 153,153,153,163, 153,153,153,163, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,194, 76,127,153,194, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,163, 76,127,153,163, 76,127,153,163, 76,127,153,163, 76,127,153,163, 76,127,153,163, 76,127,153,163, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,194, 127,63,178,194, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,163, 127,63,178,163, 127,63,178,163, 127,63,178,163, 127,63,178,163, 127,63,178,163, 127,63,178,163, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,194, 51,76,178,194, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,163, 51,76,178,163, 51,76,178,163, 51,76,178,163, 51,76,178,163, 51,76,178,163, 51,76,178,163, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,194, 102,76,51,194, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,163, 102,76,51,163, 102,76,51,163, 102,76,51,163, 102,76,51,163, 102,76,51,163, 102,76,51,163, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,194, 102,127,51,194, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,163, 102,127,51,163, 102,127,51,163, 102,127,51,163, 102,127,51,163, 102,127,51,163, 102,127,51,163, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,194, 153,51,51,194, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,163, 153,51,51,163, 153,51,51,163, 153,51,51,163, 153,51,51,163, 153,51,51,163, 153,51,51,163, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,194, 25,25,25,194, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,163, 25,25,25,163, 25,25,25,163, 25,25,25,163, 25,25,25,163, 25,25,25,163, 25,25,25,163, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,194, 255,255,255,180, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,180, 216,127,51,180, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,180, 178,76,216,180, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,180, 102,153,216,180, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,180, 229,229,51,180, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,180, 127,204,25,180, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,180, 242,127,165,180, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,180, 76,76,76,180, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,180, 153,153,153,180, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,180, 76,127,153,180, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,180, 127,63,178,180, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,180, 51,76,178,180, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,180, 102,76,51,180, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,180, 102,127,51,180, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,180, 153,51,51,180, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,180, 25,25,25,180, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,180, 255,255,255,180, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,118, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,180, 216,127,51,180, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,118, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,180, 178,76,216,180, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,118, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,180, 102,153,216,180, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,118, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,180, 229,229,51,180, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,118, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,180, 127,204,25,180, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,118, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,180, 242,127,165,180, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,118, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,180, 76,76,76,180, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,118, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,180, 153,153,153,180, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,118, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,180, 76,127,153,180, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,118, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,180, 127,63,178,180, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,118, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,180, 51,76,178,180, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,118, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,180, 102,76,51,180, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,118, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,180, 102,127,51,180, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,118, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,180, 153,51,51,180, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,118, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,180, 25,25,25,180, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,118, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,180, 255,255,255,180, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,102, 255,255,255,180, 216,127,51,180, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,102, 216,127,51,180, 178,76,216,180, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,102, 178,76,216,180, 102,153,216,180, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,102, 102,153,216,180, 229,229,51,180, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,102, 229,229,51,180, 127,204,25,180, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,102, 127,204,25,180, 242,127,165,180, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,102, 242,127,165,180, 76,76,76,180, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,102, 76,76,76,180, 153,153,153,180, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,102, 153,153,153,180, 76,127,153,180, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,102, 76,127,153,180, 127,63,178,180, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,102, 127,63,178,180, 51,76,178,180, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,102, 51,76,178,180, 102,76,51,180, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,102, 102,76,51,180, 102,127,51,180, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,102, 102,127,51,180, 153,51,51,180, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,102, 153,51,51,180, 25,25,25,180, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,102, 25,25,25,180, 255,255,255,163, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,141, 255,255,255,102, 255,255,255,102, 255,255,255,163, 216,127,51,163, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,141, 216,127,51,102, 216,127,51,102, 216,127,51,163, 178,76,216,163, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,141, 178,76,216,102, 178,76,216,102, 178,76,216,163, 102,153,216,163, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,141, 102,153,216,102, 102,153,216,102, 102,153,216,163, 229,229,51,163, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,141, 229,229,51,102, 229,229,51,102, 229,229,51,163, 127,204,25,163, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,141, 127,204,25,102, 127,204,25,102, 127,204,25,163, 242,127,165,163, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,141, 242,127,165,102, 242,127,165,102, 242,127,165,163, 76,76,76,163, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,141, 76,76,76,102, 76,76,76,102, 76,76,76,163, 153,153,153,163, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,141, 153,153,153,102, 153,153,153,102, 153,153,153,163, 76,127,153,163, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,141, 76,127,153,102, 76,127,153,102, 76,127,153,163, 127,63,178,163, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,141, 127,63,178,102, 127,63,178,102, 127,63,178,163, 51,76,178,163, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,141, 51,76,178,102, 51,76,178,102, 51,76,178,163, 102,76,51,163, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,141, 102,76,51,102, 102,76,51,102, 102,76,51,163, 102,127,51,163, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,141, 102,127,51,102, 102,127,51,102, 102,127,51,163, 153,51,51,163, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,141, 153,51,51,102, 153,51,51,102, 153,51,51,163, 25,25,25,163, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,141, 25,25,25,102, 25,25,25,102, 25,25,25,163, 255,255,255,163, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,163, 216,127,51,163, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,163, 178,76,216,163, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,163, 102,153,216,163, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,163, 229,229,51,163, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,163, 127,204,25,163, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,163, 242,127,165,163, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,163, 76,76,76,163, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,163, 153,153,153,163, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,163, 76,127,153,163, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,163, 127,63,178,163, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,163, 51,76,178,163, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,163, 102,76,51,163, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,163, 102,127,51,163, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,163, 153,51,51,163, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,163, 25,25,25,163, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,163, 255,255,255,163, 255,255,255,102, 255,255,255,141, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,118, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,163, 216,127,51,163, 216,127,51,102, 216,127,51,141, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,118, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,163, 178,76,216,163, 178,76,216,102, 178,76,216,141, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,118, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,163, 102,153,216,163, 102,153,216,102, 102,153,216,141, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,118, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,163, 229,229,51,163, 229,229,51,102, 229,229,51,141, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,118, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,163, 127,204,25,163, 127,204,25,102, 127,204,25,141, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,118, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,163, 242,127,165,163, 242,127,165,102, 242,127,165,141, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,118, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,163, 76,76,76,163, 76,76,76,102, 76,76,76,141, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,118, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,163, 153,153,153,163, 153,153,153,102, 153,153,153,141, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,118, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,163, 76,127,153,163, 76,127,153,102, 76,127,153,141, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,118, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,163, 127,63,178,163, 127,63,178,102, 127,63,178,141, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,118, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,163, 51,76,178,163, 51,76,178,102, 51,76,178,141, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,118, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,163, 102,76,51,163, 102,76,51,102, 102,76,51,141, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,118, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,163, 102,127,51,163, 102,127,51,102, 102,127,51,141, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,118, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,163, 153,51,51,163, 153,51,51,102, 153,51,51,141, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,118, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,163, 25,25,25,163, 25,25,25,102, 25,25,25,141, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,118, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,163, 255,255,255,163, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,118, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,163, 216,127,51,163, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,118, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,163, 178,76,216,163, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,118, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,163, 102,153,216,163, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,118, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,163, 229,229,51,163, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,118, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,163, 127,204,25,163, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,118, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,163, 242,127,165,163, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,118, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,163, 76,76,76,163, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,118, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,163, 153,153,153,163, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,118, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,163, 76,127,153,163, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,118, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,163, 127,63,178,163, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,118, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,163, 51,76,178,163, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,118, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,163, 102,76,51,163, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,118, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,163, 102,127,51,163, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,118, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,163, 153,51,51,163, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,118, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,163, 25,25,25,163, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,118, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,163, 255,255,255,163, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,141, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,118, 255,255,255,102, 255,255,255,102, 255,255,255,141, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,163, 216,127,51,163, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,141, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,118, 216,127,51,102, 216,127,51,102, 216,127,51,141, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,163, 178,76,216,163, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,141, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,118, 178,76,216,102, 178,76,216,102, 178,76,216,141, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,163, 102,153,216,163, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,141, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,118, 102,153,216,102, 102,153,216,102, 102,153,216,141, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,163, 229,229,51,163, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,141, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,118, 229,229,51,102, 229,229,51,102, 229,229,51,141, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,163, 127,204,25,163, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,141, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,118, 127,204,25,102, 127,204,25,102, 127,204,25,141, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,163, 242,127,165,163, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,141, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,118, 242,127,165,102, 242,127,165,102, 242,127,165,141, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,163, 76,76,76,163, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,141, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,118, 76,76,76,102, 76,76,76,102, 76,76,76,141, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,163, 153,153,153,163, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,141, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,118, 153,153,153,102, 153,153,153,102, 153,153,153,141, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,163, 76,127,153,163, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,141, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,118, 76,127,153,102, 76,127,153,102, 76,127,153,141, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,163, 127,63,178,163, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,141, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,118, 127,63,178,102, 127,63,178,102, 127,63,178,141, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,163, 51,76,178,163, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,141, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,118, 51,76,178,102, 51,76,178,102, 51,76,178,141, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,163, 102,76,51,163, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,141, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,118, 102,76,51,102, 102,76,51,102, 102,76,51,141, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,163, 102,127,51,163, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,141, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,118, 102,127,51,102, 102,127,51,102, 102,127,51,141, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,163, 153,51,51,163, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,141, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,118, 153,51,51,102, 153,51,51,102, 153,51,51,141, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,163, 25,25,25,163, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,141, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,118, 25,25,25,102, 25,25,25,102, 25,25,25,141, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,163, 255,255,255,163, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,118, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,163, 216,127,51,163, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,118, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,163, 178,76,216,163, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,118, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,163, 102,153,216,163, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,118, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,163, 229,229,51,163, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,118, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,163, 127,204,25,163, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,118, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,163, 242,127,165,163, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,118, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,163, 76,76,76,163, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,118, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,163, 153,153,153,163, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,118, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,163, 76,127,153,163, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,118, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,163, 127,63,178,163, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,118, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,163, 51,76,178,163, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,118, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,163, 102,76,51,163, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,118, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,163, 102,127,51,163, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,118, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,163, 153,51,51,163, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,118, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,163, 25,25,25,163, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,118, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,163, 255,255,255,163, 255,255,255,102, 255,255,255,118, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,114, 255,255,255,163, 216,127,51,163, 216,127,51,102, 216,127,51,118, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,114, 216,127,51,163, 178,76,216,163, 178,76,216,102, 178,76,216,118, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,114, 178,76,216,163, 102,153,216,163, 102,153,216,102, 102,153,216,118, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,114, 102,153,216,163, 229,229,51,163, 229,229,51,102, 229,229,51,118, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,114, 229,229,51,163, 127,204,25,163, 127,204,25,102, 127,204,25,118, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,114, 127,204,25,163, 242,127,165,163, 242,127,165,102, 242,127,165,118, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,114, 242,127,165,163, 76,76,76,163, 76,76,76,102, 76,76,76,118, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,114, 76,76,76,163, 153,153,153,163, 153,153,153,102, 153,153,153,118, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,114, 153,153,153,163, 76,127,153,163, 76,127,153,102, 76,127,153,118, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,114, 76,127,153,163, 127,63,178,163, 127,63,178,102, 127,63,178,118, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,114, 127,63,178,163, 51,76,178,163, 51,76,178,102, 51,76,178,118, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,114, 51,76,178,163, 102,76,51,163, 102,76,51,102, 102,76,51,118, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,114, 102,76,51,163, 102,127,51,163, 102,127,51,102, 102,127,51,118, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,114, 102,127,51,163, 153,51,51,163, 153,51,51,102, 153,51,51,118, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,114, 153,51,51,163, 25,25,25,163, 25,25,25,102, 25,25,25,118, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,114, 25,25,25,163, 255,255,255,180, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,118, 255,255,255,102, 255,255,255,180, 216,127,51,180, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,118, 216,127,51,102, 216,127,51,180, 178,76,216,180, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,118, 178,76,216,102, 178,76,216,180, 102,153,216,180, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,118, 102,153,216,102, 102,153,216,180, 229,229,51,180, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,118, 229,229,51,102, 229,229,51,180, 127,204,25,180, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,118, 127,204,25,102, 127,204,25,180, 242,127,165,180, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,118, 242,127,165,102, 242,127,165,180, 76,76,76,180, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,118, 76,76,76,102, 76,76,76,180, 153,153,153,180, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,118, 153,153,153,102, 153,153,153,180, 76,127,153,180, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,118, 76,127,153,102, 76,127,153,180, 127,63,178,180, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,118, 127,63,178,102, 127,63,178,180, 51,76,178,180, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,118, 51,76,178,102, 51,76,178,180, 102,76,51,180, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,118, 102,76,51,102, 102,76,51,180, 102,127,51,180, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,118, 102,127,51,102, 102,127,51,180, 153,51,51,180, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,118, 153,51,51,102, 153,51,51,180, 25,25,25,180, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,118, 25,25,25,102, 25,25,25,180, 255,255,255,180, 255,255,255,102, 255,255,255,102, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,144, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,118, 255,255,255,102, 255,255,255,102, 255,255,255,180, 216,127,51,180, 216,127,51,102, 216,127,51,102, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,144, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,118, 216,127,51,102, 216,127,51,102, 216,127,51,180, 178,76,216,180, 178,76,216,102, 178,76,216,102, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,144, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,118, 178,76,216,102, 178,76,216,102, 178,76,216,180, 102,153,216,180, 102,153,216,102, 102,153,216,102, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,144, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,118, 102,153,216,102, 102,153,216,102, 102,153,216,180, 229,229,51,180, 229,229,51,102, 229,229,51,102, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,144, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,118, 229,229,51,102, 229,229,51,102, 229,229,51,180, 127,204,25,180, 127,204,25,102, 127,204,25,102, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,144, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,118, 127,204,25,102, 127,204,25,102, 127,204,25,180, 242,127,165,180, 242,127,165,102, 242,127,165,102, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,144, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,118, 242,127,165,102, 242,127,165,102, 242,127,165,180, 76,76,76,180, 76,76,76,102, 76,76,76,102, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,144, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,118, 76,76,76,102, 76,76,76,102, 76,76,76,180, 153,153,153,180, 153,153,153,102, 153,153,153,102, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,144, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,118, 153,153,153,102, 153,153,153,102, 153,153,153,180, 76,127,153,180, 76,127,153,102, 76,127,153,102, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,144, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,118, 76,127,153,102, 76,127,153,102, 76,127,153,180, 127,63,178,180, 127,63,178,102, 127,63,178,102, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,144, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,118, 127,63,178,102, 127,63,178,102, 127,63,178,180, 51,76,178,180, 51,76,178,102, 51,76,178,102, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,144, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,118, 51,76,178,102, 51,76,178,102, 51,76,178,180, 102,76,51,180, 102,76,51,102, 102,76,51,102, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,144, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,118, 102,76,51,102, 102,76,51,102, 102,76,51,180, 102,127,51,180, 102,127,51,102, 102,127,51,102, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,144, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,118, 102,127,51,102, 102,127,51,102, 102,127,51,180, 153,51,51,180, 153,51,51,102, 153,51,51,102, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,144, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,118, 153,51,51,102, 153,51,51,102, 153,51,51,180, 25,25,25,180, 25,25,25,102, 25,25,25,102, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,144, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,118, 25,25,25,102, 25,25,25,102, 25,25,25,180, 255,255,255,180, 255,255,255,102, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,141, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,114, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,180, 216,127,51,180, 216,127,51,102, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,141, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,114, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,180, 178,76,216,180, 178,76,216,102, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,141, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,114, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,180, 102,153,216,180, 102,153,216,102, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,141, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,114, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,180, 229,229,51,180, 229,229,51,102, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,141, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,114, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,180, 127,204,25,180, 127,204,25,102, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,141, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,114, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,180, 242,127,165,180, 242,127,165,102, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,141, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,114, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,180, 76,76,76,180, 76,76,76,102, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,141, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,114, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,180, 153,153,153,180, 153,153,153,102, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,141, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,114, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,180, 76,127,153,180, 76,127,153,102, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,141, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,114, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,180, 127,63,178,180, 127,63,178,102, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,141, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,114, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,180, 51,76,178,180, 51,76,178,102, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,141, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,114, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,180, 102,76,51,180, 102,76,51,102, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,141, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,114, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,180, 102,127,51,180, 102,127,51,102, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,141, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,114, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,180, 153,51,51,180, 153,51,51,102, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,141, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,114, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,180, 25,25,25,180, 25,25,25,102, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,141, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,114, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,180, 255,255,255,180, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,131, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,102, 255,255,255,180, 216,127,51,180, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,131, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,102, 216,127,51,180, 178,76,216,180, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,131, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,102, 178,76,216,180, 102,153,216,180, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,131, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,102, 102,153,216,180, 229,229,51,180, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,131, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,102, 229,229,51,180, 127,204,25,180, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,131, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,102, 127,204,25,180, 242,127,165,180, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,131, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,102, 242,127,165,180, 76,76,76,180, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,131, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,102, 76,76,76,180, 153,153,153,180, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,131, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,102, 153,153,153,180, 76,127,153,180, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,131, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,102, 76,127,153,180, 127,63,178,180, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,131, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,102, 127,63,178,180, 51,76,178,180, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,131, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,102, 51,76,178,180, 102,76,51,180, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,131, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,102, 102,76,51,180, 102,127,51,180, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,131, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,102, 102,127,51,180, 153,51,51,180, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,131, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,102, 153,51,51,180, 25,25,25,180, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,131, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,102, 25,25,25,180, 255,255,255,194, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,163, 255,255,255,163, 255,255,255,163, 255,255,255,163, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,180, 255,255,255,194, 216,127,51,194, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,163, 216,127,51,163, 216,127,51,163, 216,127,51,163, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,180, 216,127,51,194, 178,76,216,194, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,163, 178,76,216,163, 178,76,216,163, 178,76,216,163, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,180, 178,76,216,194, 102,153,216,194, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,163, 102,153,216,163, 102,153,216,163, 102,153,216,163, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,180, 102,153,216,194, 229,229,51,194, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,163, 229,229,51,163, 229,229,51,163, 229,229,51,163, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,180, 229,229,51,194, 127,204,25,194, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,163, 127,204,25,163, 127,204,25,163, 127,204,25,163, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,180, 127,204,25,194, 242,127,165,194, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,163, 242,127,165,163, 242,127,165,163, 242,127,165,163, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,180, 242,127,165,194, 76,76,76,194, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,163, 76,76,76,163, 76,76,76,163, 76,76,76,163, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,180, 76,76,76,194, 153,153,153,194, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,163, 153,153,153,163, 153,153,153,163, 153,153,153,163, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,180, 153,153,153,194, 76,127,153,194, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,163, 76,127,153,163, 76,127,153,163, 76,127,153,163, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,180, 76,127,153,194, 127,63,178,194, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,163, 127,63,178,163, 127,63,178,163, 127,63,178,163, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,180, 127,63,178,194, 51,76,178,194, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,163, 51,76,178,163, 51,76,178,163, 51,76,178,163, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,180, 51,76,178,194, 102,76,51,194, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,163, 102,76,51,163, 102,76,51,163, 102,76,51,163, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,180, 102,76,51,194, 102,127,51,194, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,163, 102,127,51,163, 102,127,51,163, 102,127,51,163, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,180, 102,127,51,194, 153,51,51,194, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,163, 153,51,51,163, 153,51,51,163, 153,51,51,163, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,180, 153,51,51,194, 25,25,25,194, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,163, 25,25,25,163, 25,25,25,163, 25,25,25,163, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,180, 25,25,25,194, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 244,244,244,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 207,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 170,73,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 97,146,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 219,219,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 122,195,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 231,122,158,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 73,73,73,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 146,146,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 73,122,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 122,61,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 48,73,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 97,73,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 97,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 146,48,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 24,24,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 244,244,244,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 207,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 170,73,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 97,146,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 219,219,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 122,195,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 231,122,158,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 73,73,73,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 146,146,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 73,122,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 122,61,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 48,73,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 97,73,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 97,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 146,48,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 24,24,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,244,244,230, 244,244,244,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,122,48,230, 207,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,73,207,230, 170,73,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,146,207,230, 97,146,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,219,48,230, 219,219,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,195,24,230, 122,195,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 231,122,158,230, 231,122,158,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,73,73,230, 73,73,73,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,146,146,230, 146,146,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,122,146,230, 73,122,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,61,170,230, 122,61,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,73,170,230, 48,73,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,73,48,230, 97,73,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,122,48,230, 97,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,48,48,230, 146,48,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,24,24,230, 24,24,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,244,244,230, 254,254,254,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,122,48,230, 215,127,50,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,73,207,230, 177,76,215,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,146,207,230, 101,152,215,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,219,48,230, 228,228,50,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,195,24,230, 127,203,25,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 231,122,158,230, 241,127,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,73,73,230, 76,76,76,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,146,146,230, 152,152,152,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,122,146,230, 76,127,152,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,61,170,230, 127,63,177,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,73,170,230, 50,76,177,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,73,48,230, 101,76,50,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,122,48,230, 101,127,50,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,48,48,230, 152,50,50,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,24,24,230, 25,25,25,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,244,244,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,122,48,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,73,207,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,146,207,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,219,48,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,195,24,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 231,122,158,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,73,73,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,146,146,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,122,146,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,61,170,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,73,170,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,73,48,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,122,48,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,48,48,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,24,24,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,244,244,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,122,48,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,73,207,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,146,207,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,219,48,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,195,24,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 231,122,158,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,73,73,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,146,146,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,122,146,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,61,170,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,73,170,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,73,48,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,122,48,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,48,48,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,24,24,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,244,244,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,122,48,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,73,207,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,146,207,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 219,219,48,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,195,24,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 231,122,158,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,73,73,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,146,146,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 73,122,146,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 122,61,170,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,73,170,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,73,48,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 97,122,48,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 146,48,48,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 24,24,24,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 244,244,244,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 207,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 170,73,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 97,146,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 219,219,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 122,195,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 231,122,158,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 73,73,73,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 146,146,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 73,122,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 122,61,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 48,73,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 97,73,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 97,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 146,48,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 24,24,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 244,244,244,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 207,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 170,73,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 97,146,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 219,219,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 122,195,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 231,122,158,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 73,73,73,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 146,146,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 73,122,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 122,61,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 48,73,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 97,73,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 97,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 146,48,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 24,24,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 244,244,244,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 207,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 170,73,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 97,146,207,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 219,219,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 122,195,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 231,122,158,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 73,73,73,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 146,146,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 73,122,146,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 122,61,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 48,73,170,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 97,73,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 97,122,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 146,48,48,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 24,24,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 237,237,237,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 201,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 165,71,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 94,142,201,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 213,213,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 118,189,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 225,118,154,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 71,71,71,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 142,142,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 71,118,142,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 118,59,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 47,71,165,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 94,71,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 94,118,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 142,47,47,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 23,23,23,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 254,254,254,230, 248,248,248,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,127,50,230, 210,124,49,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,76,215,230, 173,74,210,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,152,215,230, 99,148,210,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 228,228,50,230, 223,223,49,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,203,25,230, 124,198,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 241,127,165,230, 235,124,161,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,76,76,230, 74,74,74,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,152,152,230, 148,148,148,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 76,127,152,230, 74,124,148,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,63,177,230, 124,62,173,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,76,177,230, 49,74,173,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,76,50,230, 99,74,49,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 101,127,50,230, 99,124,49,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 152,50,50,230, 148,49,49,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 25,25,25,230, 24,24,24,230, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,104,59,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,104,59,255, 186,104,59,255, 186,99,55,255, 173,93,50,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 161,87,48,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 73,47,23,255, 73,47,23,255, 70,45,21,255, 62,41,18,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 188,188,188,255, 188,188,188,255, 189,189,189,255, 187,187,187,255, 187,187,187,255, 189,189,189,255, 187,187,187,255, 188,188,188,255, 188,188,188,255, 188,188,188,255, 187,187,187,255, 186,186,186,255, 187,187,187,255, 187,187,187,255, 188,188,188,255, 188,188,188,255, 124,201,105,188, 126,205,106,188, 106,186,90,188, 98,182,77,188, 125,202,105,188, 112,200,99,188, 129,205,112,188, 124,208,105,188, 130,203,112,188, 100,185,81,188, 103,180,84,188, 109,193,90,188, 121,203,100,188, 126,201,106,188, 125,198,106,188, 126,201,110,188, 121,122,120,255, 126,126,126,255, 112,112,118,255, 112,112,112,255, 129,129,131,255, 149,150,153,255, 108,108,107,255, 127,127,129,255, 121,121,127,255, 138,138,142,255, 108,108,114,255, 127,127,123,255, 109,109,102,255, 96,96,94,255, 131,132,135,255, 157,157,161,255, 171,172,167,255, 174,174,170,255, 165,165,165,255, 179,179,176,255, 176,176,174,255, 188,189,186,255, 180,180,178,255, 175,175,172,255, 171,171,171,255, 182,182,179,255, 163,163,163,255, 175,175,169,255, 182,182,174,255, 171,171,167,255, 177,178,176,255, 147,147,152,255, 157,157,160,255, 198,198,200,255, 222,222,224,255, 203,203,207,255, 203,203,207,255, 87,87,89,255, 208,208,210,255, 240,240,241,255, 158,158,162,255, 164,164,167,255, 137,137,140,255, 175,175,178,255, 203,203,207,255, 203,203,207,255, 203,203,207,255, 158,158,162,255, 199,199,202,255, 229,229,230,255, 242,242,243,255, 232,232,234,255, 232,232,234,255, 156,156,158,255, 234,234,236,255, 240,240,241,255, 232,232,234,255, 236,236,238,255, 215,215,216,255, 214,214,216,255, 232,232,234,255, 232,232,234,255, 232,232,234,255, 175,175,179,255, 180,155,145,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 159,136,128,255, 110,77,65,255, 88,65,56,255, 117,100,94,255, 146,98,81,255, 162,125,112,255, 169,119,100,255, 159,107,88,255, 109,76,63,255, 159,107,88,255, 159,107,88,255, 169,119,100,255, 214,185,173,255, 203,152,130,255, 203,152,130,255, 203,152,130,255, 203,173,161,255, 207,161,140,255, 189,147,129,255, 214,185,173,255, 195,145,124,255, 204,165,149,255, 207,161,140,255, 203,152,130,255, 182,136,117,255, 203,152,130,255, 203,152,130,255, 145,101,84,255, 135,191,176,255, 125,183,167,255, 125,182,164,255, 159,203,188,255, 122,177,158,255, 136,192,177,255, 128,188,174,255, 58,119,103,255, 152,201,188,255, 135,192,178,255, 125,183,169,255, 150,199,183,255, 122,176,161,255, 122,178,164,255, 166,207,196,255, 95,149,132,255, 77,106,92,255, 69,99,85,255, 68,98,82,255, 72,93,78,255, 66,93,78,255, 78,107,93,255, 72,103,90,255, 55,73,62,255, 86,119,105,255, 77,106,94,255, 68,98,85,255, 68,89,74,255, 67,92,79,255, 67,94,82,255, 94,129,114,255, 72,93,78,255, 102,175,152,255, 79,153,130,255, 77,150,122,255, 158,205,183,255, 70,137,109,255, 103,176,155,255, 86,167,147,255, 72,141,124,255, 142,197,183,255, 101,176,158,255, 78,153,135,255, 137,193,171,255, 72,136,115,255, 72,141,123,255, 175,214,203,255, 159,205,189,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 83,136,123,255, 81,134,121,255, 80,134,120,255, 90,140,127,255, 80,132,118,255, 83,137,124,255, 82,137,123,255, 80,133,120,255, 88,139,127,255, 82,137,124,255, 81,134,120,255, 87,138,125,255, 81,133,119,255, 80,133,120,255, 92,139,128,255, 90,140,128,255, 188,190,85,255, 185,184,81,255, 172,173,70,255, 191,191,80,255, 149,151,51,255, 193,193,70,255, 184,183,75,255, 181,180,73,255, 189,188,86,255, 178,178,75,255, 96,106,82,255, 194,194,82,255, 195,198,93,255, 190,185,81,255, 196,196,68,255, 193,188,87,255, 186,104,59,255, 186,104,59,255, 186,99,55,255, 160,86,48,255, 186,99,55,255, 186,99,55,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,99,55,255, 173,93,50,255, 186,99,55,255, 186,104,59,255, 161,87,48,255, 73,47,23,255, 73,47,23,255, 70,45,21,255, 45,29,13,255, 70,45,21,255, 70,45,21,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 70,45,21,255, 62,41,18,255, 70,45,21,255, 73,47,23,255, 62,41,18,255, 192,192,192,255, 205,205,205,255, 204,204,204,255, 204,204,204,255, 204,204,204,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 199,199,199,255, 205,205,205,255, 205,205,205,255, 192,192,192,255, 122,199,108,188, 129,211,110,188, 103,180,84,188, 107,185,88,188, 126,209,106,188, 121,201,103,188, 122,206,103,188, 123,201,106,188, 130,207,106,188, 104,185,81,188, 104,189,82,188, 103,177,82,188, 121,207,102,188, 131,205,111,188, 130,204,111,188, 128,203,110,188, 128,129,125,255, 136,137,122,255, 138,138,122,255, 120,120,109,255, 127,127,129,255, 133,132,136,255, 137,137,139,255, 104,105,108,255, 110,110,113,255, 161,161,159,255, 103,103,106,255, 98,98,102,255, 205,207,192,255, 195,195,194,255, 125,126,120,255, 119,119,115,255, 175,176,170,255, 131,132,132,255, 133,133,132,255, 131,131,135,255, 129,129,132,255, 133,132,137,255, 135,135,139,255, 127,128,133,255, 131,131,137,255, 150,150,151,255, 131,131,137,255, 126,126,134,255, 154,156,150,255, 152,152,145,255, 134,134,120,255, 97,97,84,255, 122,122,125,255, 192,192,195,255, 203,203,207,255, 149,149,152,255, 149,149,152,255, 218,218,220,255, 158,158,162,255, 208,208,210,255, 183,183,185,255, 216,216,217,255, 183,183,185,255, 99,99,101,255, 147,147,150,255, 143,143,145,255, 103,103,104,255, 203,203,207,255, 199,199,202,255, 192,192,195,255, 203,203,207,255, 192,192,195,255, 192,192,195,255, 181,181,185,255, 203,203,207,255, 208,208,210,255, 183,183,185,255, 216,216,217,255, 183,183,185,255, 128,128,130,255, 147,147,150,255, 184,184,186,255, 132,132,134,255, 130,130,133,255, 169,119,100,255, 169,119,100,255, 94,68,58,255, 117,88,77,255, 117,88,77,255, 227,192,175,255, 212,162,139,255, 212,162,139,255, 104,70,57,255, 117,88,77,255, 180,136,119,255, 94,68,58,255, 127,86,70,255, 169,119,100,255, 169,145,136,255, 159,107,88,255, 207,161,140,255, 165,115,96,255, 114,80,67,255, 173,126,109,255, 173,126,109,255, 173,126,109,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 173,126,109,255, 173,126,109,255, 114,80,67,255, 150,100,83,255, 165,115,96,255, 165,132,120,255, 109,73,60,255, 145,194,172,255, 86,151,121,255, 121,180,158,255, 122,181,160,255, 79,147,125,255, 82,154,136,255, 121,180,165,255, 58,114,101,255, 158,203,193,255, 104,171,155,255, 107,173,158,255, 90,158,143,255, 81,148,128,255, 114,176,155,255, 82,146,119,255, 74,128,103,255, 83,111,90,255, 53,83,66,255, 72,110,93,255, 53,79,64,255, 67,95,81,255, 51,85,75,255, 71,109,97,255, 35,57,49,255, 89,124,110,255, 64,100,89,255, 65,101,91,255, 41,62,54,255, 68,96,82,255, 68,104,89,255, 50,80,65,255, 47,67,52,255, 125,182,143,255, 87,150,111,255, 150,201,176,255, 152,203,179,255, 75,142,118,255, 81,155,136,255, 149,201,189,255, 76,145,129,255, 156,205,193,255, 119,185,171,255, 124,189,176,255, 94,162,150,255, 79,145,123,255, 137,193,171,255, 80,141,107,255, 115,176,135,255, 60,51,34,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 60,51,34,255, 86,137,122,255, 79,134,118,255, 115,172,160,255, 143,188,174,255, 135,185,172,255, 178,213,203,255, 170,201,192,255, 199,223,216,255, 193,218,212,255, 174,207,199,255, 175,207,199,255, 179,213,204,255, 147,192,181,255, 117,172,157,255, 82,135,120,255, 79,133,117,255, 182,183,78,255, 108,118,87,255, 210,207,80,255, 174,175,75,255, 170,169,65,255, 193,191,73,255, 94,105,80,255, 143,141,50,255, 170,166,46,255, 168,165,55,255, 167,162,61,255, 171,162,63,255, 182,180,69,255, 188,188,82,255, 96,107,90,255, 186,187,85,255, 186,104,59,255, 186,104,59,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,99,55,255, 186,99,55,255, 160,86,48,255, 186,104,59,255, 186,104,59,255, 186,99,55,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 161,87,48,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 70,45,21,255, 70,45,21,255, 45,29,13,255, 73,47,23,255, 73,47,23,255, 70,45,21,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 188,188,188,255, 198,198,198,255, 192,192,192,255, 193,193,193,255, 193,193,193,255, 193,193,193,255, 199,199,199,255, 205,205,205,255, 205,205,205,255, 193,193,193,255, 193,193,193,255, 192,192,192,255, 192,192,192,255, 198,198,198,255, 199,199,199,255, 188,188,188,255, 127,201,112,188, 125,210,106,188, 127,199,108,188, 131,206,110,188, 124,192,102,188, 102,189,81,188, 100,189,80,188, 134,207,111,188, 114,202,96,188, 123,206,103,188, 124,206,103,188, 127,202,109,188, 133,204,115,188, 127,209,109,188, 121,203,103,188, 125,206,104,188, 127,127,131,255, 169,169,157,255, 129,129,127,255, 171,173,172,255, 101,101,109,255, 106,106,112,255, 132,132,134,255, 151,151,151,255, 150,151,154,255, 107,107,108,255, 129,129,133,255, 168,168,167,255, 126,126,136,255, 136,137,142,255, 101,101,109,255, 127,128,126,255, 175,175,174,255, 155,155,150,255, 145,145,147,255, 131,132,137,255, 113,113,120,255, 116,116,122,255, 132,132,135,255, 144,144,146,255, 143,144,148,255, 129,129,134,255, 130,130,135,255, 129,129,134,255, 128,128,137,255, 134,135,140,255, 113,113,120,255, 96,96,93,255, 203,203,207,255, 158,158,162,255, 158,158,162,255, 199,199,202,255, 199,199,202,255, 175,175,178,255, 175,175,178,255, 166,166,168,255, 179,179,182,255, 136,136,139,255, 158,158,162,255, 158,158,162,255, 166,166,168,255, 244,244,245,255, 219,219,221,255, 203,203,207,255, 232,232,234,255, 203,203,207,255, 203,203,207,255, 157,157,160,255, 157,157,160,255, 175,175,178,255, 175,175,178,255, 213,213,215,255, 179,179,182,255, 175,175,178,255, 203,203,207,255, 203,203,207,255, 213,213,215,255, 228,228,229,255, 184,184,186,255, 130,130,133,255, 84,60,50,255, 95,64,52,255, 104,70,57,255, 212,162,139,255, 201,151,129,255, 159,107,88,255, 180,155,145,255, 159,107,88,255, 180,136,119,255, 159,107,88,255, 110,77,65,255, 169,119,100,255, 110,77,65,255, 180,136,119,255, 136,110,100,255, 169,119,100,255, 185,141,121,255, 150,100,83,255, 159,107,88,255, 159,107,88,255, 150,100,83,255, 159,107,88,255, 173,139,126,255, 159,107,88,255, 173,126,109,255, 159,107,88,255, 165,115,96,255, 165,115,96,255, 165,115,96,255, 173,126,109,255, 143,109,96,255, 113,78,65,255, 128,177,153,255, 121,177,152,255, 92,164,138,255, 87,155,136,255, 123,183,172,255, 82,148,132,255, 92,157,137,255, 66,123,109,255, 129,182,172,255, 104,174,161,255, 107,176,163,255, 91,158,143,255, 87,155,129,255, 86,151,121,255, 116,174,144,255, 75,129,105,255, 69,93,74,255, 72,106,87,255, 59,91,77,255, 39,61,51,255, 89,124,113,255, 50,82,72,255, 58,88,76,255, 42,63,54,255, 72,98,89,255, 63,101,92,255, 65,105,95,255, 42,62,54,255, 72,100,83,255, 54,84,67,255, 70,104,82,255, 47,68,53,255, 84,137,94,255, 149,196,165,255, 99,173,140,255, 90,156,137,255, 154,207,201,255, 81,145,130,255, 99,161,139,255, 95,163,150,255, 88,151,142,255, 120,190,181,255, 125,194,185,255, 97,162,149,255, 89,156,124,255, 88,150,111,255, 141,190,151,255, 116,178,138,255, 60,51,34,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 71,61,41,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 71,61,41,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 60,51,34,255, 81,132,117,255, 117,172,159,255, 143,190,177,255, 196,223,214,255, 211,226,220,255, 209,227,221,255, 215,230,224,255, 213,228,223,255, 214,230,224,255, 212,228,222,255, 214,228,222,255, 206,225,219,255, 205,225,217,255, 146,188,177,255, 117,172,158,255, 80,133,117,255, 192,192,87,255, 193,189,65,255, 178,177,75,255, 173,168,65,255, 166,160,47,255, 160,157,50,255, 138,135,46,255, 144,141,44,255, 165,160,45,255, 154,146,54,255, 151,147,44,255, 168,164,58,255, 93,102,80,255, 166,166,65,255, 219,218,88,255, 195,192,81,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 143,76,42,255, 143,76,42,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 45,29,13,255, 45,29,13,255, 193,193,193,255, 204,204,204,255, 197,197,197,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,212,212,255, 199,199,199,255, 204,204,204,255, 199,199,199,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 214,214,214,255, 205,205,205,255, 193,193,193,255, 118,198,99,188, 125,203,106,188, 132,210,113,188, 125,211,105,188, 134,218,115,188, 105,178,82,188, 108,192,87,188, 121,199,101,188, 125,206,107,188, 125,210,104,188, 124,213,109,188, 127,212,106,188, 120,208,102,188, 107,185,87,188, 105,189,84,188, 130,208,107,188, 113,113,119,255, 123,122,128,255, 97,97,98,255, 127,127,129,255, 126,126,132,255, 129,129,133,255, 119,119,123,255, 109,110,109,255, 112,112,112,255, 173,174,170,255, 106,106,105,255, 129,130,126,255, 111,112,117,255, 138,139,129,255, 130,130,128,255, 127,128,126,255, 166,166,166,255, 126,126,132,255, 128,128,118,255, 135,136,125,255, 135,135,126,255, 137,137,128,255, 124,124,129,255, 131,131,134,255, 133,133,136,255, 132,133,135,255, 133,133,136,255, 130,131,130,255, 119,119,125,255, 136,136,132,255, 131,131,132,255, 96,96,93,255, 149,149,152,255, 199,199,202,255, 244,244,244,255, 203,203,207,255, 203,203,207,255, 175,175,178,255, 175,175,178,255, 229,229,230,255, 159,159,163,255, 224,224,227,255, 224,224,227,255, 190,190,193,255, 205,205,209,255, 205,205,209,255, 175,175,178,255, 175,175,178,255, 225,225,227,255, 157,157,160,255, 227,227,228,255, 203,203,207,255, 203,203,207,255, 175,175,178,255, 175,175,178,255, 229,229,230,255, 205,205,209,255, 192,192,195,255, 192,192,195,255, 147,147,150,255, 205,205,209,255, 205,205,209,255, 175,175,178,255, 112,112,114,255, 219,175,154,255, 227,192,175,255, 130,93,78,255, 84,68,62,255, 169,119,100,255, 180,155,145,255, 169,119,100,255, 94,68,58,255, 169,119,100,255, 130,93,78,255, 104,88,83,255, 159,107,88,255, 159,107,88,255, 123,107,102,255, 104,70,57,255, 110,77,65,255, 207,161,140,255, 173,126,109,255, 139,97,81,255, 139,105,93,255, 165,115,96,255, 173,139,126,255, 165,115,96,255, 114,80,67,255, 165,115,96,255, 139,97,81,255, 159,126,115,255, 159,107,88,255, 159,107,88,255, 179,147,134,255, 159,107,88,255, 113,78,65,255, 125,177,158,255, 77,144,123,255, 79,147,126,255, 123,184,172,255, 108,177,165,255, 86,151,130,255, 130,180,152,255, 91,140,121,255, 137,191,181,255, 100,168,157,255, 88,157,142,255, 77,143,124,255, 120,179,162,255, 80,146,123,255, 88,151,118,255, 57,109,89,255, 55,72,58,255, 35,57,46,255, 35,57,47,255, 53,81,71,255, 66,90,78,255, 39,59,49,255, 55,78,59,255, 53,79,64,255, 63,81,72,255, 46,67,61,255, 40,62,53,255, 35,55,45,255, 70,91,76,255, 36,57,45,255, 40,60,45,255, 35,54,43,255, 77,137,107,255, 72,137,114,255, 76,143,120,255, 153,208,201,255, 126,196,189,255, 88,150,126,255, 165,201,165,255, 155,202,178,255, 106,173,164,255, 112,179,174,255, 92,160,147,255, 72,136,115,255, 147,199,183,255, 77,141,113,255, 91,150,105,255, 74,131,103,255, 60,51,34,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 71,61,41,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 71,61,41,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 60,51,34,255, 79,130,116,255, 145,190,179,255, 198,222,214,255, 206,226,221,255, 213,228,223,255, 221,232,226,255, 222,234,228,255, 224,234,228,255, 224,234,229,255, 226,234,230,255, 222,233,227,255, 216,230,224,255, 207,225,218,255, 200,225,217,255, 145,189,177,255, 75,127,112,255, 190,190,79,255, 173,175,72,255, 171,169,62,255, 89,97,78,255, 134,131,50,255, 159,155,51,255, 167,163,53,255, 89,99,77,255, 166,162,48,255, 155,151,49,255, 147,144,51,255, 85,95,78,255, 133,132,35,255, 156,152,45,255, 172,170,66,255, 191,194,85,255, 186,104,59,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,104,59,255, 186,104,59,255, 161,87,48,255, 186,104,59,255, 173,93,50,255, 173,93,50,255, 160,86,48,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 186,104,59,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 45,29,13,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 73,47,23,255, 192,192,192,255, 204,204,204,255, 193,193,193,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,212,212,255, 205,205,205,255, 205,205,205,255, 199,199,199,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,212,212,255, 204,204,204,255, 192,192,192,255, 127,208,107,188, 121,199,105,188, 116,201,97,188, 131,210,109,188, 124,203,107,188, 120,202,99,188, 125,211,103,188, 127,205,112,188, 117,198,101,188, 133,209,111,188, 125,196,101,188, 123,202,108,188, 130,207,111,188, 103,189,82,188, 94,177,77,188, 127,206,107,188, 98,98,97,255, 107,106,106,255, 167,168,168,255, 124,124,132,255, 145,145,149,255, 126,126,117,255, 110,110,100,255, 175,177,160,255, 182,182,168,255, 124,124,115,255, 133,133,139,255, 123,123,132,255, 154,154,160,255, 124,124,138,255, 106,106,113,255, 104,104,110,255, 172,172,170,255, 134,133,137,255, 128,129,134,255, 127,127,134,255, 140,140,145,255, 146,146,148,255, 132,132,137,255, 129,129,134,255, 134,134,139,255, 123,123,129,255, 133,133,139,255, 146,146,157,255, 146,146,152,255, 127,127,138,255, 125,125,134,255, 98,98,100,255, 108,108,110,255, 90,90,92,255, 203,203,207,255, 200,200,204,255, 184,184,186,255, 218,218,220,255, 208,208,210,255, 156,156,159,255, 136,136,139,255, 157,157,160,255, 157,157,160,255, 147,147,150,255, 192,192,195,255, 192,192,195,255, 175,175,178,255, 136,136,139,255, 183,183,185,255, 116,116,118,255, 203,203,207,255, 200,200,204,255, 184,184,186,255, 218,218,220,255, 208,208,210,255, 156,156,159,255, 175,175,178,255, 157,157,160,255, 157,157,160,255, 147,147,150,255, 192,192,195,255, 192,192,195,255, 175,175,178,255, 112,112,114,255, 169,119,100,255, 180,136,119,255, 180,155,145,255, 159,107,88,255, 113,93,85,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 180,155,145,255, 180,136,119,255, 117,88,77,255, 117,100,94,255, 151,116,100,255, 227,192,175,255, 201,151,129,255, 207,161,140,255, 173,126,109,255, 173,139,126,255, 159,107,88,255, 169,131,117,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 173,139,126,255, 173,126,109,255, 173,126,109,255, 173,139,126,255, 117,82,69,255, 173,126,109,255, 103,68,56,255, 148,199,188,255, 121,180,164,255, 90,164,146,255, 99,167,155,255, 86,153,139,255, 78,144,124,255, 127,180,154,255, 78,128,99,255, 128,178,160,255, 90,157,142,255, 121,180,163,255, 112,176,154,255, 77,146,128,255, 97,168,150,255, 83,152,130,255, 64,125,108,255, 84,117,104,255, 87,121,107,255, 75,104,92,255, 64,83,73,255, 71,99,88,255, 67,94,80,255, 91,123,100,255, 66,82,63,255, 71,95,80,255, 75,101,90,255, 87,121,105,255, 68,89,74,255, 67,94,82,255, 78,108,95,255, 70,98,84,255, 60,80,67,255, 134,194,181,255, 149,201,187,255, 94,173,154,255, 110,178,171,255, 87,153,142,255, 73,138,116,255, 161,201,168,255, 123,176,127,255, 85,141,113,255, 95,160,148,255, 149,201,185,255, 134,193,168,255, 72,141,122,255, 107,179,162,255, 83,152,126,255, 89,168,147,255, 60,51,34,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 60,51,34,255, 87,138,125,255, 172,201,193,255, 208,227,221,255, 214,228,223,255, 222,234,228,255, 222,233,221,255, 223,233,220,255, 222,233,221,255, 221,232,220,255, 223,234,220,255, 220,231,219,255, 221,233,226,255, 215,228,224,255, 208,225,219,255, 180,214,204,255, 76,131,119,255, 178,180,73,255, 180,178,57,255, 159,151,58,255, 145,142,43,255, 100,108,77,255, 160,154,48,255, 149,145,41,255, 147,144,49,255, 155,151,51,255, 141,138,49,255, 153,152,41,255, 158,154,42,255, 164,160,52,255, 158,154,50,255, 204,200,51,255, 183,177,78,255, 173,93,50,255, 173,93,50,255, 160,86,48,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 186,104,59,255, 161,87,48,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 62,41,18,255, 62,41,18,255, 45,29,13,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 73,47,23,255, 62,41,18,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 193,193,193,255, 205,205,205,255, 199,199,199,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,212,212,255, 204,204,204,255, 199,199,199,255, 197,197,197,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 214,214,214,255, 205,205,205,255, 193,193,193,255, 131,207,114,188, 125,209,104,188, 126,206,103,188, 128,197,107,188, 129,209,109,188, 121,198,104,188, 123,196,105,188, 129,211,108,188, 123,198,106,188, 121,196,102,188, 101,183,83,188, 113,190,92,188, 124,207,101,188, 122,207,103,188, 126,204,102,188, 129,211,107,188, 193,193,188,255, 162,162,161,255, 98,98,98,255, 131,132,135,255, 102,103,103,255, 144,145,145,255, 171,171,172,255, 128,128,134,255, 132,132,138,255, 123,124,131,255, 125,125,121,255, 131,132,128,255, 106,106,104,255, 105,105,105,255, 168,168,161,255, 165,165,169,255, 190,190,186,255, 125,125,130,255, 127,127,130,255, 131,132,136,255, 130,131,135,255, 114,115,120,255, 131,131,137,255, 129,129,135,255, 132,132,138,255, 126,127,134,255, 128,128,127,255, 131,132,132,255, 125,125,127,255, 124,124,128,255, 129,129,130,255, 114,114,112,255, 234,234,235,255, 231,231,234,255, 158,158,162,255, 184,184,186,255, 132,132,134,255, 162,162,164,255, 184,184,187,255, 118,118,120,255, 175,175,178,255, 158,158,162,255, 158,158,162,255, 222,222,224,255, 157,157,160,255, 122,122,125,255, 158,158,162,255, 244,244,244,255, 234,234,236,255, 203,203,207,255, 203,203,207,255, 184,184,186,255, 132,132,134,255, 208,208,210,255, 184,184,187,255, 118,118,120,255, 175,175,178,255, 203,203,207,255, 203,203,207,255, 222,222,224,255, 157,157,160,255, 157,157,160,255, 203,203,207,255, 145,145,146,255, 159,107,88,255, 159,107,88,255, 169,119,100,255, 169,119,100,255, 110,77,65,255, 159,107,88,255, 189,166,157,255, 159,107,88,255, 169,119,100,255, 146,98,81,255, 110,77,65,255, 219,175,154,255, 159,107,88,255, 117,100,94,255, 146,98,81,255, 169,119,100,255, 203,152,130,255, 159,107,88,255, 165,115,96,255, 165,115,96,255, 165,115,96,255, 159,107,88,255, 179,147,134,255, 159,107,88,255, 165,115,96,255, 150,100,83,255, 165,115,96,255, 165,115,96,255, 159,107,88,255, 173,139,126,255, 150,100,83,255, 113,78,65,255, 134,181,173,255, 96,169,152,255, 78,147,130,255, 82,151,134,255, 117,178,162,255, 123,181,165,255, 83,151,126,255, 63,111,86,255, 72,127,95,255, 135,187,169,255, 114,177,156,255, 95,166,141,255, 81,150,132,255, 105,174,161,255, 106,174,161,255, 67,125,112,255, 88,125,115,255, 61,97,86,255, 49,81,72,255, 37,59,50,255, 86,119,105,255, 73,111,97,255, 52,84,69,255, 39,56,42,255, 77,101,79,255, 78,118,101,255, 69,107,90,255, 43,67,54,255, 69,97,84,255, 64,102,94,255, 64,102,92,255, 42,64,55,255, 153,208,204,255, 106,181,166,255, 74,143,127,255, 80,149,134,255, 142,197,183,255, 154,203,189,255, 82,150,119,255, 87,137,94,255, 103,157,105,255, 175,214,195,255, 138,195,172,255, 103,176,146,255, 79,147,129,255, 121,191,182,255, 123,191,181,255, 99,167,157,255, 60,51,34,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 60,51,34,255, 89,140,130,255, 173,209,200,255, 212,229,220,255, 222,233,226,255, 223,234,222,255, 223,233,221,255, 229,235,229,255, 228,237,228,255, 225,235,225,255, 229,236,229,255, 223,234,220,255, 223,233,222,255, 223,235,228,255, 212,228,222,255, 172,206,198,255, 78,131,119,255, 184,182,74,255, 155,148,56,255, 156,152,46,255, 155,151,51,255, 161,157,53,255, 146,143,48,255, 162,158,40,255, 156,153,52,255, 84,94,80,255, 155,151,49,255, 154,151,54,255, 155,151,51,255, 94,103,71,255, 160,152,58,255, 164,162,62,255, 116,127,87,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,99,55,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 161,87,48,255, 173,93,50,255, 173,93,50,255, 160,86,48,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 70,45,21,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 45,29,13,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 188,188,188,255, 204,204,204,255, 199,199,199,255, 214,214,214,255, 214,214,214,255, 214,214,214,255, 212,212,212,255, 205,205,205,255, 204,204,204,255, 205,205,205,255, 214,214,214,255, 212,212,212,255, 212,212,212,255, 212,212,212,255, 204,204,204,255, 188,188,188,255, 125,207,100,188, 120,205,101,188, 99,178,79,188, 104,184,78,188, 125,204,103,188, 119,197,95,188, 125,206,104,188, 118,194,100,188, 130,200,111,188, 122,202,105,188, 96,182,76,188, 102,182,82,188, 133,207,108,188, 122,201,102,188, 121,198,102,188, 123,196,107,188, 123,123,125,255, 97,97,105,255, 130,132,136,255, 99,99,100,255, 164,163,164,255, 128,128,134,255, 133,133,139,255, 131,132,135,255, 153,153,161,255, 150,150,162,255, 106,106,108,255, 100,100,106,255, 166,167,160,255, 169,168,154,255, 121,121,125,255, 126,126,132,255, 172,172,170,255, 110,110,117,255, 131,132,137,255, 134,135,124,255, 133,133,124,255, 136,136,127,255, 139,140,131,255, 138,138,129,255, 151,151,145,255, 143,143,153,255, 133,133,139,255, 128,128,137,255, 128,128,129,255, 129,129,125,255, 125,125,130,255, 96,96,96,255, 218,218,220,255, 208,208,210,255, 157,157,160,255, 122,122,125,255, 142,142,144,255, 201,201,203,255, 134,134,136,255, 124,124,126,255, 162,162,164,255, 224,224,227,255, 237,237,237,255, 162,162,165,255, 158,158,162,255, 227,227,228,255, 231,231,234,255, 203,203,207,255, 240,240,241,255, 208,208,210,255, 157,157,160,255, 157,157,160,255, 183,183,185,255, 201,201,203,255, 173,173,175,255, 159,159,161,255, 208,208,210,255, 192,192,195,255, 212,212,213,255, 208,208,211,255, 203,203,207,255, 227,227,228,255, 203,203,207,255, 130,130,133,255, 180,136,119,255, 180,136,119,255, 169,119,100,255, 94,68,58,255, 180,155,145,255, 104,70,57,255, 117,88,77,255, 180,136,119,255, 110,77,65,255, 110,77,65,255, 219,175,154,255, 94,68,58,255, 180,136,119,255, 180,136,119,255, 117,88,77,255, 95,64,52,255, 214,173,154,255, 173,126,109,255, 165,115,96,255, 114,80,67,255, 173,139,126,255, 159,107,88,255, 173,126,109,255, 173,126,109,255, 165,115,96,255, 165,115,96,255, 165,115,96,255, 114,80,67,255, 173,126,109,255, 173,126,109,255, 173,126,109,255, 103,68,56,255, 123,179,165,255, 83,145,132,255, 85,154,138,255, 113,176,160,255, 96,167,149,255, 90,164,145,255, 57,114,99,255, 131,185,165,255, 138,187,164,255, 66,127,106,255, 77,146,121,255, 77,146,121,255, 78,147,127,255, 87,154,140,255, 76,133,123,255, 108,156,143,255, 67,95,83,255, 65,105,96,255, 53,85,76,255, 50,74,63,255, 78,107,94,255, 57,91,80,255, 49,81,71,255, 40,62,49,255, 79,103,85,255, 54,86,73,255, 48,80,66,255, 35,57,44,255, 67,95,81,255, 55,85,78,255, 64,100,93,255, 35,57,48,255, 74,143,125,255, 128,195,188,255, 85,154,141,255, 136,193,179,255, 105,178,160,255, 95,172,153,255, 74,143,124,255, 92,157,126,255, 109,164,123,255, 89,158,129,255, 72,141,111,255, 72,141,110,255, 74,143,121,255, 90,154,144,255, 119,186,182,255, 74,143,125,255, 60,51,34,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 60,51,34,255, 80,133,118,255, 174,206,198,255, 215,231,222,255, 223,233,227,255, 223,233,220,255, 228,237,228,255, 228,236,228,255, 227,235,229,255, 226,234,229,255, 229,237,229,255, 229,237,229,255, 224,234,221,255, 223,233,228,255, 213,229,223,255, 171,205,199,255, 74,128,116,255, 190,184,82,255, 93,102,80,255, 158,154,50,255, 174,167,54,255, 89,98,74,255, 152,150,52,255, 155,154,51,255, 154,146,54,255, 168,164,50,255, 160,156,48,255, 151,147,51,255, 138,139,43,255, 189,177,49,255, 173,169,53,255, 157,154,51,255, 177,171,69,255, 143,76,42,255, 143,76,42,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 143,76,42,255, 143,76,42,255, 45,29,13,255, 45,29,13,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 45,29,13,255, 45,29,13,255, 192,192,192,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 204,204,204,255, 205,205,205,255, 199,199,199,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 192,192,192,255, 124,208,103,188, 123,200,104,188, 99,184,82,188, 103,188,84,188, 120,192,102,188, 127,202,109,188, 134,210,113,188, 106,190,85,188, 103,182,79,188, 124,202,107,188, 136,205,117,188, 131,211,108,188, 130,208,108,188, 128,209,108,188, 120,211,97,188, 119,207,100,188, 131,132,135,255, 126,126,132,255, 130,130,136,255, 108,109,107,255, 151,151,151,255, 129,129,133,255, 131,132,126,255, 115,115,104,255, 110,110,95,255, 105,105,90,255, 137,138,123,255, 119,119,119,255, 113,113,119,255, 105,105,111,255, 137,137,126,255, 153,153,144,255, 177,178,176,255, 128,128,134,255, 131,131,137,255, 134,135,138,255, 144,144,146,255, 130,130,135,255, 131,132,130,255, 128,128,132,255, 133,134,131,255, 129,129,128,255, 132,133,132,255, 124,124,126,255, 120,120,126,255, 115,115,121,255, 131,131,135,255, 105,105,104,255, 181,181,185,255, 112,112,114,255, 192,192,195,255, 216,216,218,255, 176,176,179,255, 183,183,185,255, 136,136,139,255, 219,219,220,255, 242,242,244,255, 207,207,210,255, 157,157,160,255, 203,203,207,255, 181,181,185,255, 162,162,165,255, 114,114,117,255, 147,147,150,255, 218,218,221,255, 112,112,114,255, 192,192,195,255, 216,216,218,255, 176,176,179,255, 183,183,185,255, 175,175,178,255, 183,183,185,255, 224,224,226,255, 207,207,210,255, 157,157,160,255, 203,203,207,255, 181,181,185,255, 208,208,211,255, 147,147,150,255, 94,94,96,255, 117,100,94,255, 169,119,100,255, 169,119,100,255, 104,70,57,255, 104,70,57,255, 226,199,185,255, 212,162,139,255, 104,88,83,255, 212,162,139,255, 201,151,129,255, 159,107,88,255, 180,155,145,255, 159,107,88,255, 159,107,88,255, 219,175,154,255, 169,119,100,255, 214,185,173,255, 165,115,96,255, 165,115,96,255, 159,107,88,255, 159,107,88,255, 172,131,115,255, 159,107,88,255, 159,126,115,255, 159,107,88,255, 150,100,83,255, 159,107,88,255, 173,139,126,255, 159,107,88,255, 159,107,88,255, 165,115,96,255, 113,78,65,255, 141,195,187,255, 121,178,166,255, 66,133,116,255, 76,144,127,255, 73,138,121,255, 53,107,93,255, 129,184,172,255, 110,178,165,255, 122,183,168,255, 138,196,177,255, 63,124,101,255, 121,180,159,255, 112,176,156,255, 89,139,125,255, 134,188,178,255, 90,145,138,255, 65,84,74,255, 39,61,52,255, 40,65,54,255, 34,56,47,255, 52,70,58,255, 32,53,45,255, 39,61,52,255, 48,75,66,255, 70,94,80,255, 47,75,60,255, 38,59,48,255, 53,78,63,255, 68,89,74,255, 52,78,66,255, 42,64,57,255, 52,83,75,255, 116,183,179,255, 86,155,143,255, 89,170,151,255, 70,137,121,255, 65,126,111,255, 65,126,112,255, 88,154,142,255, 130,197,188,255, 151,207,193,255, 125,195,167,255, 82,151,120,255, 150,201,177,255, 134,193,172,255, 149,201,187,255, 100,167,158,255, 154,214,214,255, 60,51,34,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 71,61,41,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 71,61,41,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 60,51,34,255, 85,137,127,255, 199,224,218,255, 213,229,220,255, 222,234,227,255, 222,233,221,255, 229,237,229,255, 227,235,229,255, 224,233,224,255, 225,233,225,255, 226,234,228,255, 227,236,227,255, 222,234,220,255, 225,235,230,255, 213,228,223,255, 196,221,215,255, 83,136,127,255, 176,175,63,255, 101,108,79,255, 191,183,51,255, 160,156,48,255, 167,163,53,255, 160,157,58,255, 149,146,47,255, 162,157,42,255, 154,148,42,255, 154,151,54,255, 155,151,57,255, 163,157,57,255, 130,129,38,255, 161,157,47,255, 165,161,58,255, 177,179,58,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 160,86,48,255, 173,93,50,255, 186,104,59,255, 186,104,59,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 161,87,48,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 45,29,13,255, 62,41,18,255, 73,47,23,255, 73,47,23,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 192,192,192,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 204,204,204,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 192,192,192,255, 136,208,116,188, 128,206,107,188, 113,195,93,188, 127,211,110,188, 119,201,101,188, 121,198,102,188, 124,205,105,188, 104,188,85,188, 99,174,78,188, 127,201,108,188, 120,196,101,188, 125,207,106,188, 124,202,103,188, 127,207,109,188, 104,185,86,188, 102,188,80,188, 106,106,105,255, 123,124,125,255, 165,165,157,255, 131,132,130,255, 102,102,99,255, 113,113,115,255, 99,99,93,255, 172,172,163,255, 173,174,165,255, 143,143,147,255, 127,127,120,255, 106,106,108,255, 137,137,139,255, 125,125,127,255, 126,126,128,255, 102,102,102,255, 179,179,176,255, 141,142,146,255, 152,152,150,255, 131,132,133,255, 129,130,131,255, 130,131,135,255, 116,116,124,255, 131,131,131,255, 132,133,132,255, 139,139,143,255, 149,149,148,255, 133,133,139,255, 141,141,132,255, 134,135,124,255, 134,135,124,255, 97,97,96,255, 203,203,207,255, 203,203,207,255, 203,203,207,255, 198,198,200,255, 149,149,152,255, 155,155,159,255, 184,184,186,255, 222,222,224,255, 208,208,211,255, 200,200,204,255, 184,184,186,255, 158,158,162,255, 87,87,89,255, 242,242,242,255, 231,231,234,255, 158,158,162,255, 232,232,234,255, 203,203,207,255, 203,203,207,255, 198,198,200,255, 192,192,195,255, 200,200,204,255, 184,184,186,255, 222,222,224,255, 208,208,211,255, 200,200,204,255, 184,184,186,255, 203,203,207,255, 112,112,114,255, 222,222,224,255, 203,203,207,255, 130,130,133,255, 169,119,100,255, 117,100,94,255, 117,88,77,255, 232,217,210,255, 227,192,175,255, 159,107,88,255, 169,119,100,255, 94,68,58,255, 110,77,65,255, 117,88,77,255, 117,88,77,255, 180,136,119,255, 180,155,145,255, 94,68,58,255, 180,136,119,255, 180,136,119,255, 207,161,140,255, 173,139,126,255, 173,126,109,255, 179,147,134,255, 173,126,109,255, 159,107,88,255, 165,115,96,255, 114,80,67,255, 165,115,96,255, 173,126,109,255, 173,126,109,255, 173,126,109,255, 173,139,126,255, 114,80,67,255, 173,126,109,255, 118,86,74,255, 153,203,194,255, 75,140,125,255, 114,172,158,255, 89,139,125,255, 70,129,112,255, 128,184,171,255, 122,184,174,255, 115,181,170,255, 121,183,171,255, 121,183,165,255, 120,177,158,255, 89,139,124,255, 82,136,121,255, 123,179,165,255, 133,187,174,255, 85,141,131,255, 86,123,111,255, 65,91,79,255, 67,94,82,255, 71,92,78,255, 78,107,93,255, 71,99,88,255, 87,126,115,255, 68,92,81,255, 87,124,112,255, 87,124,107,255, 70,98,83,255, 71,92,78,255, 85,116,103,255, 67,95,83,255, 92,129,115,255, 68,92,82,255, 145,203,197,255, 69,130,117,255, 72,141,123,255, 150,201,187,255, 105,178,157,255, 86,154,140,255, 151,208,205,255, 139,202,197,255, 149,207,199,255, 149,207,188,255, 84,152,124,255, 150,201,183,255, 134,193,177,255, 74,143,125,255, 170,214,205,255, 141,204,200,255, 60,51,34,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 71,61,41,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 71,61,41,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 60,51,34,255, 87,139,128,255, 202,225,219,255, 215,231,222,255, 224,234,228,255, 223,233,222,255, 226,235,226,255, 226,235,230,255, 223,232,223,255, 226,234,226,255, 227,236,229,255, 227,237,227,255, 224,235,223,255, 224,235,229,255, 213,229,223,255, 191,214,208,255, 83,137,124,255, 182,182,72,255, 176,171,57,255, 165,158,43,255, 163,159,45,255, 160,159,54,255, 155,151,51,255, 150,146,46,255, 88,96,78,255, 173,169,53,255, 134,131,48,255, 87,97,80,255, 151,147,51,255, 141,138,43,255, 155,147,51,255, 173,170,61,255, 177,179,73,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,104,59,255, 186,99,55,255, 186,99,55,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 160,86,48,255, 186,104,59,255, 173,93,50,255, 173,93,50,255, 161,87,48,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 73,47,23,255, 70,45,21,255, 70,45,21,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 45,29,13,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 192,192,192,255, 204,204,204,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 199,199,199,255, 205,205,205,255, 204,204,204,255, 198,198,198,255, 197,197,197,255, 197,197,197,255, 193,193,193,255, 199,199,199,255, 204,204,204,255, 204,204,204,255, 192,192,192,255, 133,208,114,188, 130,208,108,188, 128,204,109,188, 129,203,114,188, 124,203,108,188, 128,209,108,188, 129,206,110,188, 127,206,111,188, 117,192,100,188, 129,205,110,188, 136,205,111,188, 113,199,98,188, 131,212,115,188, 135,206,111,188, 106,187,86,188, 104,180,83,188, 172,173,164,255, 125,125,135,255, 108,108,110,255, 105,105,112,255, 162,162,167,255, 175,177,177,255, 167,167,170,255, 112,112,118,255, 132,132,138,255, 126,128,130,255, 170,171,170,255, 129,129,131,255, 107,107,107,255, 141,141,139,255, 128,128,128,255, 151,152,153,255, 177,178,172,255, 128,128,136,255, 130,130,135,255, 128,128,136,255, 125,125,134,255, 133,134,140,255, 128,128,135,255, 129,129,137,255, 132,132,138,255, 128,129,133,255, 130,131,135,255, 130,130,134,255, 129,129,132,255, 137,137,139,255, 144,144,148,255, 89,89,89,255, 158,158,162,255, 208,208,210,255, 180,180,180,255, 122,122,125,255, 207,207,209,255, 219,219,222,255, 103,103,104,255, 158,158,162,255, 192,192,195,255, 111,111,113,255, 103,103,104,255, 237,237,238,255, 237,237,238,255, 157,157,160,255, 192,192,195,255, 203,203,207,255, 232,232,234,255, 208,208,210,255, 231,231,231,255, 157,157,160,255, 167,167,169,255, 184,184,187,255, 132,132,134,255, 203,203,207,255, 192,192,195,255, 143,143,145,255, 132,132,134,255, 213,213,215,255, 213,213,215,255, 157,157,160,255, 192,192,195,255, 130,130,133,255, 180,155,145,255, 212,162,139,255, 159,107,88,255, 81,56,46,255, 104,70,57,255, 159,107,88,255, 159,107,88,255, 110,77,65,255, 201,151,129,255, 227,209,201,255, 130,93,78,255, 104,70,57,255, 159,107,88,255, 159,107,88,255, 180,136,119,255, 180,155,145,255, 214,185,173,255, 159,107,88,255, 159,107,88,255, 135,93,77,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 165,115,96,255, 150,100,83,255, 173,139,126,255, 139,97,81,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 173,126,109,255, 118,94,86,255, 133,187,177,255, 76,141,125,255, 78,143,127,255, 129,188,170,255, 142,195,178,255, 81,147,129,255, 101,169,153,255, 99,171,157,255, 91,160,146,255, 85,154,136,255, 79,148,129,255, 129,188,172,255, 120,173,160,255, 76,142,126,255, 112,176,159,255, 83,137,125,255, 75,103,91,255, 47,77,68,255, 48,78,68,255, 43,67,56,255, 80,112,94,255, 50,80,70,255, 63,97,87,255, 45,69,61,255, 75,103,92,255, 53,85,75,255, 49,81,70,255, 43,67,57,255, 64,90,77,255, 47,77,68,255, 68,104,93,255, 50,75,65,255, 96,164,154,255, 70,131,117,255, 73,135,121,255, 103,176,152,255, 117,184,156,255, 79,143,124,255, 115,182,167,255, 110,185,174,255, 97,165,154,255, 85,154,136,255, 75,144,124,255, 103,176,157,255, 67,128,114,255, 70,133,119,255, 134,193,178,255, 136,196,184,255, 60,51,34,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 60,51,34,255, 82,133,122,255, 183,215,206,255, 214,229,221,255, 222,234,227,255, 222,232,220,255, 228,236,228,255, 227,235,227,255, 225,234,228,255, 226,234,229,255, 228,237,228,255, 229,236,229,255, 222,231,219,255, 222,233,228,255, 214,230,224,255, 172,205,197,255, 83,136,123,255, 185,182,62,255, 168,166,61,255, 161,157,46,255, 86,96,79,255, 160,159,40,255, 153,149,53,255, 163,159,61,255, 150,147,58,255, 155,151,53,255, 91,99,72,255, 138,135,46,255, 153,150,49,255, 171,167,53,255, 89,97,77,255, 104,112,80,255, 162,161,64,255, 186,104,59,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 186,104,59,255, 186,104,59,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 186,99,55,255, 161,87,48,255, 73,47,23,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 70,45,21,255, 62,41,18,255, 192,192,192,255, 205,205,205,255, 199,199,199,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,212,212,255, 205,205,205,255, 204,204,204,255, 197,197,197,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 214,214,214,255, 205,205,205,255, 192,192,192,255, 105,186,85,188, 104,186,83,188, 125,204,106,188, 139,211,113,188, 121,202,103,188, 133,214,113,188, 124,208,104,188, 127,205,104,188, 118,204,99,188, 130,209,111,188, 130,208,110,188, 123,200,104,188, 126,208,105,188, 124,210,103,188, 104,188,81,188, 107,191,86,188, 136,136,128,255, 134,134,137,255, 147,147,155,255, 161,162,153,255, 123,121,121,255, 127,127,121,255, 147,148,155,255, 123,123,121,255, 108,108,114,255, 113,113,106,255, 135,135,126,255, 97,97,105,255, 130,130,136,255, 112,112,118,255, 165,165,164,255, 125,125,129,255, 180,180,172,255, 145,145,151,255, 116,116,126,255, 124,125,125,255, 126,125,127,255, 129,129,127,255, 141,142,148,255, 146,146,148,255, 117,117,123,255, 116,116,122,255, 129,129,135,255, 110,110,117,255, 131,131,137,255, 129,129,137,255, 127,127,132,255, 96,96,94,255, 181,181,185,255, 158,158,162,255, 234,234,235,255, 231,231,234,255, 218,218,220,255, 208,208,210,255, 203,203,207,255, 203,203,207,255, 153,153,156,255, 200,200,202,255, 227,227,228,255, 205,205,209,255, 205,205,209,255, 157,157,160,255, 192,192,195,255, 157,157,160,255, 218,218,221,255, 203,203,207,255, 208,208,210,255, 203,203,207,255, 218,218,220,255, 208,208,210,255, 203,203,207,255, 203,203,207,255, 197,197,200,255, 158,158,160,255, 227,227,228,255, 205,205,209,255, 205,205,209,255, 157,157,160,255, 192,192,195,255, 100,100,102,255, 169,119,100,255, 130,93,78,255, 180,136,119,255, 159,107,88,255, 159,107,88,255, 88,65,56,255, 117,88,77,255, 104,70,57,255, 146,98,81,255, 159,107,88,255, 180,136,119,255, 117,100,94,255, 180,136,119,255, 169,119,100,255, 130,93,78,255, 169,119,100,255, 207,161,140,255, 139,97,81,255, 173,126,109,255, 159,107,88,255, 159,107,88,255, 143,102,87,255, 173,126,109,255, 159,107,88,255, 150,100,83,255, 159,107,88,255, 173,126,109,255, 173,139,126,255, 173,126,109,255, 165,115,96,255, 139,97,81,255, 113,78,65,255, 165,207,197,255, 133,187,175,255, 95,161,149,255, 72,131,115,255, 120,173,158,255, 82,152,123,255, 92,153,121,255, 83,149,125,255, 78,147,129,255, 121,180,165,255, 121,180,164,255, 89,139,126,255, 131,187,174,255, 121,181,168,255, 81,152,134,255, 58,117,102,255, 92,129,115,255, 76,118,106,255, 61,91,84,255, 44,69,58,255, 64,90,76,255, 51,83,67,255, 57,85,67,255, 37,59,47,255, 67,95,83,255, 71,109,97,255, 71,109,97,255, 52,78,66,255, 73,103,91,255, 71,111,99,255, 50,84,74,255, 36,59,50,255, 172,214,204,255, 170,214,206,255, 104,167,160,255, 109,181,163,255, 66,129,106,255, 81,151,113,255, 98,153,110,255, 82,146,118,255, 74,143,125,255, 149,201,189,255, 149,201,187,255, 149,201,188,255, 91,163,148,255, 149,203,194,255, 78,151,134,255, 76,149,131,255, 60,51,34,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 71,61,41,255, 60,51,34,255, 92,139,129,255, 172,200,194,255, 206,224,220,255, 221,232,226,255, 221,232,220,255, 223,232,221,255, 228,236,228,255, 229,237,229,255, 227,235,227,255, 228,236,228,255, 222,233,219,255, 223,233,222,255, 223,234,228,255, 209,227,220,255, 179,213,203,255, 74,128,114,255, 186,187,78,255, 175,176,71,255, 158,154,51,255, 179,174,47,255, 151,148,55,255, 160,156,42,255, 80,91,80,255, 164,160,52,255, 183,178,57,255, 156,152,54,255, 179,174,51,255, 174,170,50,255, 154,148,48,255, 196,192,53,255, 149,146,55,255, 184,183,64,255, 143,76,42,255, 136,71,40,255, 143,76,42,255, 143,76,42,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 136,71,40,255, 136,71,40,255, 136,71,40,255, 143,76,42,255, 45,29,13,255, 41,26,12,255, 45,29,13,255, 45,29,13,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 41,26,12,255, 41,26,12,255, 41,26,12,255, 45,29,13,255, 188,188,188,255, 198,198,198,255, 193,193,193,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,207,207,255, 199,199,199,255, 204,204,204,255, 193,193,193,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 205,205,205,255, 198,198,198,255, 188,188,188,255, 110,186,90,188, 104,187,81,188, 132,211,113,188, 128,202,105,188, 128,209,103,188, 129,207,107,188, 129,208,109,188, 127,209,107,188, 108,192,87,188, 109,186,90,188, 121,204,98,188, 124,201,105,188, 127,211,106,188, 127,199,108,188, 126,209,107,188, 120,204,102,188, 108,108,112,255, 181,181,183,255, 123,123,127,255, 131,131,137,255, 112,112,120,255, 131,131,139,255, 104,104,107,255, 165,166,166,255, 128,128,134,255, 120,120,126,255, 125,125,127,255, 135,134,136,255, 164,165,159,255, 153,153,144,255, 115,115,104,255, 125,125,129,255, 187,187,174,255, 144,144,137,255, 133,133,123,255, 131,131,137,255, 119,119,127,255, 131,131,139,255, 131,131,137,255, 127,128,133,255, 129,129,135,255, 124,124,130,255, 128,128,131,255, 134,133,137,255, 152,152,151,255, 141,142,146,255, 128,128,132,255, 96,96,94,255, 112,112,114,255, 158,158,162,255, 132,132,134,255, 184,184,186,255, 203,203,207,255, 203,203,207,255, 157,157,160,255, 192,192,195,255, 218,218,220,255, 162,162,164,255, 158,158,162,255, 158,158,162,255, 112,112,114,255, 181,181,185,255, 203,203,207,255, 192,192,195,255, 156,156,158,255, 203,203,207,255, 132,132,134,255, 184,184,186,255, 203,203,207,255, 203,203,207,255, 157,157,160,255, 192,192,195,255, 218,218,220,255, 208,208,210,255, 203,203,207,255, 203,203,207,255, 112,112,114,255, 181,181,185,255, 203,203,207,255, 123,123,125,255, 146,98,81,255, 169,119,100,255, 117,100,94,255, 110,77,65,255, 81,56,46,255, 219,175,154,255, 219,175,154,255, 169,119,100,255, 117,88,77,255, 180,136,119,255, 169,119,100,255, 169,119,100,255, 61,44,37,255, 117,88,77,255, 117,88,77,255, 146,98,81,255, 195,145,124,255, 165,115,96,255, 173,139,126,255, 165,115,96,255, 135,93,77,255, 165,115,96,255, 165,115,96,255, 165,115,96,255, 173,126,109,255, 173,126,109,255, 165,115,96,255, 165,115,96,255, 114,80,67,255, 173,126,109,255, 173,126,109,255, 103,68,56,255, 146,198,185,255, 111,176,162,255, 95,162,150,255, 64,121,105,255, 125,182,163,255, 118,178,154,255, 129,181,154,255, 106,169,136,255, 88,155,136,255, 98,164,151,255, 104,173,152,255, 62,121,103,255, 133,186,176,255, 107,176,163,255, 107,173,158,255, 58,117,102,255, 67,88,76,255, 49,75,65,255, 43,65,57,255, 40,62,52,255, 57,76,62,255, 51,77,61,255, 55,79,60,255, 48,69,53,255, 59,78,65,255, 45,65,59,255, 46,72,59,255, 39,61,50,255, 61,78,67,255, 47,73,65,255, 47,72,62,255, 36,59,50,255, 129,190,176,255, 132,194,183,255, 103,169,161,255, 91,159,140,255, 79,152,120,255, 144,197,168,255, 164,203,169,255, 123,182,137,255, 92,157,137,255, 109,173,164,255, 119,189,166,255, 86,158,135,255, 96,160,151,255, 125,193,185,255, 125,188,175,255, 76,149,131,255, 60,51,34,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 139,154,177,255, 151,167,189,255, 53,67,89,255, 60,51,34,255, 86,139,128,255, 173,205,198,255, 201,224,218,255, 216,229,223,255, 219,232,225,255, 223,233,222,255, 222,233,220,255, 221,234,220,255, 224,234,222,255, 223,233,220,255, 222,232,221,255, 223,234,225,255, 218,232,228,255, 214,228,222,255, 172,204,196,255, 74,129,117,255, 103,113,89,255, 185,183,65,255, 163,161,58,255, 178,174,57,255, 155,154,49,255, 151,150,49,255, 165,158,47,255, 160,156,54,255, 157,153,51,255, 151,147,51,255, 155,147,51,255, 82,92,80,255, 161,157,53,255, 158,155,62,255, 192,191,69,255, 187,187,78,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 173,93,50,255, 186,104,59,255, 161,87,48,255, 173,93,50,255, 160,86,48,255, 173,93,50,255, 173,93,50,255, 186,99,55,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 45,29,13,255, 62,41,18,255, 62,41,18,255, 70,45,21,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 193,193,193,255, 205,205,205,255, 199,199,199,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 212,212,212,255, 205,205,205,255, 205,205,205,255, 197,197,197,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 207,207,207,255, 205,205,205,255, 193,193,193,255, 117,192,102,188, 130,204,112,188, 128,204,110,188, 119,203,98,188, 100,184,81,188, 108,185,86,188, 134,215,114,188, 126,207,103,188, 100,179,83,188, 106,183,87,188, 130,204,111,188, 103,183,83,188, 108,188,88,188, 129,206,108,188, 128,202,109,188, 123,206,106,188, 172,173,153,255, 97,97,86,255, 165,165,157,255, 152,152,162,255, 135,135,135,255, 133,132,134,255, 128,128,124,255, 155,155,155,255, 150,150,150,255, 153,153,151,255, 127,128,131,255, 121,121,125,255, 128,128,132,255, 131,131,133,255, 161,161,159,255, 105,105,105,255, 174,174,169,255, 118,118,120,255, 152,152,150,255, 144,144,153,255, 134,134,136,255, 133,132,135,255, 150,150,151,255, 146,146,148,255, 143,143,145,255, 145,145,146,255, 129,129,134,255, 125,125,130,255, 129,129,134,255, 131,131,135,255, 155,155,145,255, 100,101,89,255, 173,173,175,255, 158,158,162,255, 184,184,187,255, 204,204,208,255, 147,147,150,255, 213,213,215,255, 162,162,165,255, 149,149,152,255, 158,158,162,255, 224,224,227,255, 199,199,202,255, 224,224,227,255, 149,149,152,255, 158,158,162,255, 232,232,233,255, 208,208,211,255, 242,242,243,255, 203,203,207,255, 184,184,187,255, 204,204,208,255, 147,147,150,255, 213,213,215,255, 162,162,165,255, 192,192,195,255, 203,203,207,255, 192,192,195,255, 157,157,160,255, 192,192,195,255, 192,192,195,255, 203,203,207,255, 232,232,233,255, 134,134,135,255, 110,77,65,255, 81,56,46,255, 212,162,139,255, 212,162,139,255, 180,155,145,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 117,88,77,255, 180,155,145,255, 159,107,88,255, 104,70,57,255, 212,162,139,255, 212,162,139,255, 159,107,88,255, 110,77,65,255, 207,161,140,255, 135,93,77,255, 159,107,88,255, 159,107,88,255, 173,139,126,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 173,126,109,255, 173,139,126,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 113,78,65,255, 125,182,168,255, 74,138,123,255, 133,187,174,255, 83,138,125,255, 125,180,161,255, 95,165,135,255, 123,179,149,255, 119,178,147,255, 124,184,166,255, 121,184,172,255, 93,159,138,255, 57,111,92,255, 155,203,191,255, 108,177,165,255, 101,170,155,255, 56,113,99,255, 68,98,86,255, 64,90,78,255, 92,129,115,255, 68,92,78,255, 68,96,80,255, 77,106,88,255, 89,121,96,255, 69,92,70,255, 88,125,108,255, 87,125,113,255, 77,103,89,255, 55,71,59,255, 87,123,108,255, 82,117,106,255, 79,111,99,255, 55,73,62,255, 77,150,132,255, 66,127,113,255, 170,214,205,255, 136,199,187,255, 78,145,116,255, 103,175,135,255, 154,199,160,255, 146,198,157,255, 155,208,190,255, 149,208,200,255, 100,164,141,255, 73,136,110,255, 149,203,190,255, 127,195,189,255, 114,184,171,255, 72,141,124,255, 60,51,34,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 71,61,41,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 71,61,41,255, 139,154,177,255, 165,179,199,255, 165,179,199,255, 176,189,206,255, 60,51,34,255, 80,133,121,255, 145,191,180,255, 192,214,208,255, 199,222,215,255, 215,230,225,255, 220,232,225,255, 224,234,229,255, 224,234,228,255, 223,233,227,255, 223,234,229,255, 222,233,227,255, 220,232,229,255, 210,226,220,255, 196,219,214,255, 142,188,177,255, 74,127,115,255, 117,129,84,255, 215,214,88,255, 175,172,65,255, 93,102,78,255, 135,132,51,255, 155,151,49,255, 155,151,51,255, 178,174,56,255, 88,96,76,255, 135,132,51,255, 156,152,54,255, 155,151,49,255, 163,156,54,255, 129,139,88,255, 110,120,83,255, 203,204,81,255, 186,99,55,255, 173,93,50,255, 160,86,48,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 161,87,48,255, 186,104,59,255, 186,99,55,255, 186,99,55,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,99,55,255, 70,45,21,255, 62,41,18,255, 45,29,13,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 73,47,23,255, 70,45,21,255, 70,45,21,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 70,45,21,255, 193,193,193,255, 204,204,204,255, 199,199,199,255, 214,214,214,255, 214,214,214,255, 214,214,214,255, 212,212,212,255, 204,204,204,255, 199,199,199,255, 205,205,205,255, 214,214,214,255, 212,212,212,255, 212,212,212,255, 212,212,212,255, 204,204,204,255, 193,193,193,255, 123,204,103,188, 129,208,108,188, 125,199,107,188, 119,208,101,188, 109,193,88,188, 100,182,80,188, 123,207,102,188, 134,203,115,188, 123,204,103,188, 121,198,103,188, 123,207,101,188, 104,185,84,188, 111,192,89,188, 126,195,102,188, 116,197,97,188, 123,196,102,188, 177,177,177,255, 128,128,138,255, 95,96,98,255, 131,131,131,255, 132,131,128,255, 132,132,134,255, 123,125,127,255, 108,108,108,255, 113,113,118,255, 133,133,135,255, 110,110,116,255, 136,137,138,255, 119,119,117,255, 100,100,100,255, 120,120,120,255, 89,89,93,255, 180,180,179,255, 129,129,138,255, 124,125,130,255, 137,137,127,255, 138,137,125,255, 138,138,128,255, 126,128,131,255, 130,130,134,255, 131,131,137,255, 133,133,136,255, 118,118,124,255, 134,135,138,255, 143,143,145,255, 128,128,132,255, 124,124,127,255, 89,89,91,255, 234,234,236,255, 224,224,227,255, 130,130,132,255, 170,170,172,255, 123,123,125,255, 226,226,227,255, 139,139,142,255, 213,213,215,255, 231,231,234,255, 192,192,195,255, 157,157,160,255, 157,157,160,255, 157,157,160,255, 203,203,207,255, 143,143,145,255, 155,155,159,255, 234,234,236,255, 192,192,195,255, 167,167,169,255, 218,218,220,255, 158,158,160,255, 226,226,227,255, 179,179,182,255, 175,175,178,255, 203,203,207,255, 192,192,195,255, 157,157,160,255, 157,157,160,255, 157,157,160,255, 203,203,207,255, 184,184,186,255, 128,128,131,255, 219,175,154,255, 180,136,119,255, 88,71,65,255, 180,136,119,255, 94,68,58,255, 180,136,119,255, 169,119,100,255, 159,136,128,255, 159,107,88,255, 104,70,57,255, 77,53,44,255, 212,162,139,255, 169,119,100,255, 169,119,100,255, 117,100,94,255, 227,192,175,255, 207,161,140,255, 173,126,109,255, 143,109,96,255, 173,126,109,255, 114,80,67,255, 173,126,109,255, 165,115,96,255, 159,126,115,255, 159,107,88,255, 159,107,88,255, 131,90,75,255, 159,107,88,255, 165,115,96,255, 165,115,96,255, 173,139,126,255, 118,86,74,255, 120,173,160,255, 119,179,164,255, 104,171,154,255, 74,132,117,255, 122,178,163,255, 79,151,126,255, 81,145,120,255, 104,168,140,255, 102,168,134,255, 105,173,154,255, 99,170,152,255, 59,118,102,255, 155,202,190,255, 93,163,149,255, 91,161,147,255, 57,113,99,255, 64,90,77,255, 71,107,96,255, 65,99,88,255, 45,69,59,255, 67,94,80,255, 50,84,69,255, 50,80,66,255, 47,68,54,255, 81,109,89,255, 65,101,89,255, 62,98,87,255, 37,60,50,255, 87,121,107,255, 59,91,83,255, 58,90,82,255, 35,57,48,255, 66,129,114,255, 146,199,186,255, 120,185,169,255, 114,183,167,255, 72,141,120,255, 76,149,119,255, 79,139,109,255, 119,179,144,255, 116,179,134,255, 121,188,168,255, 110,183,165,255, 79,152,131,255, 149,201,189,255, 100,170,160,255, 97,168,156,255, 74,141,126,255, 60,51,34,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 71,61,41,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 71,61,41,255, 151,167,189,255, 165,179,199,255, 176,189,206,255, 195,204,217,255, 60,51,34,255, 79,129,117,255, 115,172,158,255, 142,187,175,255, 195,219,214,255, 198,224,217,255, 212,228,221,255, 212,228,222,255, 212,227,221,255, 213,229,223,255, 212,227,221,255, 210,228,223,255, 214,229,222,255, 191,216,211,255, 145,190,180,255, 116,172,159,255, 74,126,116,255, 204,204,81,255, 205,204,67,255, 186,180,78,255, 162,161,62,255, 150,146,54,255, 175,169,53,255, 155,152,49,255, 93,102,77,255, 147,141,46,255, 163,160,59,255, 137,132,50,255, 162,160,58,255, 179,178,64,255, 184,183,81,255, 187,187,78,255, 186,186,82,255, 186,104,59,255, 186,104,59,255, 173,93,50,255, 173,93,50,255, 173,93,50,255, 186,104,59,255, 186,104,59,255, 161,87,48,255, 186,104,59,255, 186,104,59,255, 173,93,50,255, 186,99,55,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 186,104,59,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 62,41,18,255, 62,41,18,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 73,47,23,255, 73,47,23,255, 62,41,18,255, 70,45,21,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 193,193,193,255, 205,205,205,255, 204,204,204,255, 204,204,204,255, 204,204,204,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 204,204,204,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 205,205,205,255, 193,193,193,255, 131,212,111,188, 124,199,107,188, 135,210,116,188, 125,198,105,188, 100,183,79,188, 108,187,89,188, 130,212,111,188, 122,205,104,188, 131,205,115,188, 131,210,114,188, 133,214,112,188, 116,205,100,188, 128,210,108,188, 123,200,106,188, 98,174,81,188, 99,180,81,188, 130,130,126,255, 125,126,120,255, 123,123,121,255, 117,117,124,255, 104,104,102,255, 99,99,107,255, 88,88,81,255, 173,173,174,255, 193,193,189,255, 128,128,130,255, 105,105,107,255, 107,107,108,255, 163,163,168,255, 177,177,176,255, 109,109,116,255, 170,170,175,255, 177,177,170,255, 128,128,127,255, 126,126,127,255, 141,141,151,255, 131,131,134,255, 111,111,119,255, 115,115,121,255, 132,132,138,255, 145,145,148,255, 141,141,146,255, 128,128,132,255, 134,134,139,255, 126,126,134,255, 134,134,140,255, 135,135,145,255, 97,97,99,255, 203,203,207,255, 192,192,195,255, 181,181,182,255, 213,213,215,255, 181,181,185,255, 158,158,162,255, 213,213,215,255, 175,175,178,255, 208,208,210,255, 221,221,223,255, 209,209,212,255, 203,203,207,255, 208,208,210,255, 164,164,167,255, 148,148,149,255, 219,219,221,255, 232,232,234,255, 192,192,195,255, 137,137,138,255, 175,175,178,255, 181,181,185,255, 203,203,207,255, 175,175,178,255, 175,175,178,255, 208,208,210,255, 221,221,223,255, 209,209,212,255, 203,203,207,255, 208,208,210,255, 211,211,214,255, 105,105,106,255, 118,118,120,255, 169,119,100,255, 169,119,100,255, 169,145,136,255, 104,70,57,255, 104,70,57,255, 104,70,57,255, 180,155,145,255, 104,70,57,255, 61,44,37,255, 219,175,154,255, 227,192,175,255, 180,136,119,255, 169,119,100,255, 104,88,83,255, 212,162,139,255, 169,119,100,255, 207,161,140,255, 165,115,96,255, 165,132,120,255, 159,107,88,255, 159,107,88,255, 159,107,88,255, 173,139,126,255, 159,107,88,255, 114,80,67,255, 165,115,96,255, 173,126,109,255, 173,126,109,255, 165,115,96,255, 159,126,115,255, 159,107,88,255, 113,78,65,255, 120,173,160,255, 74,139,123,255, 117,178,161,255, 56,113,97,255, 153,201,188,255, 118,178,161,255, 94,166,146,255, 83,151,132,255, 81,149,128,255, 79,148,130,255, 95,166,148,255, 58,117,102,255, 127,186,172,255, 78,146,130,255, 78,146,130,255, 89,139,126,255, 64,90,77,255, 45,75,65,255, 69,107,94,255, 35,57,46,255, 87,120,105,255, 70,108,95,255, 59,93,82,255, 38,59,50,255, 68,96,82,255, 49,81,71,255, 60,94,83,255, 36,59,50,255, 70,102,89,255, 48,80,71,255, 48,80,71,255, 52,78,66,255, 66,129,114,255, 66,129,114,255, 142,197,182,255, 72,141,121,255, 144,197,182,255, 144,197,181,255, 101,176,155,255, 82,150,130,255, 78,146,123,255, 75,144,126,255, 104,177,159,255, 77,150,132,255, 82,161,142,255, 74,141,127,255, 74,141,127,255, 149,201,188,255, 60,51,34,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 71,61,41,255, 53,67,89,255, 176,189,206,255, 195,204,217,255, 53,67,89,255, 60,51,34,255, 78,131,119,255, 83,134,122,255, 116,171,157,255, 145,191,181,255, 131,179,167,255, 132,180,169,255, 177,212,202,255, 197,222,214,255, 199,223,217,255, 183,215,205,255, 175,208,199,255, 180,214,204,255, 143,189,178,255, 119,174,161,255, 82,136,123,255, 83,134,122,255, 189,189,80,255, 186,182,82,255, 115,127,92,255, 163,162,58,255, 199,198,74,255, 155,154,60,255, 183,178,70,255, 169,164,62,255, 177,175,71,255, 160,159,61,255, 189,188,74,255, 182,181,63,255, 105,118,83,255, 210,206,83,255, 190,190,77,255, 183,183,76,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 151,78,44,255, 136,71,40,255, 136,71,40,255, 151,78,44,255, 136,71,40,255, 143,76,42,255, 143,76,42,255, 143,76,42,255, 136,71,40,255, 123,65,38,255, 136,71,40,255, 136,71,40,255, 143,76,42,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 48,30,14,255, 41,26,12,255, 41,26,12,255, 48,30,14,255, 41,26,12,255, 45,29,13,255, 45,29,13,255, 45,29,13,255, 41,26,12,255, 30,19,9,255, 41,26,12,255, 41,26,12,255, 45,29,13,255, 188,188,188,255, 188,188,188,255, 188,188,188,255, 189,189,189,255, 187,187,187,255, 187,187,187,255, 189,189,189,255, 187,187,187,255, 188,188,188,255, 188,188,188,255, 188,188,188,255, 187,187,187,255, 186,186,186,255, 187,187,187,255, 187,187,187,255, 188,188,188,255, 126,203,105,188, 127,209,109,188, 133,205,117,188, 119,200,101,188, 126,207,106,188, 123,196,106,188, 128,213,111,188, 128,205,109,188, 128,202,109,188, 127,198,108,188, 122,207,106,188, 126,199,105,188, 131,207,110,188, 125,200,106,188, 99,177,81,188, 100,187,82,188, 142,142,142,255, 148,148,150,255, 106,106,110,255, 177,177,176,255, 177,177,158,255, 104,105,97,255, 171,171,174,255, 133,133,139,255, 126,126,132,255, 152,152,154,255, 178,178,173,255, 134,133,128,255, 112,112,120,255, 124,125,123,255, 101,101,92,255, 121,120,126,255, 138,138,140,255, 106,106,104,255, 100,100,100,255, 100,100,100,255, 97,97,94,255, 95,95,96,255, 98,98,99,255, 100,100,99,255, 96,96,96,255, 89,89,89,255, 105,105,93,255, 104,104,90,255, 94,94,85,255, 100,100,87,255, 96,96,90,255, 93,92,93,255, 203,203,207,255, 203,203,207,255, 175,175,178,255, 175,175,178,255, 112,112,114,255, 203,203,207,255, 158,158,162,255, 87,87,89,255, 182,182,185,255, 213,213,215,255, 209,209,212,255, 112,112,114,255, 182,182,185,255, 197,197,200,255, 122,122,125,255, 158,158,162,255, 175,175,179,255, 130,130,133,255, 112,112,114,255, 112,112,114,255, 71,71,73,255, 130,130,133,255, 130,130,133,255, 71,71,73,255, 116,116,119,255, 137,137,138,255, 134,134,136,255, 71,71,73,255, 116,116,119,255, 127,127,128,255, 100,100,102,255, 130,130,133,255, 94,68,58,255, 159,107,88,255, 159,107,88,255, 125,87,72,255, 146,98,81,255, 180,136,119,255, 117,88,77,255, 219,175,154,255, 219,175,154,255, 169,119,100,255, 180,155,145,255, 159,107,88,255, 125,87,72,255, 104,70,57,255, 169,119,100,255, 169,119,100,255, 100,70,59,255, 109,73,60,255, 109,73,60,255, 92,63,52,255, 103,68,56,255, 118,86,74,255, 118,86,74,255, 113,78,65,255, 113,78,65,255, 113,78,65,255, 118,94,86,255, 109,73,60,255, 92,63,52,255, 109,73,60,255, 113,78,65,255, 113,78,65,255, 100,152,139,255, 55,110,95,255, 56,113,97,255, 56,113,93,255, 69,128,111,255, 57,114,99,255, 60,119,104,255, 56,113,99,255, 56,113,99,255, 69,128,113,255, 54,108,94,255, 89,139,126,255, 89,139,126,255, 56,111,97,255, 89,139,126,255, 70,129,114,255, 64,83,71,255, 33,55,46,255, 35,57,46,255, 35,57,45,255, 62,82,69,255, 35,57,48,255, 37,60,51,255, 35,57,48,255, 55,73,62,255, 43,67,57,255, 32,53,44,255, 52,78,66,255, 70,92,78,255, 34,56,47,255, 53,78,67,255, 43,67,57,255, 109,180,163,255, 69,134,118,255, 72,141,121,255, 72,141,112,255, 103,176,152,255, 74,143,125,255, 80,155,137,255, 72,141,124,255, 72,141,124,255, 103,176,158,255, 66,129,114,255, 149,201,189,255, 149,201,189,255, 70,137,121,255, 150,201,188,255, 105,178,160,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 60,51,34,255, 83,135,125,255, 74,126,114,255, 74,126,113,255, 74,128,113,255, 78,133,117,255, 74,128,115,255, 73,129,117,255, 74,127,116,255, 74,128,115,255, 77,131,119,255, 73,126,113,255, 83,135,123,255, 83,137,125,255, 74,128,114,255, 84,137,126,255, 79,133,121,255, 206,203,92,255, 187,187,74,255, 176,176,69,255, 184,184,70,255, 118,131,89,255, 191,186,82,255, 185,185,76,255, 186,183,75,255, 213,213,94,255, 208,208,85,255, 205,202,71,255, 198,198,83,255, 201,200,83,255, 186,186,82,255, 189,189,80,255, 122,134,91,255, 111,111,111,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 128,94,54,255, 128,94,54,255, 73,56,36,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 162,162,162,255, 140,140,140,255, 128,94,54,255, 128,94,54,255, 58,44,28,255, 87,72,54,255, 138,107,70,255, 131,101,70,255, 87,72,54,255, 138,107,70,255, 138,107,70,255, 87,72,54,255, 114,93,64,255, 138,107,70,255, 83,67,51,255, 138,107,70,255, 114,93,64,255, 87,72,54,255, 138,107,70,255, 138,107,70,255, 87,72,54,255, 91,62,31,255, 207,195,133,255, 184,171,121,255, 246,242,223,255, 245,241,223,255, 232,228,212,255, 250,246,227,255, 247,243,225,255, 250,246,227,255, 250,246,227,255, 233,229,213,255, 247,243,225,255, 247,243,225,255, 225,217,171,255, 202,190,122,255, 149,133,89,255, 219,210,161,255, 219,210,161,255, 211,200,138,255, 217,208,156,255, 219,210,159,255, 219,210,159,255, 219,210,159,255, 219,210,161,255, 217,208,156,255, 218,209,159,255, 219,210,159,255, 215,205,148,255, 216,207,153,255, 217,208,156,255, 219,210,161,255, 191,179,132,255, 111,111,111,255, 184,135,100,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 114,80,53,255, 184,135,100,255, 177,128,92,255, 184,135,100,255, 114,80,53,255, 184,135,100,255, 159,113,74,255, 118,87,64,255, 206,161,130,255, 206,161,130,255, 194,148,116,255, 206,161,130,255, 178,135,105,255, 206,161,130,255, 206,161,130,255, 194,148,116,255, 178,135,105,255, 206,161,130,255, 194,148,116,255, 206,161,130,255, 178,135,105,255, 206,161,130,255, 194,148,116,255, 158,115,86,255, 111,111,111,255, 174,93,52,255, 131,70,39,255, 122,64,35,255, 134,71,39,255, 159,85,47,255, 125,67,37,255, 127,67,38,255, 138,73,40,255, 172,91,50,255, 137,73,40,255, 139,74,41,255, 114,60,34,255, 172,91,50,255, 86,86,86,255, 145,77,42,255, 195,119,81,255, 195,119,81,255, 186,115,79,255, 175,109,75,255, 183,113,78,255, 187,115,79,255, 195,119,81,255, 187,115,79,255, 187,115,79,255, 195,119,81,255, 195,119,81,255, 191,118,80,255, 195,119,81,255, 195,119,81,255, 175,109,75,255, 156,83,46,255, 111,111,111,255, 73,47,23,255, 66,43,21,255, 65,42,21,255, 67,43,21,255, 70,45,22,255, 66,42,21,255, 70,45,22,255, 64,41,20,255, 65,42,20,255, 73,47,23,255, 224,201,0,255, 72,46,23,255, 71,46,22,255, 70,45,22,255, 47,30,14,255, 90,66,44,255, 83,62,43,255, 77,58,40,255, 88,65,43,255, 87,64,43,255, 89,65,44,255, 90,66,44,255, 84,62,43,255, 83,62,43,255, 90,66,44,255, 89,65,44,255, 90,66,44,255, 90,66,44,255, 90,66,44,255, 90,66,44,255, 55,35,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 238,238,238,255, 0,0,0,0, 242,227,201,255, 242,222,201,255, 242,227,201,255, 242,222,201,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 130,103,130,255, 87,46,87,255, 75,37,75,255, 73,34,73,255, 91,51,91,255, 87,46,87,255, 87,46,87,255, 127,100,127,255, 120,89,120,255, 123,97,123,255, 100,57,100,255, 83,43,83,255, 124,98,124,255, 182,158,182,255, 135,114,135,255, 123,97,123,255, 130,103,130,255, 87,46,87,255, 75,37,75,255, 73,34,73,255, 91,51,91,255, 87,46,87,255, 87,46,87,255, 127,100,127,255, 120,89,120,255, 123,97,123,255, 100,57,100,255, 83,43,83,255, 124,98,124,255, 137,107,137,255, 135,114,135,255, 123,97,123,255, 130,103,130,255, 87,46,87,255, 75,37,75,255, 73,34,73,255, 91,51,91,255, 87,46,87,255, 87,46,87,255, 127,100,127,255, 120,89,120,255, 123,97,123,255, 100,57,100,255, 83,43,83,255, 124,98,124,255, 182,158,182,255, 135,114,135,255, 123,97,123,255, 87,72,54,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 162,162,162,255, 102,79,47,255, 68,51,33,255, 140,140,140,255, 128,94,54,255, 58,44,28,255, 87,72,54,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 128,94,54,255, 58,44,28,255, 219,210,161,255, 208,198,138,255, 184,171,121,255, 231,228,212,255, 228,224,209,255, 229,226,211,255, 231,228,212,255, 233,229,213,255, 233,229,213,255, 234,231,215,255, 233,230,214,255, 231,228,212,255, 231,228,211,255, 225,216,169,255, 207,195,133,255, 149,133,89,255, 219,210,161,255, 207,195,133,255, 207,196,135,255, 208,198,138,255, 210,200,142,255, 208,198,138,255, 210,200,142,255, 211,201,145,255, 207,195,133,255, 206,194,130,255, 210,199,140,255, 203,191,123,255, 207,195,133,255, 207,195,133,255, 211,201,145,255, 153,136,91,255, 206,161,130,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 104,70,47,255, 184,135,100,255, 113,83,59,255, 102,72,47,255, 102,72,47,255, 144,101,67,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 177,128,92,255, 159,113,74,255, 118,87,64,255, 206,161,130,255, 184,135,100,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 177,128,92,255, 159,113,74,255, 184,135,100,255, 114,80,53,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 104,70,47,255, 184,135,100,255, 184,135,100,255, 102,72,47,255, 195,119,81,255, 174,93,52,255, 139,74,41,255, 0,0,0,0, 0,0,0,0, 176,109,76,255, 145,77,42,255, 0,0,0,0, 0,0,0,0, 189,116,79,255, 141,74,41,255, 0,0,0,0, 0,0,0,0, 187,115,79,255, 149,79,44,255, 138,73,40,255, 184,114,79,255, 186,99,55,255, 172,92,51,255, 157,83,46,255, 161,86,48,255, 177,94,52,255, 171,91,50,255, 157,83,46,255, 181,96,53,255, 177,94,52,255, 186,99,55,255, 182,97,54,255, 186,99,55,255, 186,99,55,255, 169,90,50,255, 131,69,39,255, 89,65,44,255, 66,43,21,255, 48,31,15,255, 50,32,15,255, 49,31,15,255, 50,33,16,255, 63,40,19,255, 69,44,22,255, 51,33,16,255, 45,28,14,255, 43,27,13,255, 48,31,15,255, 48,31,15,255, 51,33,16,255, 62,40,19,255, 47,30,14,255, 80,60,42,255, 69,45,22,255, 63,41,20,255, 72,46,23,255, 67,43,21,255, 71,46,22,255, 73,47,23,255, 57,37,18,255, 66,42,21,255, 73,47,23,255, 71,46,22,255, 68,44,22,255, 73,47,23,255, 73,47,23,255, 73,47,23,255, 48,31,15,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 235,235,235,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 236,236,236,255, 0,0,0,0, 245,234,210,255, 245,236,210,255, 242,222,201,255, 242,227,201,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,45,85,255, 133,111,133,255, 91,51,91,255, 75,36,75,255, 71,32,71,255, 74,34,74,255, 91,51,91,255, 100,57,100,255, 184,160,184,255, 85,45,85,255, 130,103,130,255, 122,96,122,255, 90,50,90,255, 83,43,83,255, 83,43,83,255, 99,57,99,255, 85,45,85,255, 133,111,133,255, 91,51,91,255, 75,36,75,255, 71,32,71,255, 74,34,74,255, 91,51,91,255, 83,43,83,255, 111,78,111,255, 77,39,77,255, 93,59,93,255, 86,52,86,255, 83,44,83,255, 79,40,79,255, 83,43,83,255, 99,57,99,255, 85,45,85,255, 133,111,133,255, 91,51,91,255, 75,36,75,255, 71,32,71,255, 74,34,74,255, 91,51,91,255, 100,57,100,255, 184,160,184,255, 85,45,85,255, 130,103,130,255, 122,96,122,255, 90,50,90,255, 83,43,83,255, 83,43,83,255, 99,57,99,255, 87,72,54,255, 102,79,47,255, 83,64,40,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 156,156,156,255, 83,64,40,255, 68,51,33,255, 121,121,121,255, 120,88,54,255, 54,40,26,255, 87,72,54,255, 102,79,47,255, 83,64,40,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 83,64,40,255, 68,51,33,255, 102,79,47,255, 120,88,54,255, 54,40,26,255, 219,210,161,255, 207,195,133,255, 185,171,122,255, 249,245,226,255, 243,239,221,255, 244,240,222,255, 249,245,226,255, 233,229,213,255, 234,230,214,255, 252,248,229,255, 249,245,226,255, 247,243,225,255, 248,244,225,255, 227,219,175,255, 207,195,133,255, 157,140,93,255, 219,210,161,255, 207,195,133,255, 184,170,120,255, 183,170,119,255, 183,169,118,255, 185,171,122,255, 185,171,122,255, 183,170,119,255, 185,171,122,255, 182,168,116,255, 183,169,118,255, 185,171,122,255, 182,168,116,255, 192,180,134,255, 211,201,145,255, 149,133,89,255, 194,148,116,255, 184,135,100,255, 114,80,53,255, 159,113,74,255, 104,70,47,255, 159,113,74,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 185,137,102,255, 114,80,53,255, 184,135,100,255, 114,80,53,255, 177,128,92,255, 159,113,74,255, 118,87,64,255, 194,148,116,255, 159,113,74,255, 114,80,53,255, 184,135,100,255, 114,80,53,255, 157,113,80,255, 102,72,47,255, 113,83,59,255, 102,72,47,255, 124,90,65,255, 144,101,67,255, 159,113,74,255, 104,70,47,255, 159,113,74,255, 177,128,92,255, 102,72,47,255, 189,116,79,255, 174,93,52,255, 127,67,38,255, 0,0,0,0, 0,0,0,0, 176,109,76,255, 143,76,42,255, 0,0,0,0, 0,0,0,0, 173,108,75,255, 141,74,41,255, 0,0,0,0, 0,0,0,0, 180,112,77,255, 143,76,42,255, 135,72,40,255, 187,115,79,255, 179,95,53,255, 124,66,36,255, 116,61,34,255, 143,76,42,255, 163,86,48,255, 145,77,42,255, 106,56,31,255, 145,77,42,255, 163,86,48,255, 116,61,34,255, 124,66,36,255, 135,72,40,255, 165,87,49,255, 179,95,53,255, 142,75,42,255, 88,65,43,255, 65,42,20,255, 48,31,15,255, 69,44,22,255, 70,45,22,255, 68,44,21,255, 86,64,43,255, 69,44,22,255, 50,32,16,255, 45,28,14,255, 61,39,19,255, 66,42,21,255, 69,45,22,255, 85,62,43,255, 61,39,19,255, 45,29,14,255, 74,56,40,255, 67,43,21,255, 45,29,14,255, 49,31,15,255, 47,30,14,255, 45,29,14,255, 60,38,19,255, 63,41,20,255, 73,47,23,255, 43,28,13,255, 50,33,16,255, 50,32,16,255, 51,33,16,255, 57,37,18,255, 73,47,23,255, 48,31,15,255, 0,0,0,0, 227,227,227,255, 235,235,235,255, 236,236,236,255, 238,238,238,255, 236,236,236,255, 235,235,235,255, 236,236,236,255, 236,236,236,255, 237,237,237,255, 240,240,240,255, 241,241,241,255, 237,237,237,255, 235,235,235,255, 226,226,226,255, 0,0,0,0, 0,0,0,0, 238,238,238,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 236,236,236,255, 0,0,0,0, 247,241,228,255, 245,236,210,255, 182,139,182,255, 180,135,180,255, 180,135,180,255, 180,135,180,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,45,84,255, 182,158,182,255, 84,44,84,255, 58,20,58,255, 58,20,58,255, 83,43,83,255, 87,48,87,255, 87,48,87,255, 129,100,129,255, 83,43,83,255, 73,35,73,255, 83,43,83,255, 87,48,87,255, 64,26,64,255, 64,26,64,255, 83,43,83,255, 84,45,84,255, 137,107,137,255, 77,39,77,255, 105,72,105,255, 85,49,85,255, 100,67,100,255, 185,156,185,255, 100,67,100,255, 81,46,81,255, 100,67,100,255, 171,138,171,255, 144,107,144,255, 87,53,87,255, 64,26,64,255, 64,26,64,255, 83,43,83,255, 84,45,84,255, 182,158,182,255, 84,44,84,255, 58,20,58,255, 58,20,58,255, 83,43,83,255, 87,48,87,255, 87,48,87,255, 129,100,129,255, 83,43,83,255, 73,35,73,255, 83,43,83,255, 87,48,87,255, 64,26,64,255, 64,26,64,255, 83,43,83,255, 93,76,56,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 120,88,54,255, 133,133,133,255, 121,121,121,255, 102,79,47,255, 93,70,42,255, 54,40,26,255, 93,76,56,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 120,88,54,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 93,70,42,255, 54,40,26,255, 216,207,153,255, 206,195,132,255, 191,177,122,255, 250,246,228,255, 246,242,223,255, 243,239,221,255, 246,242,223,255, 234,230,214,255, 234,230,214,255, 252,248,229,255, 249,245,226,255, 247,243,225,255, 248,244,225,255, 227,219,175,255, 211,201,145,255, 147,131,87,255, 218,209,159,255, 202,190,122,255, 185,171,122,255, 246,242,224,255, 246,242,223,255, 246,242,223,255, 243,239,221,255, 222,218,203,255, 222,218,203,255, 242,238,220,255, 246,242,223,255, 249,245,226,255, 250,246,228,255, 220,210,154,255, 211,201,145,255, 154,137,92,255, 206,161,130,255, 177,128,92,255, 177,128,92,255, 159,113,74,255, 114,80,53,255, 159,113,74,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 197,150,118,255, 184,135,100,255, 184,135,100,255, 114,80,53,255, 177,128,92,255, 159,113,74,255, 118,87,64,255, 206,161,130,255, 159,113,74,255, 184,135,100,255, 184,135,100,255, 114,80,53,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 185,137,102,255, 159,113,74,255, 114,80,53,255, 159,113,74,255, 114,80,53,255, 102,72,47,255, 172,107,74,255, 186,99,55,255, 127,67,38,255, 0,0,0,0, 0,0,0,0, 187,115,79,255, 143,76,42,255, 0,0,0,0, 0,0,0,0, 157,99,70,255, 141,74,41,255, 0,0,0,0, 0,0,0,0, 170,106,74,255, 133,71,39,255, 127,67,37,255, 161,101,72,255, 171,91,50,255, 131,70,39,255, 0,0,0,0, 0,0,0,0, 187,115,79,255, 129,68,38,255, 0,0,0,0, 0,0,0,0, 165,104,73,255, 116,61,34,255, 0,0,0,0, 0,0,0,0, 190,117,79,255, 186,99,55,255, 142,75,42,255, 86,63,43,255, 65,42,20,255, 49,31,15,255, 62,40,20,255, 70,45,22,255, 60,39,19,255, 86,64,43,255, 71,46,22,255, 53,34,17,255, 42,27,13,255, 70,45,22,255, 66,42,21,255, 68,44,22,255, 89,66,44,255, 61,39,19,255, 46,30,14,255, 88,65,43,255, 71,46,22,255, 49,31,15,255, 70,45,22,255, 72,46,23,255, 67,43,21,255, 87,64,43,255, 59,38,19,255, 65,42,20,255, 43,28,13,255, 73,47,23,255, 70,45,22,255, 70,45,22,255, 85,63,43,255, 72,46,23,255, 45,29,14,255, 0,0,0,0, 229,229,229,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 230,230,230,255, 0,0,0,0, 0,0,0,0, 237,237,237,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 244,244,244,255, 242,242,242,255, 242,242,242,255, 244,244,244,255, 243,243,243,255, 237,237,237,255, 0,0,0,0, 249,244,230,255, 250,246,231,255, 180,135,180,255, 174,125,174,255, 174,125,174,255, 169,121,169,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,44,84,255, 122,96,122,255, 100,64,100,255, 60,22,60,255, 65,27,65,255, 85,45,85,255, 124,91,124,255, 184,160,184,255, 120,88,120,255, 72,33,72,255, 91,52,91,255, 64,26,64,255, 62,25,62,255, 58,20,58,255, 64,26,64,255, 83,43,83,255, 84,44,84,255, 102,71,102,255, 85,49,85,255, 171,138,171,255, 111,80,111,255, 171,138,171,255, 215,195,215,255, 183,151,183,255, 93,59,93,255, 208,185,208,255, 171,138,171,255, 165,131,165,255, 79,43,79,255, 85,50,85,255, 64,26,64,255, 83,43,83,255, 84,44,84,255, 122,96,122,255, 100,64,100,255, 60,22,60,255, 65,27,65,255, 85,45,85,255, 124,91,124,255, 184,160,184,255, 120,88,120,255, 72,33,72,255, 91,52,91,255, 64,26,64,255, 62,25,62,255, 58,20,58,255, 64,26,64,255, 83,43,83,255, 83,67,51,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 128,94,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 54,40,26,255, 53,53,53,255, 63,63,63,255, 104,104,104,255, 68,51,33,255, 63,63,63,255, 104,104,104,255, 68,51,33,255, 63,63,63,255, 104,104,104,255, 73,56,36,255, 63,63,63,255, 104,104,104,255, 73,56,36,255, 63,63,63,255, 104,104,104,255, 54,40,26,255, 215,205,147,255, 205,193,129,255, 184,170,120,255, 222,213,162,255, 227,219,175,255, 227,219,175,255, 227,219,175,255, 222,213,162,255, 227,219,175,255, 222,212,160,255, 224,216,168,255, 224,216,168,255, 222,212,160,255, 227,219,175,255, 211,201,145,255, 147,131,87,255, 68,46,23,255, 207,195,133,255, 184,171,121,255, 246,242,223,255, 245,241,223,255, 245,241,223,255, 243,239,221,255, 223,219,205,255, 222,218,204,255, 242,238,220,255, 246,242,224,255, 247,243,225,255, 249,245,226,255, 220,210,156,255, 208,198,138,255, 149,133,89,255, 206,161,130,255, 184,135,100,255, 177,128,92,255, 159,113,74,255, 114,80,53,255, 159,113,74,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 197,150,118,255, 184,135,100,255, 184,135,100,255, 104,70,47,255, 184,135,100,255, 159,113,74,255, 118,87,64,255, 53,53,53,255, 159,113,74,255, 184,135,100,255, 184,135,100,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 186,138,104,255, 114,80,53,255, 159,113,74,255, 177,128,92,255, 102,72,47,255, 170,106,74,255, 181,96,53,255, 131,70,39,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 143,76,42,255, 0,0,0,0, 0,0,0,0, 161,101,72,255, 141,74,41,255, 0,0,0,0, 0,0,0,0, 165,104,73,255, 160,85,47,255, 125,67,37,255, 53,53,53,255, 171,91,50,255, 131,70,39,255, 0,0,0,0, 0,0,0,0, 168,105,73,255, 129,68,38,255, 0,0,0,0, 0,0,0,0, 172,107,74,255, 131,69,39,255, 0,0,0,0, 0,0,0,0, 179,111,77,255, 184,98,54,255, 143,76,42,255, 81,61,42,255, 71,46,22,255, 50,32,15,255, 62,40,20,255, 73,47,23,255, 46,30,15,255, 81,61,42,255, 72,46,23,255, 62,40,19,255, 40,26,12,255, 70,45,22,255, 65,42,20,255, 72,46,23,255, 90,66,44,255, 70,45,22,255, 43,28,13,255, 53,53,53,255, 70,45,22,255, 49,31,15,255, 70,45,22,255, 66,43,21,255, 59,38,19,255, 87,64,43,255, 69,44,22,255, 62,40,20,255, 46,29,14,255, 70,45,22,255, 70,45,22,255, 70,45,22,255, 87,64,43,255, 72,46,23,255, 45,29,14,255, 0,0,0,0, 232,232,232,255, 243,243,243,255, 241,241,241,255, 241,241,241,255, 241,241,241,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 233,233,233,255, 0,0,0,0, 0,0,0,0, 236,236,236,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 244,244,244,255, 243,243,243,255, 239,239,239,255, 0,0,0,0, 250,246,231,255, 250,249,250,255, 180,135,180,255, 174,125,174,255, 174,125,174,255, 169,121,169,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 127,100,127,255, 83,43,83,255, 71,33,71,255, 71,33,71,255, 64,26,64,255, 71,33,71,255, 91,51,91,255, 121,90,121,255, 95,56,95,255, 84,44,84,255, 61,24,61,255, 62,25,62,255, 67,30,67,255, 71,33,71,255, 83,43,83,255, 122,96,122,255, 127,100,127,255, 83,43,83,255, 93,59,93,255, 148,120,148,255, 213,199,213,255, 207,185,207,255, 202,183,202,255, 225,215,225,255, 225,215,225,255, 225,215,225,255, 92,58,92,255, 92,58,92,255, 92,58,92,255, 100,67,100,255, 79,40,79,255, 122,96,122,255, 127,100,127,255, 83,43,83,255, 71,33,71,255, 71,33,71,255, 64,26,64,255, 71,33,71,255, 91,51,91,255, 121,90,121,255, 95,56,95,255, 84,44,84,255, 61,24,61,255, 62,25,62,255, 67,30,67,255, 71,33,71,255, 83,43,83,255, 122,96,122,255, 83,67,51,255, 128,94,54,255, 128,94,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 83,64,40,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 54,40,26,255, 111,111,111,255, 128,94,54,255, 128,94,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 83,64,40,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 54,40,26,255, 219,210,161,255, 208,198,138,255, 205,193,129,255, 197,184,109,255, 206,194,130,255, 203,191,123,255, 207,195,133,255, 210,199,140,255, 208,198,138,255, 211,201,145,255, 211,201,145,255, 207,195,133,255, 204,192,126,255, 207,195,133,255, 211,201,145,255, 139,124,83,255, 91,62,31,255, 207,195,133,255, 183,170,119,255, 229,226,210,255, 229,226,211,255, 231,228,211,255, 229,226,210,255, 227,223,209,255, 226,223,209,255, 229,226,210,255, 233,229,213,255, 232,228,212,255, 229,226,210,255, 220,210,156,255, 207,196,135,255, 143,127,85,255, 194,148,116,255, 184,135,100,255, 177,128,92,255, 184,135,100,255, 114,80,53,255, 159,113,74,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 197,150,118,255, 184,135,100,255, 159,113,74,255, 104,70,47,255, 184,135,100,255, 184,135,100,255, 73,51,34,255, 111,111,111,255, 184,135,100,255, 184,135,100,255, 144,102,66,255, 118,87,64,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 197,150,118,255, 114,80,53,255, 159,113,74,255, 177,128,92,255, 118,87,64,255, 187,115,79,255, 171,91,50,255, 143,76,42,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 133,71,39,255, 0,0,0,0, 0,0,0,0, 175,109,75,255, 131,70,39,255, 0,0,0,0, 0,0,0,0, 172,107,74,255, 163,87,48,255, 127,67,37,255, 111,111,111,255, 176,94,52,255, 131,69,39,255, 0,0,0,0, 0,0,0,0, 164,103,72,255, 125,67,37,255, 0,0,0,0, 0,0,0,0, 170,106,74,255, 131,69,39,255, 0,0,0,0, 0,0,0,0, 179,111,77,255, 179,95,53,255, 142,75,42,255, 87,64,43,255, 73,47,23,255, 50,32,15,255, 61,39,19,255, 72,46,23,255, 51,33,16,255, 85,62,43,255, 69,45,22,255, 66,43,21,255, 45,28,14,255, 70,45,22,255, 66,42,21,255, 68,43,21,255, 90,66,44,255, 73,47,23,255, 40,26,12,255, 111,111,111,255, 70,45,22,255, 50,32,16,255, 72,47,23,255, 66,43,21,255, 58,37,18,255, 84,62,43,255, 65,42,20,255, 55,36,17,255, 51,33,16,255, 70,45,22,255, 72,46,23,255, 68,44,21,255, 87,64,43,255, 72,46,23,255, 45,29,14,255, 0,0,0,0, 235,235,235,255, 243,243,243,255, 241,241,241,255, 241,241,241,255, 241,241,241,255, 243,243,243,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 236,236,236,255, 243,243,243,255, 242,242,242,255, 241,241,241,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 238,238,238,255, 0,0,0,0, 251,251,251,255, 250,249,250,255, 176,129,176,255, 169,121,169,255, 169,121,169,255, 167,119,167,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 86,46,86,255, 83,43,83,255, 71,33,71,255, 75,37,75,255, 91,51,91,255, 71,32,71,255, 90,51,90,255, 120,89,120,255, 83,43,83,255, 83,43,83,255, 84,44,84,255, 71,32,71,255, 85,45,85,255, 84,44,84,255, 83,43,83,255, 182,158,182,255, 86,46,86,255, 79,40,79,255, 161,120,161,255, 171,138,171,255, 112,78,112,255, 213,199,213,255, 247,244,247,255, 213,199,213,255, 213,199,213,255, 202,183,202,255, 202,183,202,255, 208,192,208,255, 186,155,186,255, 171,138,171,255, 79,40,79,255, 137,107,137,255, 86,46,86,255, 83,43,83,255, 71,33,71,255, 75,37,75,255, 91,51,91,255, 71,32,71,255, 90,51,90,255, 87,55,79,255, 95,64,91,255, 83,43,83,255, 84,44,84,255, 71,32,71,255, 85,45,85,255, 84,44,84,255, 83,43,83,255, 182,158,182,255, 93,76,56,255, 128,94,54,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 120,88,54,255, 102,79,47,255, 73,56,36,255, 128,94,54,255, 128,94,54,255, 73,56,36,255, 120,88,54,255, 102,79,47,255, 54,40,26,255, 93,76,56,255, 128,94,54,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 120,88,54,255, 102,79,47,255, 73,56,36,255, 128,94,54,255, 128,94,54,255, 73,56,36,255, 120,88,54,255, 102,79,47,255, 54,40,26,255, 219,210,161,255, 207,195,133,255, 205,193,129,255, 202,189,120,255, 206,194,130,255, 207,195,133,255, 207,195,133,255, 207,196,135,255, 210,199,140,255, 211,201,145,255, 210,199,140,255, 205,193,129,255, 202,190,122,255, 199,186,115,255, 211,201,145,255, 147,131,87,255, 218,209,159,255, 207,196,135,255, 183,170,119,255, 246,242,223,255, 247,243,225,255, 234,230,214,255, 250,246,228,255, 250,246,227,255, 248,244,226,255, 249,245,226,255, 233,230,214,255, 250,246,227,255, 246,242,223,255, 227,220,177,255, 207,196,135,255, 142,126,84,255, 206,161,130,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 114,80,53,255, 177,128,92,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 197,150,118,255, 184,135,100,255, 184,135,100,255, 104,70,47,255, 159,113,74,255, 177,128,92,255, 102,72,47,255, 194,148,116,255, 184,135,100,255, 184,135,100,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 189,145,115,255, 177,128,92,255, 159,113,74,255, 118,87,64,255, 180,112,77,255, 160,85,47,255, 119,63,35,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 133,71,39,255, 0,0,0,0, 0,0,0,0, 180,112,77,255, 134,71,39,255, 0,0,0,0, 0,0,0,0, 170,106,74,255, 182,97,54,255, 135,72,40,255, 189,116,79,255, 182,97,54,255, 142,75,42,255, 0,0,0,0, 0,0,0,0, 155,99,69,255, 139,74,41,255, 0,0,0,0, 0,0,0,0, 193,118,80,255, 122,64,35,255, 0,0,0,0, 0,0,0,0, 182,112,77,255, 179,95,53,255, 143,76,42,255, 90,66,44,255, 71,46,22,255, 48,31,15,255, 61,39,19,255, 66,43,21,255, 58,37,18,255, 83,62,43,255, 68,44,22,255, 66,42,21,255, 48,31,14,255, 67,43,21,255, 66,42,21,255, 65,42,21,255, 90,66,44,255, 70,45,22,255, 42,27,13,255, 85,63,43,255, 66,43,21,255, 50,33,16,255, 71,46,22,255, 66,43,21,255, 63,41,20,255, 84,62,43,255, 67,43,21,255, 63,41,20,255, 51,33,16,255, 68,43,21,255, 70,45,22,255, 71,46,22,255, 87,64,43,255, 73,47,23,255, 42,26,13,255, 0,0,0,0, 236,236,236,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 241,241,241,255, 241,241,241,255, 241,241,241,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 236,236,236,255, 243,243,243,255, 242,242,242,255, 241,241,241,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 236,236,236,255, 0,0,0,0, 252,252,252,255, 251,251,251,255, 174,125,174,255, 174,125,174,255, 174,125,174,255, 174,125,174,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 93,52,93,255, 83,43,83,255, 86,46,86,255, 84,45,84,255, 86,46,86,255, 84,44,84,255, 92,54,92,255, 184,160,184,255, 120,88,120,255, 120,89,120,255, 183,158,183,255, 128,98,128,255, 135,104,135,255, 120,89,120,255, 119,88,119,255, 83,43,83,255, 93,52,93,255, 79,40,79,255, 85,49,85,255, 171,138,171,255, 213,199,213,255, 213,199,213,255, 213,199,213,255, 252,250,252,255, 213,199,213,255, 247,244,247,255, 225,215,225,255, 220,208,220,255, 186,155,186,255, 171,138,171,255, 100,66,100,255, 83,43,83,255, 93,52,93,255, 83,43,83,255, 86,46,86,255, 84,45,84,255, 86,46,86,255, 84,44,84,255, 89,58,82,255, 157,149,115,255, 153,142,95,255, 90,59,83,255, 183,158,183,255, 128,98,128,255, 135,104,135,255, 120,89,120,255, 119,88,119,255, 83,43,83,255, 83,67,51,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 120,88,54,255, 128,94,54,255, 73,56,36,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 120,88,54,255, 102,79,47,255, 58,44,28,255, 83,67,51,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 120,88,54,255, 128,94,54,255, 73,56,36,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 120,88,54,255, 102,79,47,255, 58,44,28,255, 219,210,161,255, 206,194,130,255, 204,192,126,255, 202,190,122,255, 206,194,130,255, 207,195,133,255, 211,201,145,255, 207,196,135,255, 211,201,145,255, 211,201,145,255, 206,194,130,255, 208,198,138,255, 206,194,130,255, 202,189,120,255, 210,200,142,255, 147,131,87,255, 216,206,152,255, 207,195,133,255, 184,170,120,255, 246,242,224,255, 249,245,226,255, 234,231,215,255, 250,246,227,255, 248,244,226,255, 247,243,225,255, 246,242,224,255, 231,228,212,255, 250,246,227,255, 249,245,226,255, 228,220,178,255, 211,201,145,255, 143,127,85,255, 194,148,116,255, 142,100,66,255, 142,100,66,255, 142,100,66,255, 114,80,53,255, 177,128,92,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 185,137,102,255, 142,100,66,255, 142,100,66,255, 114,80,53,255, 159,113,74,255, 177,128,92,255, 118,87,64,255, 206,161,130,255, 142,100,66,255, 142,100,66,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 198,153,122,255, 177,128,92,255, 159,113,74,255, 113,82,59,255, 180,112,77,255, 152,81,45,255, 112,60,33,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 124,66,36,255, 0,0,0,0, 0,0,0,0, 180,112,77,255, 120,64,35,255, 0,0,0,0, 0,0,0,0, 183,113,78,255, 182,97,54,255, 145,77,42,255, 195,119,81,255, 181,96,53,255, 131,69,39,255, 0,0,0,0, 0,0,0,0, 173,108,75,255, 141,74,41,255, 0,0,0,0, 0,0,0,0, 193,118,80,255, 122,64,35,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 179,95,53,255, 143,76,42,255, 90,66,44,255, 71,46,22,255, 46,29,14,255, 56,36,18,255, 66,43,21,255, 71,46,22,255, 88,65,43,255, 65,42,20,255, 70,45,22,255, 51,33,16,255, 68,44,21,255, 64,41,20,255, 65,42,21,255, 83,62,43,255, 66,43,21,255, 46,30,14,255, 85,63,43,255, 65,42,20,255, 48,31,14,255, 71,46,22,255, 70,45,22,255, 68,44,21,255, 84,62,43,255, 67,43,21,255, 66,43,21,255, 46,30,14,255, 70,45,22,255, 70,45,22,255, 71,46,22,255, 88,65,43,255, 73,47,23,255, 33,21,10,255, 0,0,0,0, 237,237,237,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 242,242,242,255, 234,234,234,255, 0,0,0,0, 0,0,0,0, 235,235,235,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 236,236,236,255, 0,0,0,0, 252,252,252,255, 251,251,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 128,98,128,255, 119,88,119,255, 83,43,83,255, 83,43,83,255, 120,89,120,255, 184,160,184,255, 129,100,129,255, 120,89,120,255, 83,43,83,255, 83,43,83,255, 84,45,84,255, 129,100,129,255, 129,100,129,255, 184,160,184,255, 120,89,120,255, 119,88,119,255, 128,98,128,255, 100,66,100,255, 100,67,100,255, 110,76,110,255, 185,163,185,255, 213,199,213,255, 247,244,247,255, 252,250,252,255, 252,250,252,255, 213,199,213,255, 186,155,186,255, 186,155,186,255, 171,138,171,255, 76,40,76,255, 101,67,101,255, 119,88,119,255, 128,98,128,255, 119,88,119,255, 83,43,83,255, 83,43,83,255, 120,89,120,255, 91,59,80,255, 158,149,106,255, 193,188,164,255, 205,198,162,255, 164,157,126,255, 87,53,78,255, 129,100,129,255, 129,100,129,255, 184,160,184,255, 120,89,120,255, 119,88,119,255, 87,72,54,255, 128,94,54,255, 128,94,54,255, 73,56,36,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 73,56,36,255, 93,70,42,255, 102,79,47,255, 58,44,28,255, 87,72,54,255, 128,94,54,255, 128,94,54,255, 73,56,36,255, 102,79,47,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 73,56,36,255, 93,70,42,255, 102,79,47,255, 58,44,28,255, 217,209,157,255, 199,186,115,255, 208,198,138,255, 204,192,126,255, 211,201,145,255, 205,193,129,255, 208,198,138,255, 207,196,135,255, 211,201,145,255, 205,193,129,255, 199,186,115,255, 208,198,138,255, 207,195,133,255, 202,190,122,255, 207,196,135,255, 157,140,93,255, 215,205,147,255, 207,195,133,255, 184,171,121,255, 230,227,211,255, 232,229,213,255, 234,230,214,255, 247,243,225,255, 242,238,220,255, 244,240,222,255, 245,241,223,255, 228,225,209,255, 230,227,212,255, 234,230,214,255, 226,218,174,255, 211,201,145,255, 149,133,89,255, 194,148,116,255, 159,113,74,255, 177,128,92,255, 184,135,100,255, 114,80,53,255, 114,80,53,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 197,150,118,255, 184,135,100,255, 159,113,74,255, 114,80,53,255, 159,113,74,255, 159,113,74,255, 118,87,64,255, 206,161,130,255, 184,135,100,255, 184,135,100,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,161,130,255, 114,80,53,255, 159,113,74,255, 102,72,47,255, 166,105,73,255, 161,86,48,255, 99,53,29,255, 0,0,0,0, 0,0,0,0, 177,110,76,255, 135,72,40,255, 0,0,0,0, 0,0,0,0, 182,112,77,255, 131,69,39,255, 0,0,0,0, 0,0,0,0, 183,113,78,255, 174,93,52,255, 145,77,42,255, 191,118,80,255, 177,94,52,255, 133,71,39,255, 0,0,0,0, 0,0,0,0, 179,111,77,255, 145,77,42,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 122,64,35,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 186,99,55,255, 137,73,40,255, 90,66,44,255, 71,46,22,255, 46,29,14,255, 50,32,16,255, 67,43,21,255, 69,45,22,255, 88,65,43,255, 62,40,19,255, 70,45,22,255, 50,32,16,255, 66,42,21,255, 61,39,19,255, 69,44,22,255, 79,59,41,255, 66,43,21,255, 51,33,16,255, 76,58,40,255, 68,44,21,255, 45,28,14,255, 72,46,23,255, 70,45,22,255, 70,45,22,255, 84,62,43,255, 69,44,22,255, 73,47,23,255, 46,30,14,255, 70,45,22,255, 68,44,21,255, 73,47,23,255, 88,65,43,255, 73,47,23,255, 28,18,9,255, 0,0,0,0, 237,237,237,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 242,242,242,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 231,231,231,255, 240,240,240,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 235,235,235,255, 0,0,0,0, 251,246,240,255, 251,251,251,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 84,44,84,255, 129,100,129,255, 186,162,186,255, 129,100,129,255, 88,48,88,255, 85,46,85,255, 95,57,95,255, 93,55,93,255, 129,100,129,255, 83,44,83,255, 78,39,78,255, 89,50,89,255, 88,48,88,255, 83,43,83,255, 93,52,93,255, 83,43,83,255, 84,44,84,255, 106,73,106,255, 173,140,173,255, 204,181,204,255, 213,199,213,255, 247,244,247,255, 252,250,252,255, 254,254,254,255, 213,199,213,255, 200,180,200,255, 94,61,94,255, 94,61,94,255, 87,53,87,255, 85,49,85,255, 76,37,76,255, 83,43,83,255, 84,44,84,255, 129,100,129,255, 186,162,186,255, 129,100,129,255, 88,48,88,255, 90,59,84,255, 161,152,111,255, 207,203,184,255, 201,197,176,255, 163,154,114,255, 85,52,76,255, 89,50,89,255, 88,48,88,255, 83,43,83,255, 93,52,93,255, 83,43,83,255, 87,72,54,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 73,56,36,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 58,44,28,255, 87,72,54,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 73,56,36,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 58,44,28,255, 216,207,152,255, 200,188,118,255, 207,196,135,255, 203,191,123,255, 207,196,135,255, 205,193,129,255, 199,186,115,255, 211,201,145,255, 211,201,145,255, 205,193,129,255, 198,184,110,255, 210,200,142,255, 208,198,138,255, 211,201,145,255, 202,190,122,255, 157,140,93,255, 216,207,152,255, 207,195,133,255, 185,171,122,255, 249,245,226,255, 251,247,228,255, 235,232,216,255, 247,243,225,255, 240,236,218,255, 243,239,221,255, 246,242,224,255, 229,226,211,255, 247,243,225,255, 248,244,226,255, 225,217,171,255, 211,201,145,255, 149,133,89,255, 206,161,130,255, 159,113,74,255, 177,128,92,255, 159,113,74,255, 114,80,53,255, 184,135,100,255, 102,72,47,255, 0,0,0,0, 0,0,0,0, 197,150,118,255, 177,128,92,255, 114,80,53,255, 114,80,53,255, 159,113,74,255, 159,113,74,255, 113,82,59,255, 194,148,116,255, 184,135,100,255, 177,128,92,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,161,130,255, 184,135,100,255, 159,113,74,255, 118,87,64,255, 191,118,80,255, 172,92,51,255, 119,63,35,255, 0,0,0,0, 0,0,0,0, 177,110,76,255, 135,72,40,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 125,67,37,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 172,92,51,255, 145,77,42,255, 186,115,79,255, 179,95,53,255, 133,71,39,255, 0,0,0,0, 0,0,0,0, 187,115,79,255, 145,77,42,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 120,64,35,255, 0,0,0,0, 0,0,0,0, 182,112,77,255, 153,82,45,255, 125,67,37,255, 82,62,43,255, 66,42,21,255, 47,30,14,255, 56,36,18,255, 73,47,23,255, 70,45,22,255, 86,64,43,255, 61,39,19,255, 65,42,20,255, 50,32,16,255, 71,46,22,255, 61,39,19,255, 66,43,21,255, 79,59,41,255, 69,44,22,255, 51,33,16,255, 81,60,42,255, 71,46,22,255, 45,28,14,255, 73,47,23,255, 67,43,21,255, 70,45,22,255, 83,62,43,255, 71,46,22,255, 73,47,23,255, 43,27,13,255, 65,42,20,255, 66,43,21,255, 65,42,20,255, 83,62,43,255, 73,47,23,255, 37,24,12,255, 0,0,0,0, 238,238,238,255, 244,244,244,255, 244,244,244,255, 242,242,242,255, 241,241,241,255, 242,242,242,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 231,231,231,255, 239,239,239,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 240,240,240,255, 231,231,231,255, 0,0,0,0, 251,246,238,255, 248,245,234,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,124,255, 83,43,83,255, 85,46,85,255, 85,45,85,255, 104,65,104,255, 72,34,72,255, 92,54,92,255, 91,52,91,255, 184,160,184,255, 84,44,84,255, 65,26,65,255, 77,39,77,255, 75,37,75,255, 64,26,64,255, 80,40,80,255, 99,57,99,255, 124,98,124,255, 83,43,83,255, 171,137,171,255, 247,244,247,255, 190,160,190,255, 213,199,213,255, 213,199,213,255, 213,199,213,255, 247,244,247,255, 213,199,213,255, 213,199,213,255, 222,204,222,255, 171,138,171,255, 135,97,135,255, 77,38,77,255, 99,57,99,255, 124,98,124,255, 83,43,83,255, 85,46,85,255, 85,45,85,255, 104,65,104,255, 72,34,72,255, 89,58,82,255, 156,146,101,255, 197,193,170,255, 114,86,100,255, 65,26,65,255, 77,39,77,255, 75,37,75,255, 64,26,64,255, 80,40,80,255, 99,57,99,255, 53,53,53,255, 63,63,63,255, 104,104,104,255, 73,56,36,255, 63,63,63,255, 104,104,104,255, 68,51,33,255, 63,63,63,255, 104,104,104,255, 68,51,33,255, 63,63,63,255, 104,104,104,255, 68,51,33,255, 63,63,63,255, 104,104,104,255, 54,40,26,255, 87,72,54,255, 102,79,47,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 120,88,54,255, 68,51,33,255, 83,64,40,255, 120,88,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 54,40,26,255, 68,46,23,255, 205,193,129,255, 207,195,133,255, 203,191,123,255, 207,195,133,255, 205,193,129,255, 192,177,96,255, 211,201,145,255, 207,196,135,255, 203,191,123,255, 196,183,108,255, 205,193,129,255, 208,198,138,255, 211,201,145,255, 203,191,123,255, 156,139,92,255, 219,210,161,255, 206,194,130,255, 183,170,119,255, 251,247,228,255, 252,248,229,255, 237,234,217,255, 249,245,227,255, 243,239,221,255, 244,240,222,255, 248,244,226,255, 232,228,213,255, 248,244,226,255, 248,244,225,255, 222,213,162,255, 211,201,145,255, 153,136,91,255, 53,53,53,255, 114,80,53,255, 177,128,92,255, 159,113,74,255, 104,70,47,255, 184,135,100,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 197,150,118,255, 177,128,92,255, 159,113,74,255, 114,80,53,255, 177,128,92,255, 159,113,74,255, 113,82,59,255, 206,161,130,255, 184,135,100,255, 177,128,92,255, 102,72,47,255, 191,146,116,255, 201,156,125,255, 206,161,130,255, 206,161,130,255, 191,146,116,255, 201,156,124,255, 206,161,130,255, 206,161,130,255, 158,115,86,255, 184,135,100,255, 184,135,100,255, 118,87,64,255, 53,53,53,255, 186,99,55,255, 117,62,34,255, 0,0,0,0, 0,0,0,0, 177,110,76,255, 145,77,42,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 138,73,40,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 172,92,51,255, 145,77,42,255, 172,107,74,255, 181,96,53,255, 145,77,42,255, 0,0,0,0, 0,0,0,0, 189,116,79,255, 139,74,41,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 124,66,36,255, 0,0,0,0, 0,0,0,0, 176,109,76,255, 150,80,44,255, 118,63,35,255, 53,53,53,255, 60,39,19,255, 49,31,15,255, 61,39,19,255, 72,46,23,255, 71,46,22,255, 86,63,43,255, 62,40,20,255, 65,42,21,255, 50,32,15,255, 66,42,21,255, 64,41,20,255, 63,40,20,255, 84,62,43,255, 73,47,23,255, 45,29,14,255, 77,58,40,255, 69,44,22,255, 48,31,15,255, 70,45,22,255, 69,44,22,255, 67,43,21,255, 83,62,43,255, 71,46,22,255, 66,42,21,255, 48,30,14,255, 60,39,19,255, 66,43,21,255, 65,42,20,255, 85,62,43,255, 71,46,22,255, 45,29,14,255, 0,0,0,0, 238,238,238,255, 244,244,244,255, 244,244,244,255, 242,242,242,255, 241,241,241,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 226,226,226,255, 235,235,235,255, 241,241,241,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 237,237,237,255, 226,226,226,255, 0,0,0,0, 251,246,238,255, 248,244,232,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 82,42,82,255, 83,43,83,255, 85,46,85,255, 71,32,71,255, 65,26,65,255, 58,20,58,255, 71,33,71,255, 84,44,84,255, 119,88,119,255, 83,43,83,255, 67,29,67,255, 58,20,58,255, 65,27,65,255, 60,22,60,255, 85,45,85,255, 123,97,123,255, 82,42,82,255, 83,43,83,255, 171,138,171,255, 184,152,184,255, 105,74,105,255, 142,111,142,255, 247,244,247,255, 202,183,202,255, 213,199,213,255, 247,244,247,255, 213,199,213,255, 207,185,207,255, 171,138,171,255, 135,96,135,255, 89,51,89,255, 123,97,123,255, 82,42,82,255, 83,43,83,255, 85,46,85,255, 71,32,71,255, 65,26,65,255, 58,20,58,255, 71,33,71,255, 93,60,84,255, 82,47,79,255, 83,43,83,255, 67,29,67,255, 58,20,58,255, 65,27,65,255, 60,22,60,255, 85,45,85,255, 123,97,123,255, 111,111,111,255, 120,88,54,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 68,51,33,255, 83,64,40,255, 120,88,54,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 120,88,54,255, 120,88,54,255, 54,40,26,255, 83,67,51,255, 120,88,54,255, 102,79,47,255, 73,56,36,255, 102,79,47,255, 120,88,54,255, 68,51,33,255, 83,64,40,255, 120,88,54,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 120,88,54,255, 120,88,54,255, 54,40,26,255, 91,62,31,255, 211,201,145,255, 207,195,133,255, 203,191,123,255, 198,184,110,255, 206,194,130,255, 194,179,100,255, 210,200,142,255, 207,196,135,255, 208,198,138,255, 200,188,118,255, 204,192,126,255, 211,201,145,255, 210,200,142,255, 206,194,130,255, 157,140,93,255, 219,210,161,255, 206,194,130,255, 182,168,118,255, 232,228,212,255, 231,228,212,255, 235,232,216,255, 234,231,215,255, 230,227,212,255, 228,225,210,255, 233,229,213,255, 234,231,215,255, 231,227,211,255, 232,228,212,255, 221,212,159,255, 211,201,145,255, 154,137,92,255, 111,111,111,255, 184,135,100,255, 177,128,92,255, 114,80,53,255, 104,70,47,255, 177,128,92,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 201,156,124,255, 159,113,74,255, 159,113,74,255, 114,80,53,255, 177,128,92,255, 114,80,53,255, 113,82,59,255, 206,161,130,255, 184,135,100,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 177,128,92,255, 159,113,74,255, 184,135,100,255, 114,80,53,255, 184,135,100,255, 159,113,74,255, 159,113,74,255, 104,70,47,255, 184,135,100,255, 184,135,100,255, 102,72,47,255, 111,111,111,255, 184,98,54,255, 131,70,39,255, 0,0,0,0, 0,0,0,0, 193,118,80,255, 142,75,42,255, 0,0,0,0, 0,0,0,0, 183,113,78,255, 138,73,40,255, 0,0,0,0, 0,0,0,0, 179,111,77,255, 179,95,53,255, 145,77,42,255, 158,100,71,255, 186,99,55,255, 142,75,42,255, 0,0,0,0, 0,0,0,0, 195,119,81,255, 139,74,41,255, 0,0,0,0, 0,0,0,0, 193,118,80,255, 124,66,36,255, 0,0,0,0, 0,0,0,0, 173,108,75,255, 137,73,41,255, 125,67,37,255, 111,111,111,255, 60,39,19,255, 48,31,15,255, 66,43,21,255, 72,46,23,255, 65,42,21,255, 84,62,43,255, 68,44,21,255, 67,43,21,255, 49,31,15,255, 68,44,21,255, 73,47,23,255, 64,41,20,255, 90,66,44,255, 73,47,23,255, 43,27,13,255, 65,51,37,255, 66,42,21,255, 50,32,16,255, 70,45,22,255, 68,43,21,255, 67,43,21,255, 89,65,44,255, 67,43,21,255, 66,42,21,255, 48,31,14,255, 60,39,19,255, 62,40,19,255, 63,40,20,255, 84,62,43,255, 68,44,21,255, 51,33,16,255, 0,0,0,0, 238,238,238,255, 244,244,244,255, 244,244,244,255, 242,242,242,255, 241,241,241,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 229,229,229,255, 237,237,237,255, 241,241,241,255, 241,241,241,255, 242,242,242,255, 243,243,243,255, 240,240,240,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 239,239,239,255, 233,233,233,255, 224,224,224,255, 0,0,0,0, 249,244,230,255, 248,240,212,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,45,85,255, 83,43,83,255, 65,28,65,255, 58,21,58,255, 59,21,59,255, 72,33,72,255, 87,47,87,255, 120,89,120,255, 84,44,84,255, 83,44,83,255, 66,29,66,255, 58,20,58,255, 66,29,66,255, 81,45,81,255, 89,48,89,255, 125,98,125,255, 85,45,85,255, 83,43,83,255, 79,42,79,255, 87,53,87,255, 96,62,96,255, 247,244,247,255, 179,141,179,255, 131,102,131,255, 126,95,126,255, 213,199,213,255, 213,199,213,255, 113,80,113,255, 92,58,92,255, 85,51,85,255, 83,43,83,255, 125,98,125,255, 85,45,85,255, 83,43,83,255, 65,28,65,255, 58,21,58,255, 59,21,59,255, 72,33,72,255, 87,47,87,255, 120,89,120,255, 84,44,84,255, 83,44,83,255, 66,29,66,255, 58,20,58,255, 66,29,66,255, 81,45,81,255, 89,48,89,255, 125,98,125,255, 72,60,47,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 120,88,54,255, 120,88,54,255, 68,51,33,255, 128,94,54,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 73,56,36,255, 128,94,54,255, 102,79,47,255, 54,40,26,255, 72,60,47,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 120,88,54,255, 120,88,54,255, 68,51,33,255, 128,94,54,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 73,56,36,255, 128,94,54,255, 102,79,47,255, 54,40,26,255, 217,208,156,255, 211,201,145,255, 208,198,138,255, 207,195,133,255, 197,184,109,255, 203,191,123,255, 195,181,103,255, 210,200,142,255, 207,196,135,255, 208,198,138,255, 203,191,123,255, 205,193,129,255, 211,201,145,255, 210,200,142,255, 211,201,145,255, 157,140,93,255, 219,210,161,255, 210,199,140,255, 182,168,118,255, 245,241,223,255, 246,242,224,255, 234,230,214,255, 251,247,228,255, 245,241,223,255, 244,240,222,255, 250,246,227,255, 234,231,215,255, 253,249,230,255, 251,247,228,255, 221,212,159,255, 210,200,142,255, 153,136,91,255, 206,161,130,255, 184,135,100,255, 159,113,74,255, 177,128,92,255, 104,70,47,255, 184,135,100,255, 113,83,59,255, 0,0,0,0, 0,0,0,0, 185,137,102,255, 159,113,74,255, 177,128,92,255, 104,70,47,255, 177,128,92,255, 184,135,100,255, 118,87,64,255, 194,148,116,255, 159,113,74,255, 114,80,53,255, 184,135,100,255, 114,80,53,255, 177,128,92,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 184,135,100,255, 114,80,53,255, 159,113,74,255, 104,70,47,255, 159,113,74,255, 177,128,92,255, 102,72,47,255, 195,119,81,255, 184,98,54,255, 133,71,39,255, 0,0,0,0, 0,0,0,0, 193,118,80,255, 142,75,42,255, 0,0,0,0, 0,0,0,0, 183,113,78,255, 145,77,42,255, 0,0,0,0, 0,0,0,0, 173,108,75,255, 171,91,50,255, 142,75,42,255, 184,114,79,255, 186,99,55,255, 142,75,42,255, 0,0,0,0, 0,0,0,0, 183,113,78,255, 138,73,40,255, 0,0,0,0, 0,0,0,0, 193,118,80,255, 124,66,36,255, 0,0,0,0, 0,0,0,0, 184,114,79,255, 166,88,49,255, 131,70,39,255, 87,64,43,255, 61,39,19,255, 50,32,16,255, 70,45,22,255, 72,47,23,255, 65,42,21,255, 88,65,43,255, 70,45,22,255, 73,47,23,255, 48,31,14,255, 68,43,21,255, 72,47,23,255, 70,45,22,255, 85,62,43,255, 71,46,22,255, 43,27,13,255, 74,56,40,255, 66,42,21,255, 48,31,14,255, 70,45,22,255, 67,43,21,255, 67,43,21,255, 84,62,43,255, 65,42,20,255, 66,42,21,255, 51,33,16,255, 65,42,20,255, 65,42,20,255, 70,45,22,255, 88,65,43,255, 62,40,19,255, 51,33,16,255, 0,0,0,0, 237,237,237,255, 243,243,243,255, 243,243,243,255, 242,242,242,255, 241,241,241,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 221,221,221,255, 226,226,226,255, 230,230,230,255, 234,234,234,255, 235,235,235,255, 235,235,235,255, 236,236,236,255, 234,234,234,255, 235,235,235,255, 235,235,235,255, 238,238,238,255, 237,237,237,255, 230,230,230,255, 219,219,219,255, 0,0,0,0, 248,239,212,255, 245,236,210,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 83,43,83,255, 71,32,71,255, 60,22,60,255, 71,32,71,255, 85,45,85,255, 83,43,83,255, 120,89,120,255, 129,100,129,255, 86,46,86,255, 71,32,71,255, 60,22,60,255, 60,22,60,255, 84,44,84,255, 89,50,89,255, 182,157,182,255, 99,57,99,255, 83,43,83,255, 71,32,71,255, 77,41,77,255, 150,107,150,255, 171,138,171,255, 247,244,247,255, 179,141,179,255, 103,71,103,255, 96,62,96,255, 186,155,186,255, 222,205,222,255, 171,138,171,255, 161,126,161,255, 88,53,88,255, 96,60,96,255, 99,57,99,255, 83,43,83,255, 71,32,71,255, 60,22,60,255, 71,32,71,255, 85,45,85,255, 83,43,83,255, 120,89,120,255, 129,100,129,255, 86,46,86,255, 71,32,71,255, 60,22,60,255, 60,22,60,255, 84,44,84,255, 89,50,89,255, 182,157,182,255, 99,57,99,255, 83,67,51,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 54,40,26,255, 83,67,51,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 68,51,33,255, 102,79,47,255, 128,94,54,255, 68,51,33,255, 128,94,54,255, 102,79,47,255, 73,56,36,255, 128,94,54,255, 120,88,54,255, 54,40,26,255, 216,206,152,255, 211,201,145,255, 207,196,135,255, 210,199,140,255, 198,184,110,255, 202,189,120,255, 200,188,118,255, 210,200,142,255, 206,194,130,255, 206,194,130,255, 207,195,133,255, 211,201,145,255, 211,201,145,255, 200,188,118,255, 211,201,145,255, 159,142,95,255, 219,210,161,255, 211,201,145,255, 184,170,120,255, 242,238,220,255, 244,240,222,255, 233,229,213,255, 248,244,226,255, 241,237,219,255, 243,239,221,255, 250,246,227,255, 233,230,214,255, 253,249,230,255, 252,248,229,255, 225,216,169,255, 210,199,140,255, 153,136,91,255, 194,148,116,255, 184,135,100,255, 159,113,74,255, 177,128,92,255, 104,70,47,255, 184,135,100,255, 102,72,47,255, 201,156,124,255, 201,156,124,255, 206,161,130,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 177,128,92,255, 159,113,74,255, 118,87,64,255, 194,148,116,255, 184,135,100,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 177,128,92,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 184,135,100,255, 159,113,74,255, 177,128,92,255, 104,70,47,255, 184,135,100,255, 177,128,92,255, 118,87,64,255, 184,114,79,255, 174,93,52,255, 172,91,50,255, 190,117,79,255, 193,118,80,255, 195,119,81,255, 168,89,50,255, 151,96,68,255, 172,107,74,255, 176,109,76,255, 137,73,40,255, 182,112,77,255, 191,118,80,255, 173,108,75,255, 164,87,49,255, 129,68,38,255, 170,105,73,255, 177,94,52,255, 143,76,42,255, 0,0,0,0, 0,0,0,0, 172,107,74,255, 142,75,42,255, 0,0,0,0, 0,0,0,0, 193,118,80,255, 133,71,39,255, 0,0,0,0, 0,0,0,0, 176,109,76,255, 169,90,50,255, 138,73,40,255, 85,62,43,255, 61,39,19,255, 62,39,19,255, 84,62,43,255, 90,66,44,255, 82,62,43,255, 82,62,42,255, 67,43,21,255, 72,46,23,255, 58,38,19,255, 89,66,44,255, 82,62,43,255, 90,66,44,255, 83,62,43,255, 65,42,20,255, 45,28,14,255, 79,59,41,255, 58,38,18,255, 48,31,14,255, 72,46,23,255, 63,41,20,255, 73,47,23,255, 84,62,43,255, 64,41,20,255, 73,47,23,255, 51,33,16,255, 70,45,22,255, 60,39,19,255, 70,45,22,255, 88,65,43,255, 64,41,20,255, 51,33,16,255, 0,0,0,0, 237,237,237,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 235,235,235,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 248,238,206,255, 244,232,203,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 85,45,85,255, 83,43,83,255, 80,43,80,255, 74,37,74,255, 90,51,90,255, 90,51,90,255, 120,89,120,255, 185,160,185,255, 88,49,88,255, 87,49,87,255, 65,28,65,255, 76,39,76,255, 89,51,89,255, 119,86,119,255, 125,96,125,255, 93,52,93,255, 85,45,85,255, 83,43,83,255, 68,30,68,255, 90,55,90,255, 171,138,171,255, 171,138,171,255, 153,112,153,255, 90,57,90,255, 93,59,93,255, 144,107,144,255, 155,120,155,255, 93,59,93,255, 87,52,87,255, 100,65,100,255, 91,56,91,255, 93,52,93,255, 85,45,85,255, 83,43,83,255, 80,43,80,255, 74,37,74,255, 90,51,90,255, 90,51,90,255, 120,89,120,255, 185,160,185,255, 88,49,88,255, 87,49,87,255, 65,28,65,255, 76,39,76,255, 89,51,89,255, 119,86,119,255, 125,96,125,255, 93,52,93,255, 83,67,51,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 128,94,54,255, 58,44,28,255, 83,67,51,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 120,88,54,255, 73,56,36,255, 102,79,47,255, 128,94,54,255, 73,56,36,255, 128,94,54,255, 102,79,47,255, 68,51,33,255, 128,94,54,255, 128,94,54,255, 58,44,28,255, 216,207,153,255, 211,201,145,255, 205,193,129,255, 200,188,118,255, 207,196,135,255, 206,194,130,255, 200,188,118,255, 211,201,145,255, 205,193,129,255, 206,194,130,255, 208,198,138,255, 211,201,145,255, 208,198,138,255, 192,178,98,255, 211,201,145,255, 156,139,92,255, 219,210,161,255, 210,199,140,255, 185,171,122,255, 226,223,207,255, 227,223,208,255, 232,229,213,255, 247,243,225,255, 241,237,219,255, 245,241,223,255, 250,246,227,255, 232,228,212,255, 233,229,213,255, 232,228,212,255, 228,220,178,255, 68,46,23,255, 157,140,93,255, 206,161,130,255, 184,135,100,255, 159,113,74,255, 177,128,92,255, 114,80,53,255, 184,135,100,255, 184,135,100,255, 184,135,100,255, 104,70,47,255, 184,135,100,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 177,128,92,255, 159,113,74,255, 118,87,64,255, 206,161,130,255, 184,135,100,255, 159,113,74,255, 184,135,100,255, 104,70,47,255, 177,128,92,255, 159,113,74,255, 184,135,100,255, 114,80,53,255, 184,135,100,255, 159,113,74,255, 104,104,104,255, 73,73,73,255, 51,51,51,255, 184,135,100,255, 118,87,64,255, 175,109,75,255, 160,85,47,255, 186,99,55,255, 147,78,44,255, 177,94,52,255, 172,92,51,255, 172,92,51,255, 160,85,47,255, 166,88,49,255, 131,70,39,255, 163,87,48,255, 172,92,51,255, 169,90,50,255, 168,89,50,255, 169,90,50,255, 129,68,38,255, 164,103,72,255, 177,94,52,255, 145,77,42,255, 0,0,0,0, 0,0,0,0, 172,107,74,255, 135,72,40,255, 0,0,0,0, 0,0,0,0, 180,112,77,255, 133,71,39,255, 0,0,0,0, 0,0,0,0, 177,110,76,255, 184,98,54,255, 138,73,40,255, 79,59,41,255, 60,39,19,255, 72,46,23,255, 70,45,22,255, 73,47,23,255, 71,46,22,255, 68,43,21,255, 67,43,21,255, 72,46,23,255, 61,39,19,255, 73,47,23,255, 70,45,22,255, 59,38,19,255, 66,42,21,255, 57,36,18,255, 47,30,14,255, 90,66,44,255, 62,40,19,255, 58,38,18,255, 88,65,43,255, 81,60,42,255, 89,65,44,255, 80,60,42,255, 70,45,22,255, 73,47,23,255, 63,40,19,255, 87,64,43,255, 84,62,43,255, 89,65,44,255, 89,65,44,255, 67,43,21,255, 50,32,16,255, 0,0,0,0, 235,235,235,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 236,236,236,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 242,222,201,255, 242,227,201,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 90,51,90,255, 87,46,87,255, 94,52,94,255, 124,98,124,255, 182,158,182,255, 87,46,87,255, 91,51,91,255, 84,44,84,255, 120,89,120,255, 86,46,86,255, 88,47,88,255, 75,37,75,255, 80,40,80,255, 85,45,85,255, 99,57,99,255, 118,86,118,255, 90,51,90,255, 87,46,87,255, 86,45,86,255, 85,51,85,255, 115,83,115,255, 83,45,83,255, 84,45,84,255, 80,41,80,255, 101,67,101,255, 81,42,81,255, 82,42,82,255, 75,37,75,255, 80,40,80,255, 85,45,85,255, 99,57,99,255, 118,86,118,255, 90,51,90,255, 87,46,87,255, 94,52,94,255, 124,98,124,255, 182,158,182,255, 87,46,87,255, 91,51,91,255, 84,44,84,255, 120,89,120,255, 86,46,86,255, 88,47,88,255, 75,37,75,255, 80,40,80,255, 85,45,85,255, 99,57,99,255, 118,86,118,255, 87,72,54,255, 102,75,43,255, 96,70,43,255, 58,44,28,255, 102,75,43,255, 81,63,37,255, 58,44,28,255, 81,63,37,255, 81,63,37,255, 58,44,28,255, 102,75,43,255, 81,63,37,255, 58,44,28,255, 81,63,37,255, 81,63,37,255, 58,44,28,255, 53,53,53,255, 63,63,63,255, 104,104,104,255, 73,56,36,255, 63,63,63,255, 104,104,104,255, 73,56,36,255, 63,63,63,255, 104,104,104,255, 73,56,36,255, 63,63,63,255, 104,104,104,255, 73,56,36,255, 63,63,63,255, 104,104,104,255, 58,44,28,255, 177,162,123,255, 159,142,95,255, 143,127,85,255, 144,128,86,255, 159,142,95,255, 149,133,89,255, 152,135,90,255, 159,142,95,255, 141,125,83,255, 142,126,84,255, 152,135,90,255, 159,142,95,255, 154,137,92,255, 117,104,69,255, 159,142,95,255, 156,139,92,255, 68,46,23,255, 207,196,135,255, 184,170,120,255, 243,239,220,255, 243,239,221,255, 232,229,213,255, 250,246,227,255, 245,241,223,255, 247,243,225,255, 250,246,227,255, 230,227,212,255, 247,243,225,255, 248,244,225,255, 225,217,171,255, 91,62,31,255, 152,135,90,255, 118,87,64,255, 118,87,64,255, 102,72,47,255, 118,87,64,255, 73,51,34,255, 91,64,42,255, 91,64,42,255, 91,64,42,255, 73,51,34,255, 118,87,64,255, 113,82,59,255, 118,87,64,255, 73,51,34,255, 91,64,42,255, 91,64,42,255, 91,64,42,255, 53,53,53,255, 184,135,100,255, 177,128,92,255, 184,135,100,255, 114,80,53,255, 142,100,66,255, 142,100,66,255, 142,100,66,255, 114,80,53,255, 184,135,100,255, 159,113,74,255, 51,51,51,255, 114,80,53,255, 142,100,66,255, 142,100,66,255, 91,64,42,255, 172,91,50,255, 117,62,34,255, 145,77,42,255, 106,56,31,255, 133,71,39,255, 131,69,39,255, 134,71,39,255, 122,64,35,255, 119,63,35,255, 87,46,25,255, 127,67,37,255, 141,74,41,255, 123,65,36,255, 118,63,35,255, 134,71,39,255, 119,63,35,255, 53,53,53,255, 177,94,52,255, 172,91,50,255, 195,119,81,255, 195,119,81,255, 182,112,77,255, 163,86,48,255, 191,118,80,255, 175,109,75,255, 180,112,77,255, 172,91,50,255, 173,108,75,255, 61,61,61,255, 81,81,81,255, 114,114,114,255, 145,77,42,255, 62,39,19,255, 43,27,13,255, 50,32,16,255, 49,31,15,255, 51,33,16,255, 51,33,16,255, 50,32,15,255, 43,28,13,255, 49,31,15,255, 40,26,12,255, 51,33,16,255, 47,30,14,255, 50,32,15,255, 41,26,12,255, 37,24,12,255, 43,28,13,255, 53,53,53,255, 62,40,19,255, 67,43,21,255, 65,42,21,255, 67,43,21,255, 70,45,22,255, 66,43,21,255, 72,47,23,255, 67,43,21,255, 66,42,21,255, 73,47,23,255, 255,229,0,255, 224,201,0,255, 165,149,0,255, 70,45,22,255, 50,32,15,255, 0,0,0,0, 235,235,235,255, 242,242,242,255, 242,242,242,255, 241,241,241,255, 241,241,241,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 243,243,243,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 242,242,242,255, 236,236,236,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 124,98,124,255, 135,114,135,255, 182,158,182,255, 90,50,90,255, 87,46,87,255, 133,111,133,255, 123,97,123,255, 90,50,90,255, 132,108,132,255, 90,50,90,255, 87,46,87,255, 85,45,85,255, 90,50,90,255, 90,50,90,255, 90,50,90,255, 117,85,117,255, 124,98,124,255, 135,114,135,255, 137,107,137,255, 90,50,90,255, 87,46,87,255, 133,111,133,255, 123,97,123,255, 90,50,90,255, 108,78,108,255, 90,50,90,255, 87,46,87,255, 85,45,85,255, 90,50,90,255, 90,50,90,255, 90,50,90,255, 117,85,117,255, 124,98,124,255, 135,114,135,255, 182,158,182,255, 90,50,90,255, 87,46,87,255, 133,111,133,255, 123,97,123,255, 90,50,90,255, 132,108,132,255, 90,50,90,255, 87,46,87,255, 85,45,85,255, 90,50,90,255, 90,50,90,255, 90,50,90,255, 117,85,117,255, 192,158,192,255, 181,140,181,255, 187,149,187,255, 182,145,182,255, 192,157,192,255, 186,147,186,255, 183,143,183,255, 150,106,150,255, 191,157,191,255, 183,147,183,255, 179,142,179,255, 184,143,184,255, 192,158,192,255, 179,139,179,255, 179,138,179,255, 146,103,146,255, 201,169,201,255, 176,128,176,255, 175,126,175,255, 148,103,148,255, 203,170,203,255, 196,160,196,255, 194,156,194,255, 153,110,153,255, 202,170,202,255, 194,160,194,255, 190,155,190,255, 166,119,166,255, 200,169,200,255, 172,126,172,255, 170,123,170,255, 145,103,145,255, 199,168,199,255, 188,150,188,255, 188,149,188,255, 188,149,188,255, 201,168,201,255, 194,157,194,255, 191,153,191,255, 165,124,165,255, 199,168,199,255, 192,157,192,255, 187,152,187,255, 182,135,182,255, 200,169,200,255, 187,149,187,255, 186,148,186,255, 184,147,184,255, 204,203,147,255, 246,249,201,255, 246,249,201,255, 214,215,158,255, 212,212,156,255, 247,248,197,255, 247,248,198,255, 248,248,203,255, 248,248,203,255, 239,244,188,255, 214,216,158,255, 240,245,192,255, 247,249,202,255, 245,248,200,255, 202,199,144,255, 196,191,138,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 168,140,74,255, 173,149,91,255, 169,147,87,255, 141,114,63,255, 128,102,56,255, 136,107,56,255, 141,112,61,255, 137,112,65,255, 157,132,77,255, 135,107,59,255, 148,126,72,255, 150,128,74,255, 150,125,72,255, 138,115,66,255, 153,128,75,255, 138,112,66,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 189,153,189,255, 172,123,172,255, 167,118,167,255, 166,118,166,255, 167,119,167,255, 168,121,168,255, 168,120,168,255, 144,101,144,255, 186,147,186,255, 162,114,162,255, 162,114,162,255, 162,115,162,255, 170,122,170,255, 167,119,167,255, 167,119,167,255, 143,99,143,255, 194,158,194,255, 172,123,172,255, 167,118,167,255, 141,98,141,255, 185,147,185,255, 176,129,176,255, 174,125,174,255, 160,111,160,255, 186,145,186,255, 164,116,164,255, 164,116,164,255, 153,107,153,255, 194,160,194,255, 164,117,164,255, 164,117,164,255, 142,99,142,255, 194,158,194,255, 149,104,149,255, 154,107,154,255, 185,146,185,255, 185,147,185,255, 172,126,172,255, 169,122,169,255, 160,112,160,255, 186,145,186,255, 162,116,162,255, 162,116,162,255, 151,106,151,255, 194,160,194,255, 148,103,148,255, 153,107,153,255, 184,147,184,255, 244,247,199,255, 242,248,189,255, 225,232,168,255, 225,232,168,255, 211,212,152,255, 218,224,163,255, 225,232,168,255, 229,238,172,255, 225,232,168,255, 224,229,165,255, 212,213,154,255, 235,248,180,255, 236,248,180,255, 225,232,168,255, 230,240,173,255, 203,201,145,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 145,116,61,255, 144,117,64,255, 136,110,64,255, 143,117,63,255, 160,134,78,255, 152,125,72,255, 155,130,75,255, 142,119,68,255, 142,121,70,255, 171,143,81,255, 184,160,96,255, 181,158,95,255, 185,162,99,255, 149,127,73,255, 142,120,68,255, 144,122,68,255, 204,162,90,255, 184,146,81,255, 203,161,89,255, 176,140,77,255, 164,130,72,255, 166,141,73,255, 181,144,79,255, 174,138,76,255, 185,147,81,255, 164,130,72,255, 185,147,81,255, 189,150,83,255, 187,149,82,255, 161,128,71,255, 206,175,90,255, 174,138,76,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 184,149,184,255, 168,120,168,255, 170,122,170,255, 165,118,165,255, 170,123,170,255, 162,118,162,255, 169,119,169,255, 144,101,144,255, 183,143,183,255, 172,124,172,255, 175,127,175,255, 162,118,162,255, 169,122,169,255, 168,121,168,255, 168,120,168,255, 144,100,144,255, 183,148,183,255, 170,122,170,255, 170,122,170,255, 145,103,145,255, 171,133,171,255, 164,119,164,255, 171,121,171,255, 162,115,162,255, 180,135,180,255, 177,129,177,255, 177,129,177,255, 153,110,153,255, 190,157,190,255, 166,120,166,255, 168,120,168,255, 148,103,148,255, 183,148,183,255, 155,109,155,255, 170,122,170,255, 185,146,185,255, 171,133,171,255, 160,116,160,255, 166,118,166,255, 163,115,163,255, 180,135,180,255, 172,126,172,255, 172,126,172,255, 151,109,151,255, 190,157,190,255, 154,108,154,255, 168,120,168,255, 184,147,184,255, 246,249,201,255, 225,232,168,255, 230,240,173,255, 230,240,173,255, 230,240,173,255, 225,226,173,255, 225,232,168,255, 228,235,171,255, 230,240,173,255, 230,240,173,255, 229,238,172,255, 239,248,184,255, 236,248,180,255, 235,248,180,255, 225,233,169,255, 215,219,158,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 170,140,76,255, 156,129,76,255, 128,102,56,255, 130,104,58,255, 152,129,72,255, 150,120,62,255, 150,128,74,255, 150,128,74,255, 152,129,74,255, 182,159,98,255, 161,134,77,255, 182,157,98,255, 146,124,72,255, 146,126,72,255, 147,123,71,255, 165,138,79,255, 176,140,77,255, 178,141,78,255, 161,131,71,255, 173,142,76,255, 190,158,83,255, 89,61,41,255, 185,157,81,255, 181,144,79,255, 185,147,81,255, 196,167,86,255, 182,145,80,255, 174,150,85,255, 223,195,117,255, 185,150,91,255, 179,152,79,255, 180,143,79,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 87,55,34,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 87,55,34,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 187,149,187,255, 175,126,175,255, 170,122,170,255, 165,118,165,255, 166,118,166,255, 166,118,166,255, 162,115,162,255, 144,100,144,255, 172,131,172,255, 167,119,167,255, 164,117,164,255, 164,117,164,255, 170,124,170,255, 165,118,165,255, 171,123,171,255, 144,101,144,255, 189,149,189,255, 175,126,175,255, 175,126,175,255, 144,101,144,255, 152,105,152,255, 152,105,152,255, 153,106,153,255, 153,107,153,255, 154,108,154,255, 157,111,157,255, 157,111,157,255, 149,104,149,255, 181,147,181,255, 165,118,165,255, 171,123,171,255, 151,108,151,255, 192,159,192,255, 178,141,178,255, 180,143,180,255, 175,137,175,255, 153,106,153,255, 153,106,153,255, 153,107,153,255, 154,108,154,255, 154,108,154,255, 155,109,155,255, 155,109,155,255, 150,105,150,255, 184,147,184,255, 184,147,184,255, 184,147,184,255, 184,147,184,255, 246,249,201,255, 235,248,180,255, 225,232,168,255, 230,240,173,255, 231,243,176,255, 245,249,197,255, 207,208,149,255, 216,220,158,255, 229,236,171,255, 230,240,173,255, 245,249,197,255, 239,248,184,255, 225,232,168,255, 235,248,180,255, 235,248,180,255, 216,220,160,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 125,99,53,255, 142,120,68,255, 181,158,95,255, 165,142,81,255, 144,117,60,255, 147,118,63,255, 142,121,70,255, 136,107,56,255, 171,149,89,255, 128,107,62,255, 149,127,73,255, 135,107,59,255, 153,128,67,255, 140,116,68,255, 169,142,83,255, 146,121,68,255, 196,165,86,255, 108,108,108,255, 168,137,74,255, 167,133,69,255, 192,165,92,255, 89,61,41,255, 185,160,91,255, 89,61,41,255, 185,160,91,255, 148,126,66,255, 185,157,91,255, 211,183,109,255, 121,85,58,255, 196,171,96,255, 192,155,90,255, 121,85,58,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 55,36,23,255, 67,43,27,255, 55,36,23,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 181,145,121,255, 90,72,60,255, 90,72,60,255, 90,72,60,255, 55,36,23,255, 67,43,27,255, 55,36,23,255, 90,72,60,255, 90,72,60,255, 90,72,60,255, 181,145,121,255, 207,166,139,255, 128,84,54,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 55,36,23,255, 205,202,213,255, 55,36,23,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 55,36,23,255, 205,202,213,255, 55,36,23,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 31,23,55,255, 36,27,67,255, 31,23,55,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 135,121,181,255, 67,60,90,255, 67,60,90,255, 67,60,90,255, 31,23,55,255, 36,27,67,255, 31,23,55,255, 67,60,90,255, 67,60,90,255, 67,60,90,255, 135,121,181,255, 155,139,207,255, 72,54,128,255, 192,158,192,255, 170,123,170,255, 170,122,170,255, 166,118,166,255, 168,120,168,255, 168,121,168,255, 170,123,170,255, 144,101,144,255, 185,147,185,255, 173,127,173,255, 168,125,168,255, 166,119,166,255, 168,120,168,255, 168,121,168,255, 170,123,170,255, 144,101,144,255, 201,169,201,255, 176,129,176,255, 175,126,175,255, 148,103,148,255, 202,170,202,255, 194,160,194,255, 190,155,190,255, 166,119,166,255, 204,172,204,255, 198,162,198,255, 190,155,190,255, 153,110,153,255, 199,168,199,255, 171,125,171,255, 170,123,170,255, 151,108,151,255, 201,169,201,255, 176,129,176,255, 175,126,175,255, 153,106,153,255, 192,158,192,255, 181,140,181,255, 187,149,187,255, 182,145,182,255, 192,157,192,255, 186,147,186,255, 183,143,183,255, 150,106,150,255, 199,168,199,255, 171,125,171,255, 170,123,170,255, 152,108,152,255, 246,247,197,255, 225,232,168,255, 242,248,192,255, 241,248,189,255, 239,248,184,255, 245,249,197,255, 234,247,180,255, 230,240,173,255, 239,248,187,255, 245,249,197,255, 225,232,168,255, 225,232,168,255, 230,240,173,255, 230,240,173,255, 235,248,180,255, 203,202,146,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 143,110,59,255, 180,157,94,255, 163,136,77,255, 152,128,72,255, 157,132,77,255, 145,116,61,255, 137,112,63,255, 144,115,60,255, 166,139,82,255, 118,100,56,255, 134,116,68,255, 144,117,64,255, 163,138,79,255, 131,109,63,255, 150,125,70,255, 165,143,85,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 185,133,92,255, 174,135,67,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 185,155,91,255, 89,61,41,255, 185,158,91,255, 108,108,108,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 210,207,218,255, 205,202,213,255, 197,194,205,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 213,210,221,255, 210,207,218,255, 210,207,218,255, 210,207,218,255, 205,202,213,255, 197,194,205,255, 197,194,205,255, 197,194,205,255, 197,194,205,255, 90,72,60,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 210,207,218,255, 179,176,185,255, 197,194,205,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 210,207,218,255, 179,176,185,255, 197,194,205,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 210,207,218,255, 205,202,213,255, 197,194,205,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 213,210,221,255, 210,207,218,255, 210,207,218,255, 210,207,218,255, 205,202,213,255, 197,194,205,255, 197,194,205,255, 197,194,205,255, 197,194,205,255, 67,60,90,255, 155,139,207,255, 135,116,204,255, 189,153,189,255, 170,121,170,255, 170,121,170,255, 165,117,165,255, 171,125,171,255, 164,117,164,255, 164,117,164,255, 143,100,143,255, 182,142,182,255, 171,123,171,255, 171,123,171,255, 168,120,168,255, 169,122,169,255, 167,119,167,255, 167,119,167,255, 143,100,143,255, 194,158,194,255, 170,121,170,255, 170,121,170,255, 145,101,145,255, 179,140,179,255, 160,114,160,255, 160,114,160,255, 166,119,166,255, 188,147,188,255, 177,129,177,255, 174,125,174,255, 162,115,162,255, 194,160,194,255, 167,119,167,255, 167,119,167,255, 145,102,145,255, 194,158,194,255, 167,120,167,255, 167,120,167,255, 150,104,150,255, 189,153,189,255, 172,123,172,255, 167,118,167,255, 166,118,166,255, 167,119,167,255, 168,121,168,255, 168,120,168,255, 144,101,144,255, 194,160,194,255, 167,119,167,255, 167,119,167,255, 150,105,150,255, 243,245,198,255, 230,240,173,255, 231,242,175,255, 225,232,168,255, 225,232,168,255, 225,232,168,255, 243,249,195,255, 239,248,184,255, 234,247,180,255, 225,232,168,255, 225,232,168,255, 230,240,173,255, 229,236,171,255, 230,240,173,255, 229,238,172,255, 204,203,147,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,138,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 159,133,77,255, 175,152,91,255, 155,132,75,255, 157,128,73,255, 160,137,80,255, 143,118,69,255, 157,131,75,255, 156,133,76,255, 146,121,72,255, 153,130,73,255, 140,111,60,255, 143,117,67,255, 131,110,61,255, 145,120,67,255, 157,129,75,255, 155,132,75,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 168,165,175,255, 90,72,60,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 197,194,205,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 197,194,205,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 125,102,201,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 168,165,175,255, 67,60,90,255, 135,116,204,255, 72,54,128,255, 186,149,186,255, 170,122,170,255, 168,120,168,255, 166,118,166,255, 168,120,168,255, 167,119,167,255, 167,119,167,255, 143,100,143,255, 184,145,184,255, 169,119,169,255, 164,118,164,255, 164,118,164,255, 168,122,168,255, 166,119,166,255, 166,120,166,255, 144,101,144,255, 188,149,188,255, 170,122,170,255, 170,122,170,255, 145,103,145,255, 171,133,171,255, 164,119,164,255, 164,119,164,255, 160,111,160,255, 183,139,183,255, 168,117,168,255, 153,113,153,255, 153,110,153,255, 190,157,190,255, 166,120,166,255, 166,120,166,255, 149,106,149,255, 188,149,188,255, 167,120,167,255, 167,120,167,255, 150,105,150,255, 184,149,184,255, 168,120,168,255, 170,122,170,255, 165,118,165,255, 170,123,170,255, 162,118,162,255, 169,119,169,255, 144,101,144,255, 190,157,190,255, 166,120,166,255, 166,120,166,255, 151,107,151,255, 205,203,147,255, 229,238,172,255, 237,248,182,255, 225,232,168,255, 216,220,159,255, 230,240,173,255, 230,240,173,255, 235,248,180,255, 235,248,180,255, 235,248,180,255, 230,240,173,255, 207,206,149,255, 215,218,157,255, 228,235,171,255, 205,203,147,255, 200,196,143,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,174,25,255, 0,156,23,255, 0,138,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,138,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 157,133,75,255, 165,142,81,255, 161,136,77,255, 150,128,74,255, 152,126,74,255, 162,137,84,255, 120,102,58,255, 142,115,62,255, 135,112,63,255, 146,124,72,255, 164,132,70,255, 174,151,94,255, 173,150,93,255, 161,134,77,255, 145,120,67,255, 150,128,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 199,126,79,255, 199,126,79,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 162,46,44,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 90,72,60,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 128,84,54,255, 90,72,60,255, 206,203,214,255, 179,176,185,255, 168,84,81,255, 179,176,185,255, 162,46,44,255, 179,176,185,255, 78,108,50,255, 179,176,185,255, 159,157,167,255, 89,65,50,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 90,72,60,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 90,72,60,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 106,79,199,255, 106,79,199,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 67,60,90,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 72,54,128,255, 67,60,90,255, 206,203,214,255, 179,176,185,255, 172,105,103,255, 179,176,185,255, 162,46,44,255, 179,176,185,255, 98,135,62,255, 179,176,185,255, 159,157,167,255, 59,50,89,255, 72,54,128,255, 125,102,201,255, 146,103,146,255, 145,101,145,255, 144,101,144,255, 144,101,144,255, 144,101,144,255, 143,100,143,255, 143,100,143,255, 143,101,143,255, 143,100,143,255, 143,100,143,255, 144,100,144,255, 144,101,144,255, 145,102,145,255, 144,101,144,255, 145,101,145,255, 144,101,144,255, 181,140,181,255, 174,125,174,255, 175,126,175,255, 151,108,151,255, 168,117,168,255, 152,105,152,255, 153,106,153,255, 153,107,153,255, 153,106,153,255, 154,108,154,255, 154,108,154,255, 155,109,155,255, 185,150,185,255, 165,118,165,255, 165,118,165,255, 148,103,148,255, 166,123,166,255, 163,115,163,255, 157,111,157,255, 155,109,155,255, 187,149,187,255, 175,126,175,255, 170,122,170,255, 165,118,165,255, 166,118,166,255, 166,118,166,255, 162,115,162,255, 144,100,144,255, 166,123,166,255, 157,111,157,255, 157,111,157,255, 152,107,152,255, 199,195,141,255, 213,215,156,255, 211,213,154,255, 197,192,139,255, 197,192,139,255, 200,196,143,255, 197,192,139,255, 199,195,141,255, 198,194,141,255, 199,195,141,255, 200,196,142,255, 212,214,155,255, 211,213,154,255, 200,196,143,255, 200,196,142,255, 195,189,137,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,174,25,255, 29,139,51,255, 99,146,69,255, 23,111,55,255, 0,0,0,0, 0,0,0,0, 0,178,24,255, 0,178,24,255, 23,111,55,255, 0,0,0,0, 0,0,0,0, 0,178,24,255, 23,111,55,255, 0,0,0,0, 148,121,70,255, 140,117,66,255, 157,132,77,255, 134,106,58,255, 140,111,60,255, 166,140,86,255, 161,136,77,255, 128,102,56,255, 152,122,64,255, 156,130,74,255, 145,121,69,255, 144,123,72,255, 130,106,58,255, 173,147,91,255, 138,114,62,255, 147,116,63,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 55,36,23,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 55,36,23,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 55,36,23,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 55,36,23,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 55,36,23,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 55,36,23,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 55,36,23,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 55,36,23,255, 201,141,102,255, 199,126,79,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 31,23,55,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 31,23,55,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 31,23,55,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 31,23,55,255, 125,102,201,255, 106,79,199,255, 199,168,199,255, 186,149,186,255, 186,149,186,255, 182,145,182,255, 192,157,192,255, 187,150,187,255, 186,147,186,255, 145,102,145,255, 194,160,194,255, 187,150,187,255, 181,141,181,255, 182,142,182,255, 184,146,184,255, 182,142,182,255, 179,138,179,255, 142,100,142,255, 199,168,199,255, 174,127,174,255, 172,126,172,255, 148,103,148,255, 203,170,203,255, 198,162,198,255, 197,160,197,255, 166,119,166,255, 205,173,205,255, 198,162,198,255, 195,158,195,255, 162,115,162,255, 200,169,200,255, 172,126,172,255, 170,123,170,255, 145,103,145,255, 199,168,199,255, 174,127,174,255, 172,126,172,255, 153,106,153,255, 192,158,192,255, 170,123,170,255, 170,122,170,255, 166,118,166,255, 168,120,168,255, 168,121,168,255, 170,123,170,255, 144,101,144,255, 200,169,200,255, 172,126,172,255, 170,123,170,255, 150,105,150,255, 246,249,201,255, 243,245,198,255, 243,245,198,255, 211,212,155,255, 211,212,155,255, 247,249,201,255, 243,245,198,255, 203,201,146,255, 195,190,137,255, 203,201,145,255, 244,246,199,255, 245,248,200,255, 232,235,182,255, 238,243,188,255, 239,245,189,255, 246,249,201,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,188,22,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,174,25,255, 29,139,51,255, 147,142,92,255, 15,138,37,255, 23,111,55,255, 0,0,0,0, 127,141,93,255, 0,178,24,255, 29,139,51,255, 0,178,24,255, 0,168,28,255, 0,192,27,255, 0,138,23,255, 0,0,0,0, 163,131,69,255, 156,133,76,255, 166,141,82,255, 146,117,62,255, 145,122,71,255, 173,151,91,255, 165,140,79,255, 138,115,66,255, 143,117,63,255, 151,121,63,255, 147,118,63,255, 131,110,61,255, 146,124,72,255, 171,147,91,255, 136,108,60,255, 129,107,59,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 63,41,26,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 134,67,65,255, 179,176,185,255, 243,96,92,255, 179,176,185,255, 119,116,128,255, 77,53,38,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 63,41,26,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 205,58,54,255, 179,176,185,255, 119,116,128,255, 77,53,38,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 63,41,26,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 243,96,92,255, 179,176,185,255, 119,116,128,255, 77,53,38,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 63,41,26,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 243,96,92,255, 179,176,185,255, 119,116,128,255, 77,53,38,255, 199,126,79,255, 199,126,79,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 34,26,63,255, 205,202,213,255, 179,176,185,255, 155,108,50,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 243,96,92,255, 179,176,185,255, 119,116,128,255, 47,38,77,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 34,26,63,255, 205,202,213,255, 179,176,185,255, 155,108,50,255, 179,176,185,255, 168,84,81,255, 179,176,185,255, 164,46,43,255, 179,176,185,255, 119,116,128,255, 47,38,77,255, 106,79,199,255, 106,79,199,255, 186,150,186,255, 168,120,168,255, 168,120,168,255, 167,119,167,255, 170,122,170,255, 167,119,167,255, 176,127,176,255, 145,102,145,255, 186,148,186,255, 171,122,171,255, 174,125,174,255, 168,120,168,255, 170,122,170,255, 169,121,169,255, 170,122,170,255, 144,101,144,255, 186,150,186,255, 167,119,167,255, 167,119,167,255, 141,98,141,255, 179,140,179,255, 160,114,160,255, 177,129,177,255, 164,117,164,255, 188,147,188,255, 171,121,171,255, 171,121,171,255, 149,103,149,255, 194,160,194,255, 164,117,164,255, 164,117,164,255, 149,106,149,255, 186,150,186,255, 166,119,166,255, 166,119,166,255, 146,101,146,255, 189,153,189,255, 170,121,170,255, 170,121,170,255, 165,117,165,255, 171,125,171,255, 164,117,164,255, 164,117,164,255, 143,100,143,255, 194,160,194,255, 164,117,164,255, 164,117,164,255, 151,107,151,255, 235,248,180,255, 230,240,173,255, 212,214,154,255, 221,227,163,255, 229,236,171,255, 239,248,187,255, 234,247,180,255, 231,242,175,255, 198,194,141,255, 243,245,198,255, 241,246,187,255, 230,240,173,255, 239,248,187,255, 227,236,171,255, 225,232,168,255, 225,232,168,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 15,138,37,255, 29,139,51,255, 147,142,92,255, 0,174,25,255, 29,139,51,255, 0,174,25,255, 147,142,92,255, 58,166,73,255, 23,111,55,255, 0,192,27,255, 159,129,103,255, 0,192,27,255, 29,139,51,255, 0,0,0,0, 139,112,59,255, 138,115,66,255, 169,141,81,255, 136,107,56,255, 149,127,73,255, 155,130,75,255, 174,150,92,255, 147,120,67,255, 141,118,67,255, 167,146,87,255, 152,129,74,255, 161,137,79,255, 131,107,61,255, 163,138,85,255, 165,141,83,255, 157,130,79,255, 121,85,58,255, 150,108,74,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 89,61,41,255, 89,61,41,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 55,36,23,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 55,36,23,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 55,36,23,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 55,36,23,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 55,36,23,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 55,36,23,255, 188,119,74,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 154,99,63,255, 55,36,23,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 55,36,23,255, 188,119,74,255, 199,126,79,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 31,23,55,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 31,23,55,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 31,23,55,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 31,23,55,255, 100,74,188,255, 106,79,199,255, 188,152,188,255, 175,126,175,255, 170,122,170,255, 167,119,167,255, 170,122,170,255, 170,123,170,255, 170,123,170,255, 146,102,146,255, 184,145,184,255, 174,125,174,255, 169,121,169,255, 168,120,168,255, 170,122,170,255, 166,119,166,255, 168,120,168,255, 144,100,144,255, 192,155,192,255, 175,126,175,255, 175,126,175,255, 145,103,145,255, 171,133,171,255, 164,119,164,255, 164,119,164,255, 160,111,160,255, 183,139,183,255, 174,125,174,255, 164,119,164,255, 152,107,152,255, 190,157,190,255, 166,120,166,255, 166,120,166,255, 148,103,148,255, 192,155,192,255, 169,122,169,255, 169,122,169,255, 150,105,150,255, 186,149,186,255, 170,122,170,255, 168,120,168,255, 166,118,166,255, 168,120,168,255, 167,119,167,255, 167,119,167,255, 143,100,143,255, 190,157,190,255, 166,120,166,255, 166,120,166,255, 151,105,151,255, 239,248,184,255, 238,248,182,255, 229,238,171,255, 230,240,173,255, 239,248,187,255, 243,249,195,255, 235,248,180,255, 234,247,180,255, 200,196,143,255, 245,247,199,255, 230,240,173,255, 239,248,187,255, 243,249,195,255, 225,232,168,255, 225,232,168,255, 230,240,173,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 15,138,37,255, 194,142,140,255, 0,138,23,255, 0,174,25,255, 29,139,51,255, 194,142,140,255, 147,142,92,255, 0,168,28,255, 29,139,51,255, 0,178,24,255, 147,122,92,255, 0,163,24,255, 23,111,55,255, 0,0,0,0, 148,119,64,255, 145,118,71,255, 130,106,60,255, 157,134,77,255, 144,123,72,255, 166,138,78,255, 149,127,73,255, 168,144,86,255, 171,143,83,255, 143,117,67,255, 174,152,92,255, 128,102,56,255, 130,106,58,255, 129,103,57,255, 135,107,59,255, 130,106,58,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 89,61,41,255, 150,108,74,255, 150,108,74,255, 135,135,135,255, 121,85,58,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 159,157,167,255, 179,176,185,255, 179,176,185,255, 78,108,50,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 90,72,60,255, 197,194,205,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 172,105,103,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 90,72,60,255, 197,194,205,255, 179,176,185,255, 168,75,73,255, 179,176,185,255, 168,84,81,255, 179,176,185,255, 98,135,62,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 128,84,54,255, 188,119,74,255, 199,126,79,255, 154,99,63,255, 128,84,54,255, 90,72,60,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 145,143,153,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 128,84,54,255, 188,119,74,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 159,157,167,255, 179,176,185,255, 179,176,185,255, 98,135,62,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 67,60,90,255, 197,194,205,255, 179,176,185,255, 162,46,44,255, 179,176,185,255, 172,105,103,255, 179,176,185,255, 168,84,81,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 72,54,128,255, 100,74,188,255, 183,145,183,255, 174,125,174,255, 174,125,174,255, 171,122,171,255, 169,121,169,255, 170,122,170,255, 165,118,165,255, 143,100,143,255, 180,142,180,255, 173,124,173,255, 168,120,168,255, 171,123,171,255, 171,124,171,255, 168,120,168,255, 168,120,168,255, 144,101,144,255, 181,140,181,255, 174,125,174,255, 174,125,174,255, 149,106,149,255, 168,117,168,255, 153,106,153,255, 154,108,154,255, 154,108,154,255, 157,111,157,255, 157,111,157,255, 157,111,157,255, 166,119,166,255, 193,157,193,255, 168,120,168,255, 168,120,168,255, 149,106,149,255, 189,149,189,255, 174,125,174,255, 157,111,157,255, 150,104,150,255, 146,103,146,255, 145,101,145,255, 144,101,144,255, 144,101,144,255, 144,101,144,255, 143,100,143,255, 143,100,143,255, 143,101,143,255, 166,123,166,255, 157,111,157,255, 153,106,153,255, 151,107,151,255, 239,248,184,255, 243,249,195,255, 239,248,184,255, 245,249,197,255, 243,249,195,255, 225,232,168,255, 225,232,168,255, 230,240,173,255, 199,195,141,255, 247,249,202,255, 235,248,180,255, 243,249,195,255, 225,232,168,255, 229,238,172,255, 228,235,171,255, 230,240,173,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,168,28,255, 172,112,110,255, 189,119,112,255, 75,85,34,255, 0,0,0,0, 196,153,153,255, 110,86,43,255, 0,128,21,255, 0,0,0,0, 132,164,122,255, 129,72,51,255, 29,139,51,255, 0,0,0,0, 0,0,0,0, 126,102,60,255, 166,139,80,255, 141,117,69,255, 145,116,61,255, 150,123,72,255, 129,103,59,255, 135,107,59,255, 148,126,72,255, 154,129,74,255, 146,117,62,255, 169,147,89,255, 158,135,80,255, 144,117,66,255, 142,121,70,255, 125,101,59,255, 156,131,78,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 108,108,108,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 145,143,153,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 128,84,54,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 128,84,54,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 128,84,54,255, 154,99,63,255, 128,84,54,255, 207,166,139,255, 90,72,60,255, 197,194,205,255, 179,176,185,255, 119,116,128,255, 67,44,29,255, 77,53,38,255, 67,44,29,255, 213,210,221,255, 179,176,185,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 128,84,54,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 145,143,153,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 72,54,128,255, 191,157,191,255, 170,122,170,255, 169,122,169,255, 169,121,169,255, 170,123,170,255, 171,123,171,255, 172,125,172,255, 144,101,144,255, 194,160,194,255, 177,130,177,255, 170,122,170,255, 171,123,171,255, 172,125,172,255, 174,126,174,255, 172,124,172,255, 142,100,142,255, 199,168,199,255, 175,128,175,255, 172,126,172,255, 145,103,145,255, 203,170,203,255, 198,162,198,255, 197,160,197,255, 158,111,158,255, 205,173,205,255, 198,162,198,255, 197,160,197,255, 166,119,166,255, 200,168,200,255, 173,126,173,255, 170,123,170,255, 145,103,145,255, 199,168,199,255, 199,168,199,255, 199,168,199,255, 175,139,175,255, 201,168,201,255, 196,160,196,255, 194,157,194,255, 171,128,171,255, 205,173,205,255, 196,160,196,255, 194,157,194,255, 192,153,192,255, 200,168,200,255, 193,157,193,255, 186,152,186,255, 193,157,193,255, 235,248,180,255, 225,232,168,255, 225,233,169,255, 225,233,169,255, 245,249,197,255, 230,240,173,255, 225,232,168,255, 229,236,171,255, 198,194,141,255, 243,245,198,255, 235,248,180,255, 243,249,195,255, 225,232,168,255, 230,239,172,255, 230,239,172,255, 239,248,184,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,139,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 2,149,14,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 198,155,155,255, 142,56,56,255, 142,56,48,255, 0,0,0,0, 204,167,168,255, 106,76,41,255, 0,0,0,0, 0,0,0,0, 203,162,162,255, 125,65,44,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 166,141,80,255, 146,117,62,255, 136,111,66,255, 164,138,82,255, 145,117,67,255, 148,120,66,255, 153,130,75,255, 126,100,54,255, 148,126,72,255, 174,150,92,255, 148,126,72,255, 142,121,70,255, 157,132,77,255, 167,144,87,255, 163,141,81,255, 150,125,70,255, 121,85,58,255, 89,61,41,255, 150,108,74,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 185,133,92,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 121,85,58,255, 185,133,92,255, 185,133,92,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 197,194,205,255, 168,165,175,255, 159,157,167,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 197,194,205,255, 168,165,175,255, 159,157,167,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 90,72,60,255, 197,194,205,255, 145,143,153,255, 90,72,60,255, 155,107,76,255, 111,73,47,255, 155,107,76,255, 90,72,60,255, 197,194,205,255, 119,116,128,255, 90,72,60,255, 207,166,139,255, 204,150,116,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 197,194,205,255, 168,165,175,255, 159,157,167,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 135,116,204,255, 188,152,188,255, 174,125,174,255, 170,121,170,255, 168,119,168,255, 168,120,168,255, 165,118,165,255, 167,119,167,255, 143,100,143,255, 186,147,186,255, 177,129,177,255, 174,125,174,255, 169,121,169,255, 170,122,170,255, 168,120,168,255, 171,122,171,255, 142,99,142,255, 191,155,191,255, 174,125,174,255, 174,125,174,255, 148,103,148,255, 179,140,179,255, 167,120,167,255, 167,120,167,255, 150,104,150,255, 186,145,186,255, 175,126,175,255, 174,125,174,255, 160,111,160,255, 194,160,194,255, 166,119,166,255, 166,119,166,255, 145,101,145,255, 191,155,191,255, 150,104,150,255, 157,110,157,255, 182,144,182,255, 179,140,179,255, 162,115,162,255, 162,115,162,255, 144,101,144,255, 186,145,186,255, 170,123,170,255, 169,122,169,255, 168,117,168,255, 194,160,194,255, 149,103,149,255, 155,109,155,255, 186,148,186,255, 225,232,168,255, 225,232,168,255, 207,207,149,255, 215,219,158,255, 234,247,180,255, 235,248,180,255, 239,248,187,255, 234,247,180,255, 213,215,156,255, 245,247,199,255, 230,240,173,255, 235,248,180,255, 230,240,173,255, 202,200,144,255, 208,208,150,255, 239,248,184,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,184,23,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,184,23,255, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 194,142,140,255, 153,71,72,255, 0,0,0,0, 0,0,0,0, 194,142,140,255, 142,56,48,255, 0,0,0,0, 0,0,0,0, 189,119,112,255, 142,56,48,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 142,120,68,255, 168,135,72,255, 136,117,64,255, 145,119,69,255, 129,107,63,255, 136,113,64,255, 132,108,62,255, 145,119,69,255, 157,134,77,255, 154,129,74,255, 152,122,64,255, 152,124,70,255, 168,145,88,255, 133,107,61,255, 156,127,72,255, 144,120,68,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 116,88,68,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 89,61,41,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 55,36,23,255, 77,53,38,255, 55,36,23,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 181,145,121,255, 90,72,60,255, 90,72,60,255, 89,65,50,255, 55,36,23,255, 77,53,38,255, 55,36,23,255, 90,72,60,255, 90,72,60,255, 90,72,60,255, 181,145,121,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 181,145,121,255, 90,72,60,255, 90,72,60,255, 89,65,50,255, 55,36,23,255, 77,53,38,255, 55,36,23,255, 90,72,60,255, 90,72,60,255, 90,72,60,255, 181,145,121,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 128,84,54,255, 207,166,139,255, 181,145,121,255, 90,72,60,255, 90,72,60,255, 178,131,101,255, 111,73,47,255, 155,107,76,255, 111,73,47,255, 181,145,121,255, 90,72,60,255, 90,72,60,255, 181,145,121,255, 204,150,116,255, 128,84,54,255, 125,102,201,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 31,23,55,255, 47,38,77,255, 31,23,55,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 72,54,128,255, 155,139,207,255, 135,121,181,255, 67,60,90,255, 67,60,90,255, 59,50,89,255, 31,23,55,255, 47,38,77,255, 31,23,55,255, 67,60,90,255, 67,60,90,255, 67,60,90,255, 135,121,181,255, 135,116,204,255, 72,54,128,255, 184,149,184,255, 170,122,170,255, 168,120,168,255, 164,117,164,255, 169,121,169,255, 171,123,171,255, 166,119,166,255, 143,101,143,255, 179,142,179,255, 170,123,170,255, 168,120,168,255, 168,120,168,255, 170,122,170,255, 169,121,169,255, 173,124,173,255, 145,102,145,255, 183,148,183,255, 170,122,170,255, 170,122,170,255, 145,103,145,255, 187,145,187,255, 175,126,175,255, 169,122,169,255, 152,107,152,255, 171,133,171,255, 164,119,164,255, 164,119,164,255, 160,111,160,255, 194,159,194,255, 171,123,171,255, 171,123,171,255, 151,108,151,255, 183,148,183,255, 155,109,155,255, 170,122,170,255, 182,144,182,255, 187,145,187,255, 169,122,169,255, 163,117,163,255, 151,109,151,255, 171,133,171,255, 160,116,160,255, 160,116,160,255, 168,117,168,255, 194,159,194,255, 155,107,155,255, 168,117,168,255, 185,145,185,255, 234,247,180,255, 229,237,171,255, 225,232,168,255, 216,220,159,255, 217,221,160,255, 230,240,173,255, 230,240,173,255, 213,216,157,255, 213,216,157,255, 207,205,149,255, 230,240,173,255, 235,248,180,255, 217,223,161,255, 239,248,184,255, 245,249,197,255, 243,249,195,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,173,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,173,23,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 5,107,5,255, 2,154,12,255, 0,0,0,0, 0,0,0,0, 0,226,16,255, 0,173,23,255, 2,139,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,29,23,255, 189,119,112,255, 146,66,67,255, 91,29,23,255, 91,29,23,255, 152,79,72,255, 112,36,28,255, 91,29,23,255, 91,29,23,255, 152,79,72,255, 107,36,28,255, 91,29,23,255, 0,0,0,0, 0,0,0,0, 175,151,93,255, 148,124,72,255, 158,125,68,255, 119,99,55,255, 178,155,94,255, 163,136,79,255, 147,125,71,255, 141,112,61,255, 129,107,63,255, 136,107,56,255, 148,123,70,255, 146,124,72,255, 164,140,84,255, 157,126,65,255, 136,107,56,255, 128,104,58,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 121,85,58,255, 89,61,41,255, 121,85,58,255, 89,61,41,255, 185,133,92,255, 185,133,92,255, 121,85,58,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 178,123,87,255, 177,113,71,255, 169,108,67,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 178,123,87,255, 177,113,71,255, 169,108,67,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 178,123,87,255, 177,113,71,255, 169,108,67,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 178,123,87,255, 177,113,71,255, 169,108,67,255, 128,84,54,255, 207,166,139,255, 207,166,139,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 108,87,178,255, 95,71,177,255, 91,67,169,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 108,87,178,255, 95,71,177,255, 91,67,169,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 149,107,149,255, 145,101,145,255, 145,101,145,255, 144,101,144,255, 145,101,145,255, 145,101,145,255, 145,101,145,255, 144,102,144,255, 143,100,143,255, 144,101,144,255, 144,101,144,255, 144,101,144,255, 145,102,145,255, 146,103,146,255, 147,103,147,255, 144,101,144,255, 185,144,185,255, 172,123,172,255, 175,126,175,255, 151,108,151,255, 158,110,158,255, 161,113,161,255, 161,113,161,255, 153,107,153,255, 152,105,152,255, 153,106,153,255, 154,108,154,255, 154,108,154,255, 185,150,185,255, 167,119,167,255, 171,123,171,255, 148,103,148,255, 182,144,182,255, 188,149,188,255, 185,145,185,255, 182,144,182,255, 160,113,160,255, 152,107,152,255, 152,107,152,255, 151,106,151,255, 160,113,160,255, 152,107,152,255, 152,107,152,255, 151,106,151,255, 186,152,186,255, 185,145,185,255, 186,148,186,255, 186,148,186,255, 199,195,141,255, 211,211,154,255, 209,208,151,255, 196,191,138,255, 210,211,152,255, 197,192,139,255, 200,196,142,255, 198,194,141,255, 195,189,137,255, 213,215,156,255, 200,196,143,255, 200,196,142,255, 196,191,138,255, 196,191,138,255, 200,196,142,255, 199,195,141,255, 0,0,0,0, 0,0,0,0, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 2,149,14,255, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 5,107,5,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 2,149,14,255, 0,188,22,255, 5,107,5,255, 0,0,0,0, 0,0,0,0, 2,149,14,255, 5,107,5,255, 0,226,16,255, 0,0,0,0, 0,0,0,0, 0,198,23,255, 2,139,13,255, 2,149,14,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 91,29,23,255, 112,36,28,255, 129,41,33,255, 129,41,33,255, 107,36,28,255, 112,36,28,255, 129,41,33,255, 129,41,33,255, 107,36,28,255, 112,36,28,255, 129,41,33,255, 129,41,33,255, 107,36,28,255, 91,29,23,255, 0,0,0,0, 149,125,73,255, 141,118,67,255, 166,142,86,255, 176,154,94,255, 140,111,60,255, 168,143,84,255, 136,108,60,255, 149,120,65,255, 165,141,83,255, 148,119,64,255, 142,119,68,255, 159,130,73,255, 140,118,70,255, 136,107,56,255, 125,101,59,255, 131,108,63,255, 150,108,74,255, 121,85,58,255, 185,133,92,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 135,135,135,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 121,85,58,255, 150,108,74,255, 150,108,74,255, 121,85,58,255, 89,61,41,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 199,126,79,255, 199,126,79,255, 188,119,74,255, 128,84,54,255, 204,150,116,255, 128,84,54,255, 201,141,102,255, 199,126,79,255, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 53,54,53,255, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 53,54,53,255, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 53,54,53,255, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 53,54,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 206,107,109,255, 206,107,109,255, 206,107,109,255, 206,107,109,255, 206,107,109,255, 206,107,109,255, 206,107,109,255, 206,107,109,255, 206,107,109,255, 206,107,109,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 46,34,87,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 46,34,87,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 100,74,188,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 51,77,66,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 51,77,66,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 143,192,255,158, 255,255,255,158, 119,169,255,159, 255,255,255,158, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 0,0,0,0, 0,0,0,0, 206,107,109,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 207,23,29,255, 0,0,0,0, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 31,23,55,255, 205,202,213,255, 31,23,55,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 31,23,55,255, 205,202,213,255, 31,23,55,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 72,54,128,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 34,50,43,255, 40,60,51,255, 34,50,43,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 140,170,157,255, 70,85,78,255, 70,85,78,255, 70,85,78,255, 34,50,43,255, 40,60,51,255, 34,50,43,255, 70,85,78,255, 70,85,78,255, 70,85,78,255, 140,170,157,255, 161,195,180,255, 78,115,99,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 34,50,43,255, 205,202,213,255, 34,50,43,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 34,50,43,255, 205,202,213,255, 34,50,43,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 255,255,255,158, 143,192,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 78,66,78,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 78,66,78,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 78,66,78,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 118,99,118,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 118,99,118,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 227,0,0,255, 194,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,55,57,255, 227,0,0,255, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 210,207,218,255, 179,176,185,255, 197,194,205,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 210,207,218,255, 179,176,185,255, 197,194,205,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 210,207,218,255, 205,202,213,255, 197,194,205,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 213,210,221,255, 210,207,218,255, 210,207,218,255, 210,207,218,255, 205,202,213,255, 197,194,205,255, 197,194,205,255, 197,194,205,255, 197,194,205,255, 70,85,78,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 210,207,218,255, 179,176,185,255, 197,194,205,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 210,207,218,255, 179,176,185,255, 197,194,205,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,158, 120,170,255,159, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 143,192,255,158, 119,169,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 255,255,255,158, 143,192,255,158, 119,169,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 255,255,255,158, 119,169,255,159, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 99,83,99,255, 99,83,99,255, 111,90,113,255, 111,90,113,255, 109,92,109,255, 109,92,109,255, 90,71,92,255, 78,66,78,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 215,194,215,255, 215,179,215,255, 83,68,83,255, 38,29,42,255, 38,29,42,255, 83,68,83,255, 215,179,215,255, 215,194,215,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 78,66,78,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 215,194,215,255, 215,194,215,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 78,66,78,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 118,99,118,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 118,99,118,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 194,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,55,57,255, 227,0,0,255, 207,0,0,255, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 125,102,201,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 197,194,205,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 197,194,205,255, 67,60,90,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 168,165,175,255, 70,85,78,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 197,194,205,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 197,194,205,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,158, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 255,255,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 255,255,255,158, 119,169,255,159, 255,255,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 255,255,255,158, 143,192,255,158, 143,192,255,158, 119,169,255,159, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 99,83,99,255, 138,114,138,255, 215,179,215,255, 215,179,215,255, 215,194,215,255, 215,194,215,255, 215,194,215,255, 109,92,109,255, 16,16,16,255, 150,120,150,255, 79,67,79,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 215,179,215,255, 215,194,215,255, 194,160,194,255, 38,29,42,255, 38,29,42,255, 194,160,194,255, 215,194,215,255, 215,179,215,255, 194,160,194,255, 150,120,150,255, 79,67,79,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 215,194,215,255, 38,29,42,255, 38,29,42,255, 215,194,215,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 79,67,79,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 118,99,118,255, 194,160,194,255, 194,160,194,255, 194,160,194,255, 194,160,194,255, 118,99,118,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 120,100,120,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,55,57,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 106,79,199,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 67,60,90,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 67,60,90,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 118,178,151,255, 118,178,151,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 206,203,214,255, 179,176,185,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 70,85,78,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 78,115,99,255, 70,85,78,255, 206,203,214,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 162,46,44,255, 179,176,185,255, 78,108,50,255, 179,176,185,255, 159,157,167,255, 62,82,73,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 200,84,82,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 70,85,78,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 200,84,82,255, 179,176,185,255, 179,176,185,255, 159,157,167,255, 70,85,78,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,158, 143,192,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,158, 255,255,255,158, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 255,255,255,158, 255,255,255,158, 142,191,255,159, 119,169,255,159, 143,192,255,158, 255,255,255,158, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 255,255,255,158, 255,255,255,158, 142,191,255,159, 119,169,255,159, 143,192,255,158, 255,255,255,158, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 99,83,99,255, 215,179,215,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 215,194,215,255, 109,92,109,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 83,68,83,255, 194,160,194,255, 194,160,194,255, 16,16,16,255, 16,16,16,255, 194,160,194,255, 194,160,194,255, 83,68,83,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 215,179,215,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 215,179,215,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 215,179,215,255, 215,179,215,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,55,57,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 0,0,0,0, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 106,79,199,255, 106,79,199,255, 31,23,55,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 31,23,55,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 31,23,55,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 31,23,55,255, 125,102,201,255, 106,79,199,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 34,50,43,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 34,50,43,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 34,50,43,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 34,50,43,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 34,50,43,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 34,50,43,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 34,50,43,255, 210,207,218,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 145,143,153,255, 34,50,43,255, 134,183,162,255, 118,178,151,255, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,158, 255,255,255,158, 120,170,255,159, 255,255,255,158, 143,192,255,158, 143,192,255,158, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 255,255,255,158, 143,192,255,158, 143,192,255,158, 143,192,255,158, 255,255,255,158, 119,169,255,159, 255,255,255,158, 143,192,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 255,255,255,158, 143,192,255,158, 143,192,255,158, 143,192,255,158, 255,255,255,158, 119,169,255,159, 255,255,255,158, 143,192,255,158, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 180,147,180,255, 16,16,16,255, 16,16,16,255, 111,90,113,255, 215,179,215,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 215,194,215,255, 111,90,113,255, 16,16,16,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 38,29,42,255, 180,147,180,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 38,29,42,255, 180,147,180,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 38,29,42,255, 180,147,180,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 215,179,215,255, 215,194,215,255, 215,194,215,255, 215,179,215,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,55,57,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 106,79,199,255, 106,79,199,255, 34,26,63,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 172,105,103,255, 179,176,185,255, 205,58,54,255, 179,176,185,255, 119,116,128,255, 47,38,77,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 34,26,63,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 172,105,103,255, 179,176,185,255, 205,58,54,255, 179,176,185,255, 119,116,128,255, 47,38,77,255, 106,79,199,255, 106,79,199,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 38,57,48,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 205,58,54,255, 179,176,185,255, 119,116,128,255, 50,70,62,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 38,57,48,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 134,67,65,255, 179,176,185,255, 243,96,92,255, 179,176,185,255, 119,116,128,255, 50,70,62,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 38,57,48,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 134,67,65,255, 179,176,185,255, 243,96,92,255, 179,176,185,255, 119,116,128,255, 50,70,62,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 38,57,48,255, 205,202,213,255, 179,176,185,255, 194,135,62,255, 179,176,185,255, 134,67,65,255, 179,176,185,255, 243,96,92,255, 179,176,185,255, 119,116,128,255, 50,70,62,255, 118,178,151,255, 118,178,151,255, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,158, 255,255,255,158, 143,192,255,158, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 255,255,255,158, 143,192,255,158, 119,169,255,159, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 180,147,180,255, 16,16,16,255, 16,16,16,255, 111,90,113,255, 215,194,215,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 215,179,215,255, 111,90,113,255, 16,16,16,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 38,29,42,255, 180,147,180,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 38,29,42,255, 180,147,180,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 38,29,42,255, 180,147,180,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 215,179,215,255, 215,194,215,255, 215,194,215,255, 215,179,215,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 180,147,180,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 215,55,57,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 106,79,199,255, 84,63,154,255, 31,23,55,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 31,23,55,255, 100,74,188,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 84,63,154,255, 31,23,55,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 31,23,55,255, 100,74,188,255, 106,79,199,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 34,50,43,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 34,50,43,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 34,50,43,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 34,50,43,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 34,50,43,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 34,50,43,255, 111,168,143,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 92,138,118,255, 34,50,43,255, 205,202,213,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 34,50,43,255, 111,168,143,255, 118,178,151,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,158, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 109,92,109,255, 215,194,215,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 215,179,215,255, 99,83,99,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 83,68,83,255, 194,160,194,255, 194,160,194,255, 16,16,16,255, 16,16,16,255, 194,160,194,255, 194,160,194,255, 83,68,83,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 215,179,215,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 215,179,215,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 215,179,215,255, 215,179,215,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 38,29,42,255, 38,29,42,255, 150,120,150,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 0,0,0,0, 0,0,0,0, 215,55,57,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 84,63,154,255, 72,54,128,255, 67,60,90,255, 197,194,205,255, 179,176,185,255, 130,37,35,255, 179,176,185,255, 206,122,119,255, 179,176,185,255, 136,173,100,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 72,54,128,255, 100,74,188,255, 106,79,199,255, 84,63,154,255, 72,54,128,255, 67,60,90,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 145,143,153,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 72,54,128,255, 100,74,188,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 159,157,167,255, 179,176,185,255, 179,176,185,255, 98,135,62,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 70,85,78,255, 197,194,205,255, 179,176,185,255, 162,46,44,255, 179,176,185,255, 172,105,103,255, 179,176,185,255, 134,67,65,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 70,85,78,255, 197,194,205,255, 179,176,185,255, 200,84,82,255, 179,176,185,255, 134,67,65,255, 179,176,185,255, 98,135,62,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 78,115,99,255, 111,168,143,255, 118,178,151,255, 92,138,118,255, 78,115,99,255, 70,85,78,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 145,143,153,255, 213,210,221,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 78,115,99,255, 111,168,143,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,159, 255,255,255,158, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 119,169,255,159, 143,192,255,158, 255,255,255,158, 119,169,255,159, 255,255,255,159, 255,255,255,158, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 109,92,109,255, 215,194,215,255, 215,194,215,255, 215,194,215,255, 215,179,215,255, 215,179,215,255, 138,114,138,255, 99,83,99,255, 16,16,16,255, 150,120,150,255, 79,67,79,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 215,179,215,255, 215,194,215,255, 194,160,194,255, 38,29,42,255, 38,29,42,255, 194,160,194,255, 215,194,215,255, 215,179,215,255, 194,160,194,255, 150,120,150,255, 79,67,79,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 215,194,215,255, 38,29,42,255, 38,29,42,255, 215,194,215,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 79,67,79,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 118,99,118,255, 194,160,194,255, 194,160,194,255, 194,160,194,255, 194,160,194,255, 118,99,118,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 120,100,120,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 0,0,0,0, 215,55,57,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 84,63,154,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 72,54,128,255, 84,63,154,255, 72,54,128,255, 155,139,207,255, 67,60,90,255, 197,194,205,255, 179,176,185,255, 119,116,128,255, 43,32,76,255, 59,50,89,255, 43,32,76,255, 213,210,221,255, 179,176,185,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 72,54,128,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 145,143,153,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 78,115,99,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 78,115,99,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 197,194,205,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 78,115,99,255, 92,138,118,255, 78,115,99,255, 161,195,180,255, 70,85,78,255, 197,194,205,255, 179,176,185,255, 119,116,128,255, 43,63,54,255, 50,75,64,255, 43,63,54,255, 213,210,221,255, 179,176,185,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 78,115,99,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 255,255,255,158, 143,192,255,158, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 255,255,255,158, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 255,255,255,158, 255,255,255,158, 143,192,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 90,71,92,255, 109,92,109,255, 109,92,109,255, 111,90,113,255, 111,90,113,255, 99,83,99,255, 99,83,99,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 215,194,215,255, 215,179,215,255, 83,68,83,255, 38,29,42,255, 38,29,42,255, 83,68,83,255, 215,179,215,255, 215,194,215,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 78,66,78,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 215,194,215,255, 215,194,215,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 78,66,78,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 118,99,118,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 118,99,118,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 215,55,57,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 211,81,84,255, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 72,54,128,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 197,194,205,255, 168,165,175,255, 159,157,167,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 67,60,90,255, 197,194,205,255, 145,143,153,255, 67,60,90,255, 118,101,178,255, 62,47,111,255, 118,101,178,255, 67,60,90,255, 197,194,205,255, 119,116,128,255, 67,60,90,255, 155,139,207,255, 135,116,204,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 197,194,205,255, 168,165,175,255, 159,157,167,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 197,194,205,255, 168,165,175,255, 159,157,167,255, 145,143,153,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 70,85,78,255, 197,194,205,255, 145,143,153,255, 70,85,78,255, 100,151,129,255, 68,100,86,255, 100,151,129,255, 70,85,78,255, 197,194,205,255, 119,116,128,255, 70,85,78,255, 161,195,180,255, 144,188,169,255, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,158, 120,170,255,159, 120,170,255,159, 120,170,255,159, 255,255,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 143,192,255,158, 143,192,255,158, 255,255,255,158, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 143,192,255,158, 143,192,255,158, 143,192,255,158, 255,255,255,158, 119,169,255,159, 119,169,255,159, 255,255,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 194,160,194,255, 194,160,194,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 194,160,194,255, 194,160,194,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 78,66,78,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 78,66,78,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 118,99,118,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 118,99,118,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 0,0,0,0, 206,107,109,255, 227,0,0,255, 227,0,0,255, 207,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 211,81,84,255, 227,0,0,255, 227,0,0,255, 177,0,0,255, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 125,102,201,255, 72,54,128,255, 155,139,207,255, 135,121,181,255, 67,60,90,255, 67,60,90,255, 59,50,89,255, 31,23,55,255, 47,38,77,255, 31,23,55,255, 67,60,90,255, 67,60,90,255, 67,60,90,255, 135,121,181,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 72,54,128,255, 155,139,207,255, 135,121,181,255, 67,60,90,255, 67,60,90,255, 118,101,178,255, 62,47,111,255, 94,76,155,255, 62,47,111,255, 135,121,181,255, 67,60,90,255, 67,60,90,255, 135,121,181,255, 135,116,204,255, 72,54,128,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 34,50,43,255, 50,70,62,255, 34,50,43,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 140,170,157,255, 70,85,78,255, 70,85,78,255, 62,82,73,255, 34,50,43,255, 50,70,62,255, 34,50,43,255, 70,85,78,255, 70,85,78,255, 70,85,78,255, 140,170,157,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 140,170,157,255, 70,85,78,255, 70,85,78,255, 62,82,73,255, 34,50,43,255, 50,70,62,255, 34,50,43,255, 70,85,78,255, 70,85,78,255, 70,85,78,255, 140,170,157,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 78,115,99,255, 161,195,180,255, 140,170,157,255, 70,85,78,255, 70,85,78,255, 125,164,147,255, 68,100,86,255, 101,141,124,255, 68,100,86,255, 140,170,157,255, 70,85,78,255, 70,85,78,255, 140,170,157,255, 144,188,169,255, 78,115,99,255, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 143,192,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 142,191,255,159, 119,169,255,159, 119,169,255,159, 255,255,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 255,255,255,158, 255,255,255,158, 255,255,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 150,120,150,255, 150,120,150,255, 38,29,42,255, 16,16,16,255, 16,16,16,255, 38,29,42,255, 150,120,150,255, 150,120,150,255, 16,16,16,255, 38,29,42,255, 16,16,16,255, 38,29,42,255, 0,0,0,0, 0,0,0,0, 207,23,29,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 227,0,0,255, 177,0,0,255, 0,0,0,0, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 100,74,188,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 108,87,178,255, 95,71,177,255, 91,67,169,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 108,87,178,255, 95,71,177,255, 91,67,169,255, 72,54,128,255, 155,139,207,255, 155,139,207,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 116,162,142,255, 105,158,135,255, 100,151,129,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 116,162,142,255, 105,158,135,255, 100,151,129,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 116,162,142,255, 105,158,135,255, 100,151,129,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 116,162,142,255, 105,158,135,255, 100,151,129,255, 78,115,99,255, 161,195,180,255, 161,195,180,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 143,192,255,158, 143,192,255,158, 143,192,255,158, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 53,54,53,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 150,120,150,255, 180,147,180,255, 180,147,180,255, 150,120,150,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 16,16,16,255, 53,54,53,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 177,0,0,255, 177,0,0,255, 177,0,0,255, 177,0,0,255, 177,0,0,255, 177,0,0,255, 177,0,0,255, 177,0,0,255, 177,0,0,255, 177,0,0,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 106,79,199,255, 106,79,199,255, 100,74,188,255, 72,54,128,255, 135,116,204,255, 72,54,128,255, 125,102,201,255, 106,79,199,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 118,178,151,255, 118,178,151,255, 111,168,143,255, 78,115,99,255, 144,188,169,255, 78,115,99,255, 134,183,162,255, 118,178,151,255, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 120,170,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 119,169,255,159, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 51,51,51,255, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 51,51,51,255, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 51,51,51,255, 51,51,51,255, 53,54,53,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 38,29,42,255, 53,54,53,255, 51,51,51,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 47,67,244,179, 75,38,31,255, 202,78,6,255, 87,43,35,255, 87,43,35,255, 75,38,31,255, 75,38,31,255, 75,38,31,255, 244,133,34,255, 87,43,35,255, 75,38,31,255, 75,38,31,255, 75,38,31,255, 230,100,16,255, 202,78,6,255, 75,38,31,255, 75,38,31,255, 111,15,17,255, 94,3,4,255, 127,13,16,255, 127,13,16,255, 97,7,9,255, 89,4,5,255, 117,7,9,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 187,48,51,255, 146,26,29,255, 123,6,7,255, 88,0,0,255, 115,0,0,255, 94,3,4,255, 56,3,5,255, 50,1,2,255, 45,0,1,255, 45,0,1,255, 56,3,5,255, 56,3,5,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 50,1,2,255, 56,3,5,255, 56,3,5,255, 56,3,5,255, 218,213,189,255, 221,217,195,255, 223,219,199,255, 225,221,202,255, 227,223,206,255, 224,220,200,255, 229,226,209,255, 231,228,211,255, 231,228,210,255, 231,228,210,255, 229,226,208,255, 229,225,207,255, 223,219,199,255, 223,219,199,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 218,213,189,255, 218,213,189,255, 225,221,202,255, 227,223,206,255, 226,222,205,255, 228,225,208,255, 231,228,211,255, 231,228,210,255, 231,228,210,255, 229,226,208,255, 229,225,207,255, 223,219,199,255, 218,213,189,255, 218,213,189,255, 218,213,189,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 205,205,205,255, 165,165,165,255, 205,205,205,255, 165,165,165,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 52,77,244,180, 51,76,244,177, 46,65,244,172, 44,62,244,169, 45,65,244,169, 46,66,244,172, 45,63,244,169, 60,93,245,191, 66,104,245,200, 55,84,245,186, 45,64,244,169, 46,67,244,172, 47,68,244,172, 47,68,244,172, 44,62,244,169, 63,101,245,197, 202,77,12,255, 199,68,9,255, 199,66,9,255, 202,75,11,255, 202,75,11,255, 199,66,9,255, 203,78,13,255, 208,93,18,255, 214,111,29,255, 224,146,51,255, 212,104,24,255, 205,82,14,255, 202,77,12,255, 227,154,57,255, 235,184,78,255, 219,129,40,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,38,31,255, 90,44,23,255, 99,47,27,255, 90,44,23,255, 75,38,31,255, 45,22,18,255, 45,22,18,255, 230,100,16,255, 87,43,35,255, 75,38,31,255, 68,31,11,255, 68,31,11,255, 244,133,34,255, 202,78,6,255, 99,47,27,255, 90,44,23,255, 123,6,7,255, 117,7,9,255, 123,6,7,255, 123,6,7,255, 146,26,29,255, 187,48,51,255, 123,6,7,255, 103,0,0,255, 123,6,7,255, 117,7,9,255, 111,15,17,255, 94,3,4,255, 94,3,4,255, 123,6,7,255, 123,6,7,255, 115,0,0,255, 56,3,5,255, 86,6,8,255, 98,8,10,255, 98,8,10,255, 98,8,10,255, 86,6,8,255, 86,6,8,255, 79,4,5,255, 56,3,5,255, 101,17,22,255, 127,27,31,255, 115,23,26,255, 92,14,17,255, 113,22,26,255, 75,6,11,255, 75,6,11,255, 218,213,189,255, 218,214,190,255, 223,219,199,255, 225,221,202,255, 227,223,206,255, 222,218,198,255, 231,228,211,255, 231,228,211,255, 231,228,210,255, 231,228,210,255, 229,226,208,255, 222,218,197,255, 223,219,199,255, 223,219,199,255, 221,217,195,255, 218,213,189,255, 220,216,194,255, 220,216,194,255, 220,216,194,255, 224,220,201,255, 224,220,202,255, 222,218,198,255, 216,210,187,255, 215,210,187,255, 222,217,196,255, 226,222,204,255, 226,222,203,255, 224,220,201,255, 222,218,198,255, 217,213,189,255, 217,213,189,255, 221,217,195,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 165,165,165,255, 205,205,205,255, 165,165,165,255, 165,165,165,255, 205,205,205,255, 165,165,165,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 51,76,244,177, 47,67,244,172, 45,65,244,169, 44,62,244,169, 45,64,244,169, 46,66,244,172, 45,62,244,169, 60,92,245,191, 64,101,245,197, 53,81,245,183, 45,64,244,169, 46,66,244,172, 46,66,244,172, 46,66,244,172, 44,62,244,169, 61,96,245,194, 197,63,8,255, 203,78,13,255, 214,111,29,255, 210,97,20,255, 201,72,10,255, 202,75,11,255, 205,82,14,255, 219,127,39,255, 223,144,50,255, 224,146,51,255, 213,108,26,255, 202,75,11,255, 199,68,9,255, 203,78,13,255, 208,93,18,255, 203,78,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,133,34,255, 231,166,33,255, 231,166,33,255, 68,31,11,255, 45,22,18,255, 45,22,18,255, 230,100,16,255, 202,78,6,255, 87,43,35,255, 68,31,11,255, 68,31,11,255, 248,158,68,255, 99,47,27,255, 99,47,27,255, 230,100,16,255, 244,133,34,255, 117,7,9,255, 123,6,7,255, 112,0,0,255, 117,12,14,255, 108,4,5,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 94,3,4,255, 133,16,18,255, 123,6,7,255, 90,0,0,255, 146,26,29,255, 123,6,7,255, 127,0,1,255, 56,3,5,255, 79,4,5,255, 72,2,3,255, 72,2,3,255, 74,3,4,255, 74,3,4,255, 72,2,3,255, 72,2,3,255, 50,1,2,255, 101,17,22,255, 69,5,9,255, 72,5,9,255, 72,5,9,255, 72,5,9,255, 69,5,9,255, 69,5,9,255, 218,213,189,255, 218,214,190,255, 223,219,199,255, 225,221,202,255, 227,223,206,255, 222,218,198,255, 231,228,211,255, 231,228,211,255, 231,228,210,255, 231,228,210,255, 229,226,208,255, 219,215,192,255, 223,219,199,255, 223,219,199,255, 221,217,195,255, 218,213,189,255, 220,216,194,255, 220,216,193,255, 220,215,193,255, 214,210,186,255, 209,204,178,255, 206,200,173,255, 197,191,165,255, 200,194,169,255, 203,198,173,255, 203,198,174,255, 204,199,176,255, 211,206,181,255, 213,209,184,255, 223,219,198,255, 223,219,198,255, 222,218,198,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 134,134,134,255, 194,194,194,255, 134,134,134,255, 134,134,134,255, 194,194,194,255, 134,134,134,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 51,74,244,177, 45,63,244,169, 45,64,244,169, 44,62,244,169, 45,63,244,169, 46,65,244,172, 44,62,244,169, 59,91,245,191, 63,97,245,197, 51,76,244,177, 45,64,244,169, 45,65,244,169, 46,65,244,172, 46,66,244,172, 44,61,244,169, 58,90,245,189, 201,72,10,255, 219,127,39,255, 232,176,73,255, 229,163,63,255, 211,100,22,255, 201,72,10,255, 202,77,12,255, 216,118,33,255, 223,144,50,255, 212,104,24,255, 202,77,12,255, 198,64,8,255, 199,66,9,255, 202,75,11,255, 199,68,9,255, 197,63,8,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 230,100,16,255, 99,47,27,255, 99,47,27,255, 244,133,34,255, 202,78,6,255, 230,100,16,255, 202,78,6,255, 87,43,35,255, 230,100,16,255, 244,133,34,255, 248,158,68,255, 202,78,6,255, 99,47,27,255, 87,43,35,255, 75,38,31,255, 202,78,6,255, 103,0,0,255, 108,4,5,255, 127,0,1,255, 123,6,7,255, 123,6,7,255, 91,0,0,255, 115,0,0,255, 94,3,4,255, 88,0,0,255, 146,26,29,255, 123,6,7,255, 94,3,4,255, 123,6,7,255, 176,37,41,255, 123,6,7,255, 127,0,1,255, 56,3,5,255, 79,4,5,255, 72,2,3,255, 60,0,1,255, 72,2,3,255, 72,2,3,255, 60,0,1,255, 50,0,0,255, 50,1,2,255, 75,6,11,255, 69,5,9,255, 56,3,5,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 56,3,5,255, 218,213,189,255, 214,208,182,255, 223,219,199,255, 225,221,202,255, 227,223,206,255, 225,221,202,255, 232,229,212,255, 232,229,212,255, 232,229,212,255, 229,226,208,255, 229,226,208,255, 222,218,197,255, 223,219,199,255, 223,219,199,255, 221,217,195,255, 218,213,189,255, 219,215,192,255, 221,217,195,255, 210,205,180,255, 209,204,178,255, 200,194,169,255, 191,186,157,255, 187,183,156,255, 188,183,158,255, 187,183,156,255, 188,183,158,255, 190,184,159,255, 197,192,167,255, 205,200,177,255, 220,216,195,255, 222,218,198,255, 223,219,199,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,255, 165,165,165,255, 118,118,118,255, 118,118,118,255, 165,165,165,255, 118,118,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 53,80,244,180, 44,62,244,169, 45,63,244,169, 44,62,244,169, 44,63,244,169, 45,64,244,169, 44,61,244,169, 58,90,245,189, 60,93,245,191, 47,71,244,172, 45,64,244,169, 47,68,244,172, 45,65,244,169, 46,65,244,172, 45,64,244,169, 54,82,244,183, 202,75,11,255, 211,102,23,255, 225,150,54,255, 225,150,54,255, 216,116,32,255, 201,72,10,255, 202,77,12,255, 203,78,13,255, 205,82,14,255, 199,68,9,255, 198,64,8,255, 197,63,8,255, 201,72,10,255, 211,100,22,255, 203,78,13,255, 197,63,8,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 230,100,16,255, 99,47,27,255, 90,44,23,255, 202,78,6,255, 230,100,16,255, 202,78,6,255, 87,43,35,255, 87,43,35,255, 87,43,35,255, 99,47,27,255, 90,44,23,255, 230,100,16,255, 99,47,27,255, 75,38,31,255, 75,38,31,255, 45,22,18,255, 89,4,5,255, 176,37,41,255, 123,6,7,255, 123,6,7,255, 167,34,37,255, 103,0,0,255, 88,0,0,255, 123,6,7,255, 115,0,0,255, 129,21,23,255, 108,4,5,255, 108,4,5,255, 115,0,0,255, 123,6,7,255, 127,0,1,255, 103,0,0,255, 56,3,5,255, 50,1,2,255, 50,1,2,255, 50,1,2,255, 47,0,1,255, 45,0,1,255, 45,0,1,255, 47,0,1,255, 45,0,1,255, 47,0,2,255, 50,1,2,255, 50,1,2,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 50,1,2,255, 218,213,189,255, 216,210,185,255, 221,217,195,255, 221,217,195,255, 227,223,205,255, 227,223,206,255, 232,229,212,255, 232,229,212,255, 232,229,212,255, 229,226,208,255, 229,226,208,255, 226,222,204,255, 217,212,188,255, 221,217,195,255, 221,217,195,255, 218,213,189,255, 219,215,192,255, 226,223,204,255, 213,208,184,255, 201,196,172,255, 189,184,159,255, 183,178,152,255, 187,182,156,255, 183,178,152,255, 181,176,147,255, 181,176,148,255, 188,184,159,255, 193,187,163,255, 192,187,163,255, 202,198,174,255, 222,217,196,255, 224,219,200,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 118,118,118,255, 145,145,145,255, 118,118,118,255, 118,118,118,255, 145,145,145,255, 118,118,118,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 62,96,245,194, 45,63,244,169, 45,64,244,169, 44,62,244,169, 44,62,244,169, 45,64,244,169, 43,60,244,166, 63,98,245,197, 58,88,245,189, 47,67,244,172, 46,66,244,172, 47,67,244,172, 52,77,244,180, 46,64,244,172, 46,67,244,172, 50,72,244,177, 205,82,14,255, 209,95,19,255, 214,111,29,255, 209,95,19,255, 203,78,13,255, 199,66,9,255, 206,86,16,255, 211,102,23,255, 206,86,16,255, 199,68,9,255, 199,66,9,255, 199,66,9,255, 206,84,15,255, 228,160,62,255, 208,91,17,255, 199,68,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,78,6,255, 87,43,35,255, 90,44,23,255, 90,44,23,255, 244,133,34,255, 99,47,27,255, 99,47,27,255, 87,43,35,255, 75,38,31,255, 75,38,31,255, 90,44,23,255, 68,31,11,255, 244,133,34,255, 45,22,18,255, 75,38,31,255, 45,22,18,255, 89,4,5,255, 146,26,29,255, 123,6,7,255, 123,6,7,255, 114,18,16,255, 127,0,1,255, 88,0,0,255, 103,0,0,255, 127,0,1,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 101,0,0,255, 90,0,0,255, 123,6,7,255, 78,0,0,255, 75,6,11,255, 75,6,11,255, 56,3,5,255, 107,19,23,255, 115,23,26,255, 115,23,26,255, 119,25,30,255, 115,23,26,255, 83,9,13,255, 83,9,13,255, 56,3,5,255, 83,9,13,255, 83,9,13,255, 75,6,11,255, 75,6,11,255, 75,6,11,255, 218,213,189,255, 216,210,185,255, 221,217,195,255, 221,217,195,255, 227,223,205,255, 229,226,208,255, 232,229,212,255, 232,229,212,255, 232,229,212,255, 229,226,208,255, 229,226,208,255, 226,222,204,255, 220,215,193,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 222,218,196,255, 217,213,190,255, 202,196,172,255, 189,184,159,255, 186,181,156,255, 185,181,154,255, 180,174,146,255, 180,174,147,255, 180,174,146,255, 181,175,147,255, 188,183,156,255, 187,182,156,255, 190,184,159,255, 202,196,171,255, 215,210,187,255, 225,221,202,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 61,93,245,194, 45,63,244,169, 47,69,244,172, 44,62,244,169, 44,61,244,169, 45,64,244,169, 43,60,244,166, 62,96,245,194, 54,81,244,183, 45,66,244,169, 50,74,244,177, 46,67,244,172, 51,75,244,177, 45,63,244,169, 46,66,244,172, 46,68,244,172, 208,93,18,255, 206,86,16,255, 199,68,9,255, 198,64,8,255, 199,68,9,255, 201,72,10,255, 209,95,19,255, 216,116,32,255, 201,72,10,255, 199,66,9,255, 199,66,9,255, 199,68,9,255, 206,84,15,255, 211,100,22,255, 199,68,9,255, 201,72,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,43,35,255, 75,38,31,255, 90,44,23,255, 68,31,11,255, 248,158,68,255, 99,47,27,255, 90,44,23,255, 75,38,31,255, 75,38,31,255, 75,38,31,255, 75,38,31,255, 45,22,18,255, 248,158,68,255, 202,78,6,255, 230,100,16,255, 244,133,34,255, 108,4,5,255, 103,0,0,255, 127,0,1,255, 123,6,7,255, 127,0,1,255, 127,0,1,255, 97,0,0,255, 115,0,0,255, 127,0,1,255, 127,0,1,255, 127,0,1,255, 187,48,51,255, 123,6,7,255, 78,0,0,255, 94,3,4,255, 123,6,7,255, 65,4,8,255, 60,4,6,255, 50,1,2,255, 101,17,22,255, 69,5,9,255, 74,6,10,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 71,8,10,255, 84,11,14,255, 56,3,5,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 218,213,189,255, 216,210,185,255, 221,217,195,255, 223,219,199,255, 227,223,205,255, 229,226,208,255, 233,230,213,255, 233,230,213,255, 233,230,213,255, 229,226,208,255, 229,226,208,255, 226,222,204,255, 222,217,196,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 231,228,210,255, 215,211,187,255, 203,198,173,255, 190,185,160,255, 186,181,156,255, 178,172,144,255, 177,171,141,255, 177,171,141,255, 178,172,144,255, 180,175,147,255, 181,175,147,255, 181,176,147,255, 181,176,149,255, 202,197,173,255, 215,211,187,255, 229,226,209,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 60,93,245,191, 45,64,244,169, 47,68,244,172, 44,62,244,169, 44,61,244,169, 45,63,244,169, 43,60,244,166, 61,93,245,194, 51,75,244,177, 46,66,244,172, 49,73,244,174, 46,66,244,172, 50,74,244,177, 44,62,244,169, 46,66,244,172, 45,65,244,169, 202,77,12,255, 199,68,9,255, 198,64,8,255, 198,64,8,255, 201,72,10,255, 208,93,18,255, 208,91,17,255, 212,104,24,255, 199,68,9,255, 199,66,9,255, 199,66,9,255, 202,75,11,255, 206,86,16,255, 203,78,13,255, 198,64,8,255, 199,66,9,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,78,6,255, 45,22,18,255, 68,31,11,255, 68,31,11,255, 248,158,68,255, 244,133,34,255, 230,100,16,255, 230,100,16,255, 75,38,31,255, 45,22,18,255, 45,22,18,255, 244,133,34,255, 202,78,6,255, 87,43,35,255, 202,78,6,255, 202,78,6,255, 123,6,7,255, 108,4,5,255, 103,0,0,255, 123,6,7,255, 105,12,10,255, 97,0,0,255, 127,0,1,255, 115,0,0,255, 115,0,0,255, 127,0,1,255, 115,0,0,255, 146,26,29,255, 115,0,0,255, 94,3,4,255, 123,6,7,255, 127,0,1,255, 60,4,6,255, 56,3,5,255, 50,1,2,255, 75,6,11,255, 69,5,9,255, 69,5,9,255, 73,6,10,255, 69,5,9,255, 60,4,6,255, 56,3,5,255, 56,3,5,255, 75,6,11,255, 69,5,9,255, 56,3,5,255, 69,5,9,255, 56,3,5,255, 218,213,189,255, 218,213,189,255, 221,217,195,255, 223,219,199,255, 226,222,204,255, 229,226,208,255, 233,230,213,255, 234,231,214,255, 233,230,213,255, 231,228,210,255, 229,226,208,255, 226,222,204,255, 222,217,196,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 231,228,211,255, 216,211,188,255, 196,193,167,255, 192,187,163,255, 189,184,160,255, 180,174,146,255, 177,171,141,255, 175,170,140,255, 175,170,140,255, 180,174,147,255, 178,172,145,255, 187,182,156,255, 189,185,161,255, 206,201,178,255, 218,213,191,255, 228,225,207,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,91,245,189, 46,67,244,172, 46,68,244,172, 44,62,244,169, 43,60,244,166, 45,63,244,169, 43,60,244,166, 58,91,245,189, 50,73,244,177, 48,70,244,174, 49,72,244,174, 46,65,244,172, 50,73,244,177, 46,67,244,172, 46,66,244,172, 47,68,244,172, 201,72,10,255, 199,66,9,255, 199,66,9,255, 199,66,9,255, 206,84,15,255, 218,124,37,255, 206,86,16,255, 208,91,17,255, 202,77,12,255, 199,68,9,255, 202,77,12,255, 220,133,43,255, 222,141,48,255, 213,108,26,255, 206,86,16,255, 201,72,10,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,133,34,255, 202,78,6,255, 202,78,6,255, 230,100,16,255, 202,78,6,255, 99,47,27,255, 87,43,35,255, 202,78,6,255, 230,100,16,255, 45,22,18,255, 230,100,16,255, 202,78,6,255, 87,43,35,255, 87,43,35,255, 99,47,27,255, 230,100,16,255, 123,6,7,255, 90,0,0,255, 78,0,0,255, 101,10,11,255, 94,3,4,255, 123,6,7,255, 115,0,0,255, 108,4,5,255, 146,26,29,255, 115,0,0,255, 115,0,0,255, 123,6,7,255, 103,0,0,255, 94,3,4,255, 127,0,1,255, 127,0,1,255, 56,3,5,255, 56,3,5,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 50,1,2,255, 50,1,2,255, 50,1,2,255, 50,1,2,255, 50,1,2,255, 56,3,5,255, 56,3,5,255, 56,3,5,255, 56,3,5,255, 56,3,5,255, 56,3,5,255, 218,213,189,255, 218,213,189,255, 221,217,195,255, 223,219,199,255, 226,222,204,255, 231,228,210,255, 233,230,213,255, 234,231,214,255, 233,230,213,255, 231,228,210,255, 229,226,208,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 228,225,207,255, 218,213,190,255, 205,201,177,255, 193,188,164,255, 179,172,145,255, 185,181,154,255, 180,174,146,255, 180,174,146,255, 180,174,147,255, 180,174,147,255, 185,181,155,255, 188,183,157,255, 191,187,163,255, 206,201,178,255, 218,213,191,255, 228,225,207,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 58,88,245,189, 52,77,244,180, 46,67,244,172, 44,62,244,169, 43,60,244,166, 45,64,244,169, 44,61,244,169, 57,88,245,189, 49,71,244,174, 48,70,244,174, 49,71,244,174, 45,65,244,169, 49,72,244,174, 47,68,244,172, 46,66,244,172, 47,67,244,172, 199,66,9,255, 201,72,10,255, 199,68,9,255, 199,68,9,255, 208,91,17,255, 211,102,23,255, 203,78,13,255, 203,78,13,255, 199,68,9,255, 199,68,9,255, 202,77,12,255, 213,109,28,255, 231,172,71,255, 229,163,63,255, 219,127,39,255, 206,86,16,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 99,47,27,255, 87,43,35,255, 230,100,16,255, 99,47,27,255, 99,47,27,255, 99,47,27,255, 75,38,31,255, 87,43,35,255, 202,78,6,255, 244,133,34,255, 202,78,6,255, 87,43,35,255, 87,43,35,255, 90,44,23,255, 68,31,11,255, 244,133,34,255, 123,6,7,255, 103,0,0,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 115,0,0,255, 123,6,7,255, 108,4,5,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 78,0,0,255, 123,6,7,255, 103,0,0,255, 123,6,7,255, 56,3,5,255, 75,6,11,255, 75,6,11,255, 75,6,11,255, 56,3,5,255, 83,9,13,255, 83,9,13,255, 83,9,13,255, 79,0,0,255, 118,12,13,255, 110,12,13,255, 87,0,0,255, 50,1,2,255, 75,6,11,255, 75,6,11,255, 75,6,11,255, 218,213,189,255, 218,213,189,255, 221,217,195,255, 223,219,199,255, 226,222,204,255, 231,228,210,255, 232,229,212,255, 233,230,213,255, 232,229,212,255, 231,228,210,255, 229,226,208,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 227,223,203,255, 217,212,189,255, 202,197,173,255, 189,183,158,255, 186,181,156,255, 180,174,146,255, 185,181,154,255, 182,177,149,255, 178,172,144,255, 185,181,154,255, 182,177,149,255, 183,177,151,255, 193,188,164,255, 204,199,176,255, 218,213,191,255, 219,214,192,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,83,245,186, 63,98,245,197, 50,73,244,177, 44,62,244,169, 43,60,244,166, 47,68,244,172, 44,61,244,169, 55,82,244,183, 48,71,244,174, 48,70,244,174, 51,76,244,177, 45,65,244,169, 51,76,244,177, 49,73,244,174, 46,66,244,172, 46,67,244,172, 199,66,9,255, 218,124,37,255, 220,133,43,255, 206,84,15,255, 208,91,17,255, 211,100,22,255, 213,109,28,255, 202,77,12,255, 198,64,8,255, 198,64,8,255, 199,66,9,255, 206,86,16,255, 223,144,50,255, 213,109,28,255, 218,124,37,255, 203,78,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 90,44,23,255, 90,44,23,255, 244,133,34,255, 99,47,27,255, 99,47,27,255, 75,38,31,255, 75,38,31,255, 75,38,31,255, 45,22,18,255, 230,100,16,255, 87,43,35,255, 75,38,31,255, 75,38,31,255, 68,31,11,255, 248,158,68,255, 99,47,27,255, 91,0,0,255, 108,4,5,255, 123,6,7,255, 123,6,7,255, 103,0,0,255, 115,0,0,255, 123,6,7,255, 94,3,4,255, 176,37,41,255, 111,15,17,255, 88,0,0,255, 94,3,4,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 111,15,17,255, 56,3,5,255, 75,6,11,255, 69,5,9,255, 69,5,9,255, 56,3,5,255, 75,6,11,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 79,0,0,255, 79,0,0,255, 79,0,0,255, 50,1,2,255, 75,6,11,255, 69,5,9,255, 69,5,9,255, 218,213,189,255, 218,213,189,255, 221,217,195,255, 220,215,193,255, 226,222,204,255, 229,226,208,255, 231,228,210,255, 232,229,212,255, 232,229,212,255, 227,223,202,255, 229,226,208,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 224,220,200,255, 217,212,189,255, 201,196,171,255, 184,178,151,255, 187,182,156,255, 181,175,147,255, 178,172,144,255, 185,181,155,255, 186,181,155,255, 182,177,149,255, 186,181,156,255, 190,187,162,255, 199,194,173,255, 207,202,179,255, 215,210,187,255, 220,215,194,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 52,78,244,180, 61,95,245,194, 52,77,244,180, 45,64,244,169, 43,60,244,166, 49,72,244,174, 44,61,244,169, 51,76,244,177, 49,70,244,174, 48,70,244,174, 51,75,244,177, 45,64,244,169, 53,79,244,180, 49,72,244,174, 45,65,244,169, 47,69,244,172, 201,72,10,255, 216,116,32,255, 221,137,46,255, 206,84,15,255, 205,82,14,255, 213,109,28,255, 229,165,65,255, 220,133,43,255, 205,82,14,255, 199,68,9,255, 198,64,8,255, 201,72,10,255, 205,82,14,255, 199,66,9,255, 202,77,12,255, 203,78,13,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 75,38,31,255, 90,44,23,255, 248,158,68,255, 244,133,34,255, 99,47,27,255, 90,44,23,255, 75,38,31,255, 75,38,31,255, 45,22,18,255, 230,100,16,255, 87,43,35,255, 75,38,31,255, 75,38,31,255, 45,22,18,255, 244,133,34,255, 99,47,27,255, 103,0,0,255, 123,6,7,255, 155,29,33,255, 103,0,0,255, 115,0,0,255, 94,3,4,255, 111,15,17,255, 123,6,7,255, 123,6,7,255, 115,0,0,255, 115,0,0,255, 103,0,0,255, 123,6,7,255, 103,0,0,255, 94,3,4,255, 176,37,41,255, 56,3,5,255, 75,6,11,255, 56,3,5,255, 69,5,9,255, 56,3,5,255, 75,6,11,255, 69,5,9,255, 69,5,9,255, 65,0,0,255, 65,0,0,255, 79,0,0,255, 65,0,0,255, 50,1,2,255, 75,6,11,255, 69,5,9,255, 69,5,9,255, 218,213,189,255, 218,213,189,255, 221,217,195,255, 217,212,188,255, 226,222,204,255, 229,226,208,255, 231,228,210,255, 232,229,212,255, 231,228,210,255, 227,223,202,255, 229,226,208,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 224,219,200,255, 226,222,204,255, 204,199,176,255, 193,187,163,255, 187,182,156,255, 187,182,156,255, 180,175,146,255, 188,183,158,255, 192,187,163,255, 193,188,164,255, 190,186,161,255, 190,184,160,255, 206,201,178,255, 207,202,179,255, 215,210,186,255, 226,222,203,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 49,72,244,174, 66,104,245,200, 52,76,244,180, 45,64,244,169, 44,61,244,169, 49,71,244,174, 44,61,244,169, 51,75,244,177, 47,68,244,172, 55,83,244,183, 50,74,244,177, 45,64,244,169, 53,78,244,180, 49,73,244,174, 45,63,244,169, 50,74,244,177, 216,118,33,255, 202,77,12,255, 199,68,9,255, 203,78,13,255, 206,86,16,255, 208,91,17,255, 219,127,39,255, 227,154,57,255, 232,177,74,255, 219,129,40,255, 203,78,13,255, 201,72,10,255, 201,72,10,255, 199,68,9,255, 211,102,23,255, 223,144,50,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,78,6,255, 90,44,23,255, 90,44,23,255, 68,31,11,255, 230,100,16,255, 90,44,23,255, 90,44,23,255, 90,44,23,255, 45,22,18,255, 244,133,34,255, 87,43,35,255, 90,44,23,255, 68,31,11,255, 68,31,11,255, 230,100,16,255, 75,38,31,255, 123,6,7,255, 123,6,7,255, 146,26,29,255, 78,0,0,255, 115,0,0,255, 123,6,7,255, 123,6,7,255, 103,0,0,255, 123,6,7,255, 123,6,7,255, 103,0,0,255, 115,0,0,255, 123,6,7,255, 103,0,0,255, 127,0,1,255, 123,6,7,255, 50,1,2,255, 50,1,2,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 45,0,1,255, 56,3,5,255, 50,1,2,255, 46,0,1,255, 48,1,2,255, 52,1,3,255, 46,0,1,255, 55,1,4,255, 50,1,2,255, 56,3,5,255, 56,3,5,255, 218,213,189,255, 221,217,195,255, 221,217,195,255, 223,219,199,255, 219,215,192,255, 229,226,208,255, 231,228,210,255, 232,229,212,255, 231,228,210,255, 231,228,210,255, 222,217,195,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 221,217,195,255, 218,213,189,255, 224,220,201,255, 223,218,198,255, 214,209,186,255, 198,193,167,255, 193,188,164,255, 190,184,160,255, 192,187,162,255, 193,188,164,255, 196,191,168,255, 197,193,170,255, 196,192,169,255, 199,195,174,255, 202,197,172,255, 213,208,185,255, 214,210,186,255, 222,218,198,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,70,244,174, 65,103,245,200, 51,74,244,177, 45,63,244,169, 45,63,244,169, 48,70,244,174, 45,64,244,169, 51,75,244,177, 47,68,244,171, 57,86,245,189, 49,72,244,174, 45,65,244,169, 52,77,244,180, 49,73,244,174, 45,62,244,169, 56,86,245,186, 227,154,57,255, 211,102,23,255, 211,102,23,255, 203,78,13,255, 205,82,14,255, 199,68,9,255, 199,68,9,255, 211,102,23,255, 236,187,80,255, 231,171,69,255, 208,93,18,255, 202,75,11,255, 199,68,9,255, 199,68,9,255, 208,93,18,255, 229,163,63,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 244,133,34,255, 202,78,6,255, 45,22,18,255, 45,22,18,255, 230,100,16,255, 68,31,11,255, 68,31,11,255, 45,22,18,255, 230,100,16,255, 248,158,68,255, 230,100,16,255, 244,133,34,255, 248,158,68,255, 202,78,6,255, 99,47,27,255, 202,78,6,255, 123,6,7,255, 105,12,10,255, 123,6,7,255, 94,3,4,255, 105,12,10,255, 127,0,1,255, 103,0,0,255, 123,6,7,255, 123,6,7,255, 103,0,0,255, 103,0,0,255, 123,6,7,255, 123,6,7,255, 123,6,7,255, 97,0,0,255, 123,6,7,255, 71,8,10,255, 138,22,23,255, 121,12,13,255, 133,12,13,255, 100,0,0,255, 92,0,0,255, 92,0,0,255, 92,0,0,255, 50,1,2,255, 75,6,11,255, 83,9,13,255, 92,14,17,255, 92,14,17,255, 90,12,17,255, 90,12,17,255, 75,6,11,255, 218,213,189,255, 221,217,195,255, 221,217,195,255, 223,219,199,255, 222,218,197,255, 229,226,208,255, 231,228,210,255, 232,229,212,255, 231,228,210,255, 231,228,210,255, 225,221,201,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 221,217,195,255, 218,213,189,255, 220,216,194,255, 220,216,194,255, 217,213,190,255, 216,211,187,255, 212,207,183,255, 205,200,176,255, 203,198,174,255, 202,197,174,255, 204,199,177,255, 201,197,174,255, 203,199,175,255, 203,199,175,255, 210,206,180,255, 212,208,183,255, 223,219,198,255, 222,218,198,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,69,244,174, 63,99,245,197, 50,73,244,177, 45,63,244,169, 45,63,244,169, 47,69,244,172, 45,64,244,169, 50,74,244,177, 52,78,244,180, 58,89,245,189, 48,70,244,174, 48,70,244,174, 51,75,244,177, 49,72,244,174, 44,62,244,169, 66,104,245,200, 213,109,28,255, 210,97,20,255, 236,187,80,255, 216,118,33,255, 201,72,10,255, 199,66,9,255, 199,66,9,255, 201,72,10,255, 212,104,24,255, 211,102,23,255, 208,91,17,255, 203,78,13,255, 199,66,9,255, 199,66,9,255, 199,68,9,255, 213,109,28,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 87,43,35,255, 202,78,6,255, 230,100,16,255, 230,100,16,255, 244,133,34,255, 248,158,68,255, 248,158,68,255, 244,133,34,255, 99,47,27,255, 87,43,35,255, 99,47,27,255, 99,47,27,255, 230,100,16,255, 99,47,27,255, 90,44,23,255, 87,43,35,255, 123,6,7,255, 105,12,10,255, 123,6,7,255, 80,7,6,255, 127,0,1,255, 127,0,1,255, 78,0,0,255, 123,6,7,255, 127,0,1,255, 123,6,7,255, 90,0,0,255, 123,6,7,255, 146,26,29,255, 176,37,41,255, 97,0,0,255, 127,0,1,255, 56,3,5,255, 115,12,13,255, 86,0,0,255, 83,0,0,255, 83,0,0,255, 83,0,0,255, 83,0,0,255, 83,0,0,255, 56,3,5,255, 75,6,11,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 69,5,9,255, 56,3,5,255, 218,213,189,255, 221,217,195,255, 221,217,195,255, 221,217,195,255, 222,218,197,255, 229,226,208,255, 231,228,210,255, 232,229,212,255, 231,228,210,255, 231,228,210,255, 225,221,201,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 221,217,195,255, 218,213,189,255, 221,217,195,255, 220,216,194,255, 220,216,194,255, 220,216,194,255, 224,220,202,255, 225,221,201,255, 221,216,195,255, 219,214,192,255, 218,214,191,255, 220,216,194,255, 225,222,202,255, 224,220,202,255, 224,220,201,255, 221,217,195,255, 220,216,194,255, 221,217,195,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 48,69,244,174, 62,95,245,194, 48,71,244,174, 45,63,244,169, 45,64,244,169, 47,69,244,172, 45,63,244,169, 54,81,244,183, 51,76,244,177, 58,88,245,189, 46,68,244,172, 48,69,244,174, 50,74,244,177, 48,71,244,174, 44,61,244,169, 70,113,245,206, 201,72,10,255, 214,111,29,255, 241,203,92,255, 222,141,48,255, 201,72,10,255, 199,68,9,255, 199,68,9,255, 203,78,13,255, 208,93,18,255, 208,91,17,255, 211,102,23,255, 206,86,16,255, 202,75,11,255, 199,68,9,255, 199,68,9,255, 208,91,17,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 45,22,18,255, 230,100,16,255, 202,78,6,255, 87,43,35,255, 99,47,27,255, 99,47,27,255, 244,133,34,255, 99,47,27,255, 75,38,31,255, 75,38,31,255, 75,38,31,255, 90,44,23,255, 202,78,6,255, 244,133,34,255, 75,38,31,255, 75,38,31,255, 123,6,7,255, 123,6,7,255, 94,3,4,255, 187,48,51,255, 127,0,1,255, 123,6,7,255, 94,3,4,255, 146,26,29,255, 127,0,1,255, 123,6,7,255, 103,0,0,255, 123,6,7,255, 123,6,7,255, 146,26,29,255, 94,3,4,255, 123,6,7,255, 56,3,5,255, 92,0,0,255, 83,0,0,255, 83,0,0,255, 83,0,0,255, 83,0,0,255, 60,0,0,255, 60,0,0,255, 50,1,2,255, 75,6,11,255, 69,5,9,255, 56,3,5,255, 56,3,5,255, 50,1,2,255, 56,3,5,255, 56,3,5,255, 218,213,189,255, 221,217,195,255, 221,217,195,255, 221,217,195,255, 225,221,202,255, 225,221,201,255, 231,228,210,255, 232,229,212,255, 231,228,210,255, 227,223,202,255, 229,226,208,255, 226,222,204,255, 225,221,202,255, 221,217,195,255, 221,217,195,255, 218,213,189,255, 218,213,189,255, 218,213,189,255, 218,213,189,255, 221,217,195,255, 225,221,202,255, 229,226,208,255, 230,227,209,255, 231,228,211,255, 230,227,209,255, 230,227,209,255, 228,225,207,255, 225,221,203,255, 225,221,202,255, 218,213,189,255, 218,213,189,255, 218,213,189,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 47,68,244,172, 57,88,245,189, 47,67,244,172, 45,62,244,169, 45,64,244,169, 47,68,244,172, 45,63,244,169, 61,94,245,194, 55,83,244,183, 57,86,245,189, 45,64,244,169, 47,68,244,172, 49,71,244,174, 47,69,244,172, 44,61,244,169, 69,111,245,206, 199,68,9,255, 203,78,13,255, 216,118,33,255, 206,84,15,255, 198,64,8,255, 203,78,13,255, 203,78,13,255, 206,84,15,255, 210,97,20,255, 208,91,17,255, 208,91,17,255, 206,84,15,255, 211,102,23,255, 206,84,15,255, 203,78,13,255, 216,118,33,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 202,208,209,255, 222,227,228,255, 222,227,228,255, 202,208,209,255, 202,208,209,255, 222,227,227,255, 222,227,227,255, 207,213,214,255, 197,204,205,255, 222,227,227,255, 222,227,227,255, 207,213,214,255, 202,208,209,255, 222,227,227,255, 222,227,227,255, 192,198,199,255, 227,98,0,255, 242,111,10,255, 242,111,10,255, 227,98,0,255, 227,98,0,255, 241,110,10,255, 241,110,10,255, 229,100,1,255, 223,96,0,255, 241,110,10,255, 241,110,10,255, 229,100,1,255, 227,98,0,255, 241,110,10,255, 241,110,10,255, 216,92,0,255, 161,44,151,255, 180,57,169,255, 180,57,169,255, 161,44,151,255, 161,44,151,255, 179,56,169,255, 179,56,169,255, 165,46,155,255, 158,43,148,255, 179,56,169,255, 179,56,169,255, 165,46,155,255, 161,44,151,255, 179,56,169,255, 179,56,169,255, 154,42,145,255, 39,146,206,255, 53,172,215,255, 53,172,215,255, 39,146,206,255, 39,146,206,255, 52,171,215,255, 52,171,215,255, 40,149,208,255, 37,143,204,255, 52,171,215,255, 52,171,215,255, 40,149,208,255, 39,146,206,255, 52,171,215,255, 52,171,215,255, 36,140,202,255, 245,179,23,255, 251,193,32,255, 251,193,32,255, 245,179,23,255, 245,179,23,255, 251,192,31,255, 251,192,31,255, 246,181,24,255, 244,178,22,255, 251,192,31,255, 251,192,31,255, 246,181,24,255, 245,179,23,255, 251,192,31,255, 251,192,31,255, 242,176,21,255, 86,157,22,255, 106,183,24,255, 106,183,24,255, 86,157,22,255, 86,157,22,255, 106,182,24,255, 106,182,24,255, 90,163,23,255, 83,151,21,255, 106,182,24,255, 106,182,24,255, 90,163,23,255, 86,157,22,255, 106,182,24,255, 106,182,24,255, 79,144,20,255, 218,104,146,255, 238,128,162,255, 238,128,162,255, 218,104,146,255, 218,104,146,255, 237,127,162,255, 237,127,162,255, 221,107,148,255, 215,102,144,255, 237,127,162,255, 237,127,162,255, 221,107,148,255, 218,104,146,255, 237,127,162,255, 237,127,162,255, 211,99,140,255, 48,51,54,255, 59,63,66,255, 59,63,66,255, 48,51,54,255, 48,51,54,255, 58,62,66,255, 58,62,66,255, 50,53,57,255, 47,49,52,255, 58,62,66,255, 58,62,66,255, 50,53,57,255, 48,51,54,255, 58,62,66,255, 58,62,66,255, 45,47,50,255, 107,107,98,255, 133,133,124,255, 133,133,124,255, 107,107,98,255, 107,107,98,255, 133,133,123,255, 133,133,123,255, 111,111,102,255, 102,102,94,255, 133,133,123,255, 133,133,123,255, 111,111,102,255, 107,107,98,255, 133,133,123,255, 133,133,123,255, 98,98,90,255, 18,106,123,255, 22,128,143,255, 22,128,143,255, 18,106,123,255, 18,106,123,255, 22,128,142,255, 22,128,142,255, 19,110,127,255, 17,102,119,255, 22,128,142,255, 22,128,142,255, 19,110,127,255, 18,106,123,255, 22,128,142,255, 22,128,142,255, 16,99,115,255, 127,90,127,255, 143,103,143,255, 143,103,143,255, 127,89,127,255, 127,90,127,255, 143,101,143,255, 143,101,143,255, 127,91,127,255, 127,87,127,255, 143,101,143,255, 143,101,143,255, 127,91,127,255, 127,89,127,255, 143,100,143,255, 143,101,143,255, 119,87,119,255, 36,37,123,255, 47,49,149,255, 47,49,149,255, 36,37,123,255, 36,37,123,255, 47,49,148,255, 47,49,148,255, 37,39,127,255, 34,36,120,255, 47,49,148,255, 47,49,148,255, 37,39,127,255, 36,37,123,255, 47,49,148,255, 47,49,148,255, 33,34,116,255, 98,61,32,255, 110,68,38,255, 110,68,38,255, 98,61,32,255, 98,61,32,255, 109,68,37,255, 109,68,37,255, 100,61,33,255, 97,60,31,255, 109,68,37,255, 109,68,37,255, 100,61,33,255, 98,61,32,255, 109,68,37,255, 109,68,37,255, 95,59,31,255, 74,93,36,255, 81,104,31,255, 81,104,31,255, 74,93,36,255, 74,93,36,255, 81,103,31,255, 81,103,31,255, 75,94,36,255, 74,92,36,255, 81,103,31,255, 81,103,31,255, 75,94,36,255, 74,93,36,255, 81,103,31,255, 81,103,31,255, 73,91,36,255, 123,25,25,255, 148,34,33,255, 148,34,33,255, 123,25,25,255, 123,25,25,255, 147,34,33,255, 147,34,33,255, 127,26,27,255, 120,23,24,255, 147,34,33,255, 147,34,33,255, 127,26,27,255, 123,25,25,255, 147,34,33,255, 147,34,33,255, 117,22,22,255, 18,19,23,255, 29,29,33,255, 29,29,33,255, 18,19,23,255, 18,19,23,255, 28,28,32,255, 28,28,32,255, 19,20,24,255, 17,18,22,255, 28,28,32,255, 28,28,32,255, 19,20,24,255, 18,19,23,255, 28,28,32,255, 28,28,32,255, 15,17,21,255, 222,227,227,255, 187,193,194,255, 190,196,197,255, 213,218,219,255, 213,218,219,255, 190,196,197,255, 187,193,194,255, 213,218,219,255, 213,218,219,255, 190,196,197,255, 187,193,194,255, 213,218,219,255, 213,218,219,255, 190,196,197,255, 190,196,197,255, 202,208,209,255, 241,110,10,255, 206,88,0,255, 211,90,0,255, 235,104,4,255, 235,104,4,255, 212,90,0,255, 206,88,0,255, 235,104,4,255, 235,104,4,255, 211,90,0,255, 206,88,0,255, 235,104,4,255, 235,104,4,255, 212,90,0,255, 211,90,0,255, 227,98,0,255, 179,56,169,255, 151,41,142,255, 152,42,143,255, 171,49,161,255, 171,49,161,255, 153,42,144,255, 151,41,142,255, 171,49,161,255, 171,49,161,255, 152,42,143,255, 151,41,142,255, 171,49,161,255, 171,49,161,255, 153,42,144,255, 152,42,143,255, 161,44,151,255, 52,171,215,255, 35,137,199,255, 36,139,201,255, 44,157,211,255, 44,157,211,255, 36,139,201,255, 35,137,199,255, 44,157,211,255, 44,157,211,255, 36,139,201,255, 35,137,199,255, 44,157,211,255, 44,157,211,255, 36,139,201,255, 36,139,201,255, 39,146,206,255, 251,192,31,255, 238,172,19,255, 241,175,20,255, 248,185,26,255, 248,185,26,255, 241,175,21,255, 238,172,19,255, 248,185,26,255, 248,185,26,255, 241,175,20,255, 238,172,19,255, 248,185,26,255, 248,185,26,255, 241,175,21,255, 241,175,20,255, 245,179,23,255, 106,182,24,255, 75,138,19,255, 77,141,19,255, 97,173,25,255, 97,173,25,255, 77,142,19,255, 75,138,19,255, 97,173,25,255, 97,173,25,255, 77,141,19,255, 75,138,19,255, 97,173,25,255, 97,173,25,255, 77,142,19,255, 77,141,19,255, 86,157,22,255, 237,127,162,255, 205,94,136,255, 208,97,138,255, 228,114,154,255, 228,114,154,255, 209,97,139,255, 205,94,136,255, 228,114,154,255, 228,114,154,255, 208,97,138,255, 205,94,136,255, 228,114,154,255, 228,114,154,255, 209,97,139,255, 208,97,138,255, 218,104,146,255, 58,62,66,255, 43,45,48,255, 44,46,49,255, 54,57,61,255, 54,57,61,255, 44,46,50,255, 43,45,48,255, 54,57,61,255, 54,57,61,255, 44,46,49,255, 43,45,48,255, 54,57,61,255, 54,57,61,255, 44,46,50,255, 44,46,49,255, 48,51,54,255, 133,133,123,255, 93,93,85,255, 96,96,88,255, 122,122,112,255, 122,122,112,255, 96,96,88,255, 93,93,85,255, 122,122,112,255, 122,122,112,255, 96,96,88,255, 93,93,85,255, 122,122,112,255, 122,122,112,255, 96,96,88,255, 96,96,88,255, 107,107,98,255, 22,128,142,255, 15,95,110,255, 16,97,113,255, 21,119,136,255, 21,119,136,255, 16,97,113,255, 15,95,110,255, 21,119,136,255, 21,119,136,255, 16,97,113,255, 15,95,110,255, 21,119,136,255, 21,119,136,255, 16,97,113,255, 16,97,113,255, 18,106,123,255, 143,101,143,255, 119,82,119,255, 119,84,119,255, 135,94,135,255, 135,95,135,255, 119,85,119,255, 119,82,119,255, 135,94,135,255, 135,95,135,255, 119,84,119,255, 119,82,119,255, 135,94,135,255, 135,94,135,255, 119,85,119,255, 119,84,119,255, 127,89,127,255, 47,49,148,255, 31,33,112,255, 32,33,114,255, 41,43,137,255, 41,43,137,255, 32,33,114,255, 31,33,112,255, 41,43,137,255, 41,43,137,255, 32,33,114,255, 31,33,112,255, 41,43,137,255, 41,43,137,255, 32,33,114,255, 32,33,114,255, 36,37,123,255, 109,68,37,255, 91,56,29,255, 93,57,30,255, 103,64,34,255, 103,64,34,255, 94,58,30,255, 91,56,29,255, 103,64,34,255, 103,64,34,255, 93,57,30,255, 91,56,29,255, 103,64,34,255, 103,64,34,255, 94,58,30,255, 93,57,30,255, 98,61,32,255, 81,103,31,255, 70,88,36,255, 72,89,36,255, 77,97,34,255, 77,97,34,255, 72,90,36,255, 70,88,36,255, 77,97,34,255, 77,97,34,255, 72,89,36,255, 70,88,36,255, 77,97,34,255, 77,97,34,255, 72,90,36,255, 72,89,36,255, 74,93,36,255, 147,34,33,255, 114,21,21,255, 115,21,22,255, 135,29,30,255, 135,29,30,255, 116,21,22,255, 114,21,21,255, 135,29,30,255, 135,29,30,255, 115,21,22,255, 114,21,21,255, 135,29,30,255, 135,29,30,255, 116,21,22,255, 115,21,22,255, 123,25,25,255, 28,28,32,255, 14,16,20,255, 15,16,21,255, 23,23,27,255, 23,23,27,255, 15,16,21,255, 14,16,20,255, 23,23,27,255, 23,23,27,255, 15,16,21,255, 14,16,20,255, 23,23,27,255, 23,23,27,255, 15,16,21,255, 15,16,21,255, 18,19,23,255, 222,227,228,255, 190,196,197,255, 213,218,219,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 213,218,219,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 210,216,217,255, 230,234,234,255, 230,234,234,255, 212,217,218,255, 190,196,197,255, 197,204,205,255, 242,111,10,255, 212,90,0,255, 235,104,4,255, 244,115,15,255, 244,115,15,255, 235,104,4,255, 235,104,4,255, 244,115,15,255, 244,115,15,255, 235,104,4,255, 233,102,3,255, 245,116,16,255, 245,116,16,255, 234,103,3,255, 212,90,0,255, 223,96,0,255, 180,57,169,255, 153,42,144,255, 171,49,161,255, 185,62,174,255, 185,62,174,255, 171,49,161,255, 171,49,161,255, 185,62,174,255, 185,62,174,255, 171,49,161,255, 169,48,159,255, 186,63,175,255, 186,63,175,255, 170,49,160,255, 153,42,144,255, 158,43,148,255, 53,172,215,255, 36,139,201,255, 44,157,211,255, 58,179,218,255, 58,179,218,255, 44,157,211,255, 44,157,211,255, 58,179,218,255, 58,179,218,255, 44,157,211,255, 43,154,210,255, 59,180,219,255, 59,180,219,255, 44,156,211,255, 36,139,201,255, 37,143,204,255, 251,193,32,255, 241,175,21,255, 248,185,26,255, 252,198,35,255, 252,198,35,255, 248,185,26,255, 248,185,26,255, 252,198,35,255, 252,198,35,255, 248,185,26,255, 247,183,25,255, 252,199,36,255, 252,199,36,255, 248,184,26,255, 241,175,21,255, 244,178,22,255, 106,183,24,255, 77,142,19,255, 97,173,25,255, 111,187,24,255, 111,187,24,255, 97,173,25,255, 97,173,25,255, 111,187,24,255, 111,187,24,255, 97,173,25,255, 95,170,24,255, 113,188,24,255, 113,188,24,255, 96,171,24,255, 77,142,19,255, 83,151,21,255, 238,128,162,255, 209,97,139,255, 228,114,154,255, 242,137,168,255, 242,137,168,255, 228,114,154,255, 228,114,154,255, 242,137,168,255, 242,137,168,255, 228,114,154,255, 225,111,151,255, 243,139,170,255, 243,139,170,255, 227,113,153,255, 209,97,139,255, 215,102,144,255, 59,63,66,255, 44,46,50,255, 54,57,61,255, 61,66,69,255, 61,66,69,255, 54,57,61,255, 54,57,61,255, 61,66,69,255, 61,66,69,255, 54,57,61,255, 53,55,59,255, 62,66,70,255, 62,66,70,255, 54,57,61,255, 44,46,50,255, 47,49,52,255, 133,133,124,255, 96,96,88,255, 122,122,112,255, 139,139,130,255, 139,139,130,255, 122,122,112,255, 122,122,112,255, 139,139,130,255, 139,139,130,255, 122,122,112,255, 117,117,108,255, 140,140,131,255, 140,140,131,255, 120,120,110,255, 96,96,88,255, 102,102,94,255, 22,128,143,255, 16,97,113,255, 21,119,136,255, 22,134,145,255, 22,134,145,255, 21,119,136,255, 21,119,136,255, 22,134,145,255, 22,134,145,255, 21,119,136,255, 20,115,132,255, 22,135,146,255, 22,135,146,255, 21,117,134,255, 16,97,113,255, 17,102,119,255, 143,103,143,255, 119,85,119,255, 135,94,135,255, 151,103,151,255, 151,103,151,255, 135,94,135,255, 135,95,135,255, 151,103,151,255, 151,103,151,255, 135,94,135,255, 135,91,135,255, 151,106,151,255, 151,105,151,255, 135,92,135,255, 119,85,119,255, 127,87,127,255, 47,49,149,255, 32,33,114,255, 41,43,137,255, 50,53,154,255, 50,53,154,255, 41,43,137,255, 41,43,137,255, 50,53,154,255, 50,53,154,255, 41,43,137,255, 40,41,133,255, 51,53,155,255, 51,53,155,255, 41,42,135,255, 32,33,114,255, 34,36,120,255, 110,68,38,255, 94,58,30,255, 103,64,34,255, 114,71,40,255, 114,71,40,255, 103,64,34,255, 103,64,34,255, 114,71,40,255, 114,71,40,255, 103,64,34,255, 101,63,34,255, 115,72,40,255, 115,72,40,255, 102,63,34,255, 94,58,30,255, 97,60,31,255, 81,104,31,255, 72,90,36,255, 77,97,34,255, 84,108,29,255, 84,108,29,255, 77,97,34,255, 77,97,34,255, 84,108,29,255, 84,108,29,255, 77,97,34,255, 76,96,35,255, 84,109,28,255, 84,109,28,255, 77,97,35,255, 72,90,36,255, 74,92,36,255, 148,34,33,255, 116,21,22,255, 135,29,30,255, 154,36,34,255, 154,36,34,255, 135,29,30,255, 135,29,30,255, 154,36,34,255, 154,36,34,255, 135,29,30,255, 132,28,28,255, 156,37,34,255, 156,37,34,255, 134,29,29,255, 116,21,22,255, 120,23,24,255, 29,29,33,255, 15,16,21,255, 23,23,27,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 23,23,27,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 21,22,26,255, 31,31,35,255, 31,31,35,255, 22,23,27,255, 15,16,21,255, 17,18,22,255, 202,208,209,255, 213,218,219,255, 228,233,233,255, 230,234,234,255, 226,231,231,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 213,218,219,255, 182,188,189,255, 227,98,0,255, 235,104,4,255, 244,115,15,255, 245,116,16,255, 243,113,13,255, 243,113,13,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 243,113,13,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 235,104,4,255, 198,84,0,255, 161,44,151,255, 171,49,161,255, 185,62,174,255, 186,63,175,255, 183,60,173,255, 183,60,173,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 183,60,173,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 171,49,161,255, 148,41,139,255, 39,146,206,255, 44,157,211,255, 58,179,218,255, 59,180,219,255, 56,176,217,255, 56,176,217,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 56,176,217,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 44,157,211,255, 33,132,194,255, 245,179,23,255, 248,185,26,255, 252,198,35,255, 252,199,36,255, 252,196,34,255, 252,196,34,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,196,34,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 248,185,26,255, 233,167,17,255, 86,157,22,255, 97,173,25,255, 111,187,24,255, 113,188,24,255, 109,185,24,255, 109,185,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 109,185,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 97,173,25,255, 72,132,18,255, 218,104,146,255, 228,114,154,255, 242,137,168,255, 243,139,170,255, 241,133,166,255, 241,133,166,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 241,133,166,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 228,114,154,255, 199,91,132,255, 48,51,54,255, 54,57,61,255, 61,66,69,255, 62,66,70,255, 60,64,68,255, 60,64,68,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 60,64,68,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 54,57,61,255, 41,43,47,255, 107,107,98,255, 122,122,112,255, 139,139,130,255, 140,140,131,255, 137,137,128,255, 137,137,128,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 137,137,128,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 122,122,112,255, 90,90,82,255, 18,106,123,255, 21,119,136,255, 22,134,145,255, 22,135,146,255, 22,132,144,255, 22,132,144,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,132,144,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 21,119,136,255, 14,92,107,255, 127,90,127,255, 135,95,135,255, 151,103,151,255, 151,106,151,255, 151,102,151,255, 151,102,151,255, 151,105,151,255, 151,105,151,255, 151,106,151,255, 151,103,151,255, 151,102,151,255, 151,106,151,255, 151,106,151,255, 151,106,151,255, 135,94,135,255, 112,80,112,255, 36,37,123,255, 41,43,137,255, 50,53,154,255, 51,53,155,255, 49,51,152,255, 49,51,152,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 49,51,152,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 41,43,137,255, 30,31,109,255, 98,61,32,255, 103,64,34,255, 114,71,40,255, 115,72,40,255, 112,70,39,255, 112,70,39,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 112,70,39,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 103,64,34,255, 88,53,27,255, 74,93,36,255, 77,97,34,255, 84,108,29,255, 84,109,28,255, 83,106,30,255, 83,106,30,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 83,106,30,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 77,97,34,255, 68,85,35,255, 123,25,25,255, 135,29,30,255, 154,36,34,255, 156,37,34,255, 152,36,34,255, 152,36,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 152,36,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 135,29,30,255, 111,20,20,255, 18,19,23,255, 23,23,27,255, 31,31,35,255, 31,31,35,255, 30,30,34,255, 30,30,34,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 30,30,34,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 13,15,19,255, 197,204,205,255, 213,218,219,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 232,235,236,255, 228,233,233,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 182,188,189,255, 223,96,0,255, 235,104,4,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,117,18,255, 244,115,15,255, 244,115,15,255, 244,115,15,255, 235,104,4,255, 198,84,0,255, 158,43,148,255, 171,49,161,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 188,65,177,255, 185,62,174,255, 185,62,174,255, 185,62,174,255, 171,49,161,255, 148,41,139,255, 37,143,204,255, 44,157,211,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 60,182,220,255, 58,179,218,255, 58,179,218,255, 58,179,218,255, 44,157,211,255, 33,132,194,255, 244,178,22,255, 248,185,26,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,200,38,255, 252,198,35,255, 252,198,35,255, 252,198,35,255, 248,185,26,255, 233,167,17,255, 83,151,21,255, 97,173,25,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 114,189,24,255, 111,187,24,255, 111,187,24,255, 111,187,24,255, 97,173,25,255, 72,132,18,255, 215,102,144,255, 228,114,154,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 244,141,171,255, 242,137,168,255, 242,137,168,255, 242,137,168,255, 228,114,154,255, 199,91,132,255, 47,49,52,255, 54,57,61,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,67,71,255, 61,66,69,255, 61,66,69,255, 61,66,69,255, 54,57,61,255, 41,43,47,255, 102,102,94,255, 122,122,112,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 141,141,133,255, 139,139,130,255, 139,139,130,255, 139,139,130,255, 122,122,112,255, 90,90,82,255, 17,102,119,255, 21,119,136,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,136,146,255, 22,134,145,255, 22,134,145,255, 22,134,145,255, 21,119,136,255, 14,92,107,255, 127,87,127,255, 135,94,135,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 151,106,151,255, 151,105,151,255, 151,105,151,255, 151,107,151,255, 151,103,151,255, 151,103,151,255, 151,103,151,255, 135,96,135,255, 112,79,112,255, 34,36,120,255, 41,43,137,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 52,54,156,255, 50,53,154,255, 50,53,154,255, 50,53,154,255, 41,43,137,255, 30,31,109,255, 97,60,31,255, 103,64,34,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 116,72,41,255, 114,71,40,255, 114,71,40,255, 114,71,40,255, 103,64,34,255, 88,53,27,255, 74,92,36,255, 77,97,34,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 85,110,27,255, 84,108,29,255, 84,108,29,255, 84,108,29,255, 77,97,34,255, 68,85,35,255, 120,23,24,255, 135,29,30,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 158,38,34,255, 154,36,34,255, 154,36,34,255, 154,36,34,255, 135,29,30,255, 111,20,20,255, 17,18,22,255, 23,23,27,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 32,32,36,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 13,15,19,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 228,233,233,255, 228,233,233,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 213,218,219,255, 190,196,197,255, 202,208,209,255, 241,110,10,255, 212,90,0,255, 235,104,4,255, 244,115,15,255, 244,115,15,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 244,115,15,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 235,104,4,255, 212,90,0,255, 227,98,0,255, 179,56,169,255, 153,42,144,255, 171,49,161,255, 185,62,174,255, 185,62,174,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 185,62,174,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 171,49,161,255, 153,42,144,255, 161,44,151,255, 52,171,215,255, 36,139,201,255, 44,157,211,255, 58,179,218,255, 58,179,218,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 58,179,218,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 44,157,211,255, 36,139,201,255, 39,146,206,255, 251,192,31,255, 241,175,21,255, 248,185,26,255, 252,198,35,255, 252,198,35,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,198,35,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 248,185,26,255, 241,175,21,255, 245,179,23,255, 106,182,24,255, 77,142,19,255, 97,173,25,255, 111,187,24,255, 111,187,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 111,187,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 97,173,25,255, 77,142,19,255, 86,157,22,255, 237,127,162,255, 209,97,139,255, 228,114,154,255, 242,137,168,255, 242,137,168,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 242,137,168,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 228,114,154,255, 209,97,139,255, 218,104,146,255, 58,62,66,255, 44,46,50,255, 54,57,61,255, 61,66,69,255, 61,66,69,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 61,66,69,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 54,57,61,255, 44,46,50,255, 48,51,54,255, 133,133,123,255, 96,96,88,255, 122,122,112,255, 139,139,130,255, 139,139,130,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 139,139,130,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 122,122,112,255, 96,96,88,255, 107,107,98,255, 22,128,142,255, 16,97,113,255, 21,119,136,255, 22,134,145,255, 22,134,145,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,134,145,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 21,119,136,255, 16,97,113,255, 18,106,123,255, 143,100,143,255, 119,85,119,255, 135,95,135,255, 151,103,151,255, 151,103,151,255, 151,106,151,255, 151,105,151,255, 151,105,151,255, 151,103,151,255, 151,103,151,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 135,94,135,255, 119,85,119,255, 127,90,127,255, 47,49,148,255, 32,33,114,255, 41,43,137,255, 50,53,154,255, 50,53,154,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 50,53,154,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 41,43,137,255, 32,33,114,255, 36,37,123,255, 109,68,37,255, 94,58,30,255, 103,64,34,255, 114,71,40,255, 114,71,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 114,71,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 103,64,34,255, 94,58,30,255, 98,61,32,255, 81,103,31,255, 72,90,36,255, 77,97,34,255, 84,108,29,255, 84,108,29,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 84,108,29,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 77,97,34,255, 72,90,36,255, 74,93,36,255, 147,34,33,255, 116,21,22,255, 135,29,30,255, 154,36,34,255, 154,36,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 154,36,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 135,29,30,255, 116,21,22,255, 123,25,25,255, 28,28,32,255, 15,16,21,255, 23,23,27,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 15,16,21,255, 18,19,23,255, 222,227,228,255, 190,196,197,255, 213,218,219,255, 230,234,234,255, 232,235,236,255, 230,234,234,255, 224,229,229,255, 230,234,234,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 190,196,197,255, 201,207,208,255, 242,111,10,255, 211,90,0,255, 235,104,4,255, 245,116,16,255, 245,117,18,255, 245,116,16,255, 242,112,12,255, 245,116,16,255, 245,116,16,255, 243,113,13,255, 245,116,16,255, 244,115,15,255, 244,115,15,255, 235,104,4,255, 211,90,0,255, 226,98,0,255, 180,57,169,255, 152,42,143,255, 171,49,161,255, 186,63,175,255, 188,65,177,255, 186,63,175,255, 181,58,171,255, 186,63,175,255, 186,63,175,255, 183,60,173,255, 186,63,175,255, 185,62,174,255, 185,62,174,255, 171,49,161,255, 152,42,143,255, 160,44,150,255, 53,172,215,255, 36,139,201,255, 44,157,211,255, 59,180,219,255, 60,182,220,255, 59,180,219,255, 54,174,216,255, 59,180,219,255, 59,180,219,255, 56,176,217,255, 59,180,219,255, 58,179,218,255, 58,179,218,255, 44,157,211,255, 36,139,201,255, 38,145,205,255, 251,193,32,255, 241,175,20,255, 248,185,26,255, 252,199,36,255, 252,200,38,255, 252,199,36,255, 251,194,33,255, 252,199,36,255, 252,199,36,255, 252,196,34,255, 252,199,36,255, 252,198,35,255, 252,198,35,255, 248,185,26,255, 241,175,20,255, 244,179,23,255, 106,183,24,255, 77,141,19,255, 97,173,25,255, 113,188,24,255, 114,189,24,255, 113,188,24,255, 108,184,24,255, 113,188,24,255, 113,188,24,255, 109,185,24,255, 113,188,24,255, 111,187,24,255, 111,187,24,255, 97,173,25,255, 77,141,19,255, 85,155,22,255, 238,128,162,255, 208,97,138,255, 228,114,154,255, 243,139,170,255, 244,141,171,255, 243,139,170,255, 239,130,164,255, 243,139,170,255, 243,139,170,255, 241,133,166,255, 243,139,170,255, 242,137,168,255, 242,137,168,255, 228,114,154,255, 208,97,138,255, 217,104,145,255, 59,63,66,255, 44,46,49,255, 54,57,61,255, 62,66,70,255, 62,67,71,255, 62,66,70,255, 59,63,67,255, 62,66,70,255, 62,66,70,255, 60,64,68,255, 62,66,70,255, 61,66,69,255, 61,66,69,255, 54,57,61,255, 44,46,49,255, 48,50,54,255, 133,133,124,255, 96,96,88,255, 122,122,112,255, 140,140,131,255, 141,141,133,255, 140,140,131,255, 135,135,125,255, 140,140,131,255, 140,140,131,255, 137,137,128,255, 140,140,131,255, 139,139,130,255, 139,139,130,255, 122,122,112,255, 96,96,88,255, 105,105,96,255, 22,128,143,255, 16,97,113,255, 21,119,136,255, 22,135,146,255, 22,136,146,255, 22,135,146,255, 22,130,143,255, 22,135,146,255, 22,135,146,255, 22,132,144,255, 22,135,146,255, 22,134,145,255, 22,134,145,255, 21,119,136,255, 16,97,113,255, 18,105,122,255, 143,102,143,255, 119,84,119,255, 135,94,135,255, 151,106,151,255, 151,107,151,255, 151,106,151,255, 151,101,151,255, 151,105,151,255, 151,105,151,255, 151,102,151,255, 151,105,151,255, 151,103,151,255, 151,103,151,255, 135,95,135,255, 119,84,119,255, 127,88,127,255, 47,49,149,255, 32,33,114,255, 41,43,137,255, 51,53,155,255, 52,54,156,255, 51,53,155,255, 48,50,150,255, 51,53,155,255, 51,53,155,255, 49,51,152,255, 51,53,155,255, 50,53,154,255, 50,53,154,255, 41,43,137,255, 32,33,114,255, 35,37,122,255, 110,68,38,255, 93,57,30,255, 103,64,34,255, 115,72,40,255, 116,72,41,255, 115,72,40,255, 111,69,38,255, 115,72,40,255, 115,72,40,255, 112,70,39,255, 115,72,40,255, 114,71,40,255, 114,71,40,255, 103,64,34,255, 93,57,30,255, 98,60,32,255, 81,104,31,255, 72,89,36,255, 77,97,34,255, 84,109,28,255, 85,110,27,255, 84,109,28,255, 82,105,30,255, 84,109,28,255, 84,109,28,255, 83,106,30,255, 84,109,28,255, 84,108,29,255, 84,108,29,255, 77,97,34,255, 72,89,36,255, 74,93,36,255, 148,34,33,255, 115,21,22,255, 135,29,30,255, 156,37,34,255, 158,38,34,255, 156,37,34,255, 150,35,34,255, 156,37,34,255, 156,37,34,255, 152,36,34,255, 156,37,34,255, 154,36,34,255, 154,36,34,255, 135,29,30,255, 115,21,22,255, 122,24,25,255, 29,29,33,255, 15,16,21,255, 23,23,27,255, 31,31,35,255, 32,32,36,255, 31,31,35,255, 29,29,33,255, 31,31,35,255, 31,31,35,255, 30,30,34,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 15,16,21,255, 18,18,23,255, 202,208,209,255, 213,218,219,255, 226,231,231,255, 228,233,233,255, 228,233,233,255, 226,231,231,255, 228,233,233,255, 228,233,233,255, 226,231,231,255, 228,233,233,255, 228,233,233,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 213,218,219,255, 180,186,187,255, 227,98,0,255, 235,104,4,255, 243,113,13,255, 244,115,15,255, 244,115,15,255, 243,113,13,255, 244,115,15,255, 244,115,15,255, 243,113,13,255, 244,115,15,255, 244,115,15,255, 245,116,16,255, 244,115,15,255, 245,116,16,255, 235,104,4,255, 193,82,0,255, 161,44,151,255, 171,49,161,255, 183,60,173,255, 185,62,174,255, 185,62,174,255, 183,60,173,255, 185,62,174,255, 185,62,174,255, 183,60,173,255, 185,62,174,255, 185,62,174,255, 186,63,175,255, 185,62,174,255, 186,63,175,255, 171,49,161,255, 146,40,137,255, 39,146,206,255, 44,157,211,255, 56,176,217,255, 58,179,218,255, 58,179,218,255, 56,176,217,255, 58,179,218,255, 58,179,218,255, 56,176,217,255, 58,179,218,255, 58,179,218,255, 59,180,219,255, 58,179,218,255, 59,180,219,255, 44,157,211,255, 32,130,191,255, 245,179,23,255, 248,185,26,255, 252,196,34,255, 252,198,35,255, 252,198,35,255, 252,196,34,255, 252,198,35,255, 252,198,35,255, 252,196,34,255, 252,198,35,255, 252,198,35,255, 252,199,36,255, 252,198,35,255, 252,199,36,255, 248,185,26,255, 230,165,17,255, 86,157,22,255, 97,173,25,255, 109,185,24,255, 111,187,24,255, 111,187,24,255, 109,185,24,255, 111,187,24,255, 111,187,24,255, 109,185,24,255, 111,187,24,255, 111,187,24,255, 113,188,24,255, 111,187,24,255, 113,188,24,255, 97,173,25,255, 70,129,17,255, 218,104,146,255, 228,114,154,255, 241,133,166,255, 242,137,168,255, 242,137,168,255, 241,133,166,255, 242,137,168,255, 242,137,168,255, 241,133,166,255, 242,137,168,255, 242,137,168,255, 243,139,170,255, 242,137,168,255, 243,139,170,255, 228,114,154,255, 196,89,129,255, 48,51,54,255, 54,57,61,255, 60,64,68,255, 61,66,69,255, 61,66,69,255, 60,64,68,255, 61,66,69,255, 61,66,69,255, 60,64,68,255, 61,66,69,255, 61,66,69,255, 62,66,70,255, 61,66,69,255, 62,66,70,255, 54,57,61,255, 41,43,46,255, 107,107,98,255, 122,122,112,255, 137,137,128,255, 139,139,130,255, 139,139,130,255, 137,137,128,255, 139,139,130,255, 139,139,130,255, 137,137,128,255, 139,139,130,255, 139,139,130,255, 140,140,131,255, 139,139,130,255, 140,140,131,255, 122,122,112,255, 88,88,81,255, 18,106,123,255, 21,119,136,255, 22,132,144,255, 22,134,145,255, 22,134,145,255, 22,132,144,255, 22,134,145,255, 22,134,145,255, 22,132,144,255, 22,134,145,255, 22,134,145,255, 22,135,146,255, 22,134,145,255, 22,135,146,255, 21,119,136,255, 14,90,105,255, 127,90,127,255, 135,94,135,255, 151,102,151,255, 151,103,151,255, 151,103,151,255, 151,102,151,255, 151,103,151,255, 151,103,151,255, 151,102,151,255, 151,103,151,255, 151,103,151,255, 151,105,151,255, 151,103,151,255, 151,105,151,255, 135,94,135,255, 112,78,112,255, 36,37,123,255, 41,43,137,255, 49,51,152,255, 50,53,154,255, 50,53,154,255, 49,51,152,255, 50,53,154,255, 50,53,154,255, 49,51,152,255, 50,53,154,255, 50,53,154,255, 51,53,155,255, 50,53,154,255, 51,53,155,255, 41,43,137,255, 30,31,107,255, 98,61,32,255, 103,64,34,255, 112,70,39,255, 114,71,40,255, 114,71,40,255, 112,70,39,255, 114,71,40,255, 114,71,40,255, 112,70,39,255, 114,71,40,255, 114,71,40,255, 115,72,40,255, 114,71,40,255, 115,72,40,255, 103,64,34,255, 86,52,27,255, 74,93,36,255, 77,97,34,255, 83,106,30,255, 84,108,29,255, 84,108,29,255, 83,106,30,255, 84,108,29,255, 84,108,29,255, 83,106,30,255, 84,108,29,255, 84,108,29,255, 84,109,28,255, 84,108,29,255, 84,109,28,255, 77,97,34,255, 67,83,34,255, 123,25,25,255, 135,29,30,255, 152,36,34,255, 154,36,34,255, 154,36,34,255, 152,36,34,255, 154,36,34,255, 154,36,34,255, 152,36,34,255, 154,36,34,255, 154,36,34,255, 156,37,34,255, 154,36,34,255, 156,37,34,255, 135,29,30,255, 110,19,20,255, 18,19,23,255, 23,23,27,255, 30,30,34,255, 31,31,35,255, 31,31,35,255, 30,30,34,255, 31,31,35,255, 31,31,35,255, 30,30,34,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 13,14,19,255, 202,208,209,255, 213,218,219,255, 224,229,229,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 226,231,231,255, 228,233,233,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 182,188,189,255, 227,98,0,255, 235,104,4,255, 242,112,12,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 243,113,13,255, 244,115,15,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 244,115,15,255, 244,115,15,255, 235,104,4,255, 198,84,0,255, 161,44,151,255, 171,49,161,255, 181,58,171,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 183,60,173,255, 185,62,174,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 185,62,174,255, 185,62,174,255, 171,49,161,255, 148,41,139,255, 39,146,206,255, 44,157,211,255, 54,174,216,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 56,176,217,255, 58,179,218,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 58,179,218,255, 58,179,218,255, 44,157,211,255, 33,132,194,255, 245,179,23,255, 248,185,26,255, 251,194,33,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,196,34,255, 252,198,35,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,198,35,255, 252,198,35,255, 248,185,26,255, 233,167,17,255, 86,157,22,255, 97,173,25,255, 108,184,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 109,185,24,255, 111,187,24,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 111,187,24,255, 111,187,24,255, 97,173,25,255, 72,132,18,255, 218,104,146,255, 228,114,154,255, 239,130,164,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 241,133,166,255, 242,137,168,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 242,137,168,255, 242,137,168,255, 228,114,154,255, 199,91,132,255, 48,51,54,255, 54,57,61,255, 59,63,67,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 60,64,68,255, 61,66,69,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 61,66,69,255, 61,66,69,255, 54,57,61,255, 41,43,47,255, 107,107,98,255, 122,122,112,255, 135,135,125,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 137,137,128,255, 139,139,130,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 139,139,130,255, 139,139,130,255, 122,122,112,255, 90,90,82,255, 18,106,123,255, 21,119,136,255, 22,130,143,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,132,144,255, 22,134,145,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,134,145,255, 22,134,145,255, 21,119,136,255, 14,92,107,255, 127,90,127,255, 135,95,135,255, 151,101,151,255, 151,105,151,255, 151,106,151,255, 151,106,151,255, 151,106,151,255, 151,102,151,255, 151,103,151,255, 151,106,151,255, 151,105,151,255, 151,103,151,255, 151,103,151,255, 151,103,151,255, 135,94,135,255, 112,79,112,255, 36,37,123,255, 41,43,137,255, 48,50,150,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 49,51,152,255, 50,53,154,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 50,53,154,255, 50,53,154,255, 41,43,137,255, 30,31,109,255, 98,61,32,255, 103,64,34,255, 111,69,38,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 112,70,39,255, 114,71,40,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 114,71,40,255, 114,71,40,255, 103,64,34,255, 88,53,27,255, 74,93,36,255, 77,97,34,255, 82,105,30,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 83,106,30,255, 84,108,29,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 84,108,29,255, 84,108,29,255, 77,97,34,255, 68,85,35,255, 123,25,25,255, 135,29,30,255, 150,35,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 152,36,34,255, 154,36,34,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 154,36,34,255, 154,36,34,255, 135,29,30,255, 111,20,20,255, 18,19,23,255, 23,23,27,255, 29,29,33,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 30,30,34,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 13,15,19,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 212,217,218,255, 190,196,197,255, 202,208,209,255, 241,110,10,255, 211,90,0,255, 235,104,4,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 245,116,16,255, 244,115,15,255, 244,115,15,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 245,116,16,255, 234,103,3,255, 211,90,0,255, 227,98,0,255, 179,56,169,255, 152,42,143,255, 171,49,161,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 186,63,175,255, 185,62,174,255, 185,62,174,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 186,63,175,255, 170,49,160,255, 152,42,143,255, 161,44,151,255, 52,171,215,255, 36,139,201,255, 44,157,211,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 59,180,219,255, 58,179,218,255, 58,179,218,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 59,180,219,255, 44,156,211,255, 36,139,201,255, 39,146,206,255, 251,192,31,255, 241,175,20,255, 248,185,26,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,199,36,255, 252,198,35,255, 252,198,35,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,199,36,255, 248,184,26,255, 241,175,20,255, 245,179,23,255, 106,182,24,255, 77,141,19,255, 97,173,25,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 113,188,24,255, 111,187,24,255, 111,187,24,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 113,188,24,255, 96,171,24,255, 77,141,19,255, 86,157,22,255, 237,127,162,255, 208,97,138,255, 228,114,154,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 243,139,170,255, 242,137,168,255, 242,137,168,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 243,139,170,255, 227,113,153,255, 208,97,138,255, 218,104,146,255, 58,62,66,255, 44,46,49,255, 54,57,61,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 62,66,70,255, 61,66,69,255, 61,66,69,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 62,66,70,255, 54,57,61,255, 44,46,49,255, 48,51,54,255, 133,133,123,255, 96,96,88,255, 122,122,112,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 140,140,131,255, 139,139,130,255, 139,139,130,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 140,140,131,255, 120,120,110,255, 96,96,88,255, 107,107,98,255, 22,128,142,255, 16,97,113,255, 21,119,136,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,135,146,255, 22,134,145,255, 22,134,145,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,135,146,255, 21,117,134,255, 16,97,113,255, 18,106,123,255, 143,101,143,255, 119,84,119,255, 135,96,135,255, 151,105,151,255, 151,105,151,255, 151,103,151,255, 151,105,151,255, 151,103,151,255, 151,103,151,255, 151,105,151,255, 151,105,151,255, 151,103,151,255, 151,106,151,255, 135,92,135,255, 119,84,119,255, 127,89,127,255, 47,49,148,255, 32,33,114,255, 41,43,137,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 51,53,155,255, 50,53,154,255, 50,53,154,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 51,53,155,255, 41,42,135,255, 32,33,114,255, 36,37,123,255, 109,68,37,255, 93,57,30,255, 103,64,34,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 115,72,40,255, 114,71,40,255, 114,71,40,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 115,72,40,255, 102,63,34,255, 93,57,30,255, 98,61,32,255, 81,103,31,255, 72,89,36,255, 77,97,34,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 84,109,28,255, 84,108,29,255, 84,108,29,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 84,109,28,255, 77,97,35,255, 72,89,36,255, 74,93,36,255, 147,34,33,255, 115,21,22,255, 135,29,30,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 156,37,34,255, 154,36,34,255, 154,36,34,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 156,37,34,255, 134,29,29,255, 115,21,22,255, 123,25,25,255, 28,28,32,255, 15,16,21,255, 23,23,27,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 22,23,27,255, 15,16,21,255, 18,19,23,255, 220,225,226,255, 187,193,194,255, 212,217,218,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 190,196,197,255, 197,204,205,255, 240,109,8,255, 206,88,0,255, 234,103,3,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 244,115,15,255, 235,104,4,255, 211,90,0,255, 223,96,0,255, 178,54,167,255, 151,41,142,255, 170,49,160,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 185,62,174,255, 171,49,161,255, 152,42,143,255, 158,43,148,255, 51,168,214,255, 35,137,199,255, 44,156,211,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 58,179,218,255, 44,157,211,255, 36,139,201,255, 37,143,204,255, 250,191,30,255, 238,172,19,255, 248,184,26,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,198,35,255, 248,185,26,255, 241,175,20,255, 244,178,22,255, 104,180,25,255, 75,138,19,255, 96,171,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 111,187,24,255, 97,173,25,255, 77,141,19,255, 83,151,21,255, 235,124,160,255, 205,94,136,255, 227,113,153,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 242,137,168,255, 228,114,154,255, 208,97,138,255, 215,102,144,255, 57,61,65,255, 43,45,48,255, 54,57,61,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 61,66,69,255, 54,57,61,255, 44,46,49,255, 47,49,52,255, 131,131,121,255, 93,93,85,255, 120,120,110,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 139,139,130,255, 122,122,112,255, 96,96,88,255, 102,102,94,255, 22,126,141,255, 15,95,110,255, 21,117,134,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,134,145,255, 21,119,136,255, 16,97,113,255, 17,102,119,255, 143,99,143,255, 119,82,119,255, 135,92,135,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 151,106,151,255, 151,106,151,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 151,103,151,255, 151,103,151,255, 135,95,135,255, 119,84,119,255, 127,87,127,255, 46,48,146,255, 31,33,112,255, 41,42,135,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 50,53,154,255, 41,43,137,255, 32,33,114,255, 34,36,120,255, 108,67,37,255, 91,56,29,255, 102,63,34,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 114,71,40,255, 103,64,34,255, 93,57,30,255, 97,60,31,255, 80,102,32,255, 70,88,36,255, 77,97,35,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 84,108,29,255, 77,97,34,255, 72,89,36,255, 74,92,36,255, 145,33,33,255, 114,21,21,255, 134,29,29,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 154,36,34,255, 135,29,30,255, 115,21,22,255, 120,23,24,255, 27,27,31,255, 14,16,20,255, 22,23,27,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 15,16,21,255, 17,18,22,255, 202,208,209,255, 213,218,219,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 224,229,229,255, 228,233,233,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 213,218,219,255, 182,188,189,255, 227,98,0,255, 235,104,4,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 242,112,12,255, 244,115,15,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 245,116,16,255, 235,104,4,255, 198,84,0,255, 161,44,151,255, 171,49,161,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 181,58,171,255, 185,62,174,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 186,63,175,255, 171,49,161,255, 148,41,139,255, 39,146,206,255, 44,157,211,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 54,174,216,255, 58,179,218,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 59,180,219,255, 44,157,211,255, 33,132,194,255, 245,179,23,255, 248,185,26,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 251,194,33,255, 252,198,35,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,199,36,255, 248,185,26,255, 233,167,17,255, 86,157,22,255, 97,173,25,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 108,184,24,255, 111,187,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 113,188,24,255, 97,173,25,255, 72,132,18,255, 218,104,146,255, 228,114,154,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 239,130,164,255, 242,137,168,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 243,139,170,255, 228,114,154,255, 199,91,132,255, 48,51,54,255, 54,57,61,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 59,63,67,255, 61,66,69,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 62,66,70,255, 54,57,61,255, 41,43,47,255, 107,107,98,255, 122,122,112,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 135,135,125,255, 139,139,130,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 140,140,131,255, 122,122,112,255, 90,90,82,255, 18,106,123,255, 21,119,136,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,130,143,255, 22,134,145,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,135,146,255, 21,119,136,255, 14,92,107,255, 127,90,127,255, 135,94,135,255, 151,105,151,255, 151,105,151,255, 151,103,151,255, 151,101,151,255, 151,103,151,255, 151,106,151,255, 151,106,151,255, 151,106,151,255, 151,105,151,255, 151,105,151,255, 151,103,151,255, 151,105,151,255, 135,94,135,255, 112,79,112,255, 36,37,123,255, 41,43,137,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 48,50,150,255, 50,53,154,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 51,53,155,255, 41,43,137,255, 30,31,109,255, 98,61,32,255, 103,64,34,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 111,69,38,255, 114,71,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 115,72,40,255, 103,64,34,255, 88,53,27,255, 74,93,36,255, 77,97,34,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 82,105,30,255, 84,108,29,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 84,109,28,255, 77,97,34,255, 68,85,35,255, 123,25,25,255, 135,29,30,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 150,35,34,255, 154,36,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 156,37,34,255, 135,29,30,255, 111,20,20,255, 18,19,23,255, 23,23,27,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 29,29,33,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 13,15,19,255, 202,208,209,255, 213,218,219,255, 232,235,236,255, 228,233,233,255, 230,234,234,255, 232,235,236,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 213,218,219,255, 182,188,189,255, 227,98,0,255, 235,104,4,255, 245,117,18,255, 244,115,15,255, 245,116,16,255, 245,117,18,255, 245,116,16,255, 245,116,16,255, 244,115,15,255, 244,115,15,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 245,116,16,255, 235,104,4,255, 198,84,0,255, 161,44,151,255, 171,49,161,255, 188,65,177,255, 185,62,174,255, 186,63,175,255, 188,65,177,255, 186,63,175,255, 186,63,175,255, 185,62,174,255, 185,62,174,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 186,63,175,255, 171,49,161,255, 148,41,139,255, 39,146,206,255, 44,157,211,255, 60,182,220,255, 58,179,218,255, 59,180,219,255, 60,182,220,255, 59,180,219,255, 59,180,219,255, 58,179,218,255, 58,179,218,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 59,180,219,255, 44,157,211,255, 33,132,194,255, 245,179,23,255, 248,185,26,255, 252,200,38,255, 252,198,35,255, 252,199,36,255, 252,200,38,255, 252,199,36,255, 252,199,36,255, 252,198,35,255, 252,198,35,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 252,199,36,255, 248,185,26,255, 233,167,17,255, 86,157,22,255, 97,173,25,255, 114,189,24,255, 111,187,24,255, 113,188,24,255, 114,189,24,255, 113,188,24,255, 113,188,24,255, 111,187,24,255, 111,187,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 113,188,24,255, 97,173,25,255, 72,132,18,255, 218,104,146,255, 228,114,154,255, 244,141,171,255, 242,137,168,255, 243,139,170,255, 244,141,171,255, 243,139,170,255, 243,139,170,255, 242,137,168,255, 242,137,168,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 228,114,154,255, 199,91,132,255, 48,51,54,255, 54,57,61,255, 62,67,71,255, 61,66,69,255, 62,66,70,255, 62,67,71,255, 62,66,70,255, 62,66,70,255, 61,66,69,255, 61,66,69,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 62,66,70,255, 54,57,61,255, 41,43,47,255, 107,107,98,255, 122,122,112,255, 141,141,133,255, 139,139,130,255, 140,140,131,255, 141,141,133,255, 140,140,131,255, 140,140,131,255, 139,139,130,255, 139,139,130,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 140,140,131,255, 122,122,112,255, 90,90,82,255, 18,106,123,255, 21,119,136,255, 22,136,146,255, 22,134,145,255, 22,135,146,255, 22,136,146,255, 22,135,146,255, 22,135,146,255, 22,134,145,255, 22,134,145,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 22,135,146,255, 21,119,136,255, 14,92,107,255, 127,89,127,255, 135,95,135,255, 151,107,151,255, 151,103,151,255, 151,106,151,255, 151,107,151,255, 151,106,151,255, 151,105,151,255, 151,103,151,255, 151,103,151,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 151,105,151,255, 135,95,135,255, 112,79,112,255, 36,37,123,255, 41,43,137,255, 52,54,156,255, 50,53,154,255, 51,53,155,255, 52,54,156,255, 51,53,155,255, 51,53,155,255, 50,53,154,255, 50,53,154,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 51,53,155,255, 41,43,137,255, 30,31,109,255, 98,61,32,255, 103,64,34,255, 116,72,41,255, 114,71,40,255, 115,72,40,255, 116,72,41,255, 115,72,40,255, 115,72,40,255, 114,71,40,255, 114,71,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 115,72,40,255, 103,64,34,255, 88,53,27,255, 74,93,36,255, 77,97,34,255, 85,110,27,255, 84,108,29,255, 84,109,28,255, 85,110,27,255, 84,109,28,255, 84,109,28,255, 84,108,29,255, 84,108,29,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 84,109,28,255, 77,97,34,255, 68,85,35,255, 123,25,25,255, 135,29,30,255, 158,38,34,255, 154,36,34,255, 156,37,34,255, 158,38,34,255, 156,37,34,255, 156,37,34,255, 154,36,34,255, 154,36,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 156,37,34,255, 135,29,30,255, 111,20,20,255, 18,19,23,255, 23,23,27,255, 32,32,36,255, 31,31,35,255, 31,31,35,255, 32,32,36,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 31,31,35,255, 23,23,27,255, 13,15,19,255, 222,227,228,255, 190,196,197,255, 210,216,217,255, 230,234,234,255, 226,231,231,255, 213,218,219,255, 213,218,219,255, 230,234,234,255, 226,231,231,255, 213,218,219,255, 213,218,219,255, 226,231,231,255, 230,234,234,255, 213,218,219,255, 187,193,194,255, 202,208,209,255, 242,111,10,255, 211,90,0,255, 233,102,3,255, 245,116,16,255, 243,113,13,255, 235,104,4,255, 235,104,4,255, 245,116,16,255, 243,113,13,255, 235,104,4,255, 235,104,4,255, 243,113,13,255, 245,116,16,255, 235,104,4,255, 206,88,0,255, 227,98,0,255, 180,57,169,255, 152,42,143,255, 169,48,159,255, 186,63,175,255, 183,60,173,255, 171,49,161,255, 171,49,161,255, 186,63,175,255, 183,60,173,255, 171,49,161,255, 171,49,161,255, 183,60,173,255, 186,63,175,255, 171,49,161,255, 151,41,142,255, 161,44,151,255, 53,172,215,255, 36,139,201,255, 43,154,210,255, 59,180,219,255, 56,176,217,255, 44,157,211,255, 44,157,211,255, 59,180,219,255, 56,176,217,255, 44,157,211,255, 44,157,211,255, 56,176,217,255, 59,180,219,255, 44,157,211,255, 35,137,199,255, 39,146,206,255, 251,193,32,255, 241,175,20,255, 247,183,25,255, 252,199,36,255, 252,196,34,255, 248,185,26,255, 248,185,26,255, 252,199,36,255, 252,196,34,255, 248,185,26,255, 248,185,26,255, 252,196,34,255, 252,199,36,255, 248,185,26,255, 238,172,19,255, 245,179,23,255, 106,183,24,255, 77,141,19,255, 95,170,24,255, 113,188,24,255, 109,185,24,255, 97,173,25,255, 97,173,25,255, 113,188,24,255, 109,185,24,255, 97,173,25,255, 97,173,25,255, 109,185,24,255, 113,188,24,255, 97,173,25,255, 75,138,19,255, 86,157,22,255, 238,128,162,255, 208,97,138,255, 225,111,151,255, 243,139,170,255, 241,133,166,255, 228,114,154,255, 228,114,154,255, 243,139,170,255, 241,133,166,255, 228,114,154,255, 228,114,154,255, 241,133,166,255, 243,139,170,255, 228,114,154,255, 205,94,136,255, 218,104,146,255, 59,63,66,255, 44,46,49,255, 53,55,59,255, 62,66,70,255, 60,64,68,255, 54,57,61,255, 54,57,61,255, 62,66,70,255, 60,64,68,255, 54,57,61,255, 54,57,61,255, 60,64,68,255, 62,66,70,255, 54,57,61,255, 43,45,48,255, 48,51,54,255, 133,133,124,255, 96,96,88,255, 117,117,108,255, 140,140,131,255, 137,137,128,255, 122,122,112,255, 122,122,112,255, 140,140,131,255, 137,137,128,255, 122,122,112,255, 122,122,112,255, 137,137,128,255, 140,140,131,255, 122,122,112,255, 93,93,85,255, 107,107,98,255, 22,128,143,255, 16,97,113,255, 20,115,132,255, 22,135,146,255, 22,132,144,255, 21,119,136,255, 21,119,136,255, 22,135,146,255, 22,132,144,255, 21,119,136,255, 21,119,136,255, 22,132,144,255, 22,135,146,255, 21,119,136,255, 15,95,110,255, 18,106,123,255, 143,102,143,255, 119,84,119,255, 135,91,135,255, 151,106,151,255, 151,102,151,255, 135,94,135,255, 135,94,135,255, 151,106,151,255, 151,102,151,255, 135,94,135,255, 135,95,135,255, 151,102,151,255, 151,105,151,255, 135,96,135,255, 119,82,119,255, 127,89,127,255, 47,49,149,255, 32,33,114,255, 40,41,133,255, 51,53,155,255, 49,51,152,255, 41,43,137,255, 41,43,137,255, 51,53,155,255, 49,51,152,255, 41,43,137,255, 41,43,137,255, 49,51,152,255, 51,53,155,255, 41,43,137,255, 31,33,112,255, 36,37,123,255, 110,68,38,255, 93,57,30,255, 101,63,34,255, 115,72,40,255, 112,70,39,255, 103,64,34,255, 103,64,34,255, 115,72,40,255, 112,70,39,255, 103,64,34,255, 103,64,34,255, 112,70,39,255, 115,72,40,255, 103,64,34,255, 91,56,29,255, 98,61,32,255, 81,104,31,255, 72,89,36,255, 76,96,35,255, 84,109,28,255, 83,106,30,255, 77,97,34,255, 77,97,34,255, 84,109,28,255, 83,106,30,255, 77,97,34,255, 77,97,34,255, 83,106,30,255, 84,109,28,255, 77,97,34,255, 70,88,36,255, 74,93,36,255, 148,34,33,255, 115,21,22,255, 132,28,28,255, 156,37,34,255, 152,36,34,255, 135,29,30,255, 135,29,30,255, 156,37,34,255, 152,36,34,255, 135,29,30,255, 135,29,30,255, 152,36,34,255, 156,37,34,255, 135,29,30,255, 114,21,21,255, 123,25,25,255, 29,29,33,255, 15,16,21,255, 21,22,26,255, 31,31,35,255, 30,30,34,255, 23,23,27,255, 23,23,27,255, 31,31,35,255, 30,30,34,255, 23,23,27,255, 23,23,27,255, 30,30,34,255, 31,31,35,255, 23,23,27,255, 14,16,20,255, 18,19,23,255, 222,227,227,255, 186,192,193,255, 187,193,194,255, 213,218,219,255, 212,217,218,255, 190,196,197,255, 186,192,193,255, 213,218,219,255, 213,218,219,255, 190,196,197,255, 190,196,197,255, 213,218,219,255, 213,218,219,255, 190,196,197,255, 190,196,197,255, 202,208,209,255, 241,110,10,255, 205,87,0,255, 206,88,0,255, 235,104,4,255, 234,103,3,255, 211,90,0,255, 205,87,0,255, 235,104,4,255, 235,104,4,255, 212,90,0,255, 212,90,0,255, 235,104,4,255, 235,104,4,255, 212,90,0,255, 211,90,0,255, 227,98,0,255, 179,56,169,255, 150,41,141,255, 151,41,142,255, 171,49,161,255, 170,49,160,255, 152,42,143,255, 150,41,141,255, 171,49,161,255, 171,49,161,255, 153,42,144,255, 153,42,144,255, 171,49,161,255, 171,49,161,255, 153,42,144,255, 152,42,143,255, 161,44,151,255, 52,171,215,255, 35,137,199,255, 35,137,199,255, 44,157,211,255, 44,156,211,255, 36,139,201,255, 35,137,199,255, 44,157,211,255, 44,157,211,255, 36,139,201,255, 36,139,201,255, 44,157,211,255, 44,157,211,255, 36,139,201,255, 36,139,201,255, 39,146,206,255, 251,192,31,255, 238,171,19,255, 238,172,19,255, 248,185,26,255, 248,184,26,255, 241,175,20,255, 238,171,19,255, 248,185,26,255, 248,185,26,255, 241,175,21,255, 241,175,21,255, 248,185,26,255, 248,185,26,255, 241,175,21,255, 241,175,20,255, 245,179,23,255, 106,182,24,255, 74,137,18,255, 75,138,19,255, 97,173,25,255, 96,171,24,255, 77,141,19,255, 74,137,18,255, 97,173,25,255, 97,173,25,255, 77,142,19,255, 77,142,19,255, 97,173,25,255, 97,173,25,255, 77,142,19,255, 77,141,19,255, 86,157,22,255, 237,127,162,255, 204,94,135,255, 205,94,136,255, 228,114,154,255, 227,113,153,255, 208,97,138,255, 204,94,135,255, 228,114,154,255, 228,114,154,255, 209,97,139,255, 209,97,139,255, 228,114,154,255, 228,114,154,255, 209,97,139,255, 208,97,138,255, 218,104,146,255, 58,62,66,255, 43,45,48,255, 43,45,48,255, 54,57,61,255, 54,57,61,255, 44,46,49,255, 43,45,48,255, 54,57,61,255, 54,57,61,255, 44,46,50,255, 44,46,50,255, 54,57,61,255, 54,57,61,255, 44,46,50,255, 44,46,49,255, 48,51,54,255, 133,133,123,255, 93,93,85,255, 93,93,85,255, 122,122,112,255, 120,120,110,255, 96,96,88,255, 93,93,85,255, 122,122,112,255, 122,122,112,255, 96,96,88,255, 96,96,88,255, 122,122,112,255, 122,122,112,255, 96,96,88,255, 96,96,88,255, 107,107,98,255, 22,128,142,255, 15,94,110,255, 15,95,110,255, 21,119,136,255, 21,117,134,255, 16,97,113,255, 15,94,110,255, 21,119,136,255, 21,119,136,255, 16,97,113,255, 16,97,113,255, 21,119,136,255, 21,119,136,255, 16,97,113,255, 16,97,113,255, 18,106,123,255, 143,101,143,255, 119,80,119,255, 119,82,119,255, 135,94,135,255, 135,92,135,255, 119,84,119,255, 119,80,119,255, 135,94,135,255, 135,95,135,255, 119,85,119,255, 119,85,119,255, 135,94,135,255, 135,96,135,255, 119,85,119,255, 119,84,119,255, 127,90,127,255, 47,49,148,255, 31,32,111,255, 31,33,112,255, 41,43,137,255, 41,42,135,255, 32,33,114,255, 31,32,111,255, 41,43,137,255, 41,43,137,255, 32,33,114,255, 32,33,114,255, 41,43,137,255, 41,43,137,255, 32,33,114,255, 32,33,114,255, 36,37,123,255, 109,68,37,255, 91,55,29,255, 91,56,29,255, 103,64,34,255, 102,63,34,255, 93,57,30,255, 91,55,29,255, 103,64,34,255, 103,64,34,255, 94,58,30,255, 94,58,30,255, 103,64,34,255, 103,64,34,255, 94,58,30,255, 93,57,30,255, 98,61,32,255, 81,103,31,255, 70,87,36,255, 70,88,36,255, 77,97,34,255, 77,97,35,255, 72,89,36,255, 70,87,36,255, 77,97,34,255, 77,97,34,255, 72,90,36,255, 72,90,36,255, 77,97,34,255, 77,97,34,255, 72,90,36,255, 72,89,36,255, 74,93,36,255, 147,34,33,255, 113,21,21,255, 114,21,21,255, 135,29,30,255, 134,29,29,255, 115,21,22,255, 113,21,21,255, 135,29,30,255, 135,29,30,255, 116,21,22,255, 116,21,22,255, 135,29,30,255, 135,29,30,255, 116,21,22,255, 115,21,22,255, 123,25,25,255, 28,28,32,255, 14,15,20,255, 14,16,20,255, 23,23,27,255, 22,23,27,255, 15,16,21,255, 14,15,20,255, 23,23,27,255, 23,23,27,255, 15,16,21,255, 15,16,21,255, 23,23,27,255, 23,23,27,255, 15,16,21,255, 15,16,21,255, 18,19,23,255, 190,196,197,255, 202,208,209,255, 197,204,205,255, 182,188,189,255, 182,188,189,255, 201,207,208,255, 202,208,209,255, 182,188,189,255, 182,188,189,255, 197,204,205,255, 202,208,209,255, 180,186,187,255, 182,188,189,255, 201,207,208,255, 201,207,208,255, 182,188,189,255, 212,90,0,255, 227,98,0,255, 223,96,0,255, 198,84,0,255, 198,84,0,255, 226,98,0,255, 227,98,0,255, 198,84,0,255, 198,84,0,255, 223,96,0,255, 227,98,0,255, 193,82,0,255, 198,84,0,255, 226,98,0,255, 226,98,0,255, 198,84,0,255, 153,42,144,255, 161,44,151,255, 158,43,148,255, 148,41,139,255, 148,41,139,255, 160,44,150,255, 161,44,151,255, 148,41,139,255, 148,41,139,255, 158,43,148,255, 161,44,151,255, 146,40,137,255, 148,41,139,255, 160,44,150,255, 160,44,150,255, 148,41,139,255, 36,139,201,255, 39,146,206,255, 37,143,204,255, 33,132,194,255, 33,132,194,255, 38,145,205,255, 39,146,206,255, 33,132,194,255, 33,132,194,255, 37,143,204,255, 39,146,206,255, 32,130,191,255, 33,132,194,255, 38,145,205,255, 38,145,205,255, 33,132,194,255, 241,175,21,255, 245,179,23,255, 244,178,22,255, 233,167,17,255, 233,167,17,255, 244,179,23,255, 245,179,23,255, 233,167,17,255, 233,167,17,255, 244,178,22,255, 245,179,23,255, 230,165,17,255, 233,167,17,255, 244,179,23,255, 244,179,23,255, 233,167,17,255, 77,142,19,255, 86,157,22,255, 83,151,21,255, 72,132,18,255, 72,132,18,255, 85,155,22,255, 86,157,22,255, 72,132,18,255, 72,132,18,255, 83,151,21,255, 86,157,22,255, 70,129,17,255, 72,132,18,255, 85,155,22,255, 85,155,22,255, 72,132,18,255, 209,97,139,255, 218,104,146,255, 215,102,144,255, 199,91,132,255, 199,91,132,255, 217,104,145,255, 218,104,146,255, 199,91,132,255, 199,91,132,255, 215,102,144,255, 218,104,146,255, 196,89,129,255, 199,91,132,255, 217,104,145,255, 217,104,145,255, 199,91,132,255, 44,46,50,255, 48,51,54,255, 47,49,52,255, 41,43,47,255, 41,43,47,255, 48,50,54,255, 48,51,54,255, 41,43,47,255, 41,43,47,255, 47,49,52,255, 48,51,54,255, 41,43,46,255, 41,43,47,255, 48,50,54,255, 48,50,54,255, 41,43,47,255, 96,96,88,255, 107,107,98,255, 102,102,94,255, 90,90,82,255, 90,90,82,255, 105,105,96,255, 107,107,98,255, 90,90,82,255, 90,90,82,255, 102,102,94,255, 107,107,98,255, 88,88,81,255, 90,90,82,255, 105,105,96,255, 105,105,96,255, 90,90,82,255, 16,97,113,255, 18,106,123,255, 17,102,119,255, 14,92,107,255, 14,92,107,255, 18,105,122,255, 18,106,123,255, 14,92,107,255, 14,92,107,255, 17,102,119,255, 18,106,123,255, 14,90,105,255, 14,92,107,255, 18,105,122,255, 18,105,122,255, 14,92,107,255, 119,85,119,255, 127,90,127,255, 127,87,127,255, 112,79,112,255, 112,79,112,255, 127,88,127,255, 127,89,127,255, 112,79,112,255, 112,79,112,255, 127,87,127,255, 127,90,127,255, 112,78,112,255, 112,80,112,255, 127,88,127,255, 127,88,127,255, 112,79,112,255, 32,33,114,255, 36,37,123,255, 34,36,120,255, 30,31,109,255, 30,31,109,255, 35,37,122,255, 36,37,123,255, 30,31,109,255, 30,31,109,255, 34,36,120,255, 36,37,123,255, 30,31,107,255, 30,31,109,255, 35,37,122,255, 35,37,122,255, 30,31,109,255, 94,58,30,255, 98,61,32,255, 97,60,31,255, 88,53,27,255, 88,53,27,255, 98,60,32,255, 98,61,32,255, 88,53,27,255, 88,53,27,255, 97,60,31,255, 98,61,32,255, 86,52,27,255, 88,53,27,255, 98,60,32,255, 98,60,32,255, 88,53,27,255, 72,90,36,255, 74,93,36,255, 74,92,36,255, 68,85,35,255, 68,85,35,255, 74,93,36,255, 74,93,36,255, 68,85,35,255, 68,85,35,255, 74,92,36,255, 74,93,36,255, 67,83,34,255, 68,85,35,255, 74,93,36,255, 74,93,36,255, 68,85,35,255, 116,21,22,255, 123,25,25,255, 120,23,24,255, 111,20,20,255, 111,20,20,255, 122,24,25,255, 123,25,25,255, 111,20,20,255, 111,20,20,255, 120,23,24,255, 123,25,25,255, 110,19,20,255, 111,20,20,255, 122,24,25,255, 122,24,25,255, 111,20,20,255, 15,16,21,255, 18,19,23,255, 17,18,22,255, 13,15,19,255, 13,15,19,255, 18,18,23,255, 18,19,23,255, 13,15,19,255, 13,15,19,255, 17,18,22,255, 18,19,23,255, 13,14,19,255, 13,15,19,255, 18,18,23,255, 18,18,23,255, 13,15,19,255, 254,216,61,255, 254,216,61,255, 254,216,61,255, 249,255,254,255, 249,255,254,255, 254,216,61,255, 254,216,61,255, 254,216,61,255, 254,216,61,255, 249,255,254,255, 35,137,199,255, 58,179,218,255, 35,137,199,255, 244,244,242,255, 249,255,254,255, 254,216,61,255, 249,128,29,255, 249,128,29,255, 22,156,156,255, 249,128,29,255, 249,165,55,255, 250,173,69,255, 249,165,55,255, 249,165,55,255, 22,156,156,255, 249,255,254,255, 249,255,254,255, 28,198,198,255, 28,198,198,255, 28,198,198,255, 27,186,186,255, 249,128,29,255, 199,78,189,255, 221,104,218,255, 203,88,194,255, 221,104,218,255, 201,82,192,255, 221,104,218,255, 244,181,203,255, 241,165,191,255, 241,165,191,255, 244,181,203,255, 203,88,194,255, 203,88,194,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 33,132,190,255, 55,57,155,255, 55,57,155,255, 58,179,218,255, 77,185,221,255, 77,185,221,255, 87,189,223,255, 77,185,221,255, 55,57,155,255, 44,46,143,255, 87,189,223,255, 58,179,218,255, 249,255,254,255, 35,137,199,255, 77,185,221,255, 35,137,199,255, 254,216,61,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 255,240,183,255, 255,240,183,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 254,216,61,255, 254,216,61,255, 255,236,157,255, 238,170,13,255, 173,124,80,255, 164,118,76,255, 164,118,76,255, 128,199,31,255, 255,236,157,255, 170,233,101,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 89,160,23,255, 89,160,23,255, 242,176,21,255, 255,243,196,255, 128,199,31,255, 184,183,173,255, 180,179,169,255, 184,183,173,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 243,139,170,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 244,181,203,255, 71,79,82,255, 54,57,61,255, 54,57,61,255, 153,153,153,255, 157,157,157,255, 54,57,61,255, 91,108,113,255, 91,108,113,255, 51,54,57,255, 81,90,94,255, 91,108,113,255, 100,118,123,255, 71,79,82,255, 71,79,82,255, 54,57,61,255, 54,57,61,255, 153,153,153,255, 204,208,210,255, 87,105,111,255, 204,208,210,255, 87,105,111,255, 204,208,210,255, 96,114,119,255, 22,156,156,255, 22,156,156,255, 22,160,160,255, 96,114,119,255, 153,153,153,255, 80,87,90,255, 153,153,153,255, 204,208,210,255, 22,156,156,255, 21,119,136,255, 21,119,136,255, 22,156,156,255, 71,79,82,255, 71,79,82,255, 208,214,215,255, 204,208,210,255, 208,214,215,255, 27,186,186,255, 71,79,82,255, 71,79,82,255, 19,106,121,255, 19,106,121,255, 23,168,168,255, 23,172,172,255, 19,106,121,255, 137,50,184,255, 142,52,190,255, 162,84,224,255, 44,44,50,255, 44,44,50,255, 44,44,50,255, 162,84,224,255, 162,84,224,255, 44,44,50,255, 137,50,184,255, 137,50,184,255, 100,31,156,255, 44,44,50,255, 44,44,50,255, 44,44,50,255, 137,50,184,255, 44,46,143,255, 69,119,211,255, 35,30,67,255, 35,30,67,255, 44,46,143,255, 32,27,56,255, 35,30,67,255, 35,30,67,255, 35,30,67,255, 35,30,67,255, 35,30,67,255, 32,27,56,255, 44,46,143,255, 35,30,67,255, 44,46,143,255, 44,46,143,255, 131,84,50,255, 205,145,124,255, 131,84,50,255, 131,84,50,255, 131,84,50,255, 131,84,50,255, 164,118,76,255, 134,86,51,255, 205,145,124,255, 131,84,50,255, 21,119,136,255, 22,125,143,255, 205,145,124,255, 22,125,143,255, 21,119,136,255, 21,119,136,255, 102,127,51,255, 102,127,51,255, 208,214,215,255, 208,214,215,255, 73,91,36,255, 73,91,36,255, 208,214,215,255, 208,214,215,255, 73,91,36,255, 141,167,89,255, 141,167,89,255, 114,155,36,255, 117,160,37,255, 203,207,209,255, 208,214,215,255, 141,167,89,255, 142,32,32,255, 139,31,31,255, 142,32,32,255, 142,32,32,255, 139,31,31,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 153,34,34,255, 176,46,38,255, 176,46,38,255, 206,75,68,255, 206,75,68,255, 168,43,36,255, 176,46,38,255, 176,46,38,255, 44,44,50,255, 47,47,53,255, 153,34,34,255, 142,32,32,255, 44,44,50,255, 43,43,49,255, 142,32,32,255, 142,32,32,255, 0,0,0,255, 44,44,50,255, 36,36,43,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 39,39,46,255, 254,216,61,255, 254,220,86,255, 254,222,95,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 69,119,211,255, 35,137,199,255, 244,244,242,255, 249,255,254,255, 254,222,95,255, 249,255,254,255, 249,128,29,255, 249,128,29,255, 22,163,163,255, 249,128,29,255, 249,128,29,255, 250,169,61,255, 250,169,61,255, 249,165,55,255, 23,168,168,255, 217,92,0,255, 240,102,0,255, 240,102,0,255, 240,102,0,255, 225,97,0,255, 27,186,186,255, 27,186,186,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 203,88,194,255, 244,181,203,255, 241,165,191,255, 179,51,169,255, 179,51,169,255, 241,165,191,255, 244,181,203,255, 203,88,194,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 35,137,199,255, 32,126,183,255, 55,57,155,255, 55,57,155,255, 58,179,218,255, 77,185,221,255, 77,185,221,255, 58,179,218,255, 41,44,133,255, 44,46,143,255, 58,179,218,255, 77,185,221,255, 249,255,254,255, 32,126,183,255, 58,179,218,255, 77,185,221,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 238,170,13,255, 243,182,37,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 255,236,157,255, 238,170,13,255, 238,170,13,255, 153,109,70,255, 164,118,76,255, 255,236,157,255, 242,176,21,255, 89,160,23,255, 128,199,31,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 89,160,23,255, 238,170,13,255, 255,236,157,255, 255,236,157,255, 180,179,169,255, 184,183,173,255, 244,181,203,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 244,181,203,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 54,57,61,255, 54,57,61,255, 149,149,149,255, 153,153,153,255, 91,108,113,255, 96,114,119,255, 91,108,113,255, 51,54,57,255, 51,54,57,255, 81,90,94,255, 96,114,119,255, 100,118,123,255, 71,79,82,255, 71,79,82,255, 54,57,61,255, 54,57,61,255, 204,208,210,255, 204,208,210,255, 96,114,119,255, 204,208,210,255, 96,114,119,255, 193,198,200,255, 204,208,210,255, 204,208,210,255, 23,168,168,255, 96,114,119,255, 153,153,153,255, 153,153,153,255, 71,79,82,255, 153,153,153,255, 204,208,210,255, 204,208,210,255, 58,62,67,255, 54,57,61,255, 22,156,156,255, 24,171,171,255, 203,207,209,255, 203,207,209,255, 208,214,215,255, 27,186,186,255, 71,79,82,255, 71,79,82,255, 19,106,121,255, 21,119,136,255, 21,126,145,255, 23,168,168,255, 22,163,163,255, 23,172,172,255, 137,50,184,255, 137,50,184,255, 142,52,190,255, 162,84,224,255, 44,44,50,255, 162,84,224,255, 137,50,184,255, 162,84,224,255, 44,44,50,255, 137,50,184,255, 100,31,156,255, 137,50,184,255, 100,31,156,255, 44,44,50,255, 137,50,184,255, 137,50,184,255, 69,119,211,255, 44,46,143,255, 35,30,67,255, 35,30,67,255, 44,46,143,255, 32,27,56,255, 35,30,67,255, 35,30,67,255, 35,30,67,255, 35,30,67,255, 35,30,67,255, 32,27,56,255, 44,46,143,255, 35,30,67,255, 35,30,67,255, 44,46,143,255, 205,145,124,255, 131,84,50,255, 131,84,50,255, 148,106,69,255, 171,123,80,255, 175,128,84,255, 164,118,76,255, 134,86,51,255, 205,145,124,255, 164,118,76,255, 21,119,136,255, 21,119,136,255, 205,145,124,255, 205,145,124,255, 22,125,143,255, 21,119,136,255, 102,127,51,255, 141,167,89,255, 208,214,215,255, 203,207,209,255, 79,98,38,255, 84,104,40,255, 208,214,215,255, 208,214,215,255, 73,91,36,255, 69,86,33,255, 94,124,22,255, 114,155,36,255, 122,168,38,255, 102,136,23,255, 141,167,89,255, 208,214,215,255, 142,32,32,255, 142,32,32,255, 139,31,31,255, 142,32,32,255, 139,31,31,255, 142,32,32,255, 139,31,31,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 176,46,38,255, 209,86,80,255, 206,75,68,255, 184,47,39,255, 168,43,36,255, 176,46,38,255, 44,44,50,255, 142,32,32,255, 153,34,34,255, 153,34,34,255, 139,31,31,255, 47,47,53,255, 142,32,32,255, 139,31,31,255, 0,0,0,255, 44,44,50,255, 0,0,0,255, 69,16,16,255, 153,34,34,255, 139,31,31,255, 69,16,16,255, 6,6,6,255, 254,216,61,255, 254,222,95,255, 249,255,254,255, 249,255,254,255, 254,222,95,255, 254,216,61,255, 254,220,86,255, 244,244,242,255, 249,255,254,255, 249,255,254,255, 35,137,199,255, 208,214,215,255, 249,255,254,255, 254,222,95,255, 254,222,95,255, 249,255,254,255, 22,156,156,255, 22,163,163,255, 22,163,163,255, 249,165,55,255, 249,165,55,255, 250,173,69,255, 249,165,55,255, 22,163,163,255, 22,163,163,255, 225,97,0,255, 240,102,0,255, 225,97,0,255, 225,97,0,255, 217,92,0,255, 225,97,0,255, 27,186,186,255, 199,78,189,255, 221,104,218,255, 203,88,194,255, 221,104,218,255, 241,165,191,255, 244,181,203,255, 179,51,169,255, 169,48,159,255, 169,48,159,255, 179,51,169,255, 244,181,203,255, 241,165,191,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 35,137,199,255, 35,137,199,255, 33,132,190,255, 44,46,143,255, 55,57,155,255, 87,189,223,255, 77,185,221,255, 58,179,218,255, 44,46,143,255, 41,44,133,255, 77,185,221,255, 77,185,221,255, 219,248,251,255, 32,126,183,255, 35,137,199,255, 35,137,199,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 242,176,21,255, 242,176,21,255, 254,216,61,255, 242,176,21,255, 240,172,13,255, 153,109,70,255, 170,233,101,255, 89,160,23,255, 89,160,23,255, 94,169,24,255, 128,199,31,255, 133,207,33,255, 133,207,33,255, 133,207,33,255, 170,233,101,255, 133,207,33,255, 170,233,101,255, 128,199,31,255, 170,233,101,255, 238,170,13,255, 255,243,196,255, 242,176,21,255, 180,179,169,255, 244,181,203,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 244,181,203,255, 217,113,152,255, 54,57,61,255, 157,157,157,255, 153,153,153,255, 81,90,94,255, 71,79,82,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 71,79,82,255, 96,114,119,255, 96,114,119,255, 74,82,85,255, 71,79,82,255, 71,79,82,255, 71,79,82,255, 96,114,119,255, 96,114,119,255, 117,132,134,255, 213,216,217,255, 117,132,134,255, 117,132,134,255, 153,153,153,255, 193,198,200,255, 213,216,217,255, 204,208,210,255, 153,153,153,255, 153,153,153,255, 77,84,87,255, 153,153,153,255, 153,153,153,255, 153,153,153,255, 54,57,61,255, 54,57,61,255, 22,156,156,255, 22,156,156,255, 24,171,171,255, 203,207,209,255, 27,186,186,255, 71,79,82,255, 71,79,82,255, 19,106,121,255, 21,119,136,255, 21,119,136,255, 21,126,145,255, 22,163,163,255, 22,156,156,255, 22,156,156,255, 162,84,224,255, 142,52,190,255, 137,50,184,255, 137,50,184,255, 162,84,224,255, 137,50,184,255, 162,84,224,255, 44,44,50,255, 100,31,156,255, 137,50,184,255, 44,44,50,255, 44,44,50,255, 137,50,184,255, 137,50,184,255, 137,50,184,255, 100,31,156,255, 35,137,199,255, 44,46,143,255, 44,46,143,255, 35,30,67,255, 32,27,56,255, 44,46,143,255, 32,27,56,255, 32,27,56,255, 32,27,56,255, 32,27,56,255, 32,27,56,255, 32,27,56,255, 44,46,143,255, 44,46,143,255, 35,30,67,255, 35,30,67,255, 131,84,50,255, 131,84,50,255, 131,84,50,255, 131,84,50,255, 171,123,80,255, 171,123,80,255, 164,118,76,255, 131,84,50,255, 164,118,76,255, 205,145,124,255, 131,84,50,255, 21,119,136,255, 23,132,151,255, 205,145,124,255, 205,145,124,255, 22,125,143,255, 208,214,215,255, 208,214,215,255, 203,207,209,255, 141,167,89,255, 79,98,38,255, 141,167,89,255, 208,214,215,255, 203,207,209,255, 94,124,22,255, 73,91,36,255, 97,129,22,255, 117,160,37,255, 122,168,38,255, 94,124,22,255, 102,136,23,255, 203,207,209,255, 176,46,38,255, 142,32,32,255, 142,32,32,255, 168,43,36,255, 176,46,38,255, 176,46,38,255, 176,46,38,255, 168,43,36,255, 153,34,34,255, 142,32,32,255, 153,34,34,255, 209,86,80,255, 209,86,80,255, 206,75,68,255, 184,47,39,255, 176,46,38,255, 153,34,34,255, 153,34,34,255, 153,34,34,255, 139,31,31,255, 44,44,50,255, 43,43,49,255, 43,43,49,255, 36,36,43,255, 17,17,17,255, 44,44,50,255, 0,0,0,255, 153,34,34,255, 24,24,27,255, 0,0,0,255, 139,31,31,255, 17,17,17,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 254,222,95,255, 254,220,86,255, 254,220,86,255, 249,255,254,255, 208,214,215,255, 35,137,199,255, 244,244,242,255, 254,222,95,255, 244,244,242,255, 254,216,61,255, 249,255,254,255, 249,128,29,255, 249,128,29,255, 249,165,55,255, 22,156,156,255, 22,156,156,255, 22,163,163,255, 22,163,163,255, 23,168,168,255, 225,97,0,255, 240,102,0,255, 249,128,29,255, 249,128,29,255, 249,128,29,255, 240,102,0,255, 225,97,0,255, 28,198,198,255, 199,78,189,255, 221,104,218,255, 203,88,194,255, 241,165,191,255, 241,165,191,255, 169,48,159,255, 157,45,149,255, 199,78,189,255, 203,88,194,255, 169,48,159,255, 179,51,169,255, 244,181,203,255, 244,181,203,255, 203,88,194,255, 199,78,189,255, 221,104,218,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 33,132,190,255, 41,44,133,255, 77,185,221,255, 48,174,216,255, 44,46,143,255, 44,46,143,255, 55,57,155,255, 77,185,221,255, 58,179,218,255, 219,248,251,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 255,236,157,255, 243,182,37,255, 255,236,157,255, 255,236,157,255, 254,216,61,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,243,196,255, 255,240,183,255, 255,240,183,255, 242,176,21,255, 254,216,61,255, 240,172,13,255, 240,172,13,255, 94,169,24,255, 128,199,31,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 133,207,33,255, 139,217,34,255, 133,207,33,255, 133,207,33,255, 133,207,33,255, 170,233,101,255, 128,199,31,255, 170,233,101,255, 238,170,13,255, 255,243,196,255, 242,176,21,255, 244,181,203,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 244,151,179,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 244,151,179,255, 244,181,203,255, 244,181,203,255, 153,153,153,255, 153,153,153,255, 81,90,94,255, 71,79,82,255, 71,79,82,255, 54,57,61,255, 61,64,69,255, 69,77,80,255, 71,79,82,255, 71,79,82,255, 69,77,80,255, 91,108,113,255, 96,114,119,255, 74,82,85,255, 71,79,82,255, 71,79,82,255, 204,208,210,255, 204,208,210,255, 213,216,217,255, 213,216,217,255, 204,208,210,255, 204,208,210,255, 193,198,200,255, 153,153,153,255, 153,153,153,255, 193,198,200,255, 204,208,210,255, 153,153,153,255, 77,84,87,255, 80,87,90,255, 71,79,82,255, 71,79,82,255, 22,163,163,255, 22,163,163,255, 21,119,136,255, 22,156,156,255, 22,156,156,255, 24,171,171,255, 71,79,82,255, 71,79,82,255, 19,106,121,255, 21,119,136,255, 21,122,140,255, 21,119,136,255, 21,119,136,255, 21,122,140,255, 21,119,136,255, 20,113,129,255, 44,44,50,255, 162,84,224,255, 150,54,201,255, 142,52,190,255, 162,84,224,255, 142,52,190,255, 162,84,224,255, 44,44,50,255, 137,50,184,255, 50,53,56,255, 44,44,50,255, 50,53,56,255, 137,50,184,255, 150,54,201,255, 100,31,156,255, 98,31,152,255, 32,27,56,255, 35,137,199,255, 44,46,143,255, 32,27,56,255, 60,68,170,255, 69,119,211,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 69,119,211,255, 60,68,170,255, 32,27,56,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 131,84,50,255, 148,106,69,255, 131,84,50,255, 131,84,50,255, 164,118,76,255, 131,84,50,255, 164,118,76,255, 131,84,50,255, 140,90,53,255, 205,145,124,255, 131,84,50,255, 71,79,82,255, 21,119,136,255, 23,132,151,255, 205,145,124,255, 205,145,124,255, 208,214,215,255, 203,207,209,255, 141,167,89,255, 94,124,22,255, 94,124,22,255, 204,208,210,255, 208,214,215,255, 114,155,36,255, 102,136,23,255, 97,129,22,255, 94,124,22,255, 117,160,37,255, 108,149,34,255, 97,129,22,255, 94,124,22,255, 141,167,89,255, 176,46,38,255, 142,32,32,255, 142,32,32,255, 176,46,38,255, 184,47,39,255, 176,46,38,255, 184,47,39,255, 176,46,38,255, 176,46,38,255, 142,32,32,255, 142,32,32,255, 209,86,80,255, 209,86,80,255, 209,86,80,255, 206,75,68,255, 206,75,68,255, 142,32,32,255, 153,34,34,255, 142,32,32,255, 39,39,46,255, 43,43,49,255, 36,36,43,255, 142,32,32,255, 142,32,32,255, 69,16,16,255, 39,39,46,255, 0,0,0,255, 142,32,32,255, 69,16,16,255, 24,24,27,255, 142,32,32,255, 17,17,17,255, 249,255,254,255, 249,255,254,255, 254,222,95,255, 244,244,242,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 244,244,242,255, 69,119,211,255, 208,214,215,255, 249,255,254,255, 254,216,61,255, 249,255,254,255, 254,222,95,255, 249,255,254,255, 249,165,55,255, 249,128,29,255, 249,165,55,255, 22,156,156,255, 225,97,0,255, 225,97,0,255, 249,128,29,255, 240,102,0,255, 225,97,0,255, 249,128,29,255, 249,128,29,255, 22,156,156,255, 249,128,29,255, 225,97,0,255, 28,198,198,255, 28,198,198,255, 199,78,189,255, 203,88,194,255, 244,181,203,255, 241,165,191,255, 169,48,159,255, 169,48,159,255, 199,78,189,255, 203,88,194,255, 199,78,189,255, 203,88,194,255, 179,51,169,255, 169,48,159,255, 244,181,203,255, 241,165,191,255, 199,78,189,255, 212,96,207,255, 33,132,190,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 41,44,133,255, 48,174,216,255, 44,46,143,255, 55,57,155,255, 201,243,248,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 35,137,199,255, 32,126,183,255, 33,132,190,255, 58,179,218,255, 255,240,183,255, 242,176,21,255, 255,236,157,255, 254,216,61,255, 254,216,61,255, 254,222,95,255, 255,243,196,255, 242,176,21,255, 255,238,170,255, 238,170,13,255, 242,176,21,255, 255,236,157,255, 255,240,183,255, 242,176,21,255, 254,222,95,255, 254,216,61,255, 94,169,24,255, 170,233,101,255, 128,199,31,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 133,207,33,255, 133,207,33,255, 133,207,33,255, 139,217,34,255, 128,199,31,255, 128,199,31,255, 89,160,23,255, 242,176,21,255, 255,236,157,255, 238,170,13,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 244,181,203,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 153,153,153,255, 54,57,61,255, 71,79,82,255, 67,74,78,255, 74,82,85,255, 51,54,57,255, 51,54,57,255, 67,74,78,255, 71,79,82,255, 51,54,57,255, 51,54,57,255, 71,79,82,255, 91,108,113,255, 91,108,113,255, 91,108,113,255, 96,114,119,255, 96,114,119,255, 96,114,119,255, 117,132,134,255, 145,145,145,255, 145,145,145,255, 193,198,200,255, 204,208,210,255, 213,216,217,255, 193,198,200,255, 153,153,153,255, 204,208,210,255, 204,208,210,255, 153,153,153,255, 153,153,153,255, 153,153,153,255, 153,153,153,255, 22,156,156,255, 22,156,156,255, 54,57,61,255, 54,57,61,255, 58,62,67,255, 22,156,156,255, 71,79,82,255, 19,106,121,255, 58,62,67,255, 54,57,61,255, 58,62,67,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 19,106,121,255, 44,44,50,255, 44,44,50,255, 162,84,224,255, 162,84,224,255, 137,50,184,255, 162,84,224,255, 44,44,50,255, 100,31,156,255, 137,50,184,255, 50,53,56,255, 50,53,56,255, 137,50,184,255, 150,54,201,255, 90,29,141,255, 98,31,152,255, 98,31,152,255, 32,27,56,255, 69,119,211,255, 44,46,143,255, 69,119,211,255, 35,137,199,255, 60,68,170,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 60,68,170,255, 35,137,199,255, 69,119,211,255, 44,46,143,255, 35,30,67,255, 35,30,67,255, 131,84,50,255, 171,123,80,255, 164,118,76,255, 164,118,76,255, 131,84,50,255, 96,59,31,255, 171,123,80,255, 148,106,69,255, 131,84,50,255, 205,145,124,255, 164,118,76,255, 106,65,34,255, 71,79,82,255, 21,119,136,255, 22,125,143,255, 22,125,143,255, 73,91,36,255, 73,91,36,255, 84,104,40,255, 94,124,22,255, 204,208,210,255, 208,214,215,255, 141,167,89,255, 79,98,38,255, 94,124,22,255, 94,124,22,255, 114,155,36,255, 114,155,36,255, 97,129,22,255, 97,129,22,255, 94,124,22,255, 141,167,89,255, 176,46,38,255, 142,32,32,255, 142,32,32,255, 209,86,80,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 203,66,58,255, 142,32,32,255, 139,31,31,255, 206,75,68,255, 209,86,80,255, 206,75,68,255, 206,75,68,255, 209,86,80,255, 36,36,43,255, 153,34,34,255, 39,39,46,255, 43,43,49,255, 47,47,53,255, 44,44,50,255, 24,24,27,255, 142,32,32,255, 142,32,32,255, 69,16,16,255, 0,0,0,255, 69,16,16,255, 142,32,32,255, 142,32,32,255, 69,16,16,255, 24,24,27,255, 254,222,95,255, 249,255,254,255, 254,220,86,255, 254,222,95,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 208,214,215,255, 35,137,199,255, 35,137,199,255, 244,244,242,255, 249,255,254,255, 254,216,61,255, 249,255,254,255, 249,255,254,255, 244,244,242,255, 249,165,55,255, 249,165,55,255, 250,173,69,255, 22,163,163,255, 217,92,0,255, 240,102,0,255, 249,128,29,255, 225,97,0,255, 240,102,0,255, 249,128,29,255, 249,128,29,255, 249,128,29,255, 249,128,29,255, 225,97,0,255, 28,198,198,255, 22,156,156,255, 203,88,194,255, 241,165,191,255, 241,165,191,255, 169,48,159,255, 179,51,169,255, 199,78,189,255, 199,78,189,255, 201,82,192,255, 201,82,192,255, 201,82,192,255, 199,78,189,255, 179,51,169,255, 169,48,159,255, 244,181,203,255, 241,165,191,255, 203,88,194,255, 58,179,218,255, 33,132,190,255, 35,137,199,255, 35,137,199,255, 41,44,133,255, 44,46,143,255, 44,46,143,255, 219,248,251,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 35,137,199,255, 58,179,218,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 254,222,95,255, 255,243,196,255, 255,243,196,255, 243,182,37,255, 255,243,196,255, 242,176,21,255, 242,176,21,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 254,222,95,255, 94,169,24,255, 170,233,101,255, 128,199,31,255, 133,207,33,255, 94,169,24,255, 94,169,24,255, 89,160,23,255, 238,170,13,255, 238,170,13,255, 128,199,31,255, 128,199,31,255, 89,160,23,255, 242,176,21,255, 255,236,157,255, 242,176,21,255, 89,160,23,255, 243,139,170,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 244,151,179,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 214,101,143,255, 54,57,61,255, 54,57,61,255, 71,79,82,255, 81,90,94,255, 81,90,94,255, 54,57,61,255, 51,54,57,255, 54,57,61,255, 54,57,61,255, 51,54,57,255, 51,54,57,255, 51,54,57,255, 67,74,78,255, 91,108,113,255, 100,118,123,255, 91,108,113,255, 204,208,210,255, 204,208,210,255, 204,208,210,255, 213,216,217,255, 153,153,153,255, 153,153,153,255, 145,145,145,255, 193,198,200,255, 213,216,217,255, 204,208,210,255, 96,114,119,255, 204,208,210,255, 204,208,210,255, 153,153,153,255, 153,153,153,255, 96,114,119,255, 22,156,156,255, 22,156,156,255, 54,57,61,255, 54,57,61,255, 50,53,56,255, 22,156,156,255, 22,156,156,255, 22,156,156,255, 54,57,61,255, 50,53,56,255, 54,57,61,255, 21,119,136,255, 21,122,140,255, 21,119,136,255, 19,106,121,255, 71,79,82,255, 44,44,50,255, 162,84,224,255, 142,52,190,255, 137,50,184,255, 162,84,224,255, 137,50,184,255, 162,84,224,255, 50,53,56,255, 100,31,156,255, 137,50,184,255, 150,54,201,255, 150,54,201,255, 90,29,141,255, 98,31,152,255, 98,31,152,255, 98,31,152,255, 32,27,56,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 44,46,143,255, 69,119,211,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 69,119,211,255, 44,46,143,255, 44,46,143,255, 60,68,170,255, 35,137,199,255, 44,46,143,255, 35,30,67,255, 131,84,50,255, 171,123,80,255, 171,123,80,255, 131,84,50,255, 96,59,31,255, 96,59,31,255, 171,123,80,255, 164,118,76,255, 131,84,50,255, 164,118,76,255, 205,145,124,255, 131,84,50,255, 106,65,34,255, 71,79,82,255, 21,119,136,255, 21,119,136,255, 69,86,33,255, 84,104,40,255, 141,167,89,255, 204,208,210,255, 208,214,215,255, 141,167,89,255, 79,98,38,255, 73,91,36,255, 79,98,38,255, 122,168,38,255, 114,155,36,255, 94,124,22,255, 73,91,36,255, 73,91,36,255, 69,86,33,255, 84,104,40,255, 142,32,32,255, 142,32,32,255, 153,34,34,255, 209,86,80,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 139,31,31,255, 153,34,34,255, 206,75,68,255, 206,75,68,255, 44,44,50,255, 43,43,49,255, 43,43,49,255, 47,47,53,255, 44,44,50,255, 43,43,49,255, 39,39,46,255, 24,24,27,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 6,6,6,255, 6,6,6,255, 17,17,17,255, 24,24,27,255, 153,34,34,255, 254,216,61,255, 249,255,254,255, 254,222,95,255, 254,216,61,255, 249,255,254,255, 249,255,254,255, 35,137,199,255, 35,137,199,255, 74,185,221,255, 35,137,199,255, 249,255,254,255, 249,255,254,255, 254,222,95,255, 249,255,254,255, 244,244,242,255, 35,137,199,255, 250,169,61,255, 249,165,55,255, 249,165,55,255, 22,163,163,255, 249,128,29,255, 249,128,29,255, 249,255,254,255, 225,97,0,255, 225,97,0,255, 225,97,0,255, 249,128,29,255, 249,128,29,255, 225,97,0,255, 27,186,186,255, 22,156,156,255, 22,156,156,255, 241,165,191,255, 241,165,191,255, 157,45,149,255, 179,51,169,255, 199,78,189,255, 199,78,189,255, 203,88,194,255, 201,82,192,255, 201,82,192,255, 201,82,192,255, 199,78,189,255, 199,78,189,255, 169,48,159,255, 157,45,149,255, 244,181,203,255, 241,165,191,255, 77,185,221,255, 58,179,218,255, 33,132,190,255, 35,137,199,255, 44,46,143,255, 55,57,155,255, 201,243,248,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 35,137,199,255, 35,137,199,255, 77,185,221,255, 58,179,218,255, 35,137,199,255, 35,137,199,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,243,196,255, 255,243,196,255, 243,182,37,255, 255,243,196,255, 255,238,170,255, 255,236,157,255, 243,182,37,255, 242,176,21,255, 243,182,37,255, 255,236,157,255, 243,182,37,255, 254,216,61,255, 94,169,24,255, 170,233,101,255, 128,199,31,255, 133,207,33,255, 133,207,33,255, 89,160,23,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 238,170,13,255, 89,160,23,255, 89,160,23,255, 242,176,21,255, 255,236,157,255, 242,176,21,255, 128,199,31,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 244,181,203,255, 244,151,179,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 214,101,143,255, 54,57,61,255, 91,108,113,255, 91,108,113,255, 96,114,119,255, 96,114,119,255, 157,157,157,255, 157,157,157,255, 71,79,82,255, 61,64,69,255, 54,57,61,255, 54,57,61,255, 51,54,57,255, 71,79,82,255, 67,74,78,255, 67,74,78,255, 81,90,94,255, 204,208,210,255, 204,208,210,255, 204,208,210,255, 204,208,210,255, 117,132,134,255, 204,208,210,255, 193,198,200,255, 117,132,134,255, 204,208,210,255, 204,208,210,255, 204,208,210,255, 117,132,134,255, 204,208,210,255, 204,208,210,255, 96,114,119,255, 22,160,160,255, 23,168,168,255, 23,168,168,255, 54,57,61,255, 54,57,61,255, 58,62,67,255, 19,106,121,255, 22,163,163,255, 22,156,156,255, 61,65,69,255, 54,57,61,255, 54,57,61,255, 21,126,145,255, 21,119,136,255, 19,106,121,255, 71,79,82,255, 71,79,82,255, 162,84,224,255, 142,52,190,255, 162,84,224,255, 162,84,224,255, 44,44,50,255, 162,84,224,255, 137,50,184,255, 162,84,224,255, 50,53,56,255, 44,44,50,255, 44,44,50,255, 95,30,147,255, 98,31,152,255, 100,31,156,255, 142,52,190,255, 137,50,184,255, 32,27,56,255, 69,119,211,255, 60,68,170,255, 44,46,143,255, 69,119,211,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 60,68,170,255, 69,119,211,255, 44,46,143,255, 60,68,170,255, 35,137,199,255, 44,46,143,255, 164,118,76,255, 164,118,76,255, 171,123,80,255, 171,123,80,255, 164,118,76,255, 171,123,80,255, 175,128,84,255, 164,118,76,255, 131,84,50,255, 140,90,53,255, 205,145,124,255, 140,90,53,255, 140,90,53,255, 140,90,53,255, 131,84,50,255, 96,59,31,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 141,167,89,255, 73,91,36,255, 94,124,22,255, 94,124,22,255, 69,86,33,255, 114,155,36,255, 94,124,22,255, 73,91,36,255, 79,98,38,255, 108,149,34,255, 117,160,37,255, 114,155,36,255, 142,32,32,255, 153,34,34,255, 203,66,58,255, 206,75,68,255, 176,46,38,255, 176,46,38,255, 176,46,38,255, 184,47,39,255, 206,75,68,255, 153,34,34,255, 142,32,32,255, 139,31,31,255, 139,31,31,255, 142,32,32,255, 142,32,32,255, 206,75,68,255, 142,32,32,255, 153,34,34,255, 43,43,49,255, 153,34,34,255, 24,24,27,255, 39,39,46,255, 17,17,17,255, 39,39,46,255, 0,0,0,255, 24,24,27,255, 17,17,17,255, 29,29,33,255, 142,32,32,255, 139,31,31,255, 153,34,34,255, 29,29,33,255, 254,216,61,255, 249,255,254,255, 244,244,242,255, 254,220,86,255, 249,255,254,255, 208,214,215,255, 35,137,199,255, 80,187,222,255, 58,179,218,255, 69,119,211,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 208,214,215,255, 35,137,199,255, 58,179,218,255, 250,169,61,255, 250,169,61,255, 22,163,163,255, 23,168,168,255, 225,97,0,255, 240,102,0,255, 255,228,189,255, 249,255,254,255, 249,128,29,255, 225,97,0,255, 225,97,0,255, 225,97,0,255, 249,128,29,255, 28,198,198,255, 22,156,156,255, 22,156,156,255, 241,165,191,255, 169,48,159,255, 157,45,149,255, 157,45,149,255, 169,48,159,255, 179,51,169,255, 179,51,169,255, 201,82,192,255, 201,82,192,255, 179,51,169,255, 169,48,159,255, 157,45,149,255, 169,48,159,255, 169,48,159,255, 157,45,149,255, 244,181,203,255, 77,185,221,255, 87,189,223,255, 58,179,218,255, 32,126,183,255, 55,57,155,255, 230,255,251,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 32,126,183,255, 35,137,199,255, 35,137,199,255, 87,189,223,255, 58,179,218,255, 58,179,218,255, 35,137,199,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 243,182,37,255, 243,182,37,255, 255,243,196,255, 255,238,170,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 243,182,37,255, 238,170,13,255, 255,240,183,255, 242,176,21,255, 242,176,21,255, 94,169,24,255, 170,233,101,255, 133,207,33,255, 128,199,31,255, 139,217,34,255, 242,176,21,255, 255,243,196,255, 127,204,25,255, 127,204,25,255, 255,236,157,255, 242,176,21,255, 243,182,37,255, 255,236,157,255, 242,176,21,255, 89,160,23,255, 128,199,31,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 244,181,203,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 214,101,143,255, 91,108,113,255, 91,108,113,255, 96,114,119,255, 91,108,113,255, 91,108,113,255, 157,157,157,255, 153,153,153,255, 153,153,153,255, 149,149,149,255, 54,57,61,255, 54,57,61,255, 81,90,94,255, 67,74,78,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 91,109,115,255, 89,107,113,255, 96,114,119,255, 117,132,134,255, 117,132,134,255, 204,208,210,255, 204,208,210,255, 204,208,210,255, 96,114,119,255, 204,208,210,255, 204,208,210,255, 193,198,200,255, 117,132,134,255, 204,208,210,255, 23,168,168,255, 22,156,156,255, 203,207,209,255, 208,214,215,255, 21,119,136,255, 21,126,145,255, 21,122,140,255, 58,62,67,255, 54,57,61,255, 61,65,69,255, 22,156,156,255, 22,163,163,255, 21,119,136,255, 21,119,136,255, 19,106,121,255, 71,79,82,255, 71,79,82,255, 27,186,186,255, 162,84,224,255, 162,84,224,255, 44,44,50,255, 44,44,50,255, 100,31,156,255, 44,44,50,255, 162,84,224,255, 142,52,190,255, 162,84,224,255, 162,84,224,255, 44,44,50,255, 98,31,152,255, 100,31,156,255, 142,52,190,255, 100,31,156,255, 142,52,190,255, 69,119,211,255, 60,68,170,255, 44,46,143,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 35,137,199,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 60,68,170,255, 44,46,143,255, 60,68,170,255, 69,119,211,255, 131,84,50,255, 134,86,51,255, 134,86,51,255, 131,84,50,255, 148,106,69,255, 164,118,76,255, 164,118,76,255, 171,123,80,255, 148,106,69,255, 131,84,50,255, 205,145,124,255, 164,118,76,255, 106,65,34,255, 106,65,34,255, 131,84,50,255, 96,59,31,255, 208,214,215,255, 208,214,215,255, 203,207,209,255, 114,155,36,255, 79,98,38,255, 73,91,36,255, 94,124,22,255, 73,91,36,255, 69,86,33,255, 97,129,22,255, 73,91,36,255, 79,98,38,255, 114,155,36,255, 117,160,37,255, 114,155,36,255, 114,155,36,255, 176,46,38,255, 203,66,58,255, 206,75,68,255, 176,46,38,255, 168,43,36,255, 168,43,36,255, 176,46,38,255, 176,46,38,255, 184,47,39,255, 209,86,80,255, 203,66,58,255, 176,46,38,255, 168,43,36,255, 153,34,34,255, 142,32,32,255, 153,34,34,255, 139,31,31,255, 142,32,32,255, 39,39,46,255, 142,32,32,255, 153,34,34,255, 17,17,17,255, 43,43,49,255, 142,32,32,255, 142,32,32,255, 153,34,34,255, 153,34,34,255, 29,29,33,255, 139,31,31,255, 87,13,13,255, 29,29,33,255, 29,29,33,255, 254,216,61,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 244,244,242,255, 35,137,199,255, 58,179,218,255, 58,179,218,255, 35,137,199,255, 69,119,211,255, 249,255,254,255, 249,255,254,255, 35,137,199,255, 35,137,199,255, 58,179,218,255, 74,185,221,255, 22,156,156,255, 22,156,156,255, 22,163,163,255, 225,97,0,255, 217,92,0,255, 225,97,0,255, 225,97,0,255, 255,228,189,255, 249,255,254,255, 249,128,29,255, 249,165,55,255, 249,165,55,255, 249,128,29,255, 27,186,186,255, 28,198,198,255, 22,156,156,255, 241,165,191,255, 241,165,191,255, 244,181,203,255, 244,181,203,255, 241,165,191,255, 241,165,191,255, 179,51,169,255, 201,82,192,255, 199,78,189,255, 179,51,169,255, 241,165,191,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 55,57,155,255, 58,179,218,255, 77,185,221,255, 58,179,218,255, 201,243,248,255, 249,255,254,255, 249,255,254,255, 219,248,251,255, 33,132,190,255, 35,137,199,255, 35,137,199,255, 58,179,218,255, 77,185,221,255, 77,185,221,255, 77,185,221,255, 58,179,218,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,240,183,255, 255,236,157,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 173,124,80,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 238,170,13,255, 255,243,196,255, 173,124,80,255, 164,118,76,255, 94,169,24,255, 170,233,101,255, 170,233,101,255, 128,199,31,255, 133,207,33,255, 243,182,37,255, 255,236,157,255, 127,204,25,255, 127,204,25,255, 127,204,25,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 89,160,23,255, 128,199,31,255, 170,233,101,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 244,181,203,255, 244,151,179,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 243,139,170,255, 214,101,143,255, 91,108,113,255, 54,57,61,255, 54,57,61,255, 71,79,82,255, 91,108,113,255, 100,118,123,255, 153,153,153,255, 54,57,61,255, 153,153,153,255, 71,79,82,255, 54,57,61,255, 74,82,85,255, 74,82,85,255, 54,57,61,255, 61,64,69,255, 149,149,149,255, 91,109,115,255, 23,168,168,255, 22,160,160,255, 22,156,156,255, 22,160,160,255, 117,132,134,255, 193,198,200,255, 213,216,217,255, 193,198,200,255, 145,145,145,255, 204,208,210,255, 204,208,210,255, 153,153,153,255, 193,198,200,255, 204,208,210,255, 23,168,168,255, 203,207,209,255, 203,207,209,255, 21,126,145,255, 21,126,145,255, 21,126,145,255, 50,53,56,255, 54,57,61,255, 54,57,61,255, 22,163,163,255, 22,156,156,255, 22,156,156,255, 19,106,121,255, 71,79,82,255, 71,79,82,255, 27,186,186,255, 208,214,215,255, 44,44,50,255, 44,44,50,255, 100,31,156,255, 137,50,184,255, 137,50,184,255, 100,31,156,255, 44,44,50,255, 162,84,224,255, 137,50,184,255, 162,84,224,255, 44,44,50,255, 98,31,152,255, 90,29,141,255, 150,54,201,255, 95,30,147,255, 137,50,184,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 44,46,143,255, 69,119,211,255, 60,68,170,255, 35,137,199,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 35,137,199,255, 60,68,170,255, 44,46,143,255, 60,68,170,255, 69,119,211,255, 44,46,143,255, 205,145,124,255, 205,145,124,255, 164,118,76,255, 140,90,53,255, 131,84,50,255, 131,84,50,255, 131,84,50,255, 148,106,69,255, 148,106,69,255, 131,84,50,255, 164,118,76,255, 205,145,124,255, 106,65,34,255, 106,65,34,255, 96,59,31,255, 131,84,50,255, 73,91,36,255, 69,86,33,255, 94,124,22,255, 102,136,23,255, 97,129,22,255, 79,98,38,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 94,124,22,255, 69,86,33,255, 122,168,38,255, 114,155,36,255, 108,149,34,255, 84,104,40,255, 73,91,36,255, 176,46,38,255, 206,75,68,255, 206,75,68,255, 176,46,38,255, 168,43,36,255, 203,66,58,255, 203,66,58,255, 176,46,38,255, 176,46,38,255, 206,75,68,255, 209,86,80,255, 184,47,39,255, 176,46,38,255, 168,43,36,255, 153,34,34,255, 142,32,32,255, 0,0,0,255, 0,0,0,255, 17,17,17,255, 69,16,16,255, 142,32,32,255, 142,32,32,255, 17,17,17,255, 153,34,34,255, 44,44,50,255, 87,13,13,255, 153,34,34,255, 29,29,33,255, 142,32,32,255, 29,29,33,255, 29,29,33,255, 29,29,33,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 208,214,215,255, 35,137,199,255, 69,119,211,255, 35,137,199,255, 69,119,211,255, 69,119,211,255, 244,244,242,255, 249,255,254,255, 35,137,199,255, 35,137,199,255, 69,119,211,255, 69,119,211,255, 58,179,218,255, 249,255,254,255, 240,102,0,255, 225,97,0,255, 240,102,0,255, 249,128,29,255, 249,128,29,255, 225,97,0,255, 225,97,0,255, 249,255,254,255, 249,255,254,255, 250,169,61,255, 249,128,29,255, 21,119,136,255, 21,119,136,255, 27,186,186,255, 28,198,198,255, 199,78,189,255, 221,104,218,255, 203,88,194,255, 221,104,218,255, 203,88,194,255, 241,165,191,255, 169,48,159,255, 201,82,192,255, 203,88,194,255, 169,48,159,255, 244,181,203,255, 203,88,194,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 44,46,143,255, 44,46,143,255, 58,179,218,255, 58,179,218,255, 249,255,254,255, 249,255,254,255, 219,248,251,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 58,179,218,255, 77,185,221,255, 77,185,221,255, 77,185,221,255, 77,185,221,255, 77,185,221,255, 254,216,61,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 242,176,21,255, 243,182,37,255, 255,236,157,255, 255,240,183,255, 242,176,21,255, 173,124,80,255, 242,176,21,255, 255,236,157,255, 255,243,196,255, 255,243,196,255, 164,118,76,255, 153,109,70,255, 94,169,24,255, 170,233,101,255, 128,199,31,255, 128,199,31,255, 133,207,33,255, 133,207,33,255, 242,176,21,255, 255,243,196,255, 127,204,25,255, 127,204,25,255, 242,176,21,255, 242,176,21,255, 89,160,23,255, 128,199,31,255, 128,199,31,255, 170,233,101,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 71,79,82,255, 91,108,113,255, 153,153,153,255, 149,149,149,255, 153,153,153,255, 157,157,157,255, 51,54,57,255, 51,54,57,255, 51,54,57,255, 54,57,61,255, 149,149,149,255, 153,153,153,255, 96,114,119,255, 22,160,160,255, 22,156,156,255, 22,156,156,255, 22,156,156,255, 22,156,156,255, 96,114,119,255, 204,208,210,255, 213,216,217,255, 204,208,210,255, 145,145,145,255, 204,208,210,255, 193,198,200,255, 153,153,153,255, 204,208,210,255, 96,114,119,255, 203,207,209,255, 71,79,82,255, 21,119,136,255, 58,62,67,255, 54,57,61,255, 50,53,56,255, 54,57,61,255, 54,57,61,255, 58,62,67,255, 61,65,69,255, 22,156,156,255, 22,156,156,255, 71,79,82,255, 27,186,186,255, 203,207,209,255, 208,214,215,255, 137,50,184,255, 137,50,184,255, 137,50,184,255, 50,53,56,255, 50,53,56,255, 137,50,184,255, 44,44,50,255, 162,84,224,255, 162,84,224,255, 162,84,224,255, 44,44,50,255, 90,29,141,255, 90,29,141,255, 142,52,190,255, 100,31,156,255, 137,50,184,255, 35,30,67,255, 44,46,143,255, 69,119,211,255, 35,137,199,255, 44,46,143,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 35,137,199,255, 60,68,170,255, 69,119,211,255, 44,46,143,255, 69,119,211,255, 69,119,211,255, 35,30,67,255, 35,30,67,255, 131,84,50,255, 164,118,76,255, 205,145,124,255, 205,145,124,255, 205,145,124,255, 164,118,76,255, 140,90,53,255, 131,84,50,255, 131,84,50,255, 131,84,50,255, 140,90,53,255, 205,145,124,255, 164,118,76,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 141,167,89,255, 73,91,36,255, 79,98,38,255, 97,129,22,255, 94,124,22,255, 114,155,36,255, 114,155,36,255, 94,124,22,255, 94,124,22,255, 73,91,36,255, 73,91,36,255, 114,155,36,255, 114,155,36,255, 84,104,40,255, 79,98,38,255, 141,167,89,255, 184,47,39,255, 203,66,58,255, 206,75,68,255, 206,75,68,255, 176,46,38,255, 206,75,68,255, 206,75,68,255, 168,43,36,255, 176,46,38,255, 206,75,68,255, 206,75,68,255, 176,46,38,255, 176,46,38,255, 176,46,38,255, 203,66,58,255, 153,34,34,255, 43,43,49,255, 43,43,49,255, 44,44,50,255, 36,36,43,255, 69,16,16,255, 153,34,34,255, 24,24,27,255, 142,32,32,255, 87,13,13,255, 142,32,32,255, 139,31,31,255, 29,29,33,255, 29,29,33,255, 29,29,33,255, 29,29,33,255, 29,29,33,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 208,214,215,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 35,137,199,255, 69,119,211,255, 244,244,242,255, 249,255,254,255, 69,119,211,255, 58,179,218,255, 249,255,254,255, 225,97,0,255, 225,97,0,255, 249,128,29,255, 249,128,29,255, 249,128,29,255, 249,128,29,255, 225,97,0,255, 250,169,61,255, 255,228,189,255, 249,165,55,255, 249,128,29,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 28,198,198,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 244,181,203,255, 169,48,159,255, 199,78,189,255, 201,82,192,255, 169,48,159,255, 244,181,203,255, 212,96,207,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 44,46,143,255, 41,44,133,255, 55,57,155,255, 58,179,218,255, 249,255,254,255, 201,243,248,255, 33,132,190,255, 35,137,199,255, 35,137,199,255, 58,179,218,255, 77,185,221,255, 87,189,223,255, 77,185,221,255, 77,185,221,255, 58,179,218,255, 58,179,218,255, 254,216,61,255, 255,236,157,255, 242,176,21,255, 255,240,183,255, 243,182,37,255, 242,176,21,255, 242,176,21,255, 255,236,157,255, 255,240,183,255, 242,176,21,255, 164,118,76,255, 153,109,70,255, 164,118,76,255, 153,109,70,255, 164,118,76,255, 164,118,76,255, 94,169,24,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 133,207,33,255, 133,207,33,255, 89,160,23,255, 242,176,21,255, 255,236,157,255, 242,176,21,255, 89,160,23,255, 89,160,23,255, 128,199,31,255, 128,199,31,255, 128,199,31,255, 170,233,101,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 243,139,170,255, 54,57,61,255, 71,79,82,255, 91,108,113,255, 54,57,61,255, 54,57,61,255, 91,108,113,255, 91,108,113,255, 100,118,123,255, 153,153,153,255, 153,153,153,255, 51,54,57,255, 54,57,61,255, 54,57,61,255, 61,64,69,255, 157,157,157,255, 54,57,61,255, 87,105,111,255, 96,114,119,255, 96,114,119,255, 95,113,118,255, 20,146,146,255, 22,156,156,255, 21,153,153,255, 96,114,119,255, 204,208,210,255, 193,198,200,255, 153,153,153,255, 193,198,200,255, 204,208,210,255, 153,153,153,255, 193,198,200,255, 204,208,210,255, 71,79,82,255, 71,79,82,255, 21,126,145,255, 50,53,56,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 58,62,67,255, 22,163,163,255, 22,156,156,255, 24,171,171,255, 203,207,209,255, 208,214,215,255, 203,207,209,255, 137,50,184,255, 100,31,156,255, 44,44,50,255, 44,44,50,255, 50,53,56,255, 137,50,184,255, 50,53,56,255, 44,44,50,255, 44,44,50,255, 44,44,50,255, 44,44,50,255, 137,50,184,255, 90,29,141,255, 137,50,184,255, 100,31,156,255, 137,50,184,255, 35,30,67,255, 35,30,67,255, 32,27,56,255, 60,68,170,255, 35,137,199,255, 44,46,143,255, 69,119,211,255, 60,68,170,255, 35,137,199,255, 60,68,170,255, 44,46,143,255, 69,119,211,255, 60,68,170,255, 44,46,143,255, 35,30,67,255, 35,30,67,255, 21,119,136,255, 21,119,136,255, 131,84,50,255, 131,84,50,255, 164,118,76,255, 205,145,124,255, 205,145,124,255, 205,145,124,255, 164,118,76,255, 140,90,53,255, 140,90,53,255, 164,118,76,255, 205,145,124,255, 71,79,82,255, 23,132,151,255, 22,125,143,255, 141,167,89,255, 94,124,22,255, 94,124,22,255, 94,124,22,255, 114,155,36,255, 122,168,38,255, 94,124,22,255, 79,98,38,255, 69,86,33,255, 73,91,36,255, 84,104,40,255, 114,155,36,255, 117,160,37,255, 73,91,36,255, 94,124,22,255, 141,167,89,255, 176,46,38,255, 176,46,38,255, 203,66,58,255, 206,75,68,255, 206,75,68,255, 209,86,80,255, 206,75,68,255, 168,43,36,255, 176,46,38,255, 206,75,68,255, 206,75,68,255, 184,47,39,255, 176,46,38,255, 176,46,38,255, 206,75,68,255, 206,75,68,255, 36,36,43,255, 17,17,17,255, 0,0,0,255, 0,0,0,255, 0,0,0,255, 142,32,32,255, 24,24,27,255, 142,32,32,255, 153,34,34,255, 139,31,31,255, 29,29,33,255, 29,29,33,255, 50,53,56,255, 50,53,56,255, 58,62,67,255, 61,65,69,255, 58,179,218,255, 35,137,199,255, 208,214,215,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 35,137,199,255, 69,119,211,255, 244,244,242,255, 249,255,254,255, 249,255,254,255, 208,214,215,255, 35,137,199,255, 28,198,198,255, 225,97,0,255, 225,97,0,255, 249,128,29,255, 22,156,156,255, 249,128,29,255, 249,128,29,255, 225,97,0,255, 249,165,55,255, 249,128,29,255, 249,128,29,255, 28,198,198,255, 22,156,156,255, 21,119,136,255, 21,119,136,255, 28,198,198,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 244,181,203,255, 169,48,159,255, 201,82,192,255, 199,78,189,255, 157,45,149,255, 244,181,203,255, 212,96,207,255, 203,88,194,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 35,137,199,255, 44,46,143,255, 41,44,133,255, 55,57,155,255, 201,243,248,255, 33,132,190,255, 35,137,199,255, 35,137,199,255, 58,179,218,255, 87,189,223,255, 77,185,221,255, 58,179,218,255, 77,185,221,255, 77,185,221,255, 58,179,218,255, 58,179,218,255, 255,236,157,255, 255,236,157,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 243,182,37,255, 242,176,21,255, 238,170,13,255, 255,236,157,255, 255,240,183,255, 153,109,70,255, 153,109,70,255, 173,124,80,255, 243,182,37,255, 243,182,37,255, 242,176,21,255, 89,160,23,255, 170,233,101,255, 133,207,33,255, 128,199,31,255, 133,207,33,255, 89,160,23,255, 89,160,23,255, 242,176,21,255, 255,236,157,255, 242,176,21,255, 89,160,23,255, 89,160,23,255, 133,207,33,255, 139,217,34,255, 128,199,31,255, 128,199,31,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,151,179,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 71,79,82,255, 91,108,113,255, 100,118,123,255, 71,79,82,255, 54,57,61,255, 51,54,57,255, 71,79,82,255, 91,108,113,255, 96,114,119,255, 91,108,113,255, 81,90,94,255, 71,79,82,255, 67,74,78,255, 67,74,78,255, 149,149,149,255, 81,90,94,255, 204,208,210,255, 204,208,210,255, 204,208,210,255, 153,153,153,255, 95,113,118,255, 20,146,146,255, 22,156,156,255, 20,146,146,255, 117,132,134,255, 117,132,134,255, 145,145,145,255, 153,153,153,255, 204,208,210,255, 153,153,153,255, 153,153,153,255, 117,132,134,255, 71,79,82,255, 19,106,121,255, 21,119,136,255, 54,57,61,255, 54,57,61,255, 58,62,67,255, 61,65,69,255, 58,62,67,255, 54,57,61,255, 54,57,61,255, 21,119,136,255, 22,156,156,255, 22,156,156,255, 24,171,171,255, 203,207,209,255, 71,79,82,255, 100,31,156,255, 137,50,184,255, 44,44,50,255, 50,53,56,255, 137,50,184,255, 137,50,184,255, 95,30,147,255, 98,31,152,255, 95,30,147,255, 100,31,156,255, 150,54,201,255, 100,31,156,255, 137,50,184,255, 100,31,156,255, 100,31,156,255, 137,50,184,255, 32,27,56,255, 32,27,56,255, 35,30,67,255, 35,30,67,255, 60,68,170,255, 69,119,211,255, 44,46,143,255, 60,68,170,255, 69,119,211,255, 44,46,143,255, 69,119,211,255, 32,27,56,255, 35,30,67,255, 35,30,67,255, 44,46,143,255, 44,46,143,255, 22,125,143,255, 21,119,136,255, 21,119,136,255, 71,79,82,255, 96,59,31,255, 131,84,50,255, 140,90,53,255, 164,118,76,255, 205,145,124,255, 205,145,124,255, 164,118,76,255, 164,118,76,255, 209,154,135,255, 23,132,151,255, 22,125,143,255, 22,125,143,255, 114,155,36,255, 114,155,36,255, 122,168,38,255, 117,160,37,255, 117,160,37,255, 94,124,22,255, 79,98,38,255, 73,91,36,255, 108,149,34,255, 117,160,37,255, 114,155,36,255, 117,160,37,255, 108,149,34,255, 69,86,33,255, 97,129,22,255, 141,167,89,255, 176,46,38,255, 168,43,36,255, 176,46,38,255, 203,66,58,255, 206,75,68,255, 206,75,68,255, 176,46,38,255, 168,43,36,255, 184,47,39,255, 206,75,68,255, 206,75,68,255, 176,46,38,255, 176,46,38,255, 184,47,39,255, 206,75,68,255, 209,86,80,255, 17,17,17,255, 69,16,16,255, 142,32,32,255, 153,34,34,255, 69,16,16,255, 6,6,6,255, 29,29,33,255, 69,16,16,255, 69,16,16,255, 29,29,33,255, 29,29,33,255, 54,57,61,255, 54,57,61,255, 29,29,33,255, 29,29,33,255, 29,29,33,255, 69,119,211,255, 249,255,254,255, 249,255,254,255, 254,222,95,255, 254,216,61,255, 254,216,61,255, 254,222,95,255, 249,255,254,255, 35,137,199,255, 35,137,199,255, 244,244,242,255, 249,255,254,255, 249,255,254,255, 244,244,242,255, 208,214,215,255, 35,137,199,255, 28,198,198,255, 240,102,0,255, 217,92,0,255, 249,128,29,255, 249,128,29,255, 249,128,29,255, 225,97,0,255, 249,128,29,255, 249,128,29,255, 22,156,156,255, 22,156,156,255, 28,198,198,255, 28,198,198,255, 22,156,156,255, 21,119,136,255, 27,186,186,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 244,181,203,255, 169,48,159,255, 199,78,189,255, 199,78,189,255, 179,51,169,255, 244,181,203,255, 203,88,194,255, 199,78,189,255, 221,104,218,255, 203,88,194,255, 221,104,218,255, 249,255,254,255, 249,255,254,255, 219,248,251,255, 201,243,248,255, 55,57,155,255, 48,174,216,255, 77,185,221,255, 58,179,218,255, 201,243,248,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 87,189,223,255, 58,179,218,255, 58,179,218,255, 238,170,13,255, 240,172,13,255, 254,216,61,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 243,182,37,255, 242,176,21,255, 238,170,13,255, 255,240,183,255, 164,118,76,255, 177,130,86,255, 242,176,21,255, 242,176,21,255, 177,130,86,255, 164,118,76,255, 89,160,23,255, 89,160,23,255, 170,233,101,255, 170,233,101,255, 89,160,23,255, 242,176,21,255, 242,176,21,255, 255,236,157,255, 242,176,21,255, 89,160,23,255, 128,199,31,255, 128,199,31,255, 170,233,101,255, 170,233,101,255, 128,199,31,255, 89,160,23,255, 243,139,170,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,151,179,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 217,113,152,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 91,108,113,255, 91,108,113,255, 91,108,113,255, 91,108,113,255, 71,79,82,255, 51,54,57,255, 51,54,57,255, 71,79,82,255, 91,108,113,255, 96,114,119,255, 74,82,85,255, 67,74,78,255, 71,79,82,255, 81,90,94,255, 157,157,157,255, 71,79,82,255, 153,153,153,255, 153,153,153,255, 153,153,153,255, 204,208,210,255, 153,153,153,255, 95,113,118,255, 22,156,156,255, 22,156,156,255, 117,132,134,255, 193,198,200,255, 204,208,210,255, 153,153,153,255, 213,216,217,255, 213,216,217,255, 204,208,210,255, 204,208,210,255, 19,106,121,255, 21,119,136,255, 21,119,136,255, 54,57,61,255, 54,57,61,255, 19,106,121,255, 21,122,140,255, 21,119,136,255, 54,57,61,255, 54,57,61,255, 19,106,121,255, 21,119,136,255, 22,156,156,255, 22,156,156,255, 24,171,171,255, 71,79,82,255, 44,44,50,255, 100,31,156,255, 137,50,184,255, 137,50,184,255, 137,50,184,255, 95,30,147,255, 100,31,156,255, 98,31,152,255, 90,29,141,255, 90,29,141,255, 100,31,156,255, 137,50,184,255, 100,31,156,255, 100,31,156,255, 137,50,184,255, 100,31,156,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 32,27,56,255, 35,30,67,255, 60,68,170,255, 35,137,199,255, 44,46,143,255, 44,46,143,255, 69,119,211,255, 44,46,143,255, 44,46,143,255, 32,27,56,255, 32,27,56,255, 35,30,67,255, 35,30,67,255, 205,145,124,255, 205,145,124,255, 23,132,151,255, 21,119,136,255, 71,79,82,255, 96,59,31,255, 140,90,53,255, 96,59,31,255, 106,65,34,255, 164,118,76,255, 205,145,124,255, 209,154,135,255, 209,154,135,255, 21,119,136,255, 71,79,82,255, 96,59,31,255, 114,155,36,255, 114,155,36,255, 117,160,37,255, 108,149,34,255, 94,124,22,255, 79,98,38,255, 73,91,36,255, 117,160,37,255, 114,155,36,255, 114,155,36,255, 114,155,36,255, 108,149,34,255, 79,98,38,255, 72,90,35,255, 94,124,22,255, 141,167,89,255, 205,145,124,255, 176,46,38,255, 168,43,36,255, 176,46,38,255, 176,46,38,255, 176,46,38,255, 168,43,36,255, 176,46,38,255, 203,66,58,255, 209,86,80,255, 206,75,68,255, 176,46,38,255, 168,43,36,255, 176,46,38,255, 209,86,80,255, 205,145,124,255, 17,17,17,255, 142,32,32,255, 0,0,0,255, 24,24,27,255, 153,34,34,255, 6,6,6,255, 142,32,32,255, 153,34,34,255, 139,31,31,255, 29,29,33,255, 54,57,61,255, 54,57,61,255, 29,29,33,255, 50,53,56,255, 50,53,56,255, 61,65,69,255, 249,255,254,255, 249,255,254,255, 254,222,95,255, 244,244,242,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 208,214,215,255, 35,137,199,255, 69,119,211,255, 249,255,254,255, 249,255,254,255, 244,244,242,255, 35,137,199,255, 58,179,218,255, 80,187,222,255, 28,198,198,255, 240,102,0,255, 225,97,0,255, 240,102,0,255, 225,97,0,255, 225,97,0,255, 22,156,156,255, 27,186,186,255, 28,198,198,255, 23,172,172,255, 22,156,156,255, 22,156,156,255, 28,198,198,255, 28,198,198,255, 249,165,55,255, 249,165,55,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 244,181,203,255, 169,48,159,255, 169,48,159,255, 179,51,169,255, 179,51,169,255, 241,165,191,255, 212,96,207,255, 199,78,189,255, 221,104,218,255, 203,88,194,255, 221,104,218,255, 35,137,199,255, 32,126,183,255, 35,137,199,255, 219,248,251,255, 44,46,143,255, 44,46,143,255, 48,174,216,255, 77,185,221,255, 58,179,218,255, 201,243,248,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 87,189,223,255, 58,179,218,255, 177,130,86,255, 240,172,13,255, 242,176,21,255, 254,216,61,255, 242,176,21,255, 255,236,157,255, 255,236,157,255, 255,238,170,255, 255,243,196,255, 255,243,196,255, 164,118,76,255, 238,170,13,255, 238,170,13,255, 173,124,80,255, 173,124,80,255, 242,176,21,255, 242,176,21,255, 238,170,13,255, 238,170,13,255, 243,182,37,255, 242,176,21,255, 255,236,157,255, 255,243,196,255, 242,176,21,255, 89,160,23,255, 128,199,31,255, 133,207,33,255, 139,217,34,255, 170,233,101,255, 170,233,101,255, 89,160,23,255, 243,182,37,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 217,113,152,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 184,183,173,255, 91,108,113,255, 71,79,82,255, 71,79,82,255, 91,108,113,255, 91,108,113,255, 91,108,113,255, 51,54,57,255, 51,54,57,255, 91,108,113,255, 153,153,153,255, 153,153,153,255, 157,157,157,255, 149,149,149,255, 157,157,157,255, 157,157,157,255, 54,57,61,255, 204,208,210,255, 204,208,210,255, 153,153,153,255, 153,153,153,255, 204,208,210,255, 91,109,115,255, 22,156,156,255, 22,156,156,255, 96,114,119,255, 204,208,210,255, 213,216,217,255, 117,132,134,255, 213,216,217,255, 117,132,134,255, 96,114,119,255, 87,105,111,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 58,62,67,255, 58,62,67,255, 21,119,136,255, 21,126,145,255, 21,119,136,255, 54,57,61,255, 54,57,61,255, 21,122,140,255, 19,106,121,255, 21,119,136,255, 22,156,156,255, 22,156,156,255, 22,156,156,255, 44,44,50,255, 44,44,50,255, 137,50,184,255, 150,54,201,255, 100,31,156,255, 98,31,152,255, 90,29,141,255, 137,50,184,255, 142,52,190,255, 142,52,190,255, 137,50,184,255, 100,31,156,255, 98,31,152,255, 95,30,147,255, 150,54,201,255, 98,31,152,255, 35,30,67,255, 35,30,67,255, 44,46,143,255, 44,46,143,255, 32,27,56,255, 32,27,56,255, 69,119,211,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 60,68,170,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 32,27,56,255, 32,27,56,255, 22,125,143,255, 205,145,124,255, 205,145,124,255, 23,132,151,255, 21,119,136,255, 71,79,82,255, 140,90,53,255, 96,59,31,255, 96,59,31,255, 106,65,34,255, 71,79,82,255, 23,132,151,255, 22,125,143,255, 96,59,31,255, 96,59,31,255, 21,119,136,255, 203,207,209,255, 102,136,23,255, 94,124,22,255, 97,129,22,255, 97,129,22,255, 73,91,36,255, 108,149,34,255, 114,155,36,255, 114,155,36,255, 84,104,40,255, 73,91,36,255, 72,90,35,255, 73,91,36,255, 73,91,36,255, 79,98,38,255, 203,207,209,255, 205,145,124,255, 205,145,124,255, 176,46,38,255, 176,46,38,255, 184,47,39,255, 176,46,38,255, 176,46,38,255, 203,66,58,255, 209,86,80,255, 203,66,58,255, 206,75,68,255, 176,46,38,255, 206,75,68,255, 209,86,80,255, 205,145,124,255, 205,145,124,255, 0,0,0,255, 142,32,32,255, 24,24,27,255, 0,0,0,255, 153,34,34,255, 6,6,6,255, 153,34,34,255, 87,13,13,255, 29,29,33,255, 29,29,33,255, 58,62,67,255, 29,29,33,255, 50,53,56,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 249,255,254,255, 254,216,61,255, 254,216,61,255, 254,216,61,255, 254,222,95,255, 249,255,254,255, 244,244,242,255, 35,137,199,255, 58,179,218,255, 69,119,211,255, 69,119,211,255, 208,214,215,255, 208,214,215,255, 80,187,222,255, 74,185,221,255, 248,243,229,255, 28,198,198,255, 28,198,198,255, 240,102,0,255, 225,97,0,255, 23,172,172,255, 22,156,156,255, 21,119,136,255, 21,119,136,255, 27,186,186,255, 28,198,198,255, 23,172,172,255, 22,156,156,255, 22,156,156,255, 249,165,55,255, 249,165,55,255, 22,156,156,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 241,165,191,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 244,181,203,255, 241,165,191,255, 203,88,194,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 58,179,218,255, 58,179,218,255, 35,137,199,255, 249,255,254,255, 44,46,143,255, 41,44,133,255, 55,57,155,255, 58,179,218,255, 77,185,221,255, 58,179,218,255, 201,243,248,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 87,189,223,255, 164,118,76,255, 153,109,70,255, 242,176,21,255, 242,176,21,255, 254,216,61,255, 242,176,21,255, 242,176,21,255, 243,182,37,255, 173,124,80,255, 164,118,76,255, 153,109,70,255, 238,170,13,255, 177,130,86,255, 177,130,86,255, 238,170,13,255, 242,176,21,255, 255,236,157,255, 255,243,196,255, 255,243,196,255, 255,243,196,255, 255,236,157,255, 242,176,21,255, 242,176,21,255, 89,160,23,255, 128,199,31,255, 128,199,31,255, 133,207,33,255, 133,207,33,255, 128,199,31,255, 89,160,23,255, 243,182,37,255, 255,236,157,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 217,113,152,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 244,181,203,255, 184,183,173,255, 184,183,173,255, 71,79,82,255, 67,74,78,255, 71,79,82,255, 100,118,123,255, 91,108,113,255, 71,79,82,255, 51,54,57,255, 54,57,61,255, 153,153,153,255, 153,153,153,255, 61,64,69,255, 51,54,57,255, 67,74,78,255, 71,79,82,255, 54,57,61,255, 54,57,61,255, 153,153,153,255, 204,208,210,255, 204,208,210,255, 153,153,153,255, 204,208,210,255, 87,105,111,255, 22,160,160,255, 22,160,160,255, 96,114,119,255, 204,208,210,255, 213,216,217,255, 96,114,119,255, 204,208,210,255, 96,114,119,255, 204,208,210,255, 204,208,210,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 19,106,121,255, 71,79,82,255, 71,79,82,255, 203,207,209,255, 203,207,209,255, 22,163,163,255, 22,156,156,255, 22,156,156,255, 22,163,163,255, 54,57,61,255, 50,53,56,255, 21,126,145,255, 44,44,50,255, 137,50,184,255, 150,54,201,255, 100,31,156,255, 98,31,152,255, 100,31,156,255, 137,50,184,255, 90,29,141,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 98,31,152,255, 142,52,190,255, 142,52,190,255, 150,54,201,255, 100,31,156,255, 44,46,143,255, 35,30,67,255, 35,30,67,255, 44,46,143,255, 32,27,56,255, 35,30,67,255, 60,68,170,255, 69,119,211,255, 60,68,170,255, 69,119,211,255, 35,137,199,255, 35,137,199,255, 69,119,211,255, 60,68,170,255, 44,46,143,255, 69,119,211,255, 21,119,136,255, 22,125,143,255, 205,145,124,255, 205,145,124,255, 21,119,136,255, 21,119,136,255, 131,84,50,255, 131,84,50,255, 96,59,31,255, 96,59,31,255, 21,119,136,255, 22,125,143,255, 71,79,82,255, 96,59,31,255, 21,119,136,255, 22,125,143,255, 208,214,215,255, 141,167,89,255, 102,136,23,255, 94,124,22,255, 102,136,23,255, 73,91,36,255, 114,155,36,255, 114,155,36,255, 84,104,40,255, 79,98,38,255, 94,124,22,255, 97,129,22,255, 94,124,22,255, 79,98,38,255, 141,167,89,255, 208,214,215,255, 206,75,68,255, 205,145,124,255, 205,145,124,255, 209,86,80,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 203,66,58,255, 176,46,38,255, 206,75,68,255, 206,75,68,255, 205,145,124,255, 205,145,124,255, 176,46,38,255, 24,24,27,255, 69,16,16,255, 142,32,32,255, 142,32,32,255, 87,13,13,255, 17,17,17,255, 142,32,32,255, 29,29,33,255, 29,29,33,255, 29,29,33,255, 58,62,67,255, 29,29,33,255, 54,57,61,255, 58,62,67,255, 54,57,61,255, 54,57,61,255, 254,216,61,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 244,244,242,255, 35,137,199,255, 58,179,218,255, 58,179,218,255, 74,185,221,255, 80,187,222,255, 35,137,199,255, 35,137,199,255, 74,185,221,255, 242,240,228,255, 254,216,61,255, 249,128,29,255, 28,198,198,255, 28,198,198,255, 22,156,156,255, 22,156,156,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 27,186,186,255, 28,198,198,255, 28,198,198,255, 28,198,198,255, 249,165,55,255, 22,156,156,255, 22,156,156,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 201,82,192,255, 221,104,218,255, 201,82,192,255, 221,104,218,255, 201,82,192,255, 221,104,218,255, 201,82,192,255, 212,96,207,255, 199,78,189,255, 221,104,218,255, 199,78,189,255, 221,104,218,255, 35,137,199,255, 58,179,218,255, 35,137,199,255, 249,255,254,255, 35,137,199,255, 44,46,143,255, 41,44,133,255, 44,46,143,255, 58,179,218,255, 58,179,218,255, 58,179,218,255, 201,243,248,255, 249,255,254,255, 249,255,254,255, 249,255,254,255, 201,243,248,255, 164,118,76,255, 164,118,76,255, 153,109,70,255, 242,176,21,255, 254,222,95,255, 254,216,61,255, 254,216,61,255, 242,176,21,255, 164,118,76,255, 164,118,76,255, 164,118,76,255, 242,176,21,255, 164,118,76,255, 238,170,13,255, 242,176,21,255, 177,130,86,255, 128,199,31,255, 255,236,157,255, 242,176,21,255, 238,170,13,255, 243,182,37,255, 89,160,23,255, 128,199,31,255, 128,199,31,255, 170,233,101,255, 170,233,101,255, 170,233,101,255, 128,199,31,255, 89,160,23,255, 242,176,21,255, 255,243,196,255, 128,199,31,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 243,139,170,255, 243,139,170,255, 244,181,203,255, 214,101,143,255, 214,101,143,255, 217,113,152,255, 244,181,203,255, 243,139,170,255, 244,181,203,255, 244,181,203,255, 180,179,169,255, 184,183,173,255, 184,183,173,255, 71,79,82,255, 71,79,82,255, 91,108,113,255, 91,108,113,255, 71,79,82,255, 54,57,61,255, 54,57,61,255, 157,157,157,255, 153,153,153,255, 61,64,69,255, 54,57,61,255, 67,74,78,255, 71,79,82,255, 54,57,61,255, 54,57,61,255, 71,79,82,255, 153,153,153,255, 153,153,153,255, 204,208,210,255, 153,153,153,255, 204,208,210,255, 87,105,111,255, 96,114,119,255, 96,114,119,255, 96,114,119,255, 204,208,210,255, 204,208,210,255, 87,105,111,255, 204,208,210,255, 87,105,111,255, 204,208,210,255, 153,153,153,255, 21,126,145,255, 21,119,136,255, 21,119,136,255, 19,106,121,255, 71,79,82,255, 71,79,82,255, 203,207,209,255, 204,208,210,255, 203,207,209,255, 23,168,168,255, 22,156,156,255, 22,156,156,255, 22,156,156,255, 58,62,67,255, 54,57,61,255, 21,119,136,255, 137,50,184,255, 150,54,201,255, 100,31,156,255, 95,30,147,255, 98,31,152,255, 100,31,156,255, 137,50,184,255, 137,50,184,255, 142,52,190,255, 150,54,201,255, 142,52,190,255, 142,52,190,255, 100,31,156,255, 98,31,152,255, 98,31,152,255, 100,31,156,255, 44,46,143,255, 44,46,143,255, 35,30,67,255, 44,46,143,255, 32,27,56,255, 35,30,67,255, 32,27,56,255, 69,119,211,255, 32,27,56,255, 35,30,67,255, 32,27,56,255, 32,27,56,255, 60,68,170,255, 69,119,211,255, 69,119,211,255, 44,46,143,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 205,145,124,255, 22,125,143,255, 21,119,136,255, 96,59,31,255, 106,65,34,255, 131,84,50,255, 96,59,31,255, 21,119,136,255, 21,119,136,255, 96,59,31,255, 21,119,136,255, 22,125,143,255, 71,79,82,255, 141,167,89,255, 208,214,215,255, 203,207,209,255, 141,167,89,255, 141,167,89,255, 73,91,36,255, 114,155,36,255, 114,155,36,255, 73,91,36,255, 141,167,89,255, 141,167,89,255, 141,167,89,255, 141,167,89,255, 203,207,209,255, 208,214,215,255, 141,167,89,255, 176,46,38,255, 206,75,68,255, 205,145,124,255, 205,145,124,255, 209,86,80,255, 206,75,68,255, 206,75,68,255, 206,75,68,255, 203,66,58,255, 184,47,39,255, 176,46,38,255, 206,75,68,255, 205,145,124,255, 205,145,124,255, 176,46,38,255, 176,46,38,255, 36,36,43,255, 0,0,0,255, 0,0,0,255, 17,17,17,255, 6,6,6,255, 142,32,32,255, 69,16,16,255, 29,29,33,255, 29,29,33,255, 29,29,33,255, 54,57,61,255, 29,29,33,255, 58,62,67,255, 54,57,61,255, 58,62,67,255, 54,57,61,255, 207,213,214,255, 206,212,213,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 225,99,2,255, 223,96,0,255, 225,98,1,255, 225,97,0,255, 225,97,0,255, 225,98,1,255, 223,96,0,255, 225,97,0,255, 225,97,0,255, 224,97,0,255, 225,98,2,255, 223,96,0,255, 225,97,0,255, 225,97,0,255, 224,96,0,255, 225,97,0,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 170,50,160,255, 168,47,158,255, 170,49,160,255, 170,50,160,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 168,47,158,255, 170,49,160,255, 170,49,160,255, 169,48,159,255, 37,138,200,255, 35,137,199,255, 38,138,200,255, 35,135,197,255, 35,137,199,255, 35,137,199,255, 35,136,197,255, 35,137,199,255, 35,136,198,255, 35,137,199,255, 35,136,198,255, 36,138,200,255, 35,136,198,255, 37,138,200,255, 37,138,200,255, 37,138,200,255, 242,176,21,255, 240,175,21,255, 240,174,21,255, 241,175,21,255, 240,174,21,255, 240,174,21,255, 241,175,21,255, 240,174,21,255, 242,177,23,255, 242,176,21,255, 242,177,23,255, 242,176,21,255, 242,176,21,255, 241,176,21,255, 242,176,21,255, 241,175,21,255, 93,168,24,255, 95,170,25,255, 96,170,26,255, 95,170,25,255, 94,169,24,255, 94,168,24,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 94,169,24,255, 93,168,24,255, 93,167,24,255, 93,167,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 212,100,141,255, 212,100,142,255, 214,102,144,255, 214,102,144,255, 214,102,144,255, 213,100,142,255, 214,102,144,255, 212,100,141,255, 214,102,144,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 214,102,144,255, 214,102,144,255, 213,100,142,255, 213,100,142,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 21,118,135,255, 21,119,136,255, 21,119,135,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 21,118,135,255, 22,120,137,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 99,31,155,255, 101,33,157,255, 101,32,157,255, 101,33,157,255, 100,31,156,255, 101,32,157,255, 101,33,157,255, 101,33,157,255, 101,32,157,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 46,48,144,255, 44,46,143,255, 45,47,144,255, 95,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 95,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,33,255, 97,60,32,255, 97,60,33,255, 97,60,33,255, 96,59,31,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,90,36,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 74,92,38,255, 73,91,36,255, 73,91,36,255, 143,33,33,255, 142,32,32,255, 141,32,32,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 141,32,32,255, 143,34,34,255, 141,32,32,255, 143,33,33,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 143,33,33,255, 143,33,33,255, 143,34,34,255, 8,10,15,255, 10,12,17,255, 10,12,17,255, 7,9,14,255, 8,10,15,255, 8,10,15,255, 9,11,16,255, 7,9,14,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 9,11,16,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 224,96,0,255, 225,97,0,255, 225,97,0,255, 222,96,0,255, 225,98,2,255, 225,99,3,255, 225,98,2,255, 225,98,2,255, 224,96,0,255, 225,97,0,255, 225,98,1,255, 223,96,0,255, 223,96,0,255, 223,96,0,255, 223,96,0,255, 224,97,0,255, 170,49,160,255, 170,49,160,255, 170,49,160,255, 170,50,160,255, 170,50,160,255, 170,50,160,255, 169,48,159,255, 170,50,160,255, 170,49,160,255, 169,48,159,255, 168,47,158,255, 170,49,160,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 36,138,200,255, 38,138,200,255, 36,138,200,255, 35,137,199,255, 37,138,200,255, 35,137,199,255, 35,137,199,255, 36,138,200,255, 37,138,200,255, 35,137,199,255, 35,136,198,255, 37,138,200,255, 36,138,200,255, 35,136,197,255, 35,136,198,255, 35,136,198,255, 242,176,21,255, 242,177,24,255, 241,176,21,255, 239,174,21,255, 242,177,23,255, 240,175,21,255, 239,174,21,255, 242,176,21,255, 240,175,21,255, 241,176,21,255, 240,174,21,255, 242,177,24,255, 240,174,21,255, 242,176,21,255, 242,176,22,255, 242,176,22,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 93,168,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 95,170,26,255, 93,167,24,255, 95,170,26,255, 95,170,25,255, 93,168,24,255, 94,169,24,255, 94,169,24,255, 93,167,24,255, 93,168,24,255, 213,100,142,255, 214,101,143,255, 213,100,142,255, 214,102,144,255, 214,101,143,255, 212,100,141,255, 214,102,144,255, 214,101,143,255, 213,100,142,255, 214,103,144,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 214,102,144,255, 214,103,144,255, 213,100,142,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 124,124,114,255, 125,125,115,255, 124,124,114,255, 124,124,114,255, 126,126,116,255, 126,126,116,255, 126,126,116,255, 21,119,136,255, 21,118,135,255, 21,119,135,255, 21,119,136,255, 22,120,137,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,118,135,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,33,157,255, 100,31,155,255, 100,31,156,255, 101,33,157,255, 100,31,156,255, 99,31,155,255, 100,31,156,255, 100,31,156,255, 99,31,155,255, 100,31,156,255, 101,33,157,255, 101,32,157,255, 100,31,156,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 46,48,144,255, 44,46,143,255, 45,47,144,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 74,92,37,255, 73,90,36,255, 74,92,37,255, 73,91,36,255, 74,92,38,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 141,32,32,255, 142,32,32,255, 141,32,32,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 143,34,34,255, 141,32,32,255, 142,32,32,255, 141,32,32,255, 10,12,17,255, 7,9,14,255, 10,12,17,255, 8,10,15,255, 10,12,17,255, 7,9,14,255, 7,9,14,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 8,10,15,255, 206,212,213,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 207,213,214,255, 206,212,213,255, 206,212,213,255, 208,214,215,255, 206,212,213,255, 206,212,213,255, 206,212,213,255, 208,214,215,255, 206,212,213,255, 206,212,213,255, 225,98,2,255, 224,96,0,255, 224,97,0,255, 223,96,0,255, 225,98,1,255, 225,97,0,255, 225,97,0,255, 223,96,0,255, 224,97,0,255, 222,96,0,255, 223,96,0,255, 225,97,0,255, 225,97,0,255, 224,97,0,255, 225,98,1,255, 225,98,2,255, 170,50,160,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 170,50,160,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 168,47,158,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 170,50,160,255, 170,49,160,255, 36,138,200,255, 35,137,199,255, 35,136,197,255, 37,138,200,255, 35,137,199,255, 36,138,200,255, 35,136,198,255, 35,136,198,255, 35,137,199,255, 35,136,197,255, 38,138,200,255, 36,138,200,255, 37,138,200,255, 35,137,199,255, 36,138,200,255, 36,138,200,255, 242,177,23,255, 242,176,21,255, 242,177,23,255, 240,174,21,255, 241,175,21,255, 239,174,21,255, 242,176,22,255, 239,174,21,255, 241,175,21,255, 241,175,21,255, 242,176,22,255, 240,175,21,255, 241,175,21,255, 239,174,21,255, 241,175,21,255, 242,177,23,255, 93,168,24,255, 94,169,24,255, 93,167,24,255, 95,170,25,255, 93,167,24,255, 96,170,26,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 93,167,24,255, 93,167,24,255, 94,169,24,255, 93,168,24,255, 93,167,24,255, 95,170,25,255, 94,168,24,255, 214,101,143,255, 214,102,144,255, 214,101,143,255, 213,100,142,255, 213,100,142,255, 214,103,144,255, 214,102,144,255, 212,100,141,255, 214,101,143,255, 214,101,143,255, 212,100,142,255, 214,101,143,255, 214,101,143,255, 212,100,142,255, 213,100,142,255, 214,102,144,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 124,124,114,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 126,126,116,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 21,118,135,255, 101,32,157,255, 100,31,155,255, 101,32,157,255, 99,31,155,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 44,46,142,255, 45,47,144,255, 46,48,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 46,48,144,255, 44,46,142,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 97,60,32,255, 96,59,31,255, 95,59,31,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 95,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 72,90,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,38,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 72,90,36,255, 73,91,36,255, 74,92,38,255, 140,32,32,255, 143,34,34,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 143,34,34,255, 141,32,32,255, 142,32,32,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 141,32,32,255, 143,34,34,255, 142,32,32,255, 142,32,32,255, 8,10,15,255, 8,10,15,255, 7,9,14,255, 10,12,17,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 10,12,17,255, 7,9,14,255, 8,10,15,255, 7,9,14,255, 7,9,14,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 206,212,213,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 206,212,213,255, 209,214,215,255, 208,214,215,255, 206,212,213,255, 206,212,213,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 209,214,215,255, 207,213,214,255, 207,213,214,255, 225,99,3,255, 225,98,2,255, 224,97,0,255, 223,96,0,255, 223,96,0,255, 225,98,2,255, 225,98,2,255, 225,97,0,255, 225,97,0,255, 225,97,0,255, 223,96,0,255, 224,97,0,255, 225,99,3,255, 222,96,0,255, 223,96,0,255, 225,99,2,255, 170,49,160,255, 170,50,160,255, 168,47,158,255, 170,49,160,255, 170,50,160,255, 169,48,159,255, 170,50,160,255, 168,47,158,255, 167,47,157,255, 170,49,160,255, 168,47,158,255, 169,48,159,255, 168,47,158,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 35,136,197,255, 35,136,197,255, 35,136,197,255, 35,137,199,255, 35,137,199,255, 35,135,197,255, 37,138,200,255, 36,138,200,255, 37,138,200,255, 35,136,198,255, 35,136,198,255, 37,138,200,255, 37,138,200,255, 36,138,200,255, 35,136,197,255, 38,138,200,255, 240,175,21,255, 242,177,22,255, 240,175,21,255, 241,175,21,255, 239,174,21,255, 242,176,21,255, 241,176,21,255, 242,176,21,255, 239,174,21,255, 241,175,21,255, 239,174,21,255, 240,174,21,255, 241,176,21,255, 242,176,21,255, 240,175,21,255, 242,176,21,255, 95,170,25,255, 96,170,27,255, 94,169,24,255, 93,168,24,255, 94,169,24,255, 94,169,24,255, 95,170,25,255, 96,170,27,255, 93,168,24,255, 95,170,25,255, 95,170,25,255, 93,167,24,255, 94,169,24,255, 94,169,24,255, 95,170,25,255, 95,170,26,255, 214,101,143,255, 214,102,144,255, 214,101,143,255, 212,100,142,255, 214,102,144,255, 213,100,142,255, 214,102,144,255, 213,100,142,255, 213,100,142,255, 214,101,143,255, 212,100,142,255, 214,103,144,255, 214,102,144,255, 214,103,144,255, 214,101,143,255, 214,101,143,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 126,126,116,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 126,126,116,255, 125,125,115,255, 22,120,137,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 23,120,137,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 22,120,137,255, 23,120,137,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 101,32,157,255, 100,31,156,255, 99,31,155,255, 100,31,156,255, 101,32,157,255, 101,33,157,255, 100,31,156,255, 100,31,156,255, 101,33,157,255, 101,33,157,255, 99,31,155,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 99,31,155,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,142,255, 44,46,143,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 95,59,31,255, 95,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 95,59,31,255, 96,59,31,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,38,255, 73,90,36,255, 74,92,37,255, 74,92,38,255, 73,91,36,255, 73,91,36,255, 72,90,36,255, 142,32,32,255, 141,32,32,255, 143,33,33,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 141,32,32,255, 142,32,32,255, 142,32,32,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 206,212,213,255, 207,213,214,255, 206,212,213,255, 206,212,213,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 223,96,0,255, 223,96,0,255, 224,96,0,255, 225,99,3,255, 223,96,0,255, 225,97,0,255, 224,97,0,255, 225,99,2,255, 223,96,0,255, 225,99,3,255, 225,97,0,255, 223,96,0,255, 225,97,0,255, 225,98,1,255, 225,97,0,255, 225,98,2,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 168,47,158,255, 170,49,160,255, 168,47,158,255, 169,48,159,255, 170,50,160,255, 170,50,160,255, 169,48,159,255, 168,47,158,255, 168,47,158,255, 170,50,160,255, 167,47,157,255, 170,50,160,255, 169,48,159,255, 35,137,199,255, 35,137,199,255, 36,138,200,255, 35,135,197,255, 36,138,200,255, 35,136,197,255, 35,137,199,255, 35,136,197,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 36,138,200,255, 38,138,200,255, 35,137,199,255, 241,175,21,255, 242,176,21,255, 242,176,21,255, 242,176,21,255, 242,177,23,255, 242,177,23,255, 242,177,24,255, 241,175,21,255, 242,176,22,255, 242,176,21,255, 241,175,21,255, 240,175,21,255, 242,176,21,255, 242,176,21,255, 240,175,21,255, 240,175,21,255, 94,169,24,255, 94,169,24,255, 96,170,27,255, 95,170,25,255, 94,169,24,255, 95,170,26,255, 94,169,24,255, 94,168,24,255, 94,169,24,255, 95,170,25,255, 94,169,24,255, 93,168,24,255, 95,170,25,255, 95,170,25,255, 93,168,24,255, 93,168,24,255, 213,100,142,255, 213,100,142,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 214,102,144,255, 213,100,142,255, 212,100,142,255, 214,102,144,255, 214,101,143,255, 214,102,144,255, 213,100,142,255, 214,101,143,255, 213,100,142,255, 214,103,144,255, 214,101,143,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 56,59,63,255, 54,57,61,255, 54,57,61,255, 56,59,63,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 23,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 23,120,137,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 101,32,157,255, 101,33,157,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 99,31,155,255, 99,31,155,255, 100,31,155,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 46,48,144,255, 46,48,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 46,48,144,255, 45,47,144,255, 45,47,144,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 74,92,38,255, 73,90,36,255, 73,91,36,255, 73,90,36,255, 73,90,36,255, 74,92,37,255, 74,92,37,255, 73,90,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 141,32,32,255, 142,32,32,255, 143,33,33,255, 143,35,35,255, 143,34,34,255, 143,33,33,255, 143,33,33,255, 7,9,14,255, 8,10,15,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 9,11,16,255, 8,10,15,255, 10,12,17,255, 7,9,14,255, 10,12,17,255, 7,9,14,255, 8,10,15,255, 7,9,14,255, 8,10,15,255, 7,9,14,255, 207,213,214,255, 209,214,215,255, 208,214,215,255, 207,213,214,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 206,211,212,255, 206,212,213,255, 206,212,213,255, 206,212,213,255, 206,211,212,255, 208,214,215,255, 207,213,214,255, 225,97,0,255, 225,97,1,255, 225,98,2,255, 225,98,1,255, 225,99,2,255, 225,98,1,255, 224,96,0,255, 222,96,0,255, 225,98,1,255, 225,98,1,255, 225,97,0,255, 225,98,1,255, 225,98,2,255, 225,97,0,255, 223,96,0,255, 225,99,3,255, 170,49,160,255, 170,49,160,255, 168,47,158,255, 170,50,160,255, 167,47,157,255, 169,48,159,255, 170,50,160,255, 167,47,157,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 170,50,160,255, 168,47,158,255, 169,48,159,255, 169,48,159,255, 35,137,199,255, 35,136,197,255, 35,137,199,255, 35,136,197,255, 37,138,200,255, 35,136,197,255, 35,136,198,255, 35,137,199,255, 35,137,199,255, 35,136,197,255, 37,138,200,255, 35,137,199,255, 37,138,200,255, 35,136,198,255, 38,138,200,255, 35,136,197,255, 242,177,22,255, 242,176,22,255, 242,176,21,255, 241,175,21,255, 242,177,24,255, 240,175,21,255, 240,175,21,255, 239,174,21,255, 242,177,23,255, 239,174,21,255, 242,177,23,255, 239,174,21,255, 241,175,21,255, 240,174,21,255, 240,174,21,255, 242,177,24,255, 93,167,24,255, 93,168,24,255, 93,168,24,255, 94,169,24,255, 93,167,24,255, 93,168,24,255, 94,169,24,255, 93,168,24,255, 93,167,24,255, 95,170,25,255, 93,168,24,255, 94,168,24,255, 94,169,24,255, 93,167,24,255, 96,170,26,255, 93,168,24,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 213,100,142,255, 213,100,142,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 212,100,142,255, 214,102,144,255, 214,101,143,255, 212,100,141,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 126,126,116,255, 124,124,114,255, 126,126,116,255, 125,125,115,255, 124,124,114,255, 124,124,114,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 23,120,137,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 21,119,135,255, 22,120,137,255, 21,119,136,255, 22,120,137,255, 21,119,136,255, 23,120,137,255, 22,120,137,255, 21,119,136,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,33,157,255, 101,32,157,255, 101,32,157,255, 99,31,155,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 99,31,155,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 95,59,31,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 72,90,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 142,32,32,255, 143,33,33,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 143,33,33,255, 143,33,33,255, 143,34,34,255, 142,32,32,255, 141,32,32,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 143,35,35,255, 143,34,34,255, 10,12,17,255, 10,12,17,255, 8,10,15,255, 8,10,15,255, 7,9,14,255, 7,9,14,255, 8,10,15,255, 8,10,15,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 10,12,17,255, 8,10,15,255, 9,11,16,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 206,212,213,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 225,97,0,255, 225,97,0,255, 225,97,0,255, 225,98,1,255, 225,99,3,255, 223,96,0,255, 225,98,2,255, 224,97,0,255, 224,97,0,255, 222,96,0,255, 225,98,2,255, 224,97,0,255, 225,98,1,255, 225,97,0,255, 225,97,0,255, 224,96,0,255, 170,50,160,255, 170,50,160,255, 167,47,157,255, 169,48,159,255, 170,50,160,255, 169,48,159,255, 170,50,160,255, 168,47,158,255, 167,47,157,255, 170,49,160,255, 167,47,157,255, 167,47,157,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 167,47,157,255, 35,136,198,255, 37,138,200,255, 37,138,200,255, 37,138,200,255, 37,138,200,255, 36,138,200,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 35,136,197,255, 35,136,198,255, 37,138,200,255, 36,138,200,255, 35,136,198,255, 36,138,200,255, 35,137,199,255, 242,177,24,255, 241,175,21,255, 242,176,21,255, 240,174,21,255, 241,175,21,255, 242,177,24,255, 242,177,22,255, 242,176,22,255, 240,175,21,255, 240,175,21,255, 240,175,21,255, 240,175,21,255, 242,177,23,255, 242,176,22,255, 242,176,21,255, 241,175,21,255, 94,169,24,255, 93,167,24,255, 94,169,24,255, 94,168,24,255, 93,167,24,255, 95,170,26,255, 95,170,26,255, 95,170,25,255, 94,168,24,255, 93,167,24,255, 95,170,25,255, 95,170,25,255, 93,168,24,255, 95,170,25,255, 95,170,25,255, 93,167,24,255, 213,100,142,255, 214,102,144,255, 214,101,143,255, 214,103,144,255, 214,102,144,255, 214,102,144,255, 213,100,142,255, 212,100,142,255, 214,102,144,255, 213,100,142,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 124,124,114,255, 124,124,114,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 126,126,116,255, 125,125,115,255, 22,120,137,255, 22,120,137,255, 22,120,137,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 21,118,135,255, 23,120,137,255, 22,120,137,255, 21,118,135,255, 22,120,137,255, 22,120,137,255, 101,33,157,255, 101,33,157,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,33,157,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 44,46,142,255, 46,48,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 46,48,144,255, 45,47,144,255, 44,46,142,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,142,255, 44,46,143,255, 44,46,143,255, 96,59,31,255, 97,60,33,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 97,60,33,255, 96,59,31,255, 97,60,33,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,33,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,90,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 142,32,32,255, 141,32,32,255, 143,34,34,255, 142,32,32,255, 143,34,34,255, 143,34,34,255, 142,32,32,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 140,32,32,255, 143,33,33,255, 7,9,14,255, 9,11,16,255, 10,12,17,255, 7,9,14,255, 7,9,14,255, 8,10,15,255, 10,12,17,255, 8,10,15,255, 10,12,17,255, 8,10,15,255, 7,9,14,255, 7,9,14,255, 10,12,17,255, 9,11,16,255, 7,9,14,255, 7,9,14,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 206,212,213,255, 206,212,213,255, 206,212,212,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 225,99,3,255, 225,97,0,255, 223,96,0,255, 225,99,3,255, 225,98,1,255, 225,97,0,255, 225,97,0,255, 225,97,0,255, 225,99,3,255, 225,97,0,255, 225,98,1,255, 225,98,1,255, 225,98,1,255, 225,98,1,255, 224,96,0,255, 224,97,0,255, 170,50,160,255, 170,50,160,255, 170,50,160,255, 168,47,158,255, 167,47,158,255, 170,50,160,255, 169,48,159,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 37,138,200,255, 35,137,199,255, 36,138,200,255, 35,137,199,255, 36,138,200,255, 35,137,199,255, 35,136,198,255, 35,137,199,255, 36,138,200,255, 35,135,197,255, 36,138,200,255, 35,136,197,255, 35,136,198,255, 37,138,200,255, 36,138,200,255, 35,137,199,255, 242,177,22,255, 242,176,22,255, 241,175,21,255, 242,177,23,255, 241,175,21,255, 241,175,21,255, 242,176,21,255, 241,175,21,255, 241,175,21,255, 241,175,21,255, 241,175,21,255, 241,175,21,255, 241,175,21,255, 241,175,21,255, 242,176,22,255, 241,175,21,255, 94,169,24,255, 93,167,24,255, 96,170,26,255, 93,168,24,255, 94,169,24,255, 95,170,26,255, 94,169,24,255, 93,168,24,255, 93,167,24,255, 95,170,25,255, 93,167,24,255, 93,167,24,255, 95,170,25,255, 95,170,25,255, 95,170,25,255, 93,167,24,255, 214,103,144,255, 214,101,143,255, 214,103,144,255, 214,102,144,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 214,102,144,255, 213,100,142,255, 211,100,141,255, 213,100,142,255, 213,100,142,255, 213,100,142,255, 211,100,141,255, 214,102,144,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 23,120,137,255, 21,119,135,255, 21,119,136,255, 22,120,137,255, 21,119,136,255, 21,119,135,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 21,119,135,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 101,33,157,255, 100,31,156,255, 101,33,157,255, 101,32,157,255, 99,31,155,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,33,157,255, 101,33,157,255, 100,31,156,255, 101,33,157,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 95,59,31,255, 97,61,33,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,33,255, 96,59,31,255, 73,91,36,255, 72,90,36,255, 74,92,37,255, 73,90,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 73,90,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,90,36,255, 74,92,37,255, 140,32,32,255, 143,34,34,255, 143,33,33,255, 143,34,34,255, 143,33,33,255, 141,32,32,255, 140,32,32,255, 143,33,33,255, 142,32,32,255, 141,32,32,255, 143,34,34,255, 142,32,32,255, 143,33,33,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 7,9,14,255, 10,12,17,255, 9,11,16,255, 7,9,14,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 9,11,16,255, 7,9,14,255, 7,9,14,255, 9,11,16,255, 7,9,14,255, 7,9,14,255, 9,11,16,255, 8,10,15,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 206,212,213,255, 225,97,0,255, 224,96,0,255, 223,96,0,255, 225,97,0,255, 225,98,1,255, 225,98,2,255, 224,97,0,255, 223,96,0,255, 225,98,1,255, 225,97,0,255, 225,97,0,255, 225,97,1,255, 222,96,0,255, 224,97,0,255, 225,97,0,255, 225,98,2,255, 170,50,160,255, 170,49,160,255, 170,49,160,255, 168,47,158,255, 170,49,160,255, 169,48,159,255, 170,50,160,255, 168,47,158,255, 169,48,159,255, 169,48,159,255, 168,47,158,255, 170,49,160,255, 170,50,160,255, 168,47,158,255, 169,48,159,255, 170,50,160,255, 35,136,198,255, 37,138,200,255, 36,138,200,255, 35,136,198,255, 35,136,197,255, 35,136,198,255, 37,138,200,255, 35,137,199,255, 36,138,200,255, 35,136,197,255, 35,136,198,255, 36,138,200,255, 35,137,199,255, 35,137,199,255, 35,136,198,255, 35,136,198,255, 242,176,22,255, 239,174,21,255, 242,176,22,255, 242,177,24,255, 240,175,21,255, 242,177,22,255, 240,174,21,255, 239,174,21,255, 242,176,21,255, 240,174,21,255, 240,175,21,255, 240,174,21,255, 241,175,21,255, 240,175,21,255, 242,176,22,255, 239,174,21,255, 93,167,24,255, 93,167,24,255, 94,169,24,255, 94,168,24,255, 93,167,24,255, 95,170,25,255, 95,170,25,255, 96,170,26,255, 93,168,24,255, 93,168,24,255, 96,170,27,255, 95,170,25,255, 95,170,25,255, 93,167,24,255, 96,170,27,255, 94,169,24,255, 214,101,143,255, 214,102,144,255, 214,102,144,255, 214,101,143,255, 212,100,141,255, 214,103,144,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 214,102,144,255, 214,102,144,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 214,102,144,255, 214,101,143,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 21,118,135,255, 21,119,136,255, 21,118,135,255, 21,119,136,255, 101,33,157,255, 100,31,156,255, 99,31,155,255, 100,31,156,255, 100,31,155,255, 100,31,156,255, 100,31,156,255, 99,31,155,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 100,31,155,255, 100,31,155,255, 99,31,155,255, 99,31,155,255, 101,33,157,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,142,255, 45,47,144,255, 45,47,144,255, 44,46,142,255, 46,48,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 95,59,31,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 95,59,31,255, 97,60,32,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 142,32,32,255, 141,32,32,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 143,35,35,255, 143,34,34,255, 143,35,35,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 142,32,32,255, 141,32,32,255, 142,32,32,255, 142,32,32,255, 143,33,33,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 10,12,17,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 9,11,16,255, 10,12,17,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 206,212,213,255, 207,213,214,255, 206,212,213,255, 207,213,214,255, 225,97,0,255, 223,96,0,255, 225,98,1,255, 224,97,0,255, 224,97,0,255, 223,96,0,255, 225,98,1,255, 225,97,0,255, 222,96,0,255, 225,98,2,255, 225,98,1,255, 222,96,0,255, 225,97,1,255, 224,97,0,255, 224,97,0,255, 224,97,0,255, 170,50,160,255, 170,50,160,255, 170,50,160,255, 170,50,160,255, 169,48,159,255, 170,50,160,255, 168,47,158,255, 169,48,159,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 168,47,158,255, 169,48,159,255, 170,50,160,255, 167,47,157,255, 170,49,160,255, 35,137,199,255, 35,137,199,255, 36,138,200,255, 35,136,198,255, 37,138,200,255, 36,138,200,255, 35,135,197,255, 35,136,198,255, 35,137,198,255, 35,137,199,255, 36,138,200,255, 35,136,198,255, 36,138,200,255, 35,136,198,255, 36,138,200,255, 35,137,199,255, 241,175,21,255, 241,175,21,255, 242,177,24,255, 242,176,21,255, 239,174,21,255, 239,174,21,255, 241,175,21,255, 242,176,21,255, 240,174,21,255, 241,175,21,255, 242,176,21,255, 240,175,21,255, 242,176,21,255, 240,175,21,255, 241,175,21,255, 240,175,21,255, 95,170,25,255, 93,168,24,255, 94,169,24,255, 96,170,26,255, 95,170,25,255, 95,170,25,255, 96,170,26,255, 94,169,24,255, 93,168,24,255, 96,170,26,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 96,170,26,255, 94,168,24,255, 96,170,26,255, 214,101,143,255, 214,101,143,255, 213,100,142,255, 214,102,144,255, 214,103,144,255, 214,101,143,255, 214,102,144,255, 214,101,143,255, 213,100,142,255, 213,100,142,255, 214,103,144,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 211,100,141,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 124,124,114,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 126,126,116,255, 21,118,135,255, 23,120,137,255, 21,118,135,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,119,135,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 21,118,135,255, 23,120,137,255, 21,118,135,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 99,31,155,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,142,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 46,48,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 97,61,33,255, 96,59,31,255, 97,60,32,255, 97,60,33,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 95,59,31,255, 97,60,32,255, 97,61,33,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 143,35,35,255, 143,34,34,255, 143,34,34,255, 142,32,32,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 143,35,35,255, 143,33,33,255, 143,34,34,255, 141,32,32,255, 143,34,34,255, 7,9,14,255, 9,11,16,255, 7,9,14,255, 7,9,14,255, 8,10,15,255, 7,9,14,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 8,10,15,255, 10,12,17,255, 8,10,15,255, 9,11,16,255, 8,10,15,255, 7,9,14,255, 9,11,16,255, 209,214,215,255, 208,214,215,255, 208,214,215,255, 206,212,213,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 206,212,213,255, 206,212,213,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 208,214,215,255, 223,96,0,255, 225,97,1,255, 223,96,0,255, 222,96,0,255, 224,97,0,255, 223,96,0,255, 225,97,0,255, 225,98,1,255, 224,96,0,255, 224,96,0,255, 225,98,2,255, 224,96,0,255, 225,97,0,255, 225,97,0,255, 223,96,0,255, 225,98,1,255, 170,49,160,255, 167,47,157,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 167,47,157,255, 168,47,158,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 170,49,160,255, 170,49,160,255, 35,136,198,255, 35,136,198,255, 35,136,197,255, 35,137,199,255, 38,138,200,255, 35,137,199,255, 37,138,200,255, 36,138,200,255, 36,138,200,255, 35,135,197,255, 35,135,197,255, 35,137,199,255, 35,136,197,255, 37,138,200,255, 36,138,200,255, 36,138,200,255, 242,176,22,255, 240,175,21,255, 241,175,21,255, 241,175,21,255, 239,174,21,255, 242,177,23,255, 242,176,21,255, 242,176,21,255, 239,174,21,255, 242,177,23,255, 242,176,22,255, 242,176,22,255, 239,174,21,255, 242,177,23,255, 240,174,21,255, 240,175,21,255, 93,168,24,255, 94,168,24,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 94,169,24,255, 94,169,24,255, 95,170,25,255, 93,168,24,255, 95,170,25,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 94,169,24,255, 94,169,24,255, 93,167,24,255, 214,103,144,255, 212,100,142,255, 212,100,141,255, 214,102,144,255, 214,101,143,255, 212,100,142,255, 214,102,144,255, 213,100,142,255, 214,101,143,255, 214,102,144,255, 214,101,143,255, 212,100,141,255, 212,100,141,255, 214,101,143,255, 214,101,143,255, 213,100,142,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 126,126,116,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 125,125,115,255, 22,120,137,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 21,119,136,255, 21,118,135,255, 23,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 23,120,137,255, 21,118,135,255, 23,120,137,255, 22,120,137,255, 101,32,157,255, 100,31,155,255, 100,31,156,255, 101,33,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,142,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 95,59,31,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 73,91,36,255, 74,92,37,255, 72,90,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,38,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,90,36,255, 73,91,36,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 143,33,33,255, 143,35,35,255, 141,32,32,255, 142,32,32,255, 141,32,32,255, 143,34,34,255, 143,34,34,255, 143,34,34,255, 143,33,33,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 9,11,16,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 10,12,17,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 8,10,15,255, 7,9,14,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 225,97,0,255, 223,96,0,255, 225,99,3,255, 223,96,0,255, 224,97,0,255, 225,99,2,255, 225,97,0,255, 223,96,0,255, 223,96,0,255, 225,98,1,255, 223,96,0,255, 223,96,0,255, 225,98,2,255, 225,98,2,255, 225,98,2,255, 222,96,0,255, 170,50,160,255, 170,49,160,255, 170,50,160,255, 170,49,160,255, 169,48,159,255, 168,47,158,255, 169,48,159,255, 170,49,160,255, 170,50,160,255, 169,48,159,255, 167,47,157,255, 168,47,158,255, 168,47,158,255, 168,47,158,255, 167,47,157,255, 170,49,160,255, 35,137,199,255, 35,137,199,255, 36,138,200,255, 36,138,200,255, 36,138,200,255, 37,138,200,255, 36,138,200,255, 35,136,198,255, 35,135,197,255, 36,138,200,255, 36,138,200,255, 35,137,199,255, 36,138,200,255, 36,138,200,255, 35,137,199,255, 35,136,197,255, 239,174,21,255, 242,176,22,255, 242,176,21,255, 240,174,21,255, 240,174,21,255, 242,177,23,255, 242,176,22,255, 242,177,24,255, 239,174,21,255, 240,174,21,255, 241,175,21,255, 241,175,21,255, 239,174,21,255, 239,174,21,255, 242,177,23,255, 242,176,22,255, 95,170,25,255, 93,168,24,255, 95,170,25,255, 95,170,25,255, 94,169,24,255, 93,167,24,255, 93,168,24,255, 94,169,24,255, 95,170,25,255, 93,167,24,255, 93,167,24,255, 93,168,24,255, 93,167,24,255, 94,169,24,255, 94,168,24,255, 94,169,24,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 214,103,144,255, 213,100,142,255, 214,102,144,255, 214,101,143,255, 214,102,144,255, 214,102,144,255, 214,102,144,255, 212,100,141,255, 214,102,144,255, 213,100,142,255, 214,101,143,255, 212,100,142,255, 214,102,144,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 124,124,114,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 124,124,114,255, 124,124,114,255, 21,119,136,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,135,255, 22,120,137,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 23,120,137,255, 22,120,137,255, 99,31,155,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 101,33,157,255, 99,31,155,255, 101,32,157,255, 101,33,157,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 46,48,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 95,59,31,255, 96,59,31,255, 95,59,31,255, 96,59,31,255, 97,60,33,255, 96,59,31,255, 95,59,31,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 72,90,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 72,90,36,255, 73,90,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 72,90,36,255, 74,92,37,255, 143,34,34,255, 141,32,32,255, 143,35,35,255, 142,32,32,255, 143,34,34,255, 143,34,34,255, 143,33,33,255, 143,33,33,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 142,32,32,255, 143,34,34,255, 7,9,14,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 10,12,17,255, 9,11,16,255, 7,9,14,255, 9,11,16,255, 8,10,15,255, 8,10,15,255, 7,9,14,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 206,212,213,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 206,212,213,255, 206,212,213,255, 208,214,215,255, 209,214,215,255, 208,214,215,255, 207,213,214,255, 207,213,214,255, 206,212,213,255, 206,212,213,255, 225,97,0,255, 225,97,0,255, 225,98,2,255, 225,99,3,255, 225,98,2,255, 225,97,0,255, 225,99,2,255, 223,96,0,255, 225,99,3,255, 223,96,0,255, 225,97,0,255, 223,96,0,255, 224,96,0,255, 223,96,0,255, 223,96,0,255, 224,97,0,255, 170,50,160,255, 167,47,157,255, 170,50,160,255, 168,47,158,255, 170,49,160,255, 170,50,160,255, 169,48,159,255, 170,50,160,255, 169,48,159,255, 168,47,158,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 169,48,159,255, 170,49,160,255, 169,48,159,255, 35,137,199,255, 35,135,197,255, 35,137,199,255, 35,136,198,255, 37,138,200,255, 36,138,200,255, 35,136,197,255, 35,136,197,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 35,136,198,255, 35,136,198,255, 35,135,197,255, 37,138,200,255, 35,137,199,255, 242,176,22,255, 241,175,21,255, 242,177,23,255, 240,175,21,255, 242,177,23,255, 239,174,21,255, 242,176,21,255, 242,176,21,255, 241,176,21,255, 242,176,21,255, 242,177,23,255, 242,176,21,255, 242,176,21,255, 240,174,21,255, 242,177,24,255, 242,176,22,255, 93,168,24,255, 95,170,25,255, 94,169,24,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 94,169,24,255, 96,170,26,255, 93,168,24,255, 96,170,27,255, 94,169,24,255, 93,168,24,255, 94,169,24,255, 94,169,24,255, 94,169,24,255, 93,168,24,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 213,100,142,255, 214,102,144,255, 214,102,144,255, 212,100,141,255, 214,102,144,255, 214,102,144,255, 214,101,143,255, 214,101,143,255, 214,101,143,255, 214,102,144,255, 214,101,143,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 124,124,114,255, 124,124,114,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 21,119,136,255, 21,118,135,255, 21,118,135,255, 21,119,136,255, 21,118,135,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 21,118,135,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 100,31,155,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 99,31,155,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,33,157,255, 101,32,157,255, 100,31,156,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,142,255, 44,46,143,255, 44,46,142,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 96,59,31,255, 97,61,33,255, 96,59,31,255, 97,60,33,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,33,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 73,90,36,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 143,33,33,255, 143,35,35,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 143,33,33,255, 141,32,32,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 143,33,33,255, 141,32,32,255, 143,33,33,255, 141,32,32,255, 143,34,34,255, 7,9,14,255, 8,10,15,255, 9,11,16,255, 8,10,15,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 9,11,16,255, 10,12,17,255, 9,11,16,255, 8,10,15,255, 10,12,17,255, 10,12,17,255, 8,10,15,255, 206,212,213,255, 208,214,215,255, 206,212,213,255, 208,214,215,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 206,212,213,255, 207,213,214,255, 208,214,215,255, 209,214,215,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 225,97,0,255, 223,96,0,255, 225,98,1,255, 224,96,0,255, 224,96,0,255, 225,98,2,255, 224,97,0,255, 225,97,0,255, 225,99,3,255, 223,96,0,255, 224,96,0,255, 225,97,0,255, 225,97,0,255, 225,97,0,255, 224,97,0,255, 225,97,0,255, 170,49,160,255, 167,47,157,255, 170,50,160,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 170,50,160,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 170,50,160,255, 170,49,160,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 38,138,200,255, 35,137,199,255, 35,137,198,255, 36,138,200,255, 36,138,200,255, 35,136,197,255, 36,138,200,255, 35,136,198,255, 35,137,199,255, 37,138,200,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 37,138,200,255, 35,137,199,255, 35,137,199,255, 240,175,21,255, 241,175,21,255, 240,175,21,255, 242,176,22,255, 240,174,21,255, 240,175,21,255, 241,175,21,255, 241,175,21,255, 240,174,21,255, 241,175,21,255, 240,174,21,255, 242,177,23,255, 240,174,21,255, 240,175,21,255, 241,175,21,255, 241,175,21,255, 93,168,24,255, 95,170,26,255, 94,169,24,255, 95,170,25,255, 93,168,24,255, 96,170,27,255, 93,167,24,255, 94,169,24,255, 93,167,24,255, 93,167,24,255, 94,169,24,255, 95,170,25,255, 93,167,24,255, 93,168,24,255, 94,169,24,255, 96,170,26,255, 214,102,144,255, 214,101,143,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 213,100,142,255, 214,102,144,255, 213,100,142,255, 214,101,143,255, 214,102,144,255, 213,100,142,255, 214,102,144,255, 214,102,144,255, 213,100,142,255, 212,100,141,255, 213,100,142,255, 55,58,62,255, 56,59,63,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 54,57,61,255, 56,59,63,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 124,124,114,255, 125,125,115,255, 22,120,137,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,118,135,255, 22,120,137,255, 23,120,137,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 23,120,137,255, 99,31,155,255, 100,31,156,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,33,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,61,33,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 96,59,31,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 72,90,36,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 74,92,37,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 143,34,34,255, 143,34,34,255, 143,33,33,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 141,32,32,255, 143,33,33,255, 143,33,33,255, 143,35,35,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 8,10,15,255, 7,9,14,255, 9,11,16,255, 8,10,15,255, 9,11,16,255, 7,9,14,255, 9,11,16,255, 8,10,15,255, 7,9,14,255, 7,9,14,255, 7,9,14,255, 8,10,15,255, 9,11,16,255, 208,214,215,255, 208,214,215,255, 206,212,213,255, 207,213,214,255, 207,213,214,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 206,212,213,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 206,212,213,255, 206,212,213,255, 225,97,0,255, 223,96,0,255, 225,99,3,255, 225,98,2,255, 225,99,3,255, 225,97,0,255, 225,97,0,255, 225,98,2,255, 225,98,2,255, 225,98,2,255, 225,98,1,255, 223,96,0,255, 223,96,0,255, 224,96,0,255, 225,98,1,255, 225,97,0,255, 169,48,159,255, 170,49,160,255, 169,48,159,255, 170,49,160,255, 168,47,158,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 169,48,159,255, 168,47,158,255, 169,48,159,255, 170,50,160,255, 169,48,159,255, 170,50,160,255, 170,50,160,255, 170,49,160,255, 35,136,198,255, 36,138,200,255, 37,138,200,255, 35,137,199,255, 36,138,200,255, 35,137,199,255, 35,137,199,255, 35,136,198,255, 35,136,197,255, 35,136,197,255, 35,136,198,255, 35,137,199,255, 36,138,200,255, 36,138,200,255, 35,136,197,255, 37,138,200,255, 240,174,21,255, 242,176,21,255, 239,174,21,255, 242,176,21,255, 241,175,21,255, 240,174,21,255, 242,176,21,255, 241,175,21,255, 241,175,21,255, 242,176,21,255, 239,174,21,255, 242,177,23,255, 242,176,22,255, 242,177,23,255, 242,176,22,255, 242,177,23,255, 96,170,27,255, 93,168,24,255, 93,168,24,255, 94,168,24,255, 93,168,24,255, 95,170,25,255, 93,168,24,255, 93,168,24,255, 93,168,24,255, 95,170,25,255, 93,167,24,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 95,170,25,255, 96,170,27,255, 214,101,143,255, 213,100,142,255, 214,101,143,255, 213,100,142,255, 212,100,142,255, 213,100,142,255, 214,101,143,255, 214,101,143,255, 212,100,141,255, 214,102,144,255, 212,100,142,255, 214,101,143,255, 213,100,142,255, 214,102,144,255, 213,100,142,255, 214,101,143,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 126,126,116,255, 125,125,115,255, 124,124,114,255, 125,125,115,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 21,118,135,255, 21,118,135,255, 22,120,137,255, 22,120,137,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 101,32,157,255, 100,31,156,255, 99,31,155,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 101,33,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 100,31,156,255, 101,33,157,255, 99,31,155,255, 101,32,157,255, 46,48,144,255, 44,46,143,255, 44,46,143,255, 44,46,142,255, 44,46,143,255, 44,46,142,255, 45,47,144,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 95,59,31,255, 96,59,31,255, 95,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 73,91,36,255, 72,90,36,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 72,90,36,255, 73,90,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 73,91,36,255, 73,90,36,255, 73,91,36,255, 143,33,33,255, 142,32,32,255, 143,34,34,255, 142,32,32,255, 143,34,34,255, 143,33,33,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 143,35,35,255, 143,35,35,255, 142,32,32,255, 141,32,32,255, 142,32,32,255, 142,32,32,255, 142,32,32,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 8,10,15,255, 9,11,16,255, 7,9,14,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 9,11,16,255, 10,12,17,255, 10,12,17,255, 7,9,14,255, 9,11,16,255, 10,12,17,255, 8,10,15,255, 206,212,213,255, 206,212,213,255, 208,214,215,255, 206,212,213,255, 208,214,215,255, 208,214,215,255, 206,212,213,255, 208,214,215,255, 207,213,214,255, 206,212,213,255, 208,214,215,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 207,213,214,255, 208,214,215,255, 225,98,1,255, 224,97,0,255, 225,97,0,255, 225,97,0,255, 225,99,3,255, 222,96,0,255, 225,97,0,255, 224,97,0,255, 225,97,0,255, 225,97,0,255, 225,97,0,255, 225,98,2,255, 225,99,3,255, 225,97,0,255, 225,98,2,255, 225,98,2,255, 169,48,159,255, 169,48,159,255, 170,49,160,255, 170,49,160,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 169,48,159,255, 170,50,160,255, 168,47,158,255, 169,48,159,255, 170,49,160,255, 167,47,157,255, 170,49,160,255, 169,48,159,255, 170,49,160,255, 35,137,199,255, 35,136,198,255, 35,137,199,255, 35,136,197,255, 36,138,200,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 35,137,199,255, 37,138,200,255, 37,138,200,255, 37,138,200,255, 36,138,200,255, 35,136,197,255, 35,136,198,255, 35,137,199,255, 240,175,21,255, 242,176,21,255, 242,177,23,255, 242,177,22,255, 239,174,21,255, 241,175,21,255, 241,175,21,255, 239,174,21,255, 240,175,21,255, 242,176,22,255, 241,175,21,255, 242,176,21,255, 242,176,21,255, 240,175,21,255, 242,176,22,255, 241,175,21,255, 93,167,24,255, 93,167,24,255, 93,168,24,255, 94,169,24,255, 94,169,24,255, 93,168,24,255, 93,167,24,255, 93,168,24,255, 95,170,25,255, 93,168,24,255, 94,169,24,255, 93,167,24,255, 94,169,24,255, 95,170,25,255, 95,170,25,255, 95,170,25,255, 212,100,141,255, 214,103,144,255, 213,100,142,255, 214,101,143,255, 214,103,144,255, 212,100,142,255, 214,102,144,255, 214,101,143,255, 214,102,144,255, 214,103,144,255, 214,102,143,255, 214,103,144,255, 214,102,144,255, 213,100,142,255, 213,100,142,255, 212,100,141,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 56,59,63,255, 54,57,61,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 54,57,61,255, 55,58,62,255, 56,59,63,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 55,58,62,255, 124,124,114,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 125,125,115,255, 124,124,114,255, 126,126,116,255, 125,125,115,255, 125,125,115,255, 126,126,116,255, 22,120,137,255, 21,118,135,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 21,119,136,255, 22,120,137,255, 21,118,135,255, 22,120,137,255, 22,120,137,255, 21,118,135,255, 22,120,137,255, 21,119,136,255, 21,119,136,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 100,31,156,255, 101,33,157,255, 101,32,157,255, 100,31,156,255, 101,32,157,255, 101,32,157,255, 101,32,157,255, 100,31,156,255, 44,46,143,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 46,48,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 45,47,144,255, 44,46,143,255, 44,46,143,255, 45,47,144,255, 44,46,143,255, 44,46,142,255, 44,46,143,255, 46,48,144,255, 96,59,31,255, 97,60,33,255, 96,59,31,255, 96,59,31,255, 97,60,32,255, 97,60,32,255, 95,59,31,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 97,60,32,255, 96,59,31,255, 96,59,31,255, 97,61,33,255, 97,60,32,255, 73,90,36,255, 74,92,37,255, 74,92,37,255, 74,92,38,255, 74,92,37,255, 73,91,36,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 74,92,37,255, 74,92,37,255, 73,91,36,255, 74,92,38,255, 74,92,37,255, 73,91,36,255, 73,91,36,255, 143,33,33,255, 143,33,33,255, 143,34,34,255, 143,34,34,255, 141,32,32,255, 143,33,33,255, 143,33,33,255, 143,33,33,255, 143,33,33,255, 142,32,32,255, 143,33,33,255, 142,32,32,255, 142,32,32,255, 140,32,32,255, 143,33,33,255, 142,32,32,255, 9,11,16,255, 9,11,16,255, 8,10,15,255, 7,9,14,255, 8,10,15,255, 9,11,16,255, 10,12,17,255, 9,11,16,255, 9,11,16,255, 7,9,14,255, 8,10,15,255, 7,9,14,255, 9,11,16,255, 8,10,15,255, 8,10,15,255, 7,9,14,255, 224,226,226,255, 230,232,232,255, 228,230,230,255, 221,224,224,255, 226,228,228,255, 223,224,225,255, 224,226,226,255, 232,233,233,255, 223,226,226,255, 218,221,222,255, 217,220,220,255, 216,220,221,255, 238,238,238,255, 240,241,241,255, 216,218,219,255, 228,229,229,255, 226,137,44,255, 228,127,25,255, 226,125,22,255, 230,137,37,255, 227,126,21,255, 222,121,19,255, 228,137,40,255, 228,132,34,255, 230,133,31,255, 225,125,24,255, 221,121,19,255, 230,134,35,255, 228,130,30,255, 241,142,34,255, 217,120,24,255, 230,137,40,255, 178,72,170,255, 195,82,186,255, 186,72,177,255, 198,91,190,255, 199,89,191,255, 193,85,185,255, 182,73,174,255, 193,83,184,255, 193,81,184,255, 201,96,195,255, 196,87,187,255, 205,100,197,255, 199,93,192,255, 205,86,196,255, 189,85,182,255, 212,115,207,255, 77,183,209,255, 82,192,219,255, 78,188,217,255, 61,162,206,255, 85,196,222,255, 61,163,206,255, 80,188,213,255, 69,174,209,255, 99,204,227,255, 76,183,215,255, 86,195,218,255, 104,206,227,255, 66,171,210,255, 108,217,237,255, 76,182,208,255, 77,185,214,255, 226,188,47,255, 235,198,50,255, 238,216,78,255, 234,207,63,255, 237,201,51,255, 231,195,50,255, 229,195,51,255, 232,197,52,255, 235,202,54,255, 232,191,44,255, 233,204,61,255, 234,200,54,255, 234,205,59,255, 244,207,51,255, 224,181,40,255, 234,203,58,255, 111,174,38,255, 119,186,41,255, 130,195,43,255, 124,188,40,255, 119,187,41,255, 133,196,41,255, 122,186,40,255, 113,179,40,255, 126,191,41,255, 119,185,40,255, 125,189,40,255, 124,188,41,255, 124,188,40,255, 132,201,45,255, 127,188,40,255, 127,191,41,255, 223,146,172,255, 230,149,179,255, 230,147,179,255, 227,144,174,255, 229,144,176,255, 221,133,168,255, 227,149,176,255, 225,141,171,255, 235,164,189,255, 229,148,177,255, 228,148,177,255, 236,193,209,255, 221,133,168,255, 237,148,184,255, 227,164,186,255, 227,147,176,255, 101,115,119,255, 80,82,87,255, 76,80,83,255, 81,83,87,255, 77,81,83,255, 72,76,80,255, 70,73,77,255, 74,77,81,255, 83,90,95,255, 77,82,85,255, 82,90,94,255, 73,76,80,255, 77,81,85,255, 93,101,105,255, 69,72,76,255, 78,81,85,255, 138,138,130,255, 153,153,145,255, 172,172,167,255, 161,161,156,255, 165,165,158,255, 155,155,148,255, 146,146,138,255, 144,144,134,255, 155,155,148,255, 156,156,149,255, 149,149,142,255, 155,155,148,255, 151,151,142,255, 179,179,171,255, 141,141,134,255, 151,151,142,255, 35,132,146,255, 37,152,158,255, 37,147,157,255, 37,139,153,255, 37,151,159,255, 37,154,158,255, 35,144,153,255, 37,139,152,255, 37,140,154,255, 37,140,154,255, 37,146,155,255, 37,155,162,255, 37,147,156,255, 40,164,170,255, 35,139,149,255, 37,139,152,255, 126,54,169,255, 132,55,179,255, 138,58,183,255, 126,52,174,255, 130,54,178,255, 132,55,178,255, 128,54,172,255, 128,54,175,255, 128,54,177,255, 132,55,178,255, 139,61,181,255, 126,52,175,255, 136,57,179,255, 141,59,191,255, 121,48,166,255, 127,52,175,255, 63,65,154,255, 77,81,175,255, 80,83,178,255, 77,81,175,255, 76,80,176,255, 74,78,171,255, 67,70,163,255, 69,72,165,255, 65,67,162,255, 65,67,161,255, 74,78,171,255, 66,70,164,255, 78,83,178,255, 85,90,191,255, 62,65,154,255, 66,69,161,255, 113,77,47,255, 122,81,52,255, 131,89,57,255, 121,81,50,255, 125,83,54,255, 119,80,50,255, 126,85,54,255, 127,86,55,255, 139,96,62,255, 124,82,52,255, 120,81,51,255, 121,81,51,255, 146,101,67,255, 124,83,51,255, 108,73,45,255, 114,78,47,255, 95,119,38,255, 96,120,47,255, 94,114,50,255, 93,113,48,255, 95,114,52,255, 104,128,38,255, 89,107,48,255, 99,122,41,255, 94,113,51,255, 93,111,50,255, 93,111,48,255, 101,126,41,255, 101,126,40,255, 101,122,52,255, 96,120,40,255, 94,114,47,255, 165,55,48,255, 178,58,54,255, 169,54,51,255, 164,51,50,255, 166,52,51,255, 159,50,48,255, 162,51,48,255, 166,52,50,255, 172,55,51,255, 180,61,54,255, 164,51,50,255, 161,50,50,255, 172,55,51,255, 202,74,63,255, 164,54,48,255, 157,48,48,255, 18,21,25,255, 35,35,40,255, 35,37,40,255, 41,41,45,255, 30,31,35,255, 27,28,33,255, 19,22,28,255, 21,22,28,255, 30,31,35,255, 27,28,33,255, 19,21,27,255, 18,18,25,255, 44,44,48,255, 30,31,37,255, 18,21,25,255, 19,22,27,255, 231,232,232,255, 225,226,227,255, 234,235,235,255, 238,239,239,255, 203,206,207,255, 233,233,233,255, 212,216,216,255, 214,217,218,255, 226,228,229,255, 220,223,223,255, 249,249,249,255, 220,223,223,255, 236,237,237,255, 223,224,225,255, 220,223,223,255, 242,242,242,255, 228,128,28,255, 222,122,21,255, 234,142,41,255, 231,132,30,255, 216,121,30,255, 226,131,35,255, 226,132,37,255, 223,126,28,255, 237,144,41,255, 235,141,41,255, 241,139,27,255, 222,121,19,255, 235,179,77,255, 223,125,25,255, 235,174,73,255, 234,137,35,255, 198,89,190,255, 184,73,176,255, 187,73,178,255, 196,83,187,255, 175,69,167,255, 183,74,175,255, 179,70,171,255, 180,69,171,255, 196,82,187,255, 208,103,202,255, 206,86,197,255, 185,73,177,255, 196,87,188,255, 188,80,180,255, 187,76,178,255, 189,73,180,255, 67,174,211,255, 74,182,212,255, 72,181,214,255, 93,202,226,255, 65,168,201,255, 67,172,207,255, 73,180,209,255, 83,191,215,255, 78,190,221,255, 76,185,218,255, 72,186,226,255, 66,171,209,255, 73,180,214,255, 74,182,212,255, 91,199,222,255, 65,171,213,255, 232,193,44,255, 231,195,50,255, 234,197,50,255, 235,194,44,255, 221,182,43,255, 228,193,48,255, 228,195,51,255, 230,198,55,255, 240,208,58,255, 236,196,45,255, 248,220,63,255, 237,216,80,255, 237,212,72,255, 234,207,65,255, 233,195,47,255, 235,196,45,255, 124,189,40,255, 121,185,40,255, 134,197,43,255, 124,192,43,255, 122,181,38,255, 121,183,40,255, 122,185,40,255, 133,195,43,255, 136,199,44,255, 133,197,43,255, 133,204,45,255, 141,200,45,255, 132,195,41,255, 121,185,40,255, 137,197,43,255, 121,189,41,255, 229,148,178,255, 230,155,181,255, 228,144,176,255, 238,170,195,255, 224,162,184,255, 221,138,168,255, 230,159,183,255, 228,153,178,255, 235,155,186,255, 230,146,178,255, 242,157,192,255, 232,156,182,255, 225,139,172,255, 216,126,163,255, 229,148,178,255, 238,177,199,255, 73,76,81,255, 76,78,81,255, 78,82,86,255, 81,86,89,255, 67,70,74,255, 70,73,76,255, 72,74,78,255, 82,90,94,255, 78,81,86,255, 78,83,86,255, 85,91,95,255, 76,80,83,255, 76,80,83,255, 76,78,82,255, 72,74,78,255, 76,80,85,255, 147,147,139,255, 161,162,156,255, 154,154,147,255, 156,156,148,255, 144,144,138,255, 155,155,149,255, 144,144,136,255, 147,147,141,255, 163,163,156,255, 166,166,161,255, 170,170,163,255, 162,162,157,255, 151,151,144,255, 145,146,137,255, 167,167,162,255, 162,162,156,255, 37,140,154,255, 37,141,154,255, 37,163,165,255, 38,159,165,255, 34,132,144,255, 35,146,153,255, 35,137,149,255, 35,136,149,255, 37,146,159,255, 38,162,167,255, 40,154,170,255, 37,147,156,255, 37,162,164,255, 37,141,154,255, 37,148,157,255, 48,208,208,255, 130,55,176,255, 133,57,178,255, 138,58,183,255, 132,55,181,255, 120,50,164,255, 120,50,168,255, 121,50,168,255, 137,58,179,255, 136,57,183,255, 131,55,180,255, 139,58,191,255, 131,55,178,255, 133,57,179,255, 125,51,172,255, 131,55,177,255, 132,55,181,255, 65,67,162,255, 73,77,170,255, 77,80,175,255, 66,69,164,255, 66,69,157,255, 65,66,158,255, 62,65,155,255, 70,73,165,255, 74,77,174,255, 73,76,171,255, 86,90,195,255, 65,67,161,255, 66,70,164,255, 73,77,169,255, 78,82,177,255, 65,66,163,255, 144,99,65,255, 113,77,47,255, 118,80,50,255, 130,86,55,255, 114,78,50,255, 119,81,51,255, 125,83,54,255, 113,76,47,255, 124,82,51,255, 122,82,51,255, 158,110,73,255, 140,96,62,255, 124,82,52,255, 139,95,63,255, 119,80,50,255, 136,93,58,255, 108,134,38,255, 98,120,43,255, 91,111,50,255, 98,119,48,255, 95,118,37,255, 100,125,40,255, 98,121,40,255, 109,137,35,255, 104,128,44,255, 104,128,43,255, 110,134,48,255, 96,119,45,255, 93,111,50,255, 108,134,35,255, 95,115,48,255, 105,130,41,255, 164,52,50,255, 165,52,50,255, 187,65,57,255, 175,58,52,255, 152,48,47,255, 163,51,48,255, 165,52,48,255, 157,48,47,255, 188,66,55,255, 165,51,50,255, 186,61,57,255, 178,58,52,255, 179,59,52,255, 174,57,51,255, 171,55,50,255, 164,51,50,255, 18,19,27,255, 21,22,28,255, 25,27,31,255, 33,34,37,255, 16,19,24,255, 25,25,31,255, 24,25,30,255, 30,31,35,255, 34,35,38,255, 55,55,59,255, 18,21,28,255, 25,27,31,255, 18,19,27,255, 24,25,31,255, 21,22,30,255, 61,61,66,255, 243,243,243,255, 240,241,241,255, 243,244,245,255, 223,225,225,255, 223,224,225,255, 232,232,233,255, 227,228,229,255, 226,228,228,255, 230,231,231,255, 227,229,230,255, 228,230,230,255, 241,241,242,255, 219,221,221,255, 225,227,227,255, 230,231,231,255, 233,235,236,255, 227,126,24,255, 239,148,45,255, 239,142,34,255, 228,132,35,255, 223,125,25,255, 224,127,25,255, 234,179,78,255, 232,140,41,255, 222,121,19,255, 225,121,18,255, 232,134,33,255, 228,127,24,255, 233,144,47,255, 229,145,51,255, 220,121,21,255, 236,136,27,255, 196,86,188,255, 199,86,192,255, 207,94,200,255, 193,85,183,255, 190,81,181,255, 197,91,188,255, 186,76,177,255, 203,99,196,255, 203,99,196,255, 187,73,178,255, 202,94,195,255, 192,77,183,255, 189,78,180,255, 188,81,179,255, 187,78,178,255, 209,95,200,255, 67,175,212,255, 67,176,216,255, 73,185,223,255, 69,174,209,255, 78,187,214,255, 72,180,211,255, 73,179,212,255, 78,188,216,255, 76,183,214,255, 61,165,209,255, 90,200,224,255, 70,180,216,255, 67,172,210,255, 82,189,213,255, 66,170,206,255, 69,180,221,255, 236,205,58,255, 240,207,57,255, 241,203,45,255, 228,187,41,255, 232,199,54,255, 232,203,61,255, 232,196,50,255, 230,189,43,255, 240,230,176,255, 236,205,58,255, 236,197,47,255, 238,206,57,255, 236,213,77,255, 227,191,48,255, 233,208,69,255, 244,214,61,255, 118,186,41,255, 133,198,44,255, 134,202,44,255, 114,179,40,255, 126,189,40,255, 119,183,40,255, 120,185,40,255, 124,188,40,255, 130,194,41,255, 131,195,43,255, 124,190,41,255, 139,200,44,255, 120,185,40,255, 120,182,40,255, 113,178,40,255, 155,214,51,255, 237,170,194,255, 241,203,219,255, 238,154,187,255, 216,126,162,255, 226,146,176,255, 232,162,186,255, 228,145,176,255, 234,166,189,255, 234,184,202,255, 230,149,179,255, 238,167,193,255, 237,162,189,255, 233,188,206,255, 216,132,164,255, 229,154,180,255, 244,184,206,255, 74,77,81,255, 77,80,83,255, 81,86,90,255, 72,74,77,255, 81,87,91,255, 78,85,87,255, 78,82,85,255, 76,80,82,255, 73,76,81,255, 78,82,87,255, 78,82,86,255, 76,80,83,255, 73,77,81,255, 77,83,86,255, 73,76,81,255, 80,83,87,255, 157,157,151,255, 155,155,147,255, 184,184,178,255, 151,151,145,255, 147,147,139,255, 164,164,158,255, 153,153,146,255, 155,155,148,255, 157,158,151,255, 158,159,154,255, 157,157,151,255, 168,168,163,255, 155,155,149,255, 146,146,139,255, 144,144,136,255, 181,181,175,255, 37,144,156,255, 40,180,179,255, 40,163,169,255, 35,151,156,255, 37,139,153,255, 35,137,152,255, 37,145,155,255, 37,141,154,255, 37,141,154,255, 37,141,154,255, 37,142,156,255, 37,147,158,255, 37,157,161,255, 35,137,149,255, 35,136,149,255, 38,161,168,255, 131,55,179,255, 128,54,180,255, 132,55,183,255, 126,51,171,255, 134,58,178,255, 128,52,174,255, 141,62,184,255, 132,55,177,255, 128,54,176,255, 138,58,183,255, 144,62,187,255, 140,61,186,255, 131,55,177,255, 121,50,168,255, 122,50,169,255, 139,59,188,255, 70,73,167,255, 80,85,182,255, 70,73,172,255, 65,66,158,255, 65,67,159,255, 63,66,156,255, 80,85,179,255, 69,72,165,255, 67,72,164,255, 73,76,170,255, 77,81,178,255, 69,72,167,255, 66,69,161,255, 72,74,166,255, 65,66,158,255, 69,72,170,255, 115,78,48,255, 130,86,54,255, 134,90,58,255, 116,78,48,255, 114,76,47,255, 116,78,48,255, 119,81,50,255, 116,78,48,255, 137,93,61,255, 118,80,50,255, 137,93,59,255, 138,94,59,255, 134,91,59,255, 136,91,61,255, 116,78,48,255, 138,94,59,255, 95,115,50,255, 98,120,50,255, 100,121,52,255, 94,114,47,255, 95,115,45,255, 91,110,48,255, 105,131,37,255, 95,118,45,255, 98,121,44,255, 108,134,40,255, 98,119,48,255, 96,118,50,255, 94,115,45,255, 95,118,41,255, 108,136,35,255, 104,128,48,255, 165,52,51,255, 181,59,54,255, 170,54,52,255, 170,55,50,255, 159,50,48,255, 204,91,83,255, 158,50,48,255, 164,51,50,255, 178,58,52,255, 167,52,51,255, 171,55,51,255, 168,54,51,255, 200,85,77,255, 157,50,47,255, 169,55,50,255, 172,55,52,255, 45,45,50,255, 43,43,47,255, 18,21,28,255, 31,33,37,255, 38,38,43,255, 21,22,28,255, 16,18,25,255, 30,30,35,255, 16,18,25,255, 19,21,27,255, 35,35,40,255, 24,25,31,255, 22,24,30,255, 19,21,27,255, 28,28,34,255, 61,61,66,255, 216,217,218,255, 230,231,232,255, 216,218,218,255, 230,231,231,255, 224,226,226,255, 218,221,221,255, 223,225,225,255, 237,237,238,255, 202,205,206,255, 217,220,220,255, 234,234,234,255, 224,226,226,255, 238,239,239,255, 233,235,235,255, 225,227,228,255, 210,212,212,255, 221,125,27,255, 221,121,21,255, 220,120,18,255, 232,139,40,255, 216,116,15,255, 232,138,40,255, 231,175,76,255, 225,125,24,255, 206,111,22,255, 223,126,27,255, 221,120,18,255, 227,126,24,255, 232,132,31,255, 231,131,30,255, 226,127,28,255, 221,131,40,255, 181,73,174,255, 197,93,190,255, 182,70,174,255, 191,80,182,255, 182,73,174,255, 186,73,177,255, 188,81,181,255, 190,77,180,255, 184,87,178,255, 179,69,171,255, 183,72,175,255, 196,85,187,255, 195,81,186,255, 195,81,185,255, 207,107,202,255, 191,91,184,255, 63,167,204,255, 66,169,207,255, 74,181,212,255, 72,179,212,255, 67,172,207,255, 59,163,206,255, 80,187,213,255, 72,178,213,255, 70,167,196,255, 62,165,205,255, 55,154,203,255, 80,189,218,255, 63,169,212,255, 62,167,212,255, 78,187,216,255, 63,164,199,255, 230,201,62,255, 231,196,52,255, 230,189,44,255, 232,190,43,255, 230,198,55,255, 233,195,47,255, 230,199,57,255, 232,193,45,255, 214,180,45,255, 230,194,50,255, 230,190,44,255, 237,208,62,255, 237,201,51,255, 237,200,50,255, 231,192,47,255, 223,194,57,255, 113,178,40,255, 115,180,40,255, 128,191,41,255, 118,184,40,255, 137,196,44,255, 124,189,41,255, 131,191,41,255, 120,185,40,255, 124,180,38,255, 115,180,40,255, 167,216,90,255, 126,191,41,255, 126,193,43,255, 128,195,43,255, 115,182,40,255, 127,186,38,255, 226,149,176,255, 231,158,183,255, 220,132,166,255, 228,146,176,255, 227,149,177,255, 235,172,196,255, 220,137,168,255, 231,153,181,255, 216,146,169,255, 225,141,171,255, 225,140,172,255, 232,155,183,255, 230,146,178,255, 238,171,195,255, 229,149,178,255, 220,142,168,255, 77,82,86,255, 70,73,77,255, 77,80,83,255, 74,78,82,255, 76,80,83,255, 77,80,85,255, 78,83,87,255, 78,83,86,255, 65,67,72,255, 74,77,82,255, 73,77,81,255, 77,80,85,255, 74,78,83,255, 87,94,98,255, 72,74,78,255, 70,73,77,255, 152,152,145,255, 146,146,138,255, 151,151,142,255, 147,147,140,255, 144,144,137,255, 170,170,167,255, 146,146,138,255, 146,146,139,255, 136,136,130,255, 149,149,142,255, 161,161,155,255, 147,147,139,255, 148,148,140,255, 161,162,156,255, 158,158,154,255, 154,154,148,255, 35,146,153,255, 35,137,151,255, 37,140,153,255, 37,140,154,255, 35,140,152,255, 37,153,159,255, 35,137,151,255, 37,140,154,255, 31,124,136,255, 35,146,153,255, 37,149,157,255, 37,151,158,255, 37,145,158,255, 37,142,156,255, 37,142,154,255, 34,131,144,255, 147,67,186,255, 147,66,187,255, 124,51,172,255, 124,51,172,255, 124,51,169,255, 132,57,178,255, 137,59,179,255, 126,52,175,255, 111,45,155,255, 141,61,181,255, 127,52,175,255, 122,51,174,255, 131,55,180,255, 136,58,182,255, 125,51,172,255, 116,48,163,255, 70,73,164,255, 70,73,166,255, 73,77,169,255, 66,70,163,255, 63,65,155,255, 66,69,164,255, 73,76,167,255, 70,73,167,255, 61,62,147,255, 69,72,165,255, 74,78,170,255, 69,73,167,255, 77,80,176,255, 72,74,170,255, 67,70,164,255, 72,76,163,255, 137,93,61,255, 120,81,51,255, 130,87,57,255, 128,86,54,255, 116,80,50,255, 121,81,50,255, 115,78,48,255, 120,81,50,255, 113,78,50,255, 124,83,54,255, 121,81,51,255, 120,81,51,255, 131,89,57,255, 127,85,54,255, 120,81,50,255, 111,77,48,255, 91,111,44,255, 91,110,48,255, 100,124,41,255, 104,128,38,255, 89,108,47,255, 100,125,41,255, 91,110,47,255, 90,109,50,255, 87,109,38,255, 95,119,43,255, 98,121,43,255, 104,128,40,255, 95,115,51,255, 96,116,50,255, 99,124,43,255, 99,124,35,255, 152,47,47,255, 161,50,48,255, 164,51,50,255, 170,54,50,255, 164,52,48,255, 172,55,51,255, 170,55,50,255, 161,50,50,255, 149,48,44,255, 169,55,48,255, 178,59,52,255, 169,54,51,255, 181,59,54,255, 164,51,50,255, 164,51,50,255, 152,48,45,255, 15,18,24,255, 34,34,38,255, 19,22,27,255, 18,19,27,255, 15,16,24,255, 35,35,40,255, 24,24,28,255, 16,18,25,255, 19,19,25,255, 24,25,30,255, 18,21,27,255, 19,19,27,255, 24,25,31,255, 22,24,30,255, 15,18,24,255, 31,31,35,255, 237,237,237,255, 219,221,222,255, 234,236,236,255, 232,233,233,255, 232,234,234,255, 225,228,228,255, 241,242,242,255, 232,234,234,255, 223,225,225,255, 226,226,227,255, 224,226,226,255, 242,243,243,255, 236,237,237,255, 231,231,231,255, 240,241,241,255, 219,220,221,255, 237,148,47,255, 230,141,45,255, 231,132,28,255, 227,132,34,255, 238,149,48,255, 229,128,25,255, 227,126,21,255, 235,139,38,255, 218,118,18,255, 224,130,34,255, 228,137,40,255, 229,128,25,255, 229,133,37,255, 213,114,19,255, 234,134,31,255, 224,132,38,255, 190,77,181,255, 192,85,184,255, 194,80,184,255, 191,81,181,255, 206,96,197,255, 196,82,186,255, 199,87,190,255, 199,86,190,255, 186,77,177,255, 186,80,178,255, 180,70,172,255, 200,90,193,255, 184,72,175,255, 176,70,167,255, 193,77,184,255, 177,69,168,255, 58,157,207,255, 61,162,205,255, 72,181,217,255, 59,159,204,255, 81,193,221,255, 77,189,220,255, 82,193,220,255, 63,170,212,255, 76,184,212,255, 69,174,206,255, 74,181,211,255, 74,183,217,255, 78,188,215,255, 67,171,203,255, 69,177,218,255, 74,180,208,255, 237,206,59,255, 232,204,62,255, 237,201,51,255, 235,213,81,255, 238,206,57,255, 238,205,54,255, 236,198,48,255, 237,201,51,255, 227,186,43,255, 226,185,43,255, 230,201,58,255, 243,234,181,255, 231,195,50,255, 223,191,52,255, 240,203,50,255, 227,194,52,255, 159,213,67,255, 133,194,41,255, 119,187,43,255, 130,192,41,255, 125,193,44,255, 144,205,45,255, 137,199,43,255, 124,190,43,255, 113,178,40,255, 110,174,40,255, 131,192,41,255, 125,192,43,255, 145,201,50,255, 131,188,40,255, 122,192,43,255, 137,195,45,255, 235,163,188,255, 226,144,172,255, 235,157,186,255, 226,144,174,255, 234,153,183,255, 237,165,191,255, 231,148,180,255, 239,174,197,255, 230,163,186,255, 219,134,166,255, 230,166,188,255, 231,148,179,255, 220,133,167,255, 223,151,175,255, 225,133,172,255, 217,134,165,255, 77,80,82,255, 74,77,81,255, 80,85,87,255, 74,77,81,255, 81,85,89,255, 74,77,82,255, 82,87,93,255, 78,83,87,255, 80,83,87,255, 78,83,86,255, 78,83,87,255, 87,95,99,255, 73,76,80,255, 78,83,86,255, 78,82,86,255, 81,90,94,255, 158,158,153,255, 145,145,137,255, 158,158,152,255, 158,158,153,255, 154,154,146,255, 152,152,144,255, 154,154,147,255, 174,174,167,255, 159,159,154,255, 142,142,134,255, 146,146,139,255, 151,151,142,255, 147,147,139,255, 140,140,133,255, 153,153,145,255, 140,140,132,255, 37,145,156,255, 35,152,158,255, 37,142,158,255, 35,146,153,255, 38,154,163,255, 37,142,158,255, 37,152,161,255, 38,165,168,255, 35,138,151,255, 35,134,148,255, 35,154,158,255, 37,149,159,255, 37,157,161,255, 35,139,147,255, 38,153,163,255, 35,136,148,255, 136,58,181,255, 121,48,169,255, 127,52,178,255, 140,61,180,255, 126,52,177,255, 141,61,186,255, 154,69,194,255, 133,55,181,255, 122,50,169,255, 128,54,172,255, 118,48,167,255, 131,55,180,255, 130,55,176,255, 124,51,166,255, 140,59,187,255, 140,61,180,255, 67,70,165,255, 72,74,167,255, 66,69,164,255, 69,70,164,255, 67,70,166,255, 66,69,164,255, 70,73,168,255, 69,72,168,255, 74,78,170,255, 62,63,154,255, 63,66,157,255, 70,74,169,255, 69,70,163,255, 63,66,154,255, 82,87,185,255, 74,77,168,255, 121,81,51,255, 115,77,47,255, 132,87,57,255, 119,80,50,255, 139,95,61,255, 138,95,59,255, 122,82,51,255, 132,89,57,255, 132,89,58,255, 116,80,50,255, 125,83,54,255, 133,90,58,255, 126,83,54,255, 110,74,47,255, 127,86,54,255, 113,77,47,255, 94,113,51,255, 91,110,47,255, 96,119,48,255, 96,120,43,255, 105,130,43,255, 99,121,47,255, 95,114,52,255, 101,124,45,255, 91,110,47,255, 91,111,44,255, 90,109,47,255, 103,127,44,255, 99,121,43,255, 95,118,37,255, 103,125,45,255, 95,118,40,255, 169,55,51,255, 176,58,51,255, 181,59,54,255, 162,51,48,255, 172,55,51,255, 170,54,51,255, 168,54,51,255, 178,58,52,255, 161,51,48,255, 172,58,51,255, 161,51,48,255, 170,54,51,255, 164,51,50,255, 176,61,54,255, 184,61,55,255, 156,50,48,255, 21,22,30,255, 24,25,30,255, 22,24,30,255, 25,25,31,255, 18,21,27,255, 28,30,34,255, 35,37,40,255, 35,37,40,255, 21,24,28,255, 15,16,24,255, 28,28,34,255, 31,33,37,255, 27,28,33,255, 19,21,25,255, 18,21,27,255, 22,24,30,255, 216,218,218,255, 224,226,226,255, 220,223,223,255, 246,247,247,255, 219,220,221,255, 228,229,230,255, 228,229,230,255, 219,221,222,255, 224,226,226,255, 225,227,228,255, 231,232,232,255, 216,218,218,255, 214,216,217,255, 211,214,215,255, 218,221,221,255, 226,227,227,255, 227,137,44,255, 226,126,25,255, 216,118,18,255, 247,155,43,255, 231,149,54,255, 228,127,22,255, 226,126,25,255, 234,145,45,255, 226,127,28,255, 234,134,31,255, 223,122,21,255, 212,114,16,255, 223,127,30,255, 220,122,24,255, 233,146,48,255, 213,115,21,255, 196,93,189,255, 198,89,190,255, 179,70,171,255, 216,98,208,255, 199,95,190,255, 192,77,183,255, 191,80,183,255, 194,83,186,255, 199,96,193,255, 194,78,185,255, 183,70,174,255, 176,72,169,255, 187,81,180,255, 184,77,177,255, 184,73,176,255, 181,77,172,255, 57,156,199,255, 73,180,213,255, 99,199,220,255, 108,221,242,255, 67,172,207,255, 69,177,216,255, 62,165,208,255, 74,182,215,255, 70,176,210,255, 80,192,223,255, 90,197,221,255, 73,177,206,255, 69,175,207,255, 96,198,220,255, 96,200,223,255, 62,164,199,255, 228,196,54,255, 235,201,55,255, 227,187,44,255, 248,213,51,255, 228,193,48,255, 236,198,47,255, 238,217,82,255, 237,213,73,255, 230,192,47,255, 238,200,47,255, 232,194,47,255, 225,191,51,255, 230,200,59,255, 227,188,45,255, 231,190,44,255, 224,194,55,255, 118,180,40,255, 115,182,40,255, 116,181,40,255, 141,210,45,255, 118,181,40,255, 124,191,41,255, 128,193,41,255, 130,193,43,255, 128,191,41,255, 125,194,44,255, 118,183,40,255, 110,172,38,255, 132,193,43,255, 124,185,40,255, 124,188,40,255, 118,178,38,255, 228,165,187,255, 229,147,177,255, 229,163,186,255, 247,171,201,255, 226,145,174,255, 238,171,196,255, 235,196,212,255, 232,155,182,255, 219,133,166,255, 241,175,198,255, 234,166,190,255, 206,118,153,255, 229,161,184,255, 230,171,193,255, 230,154,181,255, 221,146,171,255, 70,74,77,255, 82,87,91,255, 72,76,80,255, 85,90,95,255, 78,82,86,255, 86,91,96,255, 80,83,89,255, 87,95,99,255, 81,86,90,255, 77,81,85,255, 76,80,82,255, 74,77,81,255, 78,83,86,255, 81,86,89,255, 73,77,81,255, 69,72,76,255, 145,145,137,255, 169,169,165,255, 159,159,155,255, 172,172,164,255, 149,151,142,255, 172,172,167,255, 154,154,146,255, 153,153,146,255, 154,154,147,255, 161,161,153,255, 165,165,159,255, 144,144,138,255, 146,146,139,255, 154,154,148,255, 156,156,152,255, 140,140,133,255, 35,136,149,255, 37,163,164,255, 35,141,152,255, 41,158,172,255, 35,138,151,255, 37,148,159,255, 37,140,154,255, 37,146,156,255, 35,144,153,255, 38,165,169,255, 37,148,157,255, 35,136,147,255, 35,148,154,255, 35,136,149,255, 37,157,161,255, 35,147,152,255, 128,52,172,255, 146,65,188,255, 122,51,168,255, 142,59,195,255, 121,50,169,255, 136,58,183,255, 134,57,180,255, 142,62,185,255, 121,48,170,255, 151,66,193,255, 127,54,175,255, 122,51,167,255, 126,52,170,255, 136,58,178,255, 128,54,175,255, 121,51,165,255, 67,70,159,255, 65,67,162,255, 67,70,162,255, 72,74,180,255, 73,76,168,255, 73,76,171,255, 65,69,163,255, 65,66,162,255, 66,67,159,255, 80,85,184,255, 76,78,171,255, 63,65,154,255, 62,63,155,255, 72,74,166,255, 81,86,180,255, 61,62,152,255, 120,81,51,255, 140,96,63,255, 111,76,47,255, 148,101,65,255, 131,89,58,255, 145,100,65,255, 126,83,52,255, 121,81,51,255, 115,77,47,255, 128,86,54,255, 132,89,58,255, 127,87,57,255, 156,114,77,255, 134,91,61,255, 128,86,55,255, 108,73,44,255, 91,110,45,255, 94,114,48,255, 99,122,38,255, 109,133,51,255, 98,121,41,255, 96,116,50,255, 91,110,48,255, 99,121,44,255, 91,111,47,255, 98,118,52,255, 93,113,48,255, 95,118,38,255, 94,114,43,255, 105,131,35,255, 94,115,45,255, 89,109,43,255, 165,54,48,255, 169,54,50,255, 168,55,50,255, 182,58,55,255, 176,59,52,255, 170,54,51,255, 165,52,50,255, 166,52,50,255, 161,50,48,255, 167,52,51,255, 164,51,50,255, 154,48,47,255, 157,50,47,255, 161,51,48,255, 172,57,51,255, 153,48,45,255, 27,28,33,255, 16,18,24,255, 21,24,27,255, 35,37,41,255, 45,45,50,255, 19,22,27,255, 19,22,28,255, 28,30,34,255, 24,25,30,255, 16,19,25,255, 28,30,34,255, 34,34,38,255, 18,19,25,255, 37,37,41,255, 25,27,31,255, 25,27,31,255, 206,210,210,255, 230,231,231,255, 220,222,222,255, 231,233,233,255, 225,226,226,255, 234,235,235,255, 216,218,219,255, 228,229,229,255, 226,228,228,255, 225,226,227,255, 226,229,230,255, 245,246,246,255, 224,226,226,255, 224,226,227,255, 238,239,239,255, 231,232,232,255, 220,132,41,255, 228,128,28,255, 226,132,38,255, 231,138,40,255, 213,116,22,255, 231,134,35,255, 222,122,22,255, 219,120,19,255, 229,137,40,255, 228,133,37,255, 234,136,34,255, 235,128,18,255, 234,151,52,255, 228,127,22,255, 228,132,31,255, 221,119,18,255, 171,67,164,255, 199,90,190,255, 182,74,175,255, 194,85,185,255, 176,73,168,255, 200,94,192,255, 209,110,204,255, 184,74,175,255, 191,82,182,255, 197,91,188,255, 191,76,182,255, 223,115,216,255, 199,93,191,255, 192,77,183,255, 189,78,180,255, 191,81,182,255, 82,183,207,255, 82,193,219,255, 72,177,207,255, 91,199,222,255, 83,184,208,255, 83,193,219,255, 57,156,203,255, 93,196,219,255, 76,183,212,255, 61,162,205,255, 78,189,220,255, 67,180,223,255, 89,196,220,255, 82,194,221,255, 69,175,212,255, 74,182,213,255, 219,179,43,255, 234,196,47,255, 227,190,47,255, 234,205,59,255, 221,184,45,255, 233,192,45,255, 233,203,61,255, 227,186,41,255, 228,186,41,255, 234,208,69,255, 240,213,67,255, 246,216,61,255, 232,192,45,255, 238,206,58,255, 233,198,52,255, 231,193,47,255, 113,174,37,255, 122,188,41,255, 113,178,40,255, 115,182,40,255, 110,171,38,255, 134,197,43,255, 121,186,40,255, 119,183,40,255, 118,181,40,255, 124,186,40,255, 130,196,44,255, 128,199,45,255, 144,203,48,255, 127,194,43,255, 119,186,40,255, 130,193,41,255, 205,119,153,255, 220,131,168,255, 223,142,170,255, 234,169,191,255, 211,127,159,255, 222,132,168,255, 220,133,167,255, 223,140,169,255, 220,133,167,255, 224,140,170,255, 239,180,201,255, 246,182,206,255, 225,140,171,255, 238,171,195,255, 233,159,184,255, 219,130,166,255, 67,70,74,255, 87,94,98,255, 69,73,77,255, 80,83,87,255, 66,69,73,255, 81,87,90,255, 76,78,82,255, 76,81,83,255, 73,76,80,255, 74,77,81,255, 76,80,85,255, 87,93,98,255, 73,76,81,255, 78,83,86,255, 77,81,85,255, 77,81,85,255, 137,137,131,255, 171,171,166,255, 145,145,139,255, 153,153,146,255, 147,147,141,255, 154,154,147,255, 149,149,141,255, 148,149,142,255, 142,142,133,255, 147,147,139,255, 158,159,152,255, 158,158,149,255, 163,163,159,255, 154,154,146,255, 161,161,154,255, 149,149,141,255, 33,128,141,255, 37,138,153,255, 37,158,159,255, 37,140,154,255, 34,131,144,255, 37,142,155,255, 37,142,154,255, 35,147,154,255, 35,146,154,255, 35,148,154,255, 38,153,162,255, 40,154,168,255, 37,145,155,255, 37,152,159,255, 37,145,156,255, 37,151,156,255, 115,48,161,255, 153,69,193,255, 121,51,168,255, 128,54,175,255, 121,50,165,255, 139,58,183,255, 132,57,177,255, 120,48,168,255, 121,48,170,255, 120,48,169,255, 126,51,177,255, 139,58,189,255, 133,55,178,255, 125,51,175,255, 121,50,171,255, 127,52,175,255, 70,73,161,255, 80,83,180,255, 69,70,161,255, 80,85,179,255, 61,63,152,255, 66,67,163,255, 67,69,162,255, 74,77,169,255, 72,74,168,255, 66,67,161,255, 77,80,177,255, 89,96,197,255, 74,77,170,255, 74,77,172,255, 69,72,165,255, 69,72,165,255, 121,83,54,255, 125,83,52,255, 120,81,51,255, 142,99,65,255, 116,78,50,255, 118,80,50,255, 122,81,52,255, 120,81,51,255, 124,82,52,255, 119,81,50,255, 122,82,51,255, 128,87,54,255, 119,81,50,255, 122,82,51,255, 136,91,59,255, 115,78,47,255, 87,108,43,255, 101,126,43,255, 87,107,47,255, 93,111,50,255, 86,105,44,255, 98,121,45,255, 93,111,48,255, 93,113,45,255, 94,114,47,255, 91,111,47,255, 107,132,40,255, 109,133,47,255, 94,114,48,255, 105,130,41,255, 95,116,47,255, 91,110,48,255, 151,48,47,255, 165,52,51,255, 175,58,52,255, 166,52,50,255, 164,54,48,255, 166,52,51,255, 162,50,50,255, 159,50,48,255, 164,52,48,255, 161,50,48,255, 179,59,54,255, 174,54,52,255, 165,52,50,255, 170,54,51,255, 181,61,54,255, 162,51,48,255, 22,22,28,255, 22,24,31,255, 19,22,27,255, 21,22,28,255, 33,33,37,255, 22,25,31,255, 25,27,31,255, 18,19,25,255, 27,27,31,255, 30,30,35,255, 18,21,27,255, 16,19,25,255, 25,27,31,255, 33,34,37,255, 22,24,30,255, 16,18,25,255, 223,224,225,255, 223,226,226,255, 227,230,230,255, 216,219,220,255, 233,234,234,255, 229,230,230,255, 242,243,243,255, 230,232,233,255, 225,226,227,255, 221,223,223,255, 220,222,223,255, 214,217,218,255, 222,224,224,255, 223,225,225,255, 231,234,234,255, 242,242,242,255, 223,122,21,255, 232,145,48,255, 232,132,31,255, 219,116,14,255, 229,132,34,255, 216,116,15,255, 234,138,37,255, 233,130,21,255, 227,130,28,255, 218,120,19,255, 221,122,22,255, 225,128,33,255, 223,121,18,255, 229,131,30,255, 241,148,43,255, 227,125,19,255, 195,87,187,255, 217,125,216,255, 196,83,187,255, 196,90,187,255, 185,74,177,255, 197,94,190,255, 202,94,195,255, 199,82,190,255, 190,78,181,255, 188,81,181,255, 195,87,186,255, 183,74,175,255, 187,76,178,255, 201,93,193,255, 215,105,208,255, 197,86,190,255, 94,200,222,255, 93,197,220,255, 80,192,220,255, 86,195,219,255, 66,170,209,255, 86,192,216,255, 70,179,214,255, 89,205,230,255, 74,181,214,255, 100,201,223,255, 77,185,213,255, 72,179,210,255, 74,181,214,255, 63,169,211,255, 78,193,225,255, 63,169,212,255, 231,190,44,255, 231,196,52,255, 236,200,50,255, 231,195,50,255, 234,205,61,255, 227,185,41,255, 238,212,65,255, 243,212,58,255, 237,213,76,255, 228,191,47,255, 231,197,52,255, 230,195,51,255, 232,189,41,255, 234,194,45,255, 242,209,55,255, 236,197,47,255, 122,187,40,255, 122,187,40,255, 121,188,41,255, 121,186,40,255, 131,194,41,255, 133,194,43,255, 121,187,41,255, 133,200,44,255, 140,199,45,255, 118,182,40,255, 122,186,40,255, 121,185,40,255, 116,184,41,255, 125,190,41,255, 128,197,44,255, 119,186,41,255, 221,134,168,255, 223,138,169,255, 234,156,184,255, 232,159,184,255, 231,155,182,255, 216,127,163,255, 237,169,194,255, 244,205,220,255, 235,179,199,255, 230,166,188,255, 224,140,170,255, 217,130,164,255, 229,148,178,255, 230,147,178,255, 243,178,203,255, 230,145,177,255, 80,82,87,255, 74,77,82,255, 80,83,87,255, 81,89,91,255, 80,83,87,255, 80,83,87,255, 77,80,83,255, 90,98,101,255, 82,87,91,255, 73,77,81,255, 81,87,93,255, 72,74,77,255, 77,80,85,255, 81,85,89,255, 81,83,87,255, 81,86,90,255, 156,156,149,255, 158,158,154,255, 153,153,142,255, 145,146,137,255, 162,162,156,255, 147,147,140,255, 148,148,140,255, 163,163,155,255, 155,155,148,255, 146,146,138,255, 147,147,139,255, 152,152,147,255, 157,157,151,255, 166,166,159,255, 162,162,155,255, 151,151,142,255, 37,139,153,255, 35,153,157,255, 38,154,162,255, 37,144,154,255, 37,146,155,255, 35,153,156,255, 37,148,158,255, 40,166,170,255, 37,149,157,255, 35,142,153,255, 35,155,159,255, 45,199,199,255, 37,153,159,255, 37,141,154,255, 38,166,171,255, 38,161,166,255, 118,47,168,255, 134,58,178,255, 151,66,191,255, 133,57,178,255, 136,58,180,255, 120,50,168,255, 149,66,191,255, 140,59,188,255, 128,54,176,255, 136,58,178,255, 142,62,182,255, 137,58,179,255, 153,70,193,255, 141,59,184,255, 136,58,186,255, 133,57,181,255, 72,74,167,255, 73,77,169,255, 76,80,177,255, 66,69,161,255, 66,69,163,255, 63,65,157,255, 69,72,166,255, 73,77,177,255, 70,73,167,255, 62,65,156,255, 66,67,161,255, 66,69,161,255, 70,73,167,255, 80,83,180,255, 83,89,189,255, 76,78,175,255, 136,93,61,255, 124,82,52,255, 128,86,55,255, 126,83,54,255, 127,85,55,255, 124,82,52,255, 139,96,61,255, 141,98,62,255, 121,82,51,255, 115,77,48,255, 158,116,78,255, 119,81,50,255, 147,101,67,255, 130,87,57,255, 141,96,62,255, 122,82,51,255, 91,111,50,255, 95,116,44,255, 96,118,48,255, 93,113,48,255, 94,113,50,255, 89,107,47,255, 96,118,48,255, 113,139,43,255, 93,113,48,255, 90,109,47,255, 99,124,41,255, 94,116,44,255, 93,113,48,255, 94,113,51,255, 101,124,51,255, 101,126,44,255, 165,52,50,255, 172,57,51,255, 172,55,51,255, 164,51,50,255, 167,52,50,255, 169,55,50,255, 176,58,52,255, 182,59,55,255, 164,51,50,255, 161,50,48,255, 164,52,48,255, 163,52,48,255, 180,59,54,255, 165,52,51,255, 172,55,52,255, 166,52,50,255, 16,18,24,255, 40,40,44,255, 25,27,31,255, 22,24,30,255, 28,30,34,255, 34,35,38,255, 22,24,31,255, 19,22,30,255, 30,30,35,255, 16,18,25,255, 16,18,25,255, 33,33,37,255, 30,30,35,255, 24,25,31,255, 21,22,30,255, 18,21,27,255, 224,226,226,255, 239,240,240,255, 237,238,238,255, 229,231,232,255, 236,237,237,255, 219,222,222,255, 231,233,233,255, 218,221,222,255, 216,218,219,255, 246,247,248,255, 214,216,216,255, 222,224,225,255, 225,226,227,255, 232,234,234,255, 226,228,228,255, 223,224,225,255, 226,126,24,255, 230,133,33,255, 241,156,54,255, 233,134,34,255, 228,128,27,255, 220,121,21,255, 234,136,34,255, 229,131,30,255, 220,120,19,255, 237,131,18,255, 223,133,41,255, 222,121,19,255, 219,118,15,255, 232,138,38,255, 229,132,33,255, 226,127,27,255, 188,76,179,255, 219,122,215,255, 212,104,205,255, 202,93,195,255, 212,110,206,255, 181,70,171,255, 196,82,187,255, 185,72,177,255, 188,80,180,255, 220,109,212,255, 175,69,167,255, 186,74,178,255, 199,95,192,255, 192,82,183,255, 198,89,190,255, 213,116,209,255, 59,161,207,255, 87,198,222,255, 72,182,219,255, 81,192,220,255, 81,191,219,255, 72,179,210,255, 90,201,226,255, 95,201,224,255, 63,166,206,255, 80,196,228,255, 80,183,208,255, 61,163,206,255, 63,165,206,255, 65,169,209,255, 66,171,210,255, 82,192,217,255, 233,193,44,255, 234,194,45,255, 242,213,65,255, 238,207,61,255, 235,203,55,255, 228,190,45,255, 237,198,48,255, 236,206,61,255, 230,195,50,255, 247,218,62,255, 221,182,44,255, 234,204,58,255, 230,192,47,255, 233,197,51,255, 232,192,44,255, 234,207,63,255, 127,193,43,255, 130,194,43,255, 124,192,43,255, 128,194,43,255, 126,191,41,255, 130,191,41,255, 132,197,44,255, 139,199,44,255, 133,194,41,255, 134,204,45,255, 119,179,38,255, 142,202,47,255, 127,190,40,255, 133,196,41,255, 126,190,40,255, 116,182,40,255, 235,164,189,255, 224,136,170,255, 240,170,196,255, 232,151,181,255, 236,189,206,255, 226,145,174,255, 239,174,197,255, 237,197,212,255, 223,139,170,255, 247,209,224,255, 221,146,171,255, 232,155,182,255, 224,141,172,255, 223,137,170,255, 226,141,174,255, 223,137,169,255, 77,81,85,255, 76,80,83,255, 80,83,87,255, 85,90,94,255, 86,94,96,255, 72,74,78,255, 76,80,85,255, 74,77,81,255, 74,78,82,255, 89,96,100,255, 70,73,76,255, 73,76,81,255, 78,85,87,255, 74,77,82,255, 77,82,85,255, 76,80,83,255, 154,154,148,255, 172,172,167,255, 158,158,152,255, 156,156,149,255, 165,165,158,255, 146,146,139,255, 169,169,165,255, 157,157,151,255, 156,156,151,255, 167,167,158,255, 137,137,128,255, 152,152,144,255, 147,147,139,255, 157,157,151,255, 167,167,163,255, 165,165,159,255, 37,144,155,255, 37,153,159,255, 38,152,163,255, 38,157,164,255, 37,147,156,255, 35,137,149,255, 37,152,161,255, 37,156,162,255, 35,145,154,255, 40,152,168,255, 35,148,152,255, 37,155,159,255, 35,144,153,255, 37,140,154,255, 37,152,159,255, 37,141,154,255, 128,54,177,255, 141,61,184,255, 126,52,178,255, 133,57,181,255, 126,54,175,255, 131,55,175,255, 137,58,183,255, 125,52,174,255, 125,50,171,255, 138,58,189,255, 124,52,167,255, 137,58,180,255, 122,50,170,255, 134,57,180,255, 130,54,176,255, 127,52,175,255, 72,74,168,255, 65,67,162,255, 77,81,179,255, 76,77,174,255, 81,87,183,255, 66,69,162,255, 72,74,171,255, 69,72,166,255, 62,65,156,255, 72,74,177,255, 65,69,156,255, 66,69,162,255, 69,70,163,255, 72,74,168,255, 66,69,163,255, 69,72,165,255, 127,86,55,255, 126,85,54,255, 131,87,55,255, 124,82,51,255, 125,83,52,255, 126,85,54,255, 121,81,51,255, 126,83,54,255, 119,80,50,255, 132,89,55,255, 111,76,48,255, 119,81,50,255, 132,89,58,255, 138,94,62,255, 137,93,61,255, 134,91,59,255, 104,130,38,255, 101,126,41,255, 103,126,45,255, 93,113,51,255, 93,111,50,255, 103,127,37,255, 98,121,47,255, 110,137,38,255, 104,127,37,255, 103,124,55,255, 86,104,45,255, 100,124,43,255, 94,115,45,255, 103,127,40,255, 91,110,48,255, 90,109,48,255, 169,54,51,255, 177,57,54,255, 172,54,52,255, 166,52,50,255, 174,57,52,255, 164,52,48,255, 181,61,54,255, 181,59,54,255, 170,55,48,255, 177,57,55,255, 163,54,48,255, 169,54,50,255, 167,54,48,255, 164,51,50,255, 181,59,54,255, 165,51,50,255, 18,19,27,255, 37,37,41,255, 35,35,40,255, 38,38,43,255, 22,25,31,255, 28,30,34,255, 30,31,35,255, 19,21,28,255, 28,30,34,255, 21,22,30,255, 18,21,25,255, 33,33,37,255, 31,33,37,255, 25,27,31,255, 16,18,24,255, 43,43,47,255, 215,217,217,255, 223,225,226,255, 235,237,237,255, 230,231,231,255, 240,240,240,255, 220,222,223,255, 224,226,226,255, 216,218,219,255, 226,228,228,255, 221,223,224,255, 240,240,240,255, 235,237,237,255, 232,233,233,255, 234,235,236,255, 225,227,227,255, 231,232,232,255, 218,124,31,255, 228,132,35,255, 235,141,41,255, 228,132,34,255, 223,125,25,255, 227,127,27,255, 221,124,25,255, 220,122,24,255, 225,126,25,255, 228,131,31,255, 235,180,78,255, 229,126,19,255, 230,137,38,255, 225,122,18,255, 227,130,33,255, 232,134,33,255, 187,85,180,255, 194,85,184,255, 201,93,195,255, 189,80,180,255, 182,70,174,255, 196,87,188,255, 193,86,184,255, 196,91,187,255, 187,76,179,255, 187,76,178,255, 198,91,191,255, 193,78,185,255, 196,89,189,255, 187,73,178,255, 189,81,181,255, 195,81,186,255, 63,164,199,255, 74,180,212,255, 77,186,217,255, 69,175,210,255, 93,198,220,255, 82,192,218,255, 86,192,216,255, 63,165,205,255, 70,176,211,255, 73,180,212,255, 62,166,207,255, 63,169,214,255, 73,180,212,255, 73,183,215,255, 91,197,220,255, 62,166,212,255, 222,186,47,255, 231,192,47,255, 237,200,51,255, 234,204,61,255, 232,200,54,255, 233,193,44,255, 228,190,45,255, 228,188,45,255, 230,189,41,255, 232,197,51,255, 232,195,48,255, 238,200,48,255, 232,198,52,255, 234,195,45,255, 230,191,45,255, 240,212,65,255, 124,182,38,255, 128,192,41,255, 118,186,41,255, 125,189,40,255, 118,183,40,255, 124,188,41,255, 122,185,40,255, 181,223,122,255, 121,185,40,255, 125,188,40,255, 121,186,40,255, 121,189,43,255, 122,186,40,255, 119,185,41,255, 114,180,40,255, 126,194,44,255, 223,156,179,255, 230,156,181,255, 226,136,170,255, 229,151,179,255, 224,140,170,255, 225,139,171,255, 230,163,186,255, 223,141,170,255, 229,152,180,255, 223,136,169,255, 223,134,169,255, 239,165,193,255, 232,161,185,255, 228,142,175,255, 232,161,185,255, 237,162,189,255, 74,80,82,255, 78,83,87,255, 74,78,82,255, 80,85,89,255, 81,87,91,255, 73,76,81,255, 73,77,81,255, 83,93,95,255, 78,82,85,255, 73,77,81,255, 73,77,81,255, 81,85,89,255, 78,82,85,255, 77,80,83,255, 74,77,81,255, 81,87,91,255, 142,142,136,255, 168,168,164,255, 175,175,168,255, 161,161,154,255, 157,158,152,255, 145,145,137,255, 144,144,137,255, 152,152,146,255, 156,156,149,255, 155,155,148,255, 153,153,146,255, 163,163,155,255, 156,156,151,255, 156,156,149,255, 157,158,152,255, 151,151,141,255, 34,130,142,255, 37,145,154,255, 38,155,162,255, 37,136,152,255, 37,147,156,255, 37,144,155,255, 35,154,157,255, 35,151,156,255, 37,151,157,255, 37,157,161,255, 37,140,154,255, 37,142,158,255, 37,140,154,255, 37,149,158,255, 37,154,158,255, 38,163,167,255, 138,62,179,255, 132,55,177,255, 136,58,182,255, 144,63,186,255, 124,51,172,255, 132,57,178,255, 130,54,174,255, 124,51,170,255, 128,54,176,255, 125,52,174,255, 128,54,176,255, 138,58,185,255, 128,54,175,255, 148,66,190,255, 137,59,180,255, 134,57,182,255, 58,61,149,255, 80,83,177,255, 67,70,165,255, 74,78,171,255, 81,87,180,255, 81,86,180,255, 63,65,157,255, 73,76,169,255, 76,80,172,255, 66,69,162,255, 74,77,170,255, 70,73,170,255, 74,78,171,255, 73,76,171,255, 65,67,159,255, 73,76,172,255, 111,76,48,255, 124,82,52,255, 122,81,51,255, 113,77,47,255, 119,81,50,255, 140,95,62,255, 114,76,47,255, 119,81,51,255, 124,82,52,255, 126,85,54,255, 118,80,50,255, 119,81,50,255, 118,80,50,255, 145,100,66,255, 119,81,50,255, 130,87,55,255, 93,114,40,255, 96,116,44,255, 96,119,48,255, 96,118,44,255, 89,108,48,255, 94,114,48,255, 91,113,44,255, 94,116,44,255, 104,131,37,255, 94,114,48,255, 103,127,40,255, 99,119,50,255, 93,111,48,255, 90,109,51,255, 108,133,37,255, 95,115,51,255, 151,48,45,255, 163,51,50,255, 168,54,51,255, 169,54,50,255, 166,52,50,255, 171,55,50,255, 164,52,48,255, 161,50,48,255, 166,52,50,255, 167,52,50,255, 166,52,50,255, 178,57,52,255, 162,51,48,255, 186,65,57,255, 162,50,50,255, 170,54,51,255, 21,21,27,255, 28,30,34,255, 28,30,34,255, 16,19,27,255, 19,21,27,255, 16,18,25,255, 15,16,24,255, 22,24,28,255, 22,24,30,255, 15,18,24,255, 16,18,25,255, 21,22,28,255, 34,34,38,255, 35,37,40,255, 27,27,31,255, 38,38,43,255, 226,228,228,255, 226,228,228,255, 218,218,218,255, 228,230,230,255, 211,213,214,255, 230,232,232,255, 220,222,223,255, 226,228,229,255, 227,230,230,255, 227,230,230,255, 235,235,235,255, 220,223,223,255, 228,230,230,255, 253,253,253,255, 226,228,228,255, 222,223,224,255, 226,127,27,255, 225,124,21,255, 201,108,19,255, 229,130,25,255, 218,121,27,255, 237,142,40,255, 226,128,30,255, 228,132,31,255, 237,139,35,255, 231,128,24,255, 228,126,22,255, 220,121,21,255, 233,146,48,255, 246,153,41,255, 228,136,38,255, 225,127,27,255, 192,81,183,255, 212,110,206,255, 170,74,164,255, 192,78,184,255, 185,81,178,255, 192,76,182,255, 186,77,178,255, 183,70,174,255, 206,95,198,255, 199,86,191,255, 207,101,200,255, 199,96,192,255, 187,74,178,255, 203,81,195,255, 197,91,188,255, 197,90,190,255, 65,169,210,255, 70,179,213,255, 59,153,188,255, 76,186,218,255, 61,162,199,255, 66,175,216,255, 74,182,212,255, 59,162,206,255, 80,194,223,255, 65,172,216,255, 74,184,217,255, 66,171,207,255, 89,196,220,255, 93,212,236,255, 72,179,211,255, 62,164,206,255, 233,196,48,255, 237,210,67,255, 218,200,100,255, 240,217,76,255, 224,183,43,255, 242,215,66,255, 234,205,63,255, 232,194,47,255, 242,212,62,255, 240,204,51,255, 238,211,65,255, 232,200,58,255, 230,190,43,255, 248,220,61,255, 233,206,65,255, 231,194,48,255, 124,189,41,255, 125,190,41,255, 115,171,35,255, 119,187,41,255, 130,190,40,255, 137,201,44,255, 128,191,41,255, 130,193,41,255, 128,196,44,255, 128,196,44,255, 119,187,41,255, 131,192,41,255, 116,182,40,255, 134,204,45,255, 122,186,40,255, 128,192,41,255, 229,147,178,255, 234,158,185,255, 201,120,151,255, 236,162,188,255, 222,145,171,255, 227,136,174,255, 232,166,188,255, 228,144,175,255, 228,137,174,255, 232,145,179,255, 228,142,175,255, 228,148,176,255, 234,171,194,255, 246,167,197,255, 231,158,183,255, 229,149,177,255, 81,86,90,255, 76,80,83,255, 67,72,74,255, 81,83,87,255, 70,73,77,255, 80,83,87,255, 72,74,78,255, 74,77,82,255, 76,78,82,255, 86,93,96,255, 74,77,81,255, 77,82,85,255, 77,80,83,255, 83,89,93,255, 85,93,95,255, 83,91,95,255, 153,153,146,255, 164,164,158,255, 128,128,121,255, 153,153,142,255, 140,140,133,255, 157,157,151,255, 158,158,153,255, 153,153,146,255, 154,154,146,255, 168,168,162,255, 149,149,140,255, 141,141,133,255, 167,167,162,255, 180,180,172,255, 155,155,149,255, 148,148,140,255, 37,153,159,255, 37,148,158,255, 31,124,134,255, 37,152,161,255, 35,138,148,255, 37,146,159,255, 37,137,152,255, 37,141,154,255, 38,163,168,255, 38,154,163,255, 37,147,158,255, 35,139,152,255, 37,144,154,255, 40,169,177,255, 35,141,153,255, 38,165,166,255, 134,57,179,255, 127,54,176,255, 125,54,163,255, 125,51,176,255, 116,47,163,255, 137,57,183,255, 141,61,183,255, 126,52,174,255, 128,54,180,255, 130,55,181,255, 128,54,178,255, 122,50,169,255, 125,51,171,255, 162,72,205,255, 137,58,179,255, 126,52,174,255, 73,76,169,255, 73,76,169,255, 55,57,140,255, 69,72,167,255, 74,80,169,255, 69,72,169,255, 72,73,166,255, 63,66,161,255, 78,82,180,255, 72,76,172,255, 73,74,170,255, 65,67,161,255, 66,69,162,255, 74,78,181,255, 70,74,167,255, 66,69,162,255, 121,82,51,255, 122,81,51,255, 100,67,40,255, 128,86,55,255, 125,85,55,255, 132,87,55,255, 115,78,47,255, 116,78,48,255, 121,81,50,255, 125,83,52,255, 133,89,58,255, 119,81,50,255, 130,87,57,255, 128,85,52,255, 127,86,55,255, 127,85,55,255, 104,128,38,255, 104,130,40,255, 80,95,44,255, 113,140,38,255, 87,105,45,255, 96,116,51,255, 93,113,47,255, 89,108,51,255, 111,137,41,255, 99,119,51,255, 108,134,40,255, 95,116,44,255, 94,114,47,255, 121,151,41,255, 94,115,45,255, 93,113,48,255, 179,58,52,255, 167,52,51,255, 145,47,44,255, 174,57,52,255, 163,54,47,255, 176,57,54,255, 175,58,51,255, 172,55,51,255, 172,55,52,255, 168,54,51,255, 206,87,80,255, 162,51,48,255, 182,62,55,255, 191,63,57,255, 169,55,48,255, 162,51,48,255, 18,19,27,255, 25,27,31,255, 18,18,24,255, 21,21,28,255, 18,19,25,255, 18,19,25,255, 19,22,27,255, 37,37,41,255, 19,22,27,255, 18,19,25,255, 30,31,35,255, 21,22,28,255, 18,21,27,255, 18,21,27,255, 21,24,28,255, 28,30,34,255, 212,216,216,255, 230,231,232,255, 228,230,230,255, 230,231,231,255, 220,223,223,255, 223,226,226,255, 233,234,234,255, 219,221,221,255, 223,224,225,255, 232,234,234,255, 232,233,233,255, 243,244,244,255, 216,218,219,255, 224,226,226,255, 225,226,226,255, 216,218,218,255, 218,119,21,255, 232,133,33,255, 233,138,37,255, 219,121,24,255, 232,140,41,255, 228,134,37,255, 226,127,28,255, 228,132,35,255, 231,136,37,255, 231,137,37,255, 234,171,72,255, 243,152,44,255, 228,137,40,255, 222,124,25,255, 223,127,31,255, 220,131,40,255, 188,81,180,255, 199,87,190,255, 202,93,194,255, 182,77,175,255, 191,80,182,255, 203,101,196,255, 187,76,178,255, 197,91,188,255, 200,93,192,255, 189,77,180,255, 187,76,177,255, 215,104,208,255, 187,80,180,255, 194,89,185,255, 182,73,175,255, 177,76,170,255, 100,199,221,255, 86,196,222,255, 62,166,211,255, 57,154,198,255, 70,176,212,255, 65,167,206,255, 86,195,219,255, 91,197,220,255, 65,168,208,255, 70,177,212,255, 76,184,213,255, 78,194,227,255, 72,179,210,255, 77,185,212,255, 73,179,210,255, 74,176,203,255, 229,199,59,255, 240,216,74,255, 240,219,83,255, 226,193,51,255, 232,191,44,255, 235,211,73,255, 232,193,45,255, 229,189,44,255, 232,193,47,255, 235,209,66,255, 235,213,74,255, 245,212,57,255, 230,198,55,255, 229,194,50,255, 227,188,45,255, 221,190,54,255, 116,180,40,255, 126,191,41,255, 132,196,43,255, 109,174,40,255, 122,187,40,255, 122,186,40,255, 137,196,41,255, 122,185,40,255, 125,190,40,255, 130,194,41,255, 122,186,40,255, 128,198,45,255, 137,196,44,255, 121,184,40,255, 131,191,41,255, 107,168,37,255, 228,153,179,255, 237,165,191,255, 237,191,208,255, 222,142,169,255, 235,171,195,255, 232,162,186,255, 235,196,211,255, 226,146,176,255, 223,137,170,255, 232,158,184,255, 229,151,178,255, 240,158,190,255, 230,168,190,255, 230,170,191,255, 223,141,170,255, 221,157,179,255, 70,73,77,255, 83,90,94,255, 73,77,81,255, 73,76,80,255, 78,82,87,255, 81,86,90,255, 76,81,83,255, 72,74,78,255, 74,77,82,255, 74,78,82,255, 77,81,86,255, 80,82,87,255, 73,76,80,255, 70,74,78,255, 70,73,77,255, 76,81,83,255, 144,144,137,255, 152,152,142,255, 165,165,161,255, 140,140,133,255, 165,165,161,255, 149,149,142,255, 149,149,141,255, 148,148,140,255, 157,157,151,255, 163,163,159,255, 159,159,153,255, 157,157,148,255, 157,157,152,255, 149,149,142,255, 145,145,138,255, 134,134,126,255, 35,155,158,255, 37,147,158,255, 37,145,157,255, 35,138,149,255, 38,163,165,255, 47,200,200,255, 37,144,155,255, 37,139,153,255, 37,141,154,255, 37,144,155,255, 37,159,162,255, 40,163,170,255, 37,162,162,255, 35,138,151,255, 41,186,185,255, 33,132,144,255, 127,52,171,255, 147,65,189,255, 138,59,184,255, 120,48,166,255, 142,62,184,255, 137,58,179,255, 154,72,194,255, 130,54,175,255, 124,51,172,255, 148,65,188,255, 140,61,183,255, 133,55,185,255, 132,54,175,255, 142,63,183,255, 144,63,183,255, 128,55,168,255, 62,65,155,255, 67,70,165,255, 82,89,184,255, 69,72,162,255, 66,69,162,255, 66,69,161,255, 67,70,164,255, 72,74,168,255, 67,72,164,255, 69,73,166,255, 66,69,161,255, 76,80,180,255, 73,74,167,255, 74,78,170,255, 69,72,163,255, 61,63,149,255, 130,87,58,255, 138,94,61,255, 125,83,54,255, 116,80,50,255, 114,76,47,255, 140,96,63,255, 119,81,50,255, 114,77,47,255, 118,81,50,255, 141,98,63,255, 130,87,57,255, 144,99,63,255, 121,82,52,255, 115,77,48,255, 111,74,45,255, 115,80,50,255, 96,119,41,255, 99,121,47,255, 98,120,47,255, 89,108,45,255, 105,131,37,255, 91,111,47,255, 95,116,47,255, 90,109,47,255, 98,121,44,255, 96,119,45,255, 93,113,48,255, 107,131,47,255, 99,124,40,255, 96,119,41,255, 89,107,47,255, 83,100,45,255, 154,48,47,255, 174,57,52,255, 179,58,54,255, 161,51,48,255, 171,54,50,255, 165,52,48,255, 161,50,48,255, 165,52,48,255, 166,52,50,255, 171,55,50,255, 164,51,50,255, 176,57,54,255, 165,54,48,255, 164,52,48,255, 161,51,48,255, 149,47,47,255, 25,27,31,255, 30,31,35,255, 18,21,25,255, 25,27,31,255, 21,22,30,255, 19,22,27,255, 21,24,28,255, 18,21,27,255, 34,34,38,255, 35,35,40,255, 34,35,40,255, 31,33,37,255, 31,33,37,255, 27,28,33,255, 28,28,34,255, 14,16,21,255, 236,238,238,255, 223,225,226,255, 214,216,217,255, 231,233,234,255, 225,226,227,255, 223,225,226,255, 223,226,226,255, 207,209,210,255, 218,220,220,255, 226,228,228,255, 224,226,226,255, 216,219,220,255, 227,229,230,255, 235,236,237,255, 213,215,216,255, 221,223,224,255, 232,131,27,255, 224,124,22,255, 221,124,25,255, 230,128,24,255, 232,139,40,255, 230,141,45,255, 235,145,45,255, 218,127,35,255, 224,133,41,255, 230,136,37,255, 228,133,35,255, 216,118,16,255, 225,121,18,255, 237,146,44,255, 220,121,24,255, 233,177,77,255, 210,103,203,255, 185,73,176,255, 182,72,172,255, 204,91,196,255, 194,82,185,255, 196,91,187,255, 187,73,178,255, 169,65,162,255, 181,76,174,255, 196,87,188,255, 188,80,180,255, 183,73,174,255, 196,85,187,255, 196,83,187,255, 194,90,186,255, 199,96,193,255, 85,198,225,255, 59,162,206,255, 83,191,215,255, 77,189,221,255, 73,180,213,255, 63,168,206,255, 87,197,222,255, 66,166,199,255, 57,155,198,255, 93,199,223,255, 81,190,216,255, 89,195,216,255, 69,177,213,255, 81,193,220,255, 76,183,211,255, 63,166,206,255, 239,204,51,255, 231,189,41,255, 227,188,43,255, 240,205,52,255, 233,195,47,255, 229,194,50,255, 235,202,54,255, 219,180,41,255, 226,189,50,255, 235,209,66,255, 234,208,69,255, 227,189,45,255, 236,204,57,255, 240,217,76,255, 227,190,47,255, 230,196,51,255, 130,196,44,255, 118,183,40,255, 120,183,40,255, 125,193,44,255, 114,182,41,255, 115,180,40,255, 122,188,41,255, 115,176,38,255, 122,183,38,255, 126,190,40,255, 115,181,40,255, 126,189,40,255, 142,203,45,255, 139,201,43,255, 130,190,40,255, 119,183,40,255, 228,139,175,255, 229,148,177,255, 224,142,171,255, 240,175,198,255, 226,140,172,255, 230,158,183,255, 234,157,184,255, 220,147,170,255, 226,159,183,255, 234,166,190,255, 233,165,188,255, 223,141,170,255, 236,188,206,255, 238,172,196,255, 225,146,174,255, 232,175,195,255, 76,80,83,255, 74,80,82,255, 76,81,83,255, 78,81,85,255, 81,86,90,255, 81,89,91,255, 76,78,82,255, 74,78,81,255, 76,78,82,255, 76,80,83,255, 74,77,80,255, 72,74,78,255, 78,82,86,255, 76,80,83,255, 69,72,76,255, 73,76,80,255, 164,165,157,255, 156,156,149,255, 146,146,139,255, 171,171,167,255, 154,154,147,255, 148,148,142,255, 159,159,154,255, 153,153,147,255, 151,151,145,255, 168,168,163,255, 161,162,156,255, 145,145,138,255, 153,153,145,255, 165,165,158,255, 154,154,148,255, 157,157,152,255, 37,148,161,255, 37,141,154,255, 35,136,149,255, 38,152,163,255, 37,147,156,255, 35,144,153,255, 37,140,154,255, 33,128,141,255, 35,136,147,255, 37,145,155,255, 37,166,166,255, 37,158,159,255, 37,156,163,255, 38,155,163,255, 35,133,147,255, 35,137,152,255, 140,59,186,255, 136,57,180,255, 133,55,176,255, 134,55,182,255, 136,57,180,255, 132,54,175,255, 133,57,180,255, 131,57,171,255, 114,47,162,255, 124,51,172,255, 131,55,176,255, 130,54,174,255, 122,51,172,255, 137,59,183,255, 124,51,170,255, 142,62,182,255, 76,80,177,255, 74,77,170,255, 74,77,170,255, 67,70,167,255, 63,66,161,255, 66,67,159,255, 70,73,168,255, 67,72,158,255, 72,74,165,255, 78,85,178,255, 69,72,164,255, 69,72,163,255, 80,83,178,255, 66,70,165,255, 66,69,159,255, 67,70,163,255, 132,89,57,255, 114,77,47,255, 121,82,52,255, 131,87,55,255, 120,81,50,255, 137,93,61,255, 130,87,57,255, 118,81,50,255, 120,81,52,255, 125,83,52,255, 116,78,48,255, 121,82,52,255, 127,86,55,255, 126,83,54,255, 131,89,59,255, 121,81,51,255, 101,124,47,255, 94,114,48,255, 93,114,44,255, 101,125,47,255, 95,116,48,255, 103,126,37,255, 96,118,47,255, 86,105,43,255, 103,130,35,255, 93,111,50,255, 99,122,43,255, 105,131,35,255, 100,125,43,255, 93,111,51,255, 104,130,35,255, 110,138,35,255, 172,54,52,255, 164,51,50,255, 169,55,48,255, 170,52,52,255, 166,52,50,255, 163,52,48,255, 171,54,51,255, 155,50,47,255, 158,50,47,255, 175,58,52,255, 161,50,50,255, 158,50,48,255, 168,52,51,255, 166,52,50,255, 157,50,47,255, 163,51,48,255, 21,24,28,255, 22,24,30,255, 31,31,37,255, 19,21,27,255, 35,35,40,255, 18,21,25,255, 59,59,65,255, 34,34,38,255, 21,22,28,255, 22,25,30,255, 30,31,35,255, 18,21,27,255, 28,30,34,255, 25,27,31,255, 21,24,27,255, 16,19,25,255, 220,223,224,255, 225,227,228,255, 210,212,213,255, 202,206,206,255, 217,219,220,255, 228,230,230,255, 220,223,223,255, 230,232,233,255, 230,231,231,255, 232,234,234,255, 223,226,226,255, 226,228,228,255, 223,226,226,255, 216,218,219,255, 235,237,237,255, 238,238,238,255, 222,119,16,255, 231,131,30,255, 221,125,27,255, 205,109,18,255, 224,128,33,255, 225,130,34,255, 231,145,50,255, 238,142,37,255, 234,141,41,255, 235,136,28,255, 236,142,41,255, 224,124,21,255, 228,127,25,255, 223,126,25,255, 236,142,41,255, 225,127,27,255, 186,73,178,255, 187,70,178,255, 192,87,184,255, 169,67,161,255, 191,85,184,255, 183,74,174,255, 190,83,182,255, 199,83,191,255, 187,73,178,255, 206,93,198,255, 195,81,185,255, 190,78,181,255, 191,78,182,255, 197,91,188,255, 191,76,181,255, 182,72,174,255, 80,188,216,255, 63,169,212,255, 94,196,219,255, 65,163,195,255, 86,192,216,255, 59,162,203,255, 89,196,218,255, 63,172,217,255, 104,206,228,255, 76,187,223,255, 69,178,216,255, 78,187,216,255, 62,167,210,255, 90,196,219,255, 80,191,220,255, 74,182,212,255, 235,206,59,255, 236,198,48,255, 230,204,65,255, 218,189,57,255, 228,192,50,255, 234,209,73,255, 230,196,52,255, 243,215,63,255, 237,206,59,255, 241,206,51,255, 239,213,66,255, 238,215,78,255, 238,211,66,255, 231,196,52,255, 236,197,47,255, 230,194,48,255, 115,182,41,255, 134,198,43,255, 120,182,40,255, 119,177,38,255, 121,184,40,255, 121,185,40,255, 120,183,40,255, 140,205,44,255, 116,184,41,255, 127,197,44,255, 126,193,43,255, 118,185,41,255, 122,189,41,255, 128,191,41,255, 121,189,41,255, 127,190,40,255, 223,133,169,255, 238,171,195,255, 218,133,165,255, 215,139,165,255, 220,136,167,255, 227,149,176,255, 229,153,178,255, 241,165,193,255, 224,136,170,255, 234,147,182,255, 238,190,208,255, 230,149,179,255, 221,131,168,255, 216,127,163,255, 232,149,181,255, 218,130,165,255, 78,81,86,255, 76,80,85,255, 80,86,89,255, 67,70,74,255, 83,91,95,255, 80,83,87,255, 76,78,82,255, 81,85,90,255, 81,89,91,255, 78,82,86,255, 81,85,90,255, 78,82,86,255, 76,78,82,255, 77,81,85,255, 74,77,82,255, 72,74,78,255, 158,158,152,255, 163,163,156,255, 145,145,137,255, 142,142,137,255, 142,142,134,255, 145,145,137,255, 157,157,151,255, 155,155,147,255, 159,159,154,255, 176,176,168,255, 157,157,151,255, 179,179,174,255, 158,158,152,255, 152,152,145,255, 154,154,146,255, 149,149,142,255, 37,140,154,255, 37,142,156,255, 35,147,153,255, 34,152,152,255, 35,142,153,255, 35,149,155,255, 35,140,152,255, 38,162,169,255, 38,170,170,255, 38,169,172,255, 37,142,156,255, 37,154,161,255, 37,145,156,255, 37,163,164,255, 38,164,167,255, 37,140,153,255, 124,51,172,255, 124,51,175,255, 137,59,179,255, 114,47,158,255, 149,69,188,255, 145,63,184,255, 119,48,168,255, 161,73,201,255, 141,59,184,255, 136,57,184,255, 136,58,182,255, 130,55,177,255, 130,55,178,255, 133,57,177,255, 134,58,182,255, 140,61,181,255, 76,78,172,255, 67,72,167,255, 73,76,167,255, 59,62,147,255, 63,65,157,255, 70,73,165,255, 63,65,155,255, 72,74,174,255, 69,70,166,255, 72,76,174,255, 73,77,171,255, 69,73,166,255, 72,74,169,255, 63,66,157,255, 78,83,180,255, 70,72,165,255, 137,93,61,255, 124,83,52,255, 124,82,52,255, 118,81,52,255, 118,81,50,255, 116,80,50,255, 121,82,52,255, 128,85,54,255, 136,93,58,255, 134,90,58,255, 128,86,55,255, 133,90,58,255, 118,80,48,255, 121,81,51,255, 126,85,52,255, 128,86,57,255, 96,118,47,255, 105,131,41,255, 94,116,41,255, 82,100,43,255, 93,114,44,255, 91,110,47,255, 94,115,44,255, 99,120,51,255, 110,137,38,255, 98,118,52,255, 99,120,47,255, 104,128,40,255, 95,115,50,255, 94,114,47,255, 104,128,41,255, 94,114,47,255, 169,54,51,255, 174,57,52,255, 152,47,47,255, 149,47,45,255, 156,48,47,255, 161,50,48,255, 159,50,48,255, 189,63,57,255, 165,52,51,255, 181,59,55,255, 185,62,55,255, 175,58,52,255, 165,52,51,255, 182,63,55,255, 171,55,51,255, 166,52,48,255, 27,28,33,255, 30,31,35,255, 37,37,41,255, 34,34,38,255, 52,52,58,255, 33,33,37,255, 24,25,30,255, 38,38,43,255, 37,37,41,255, 24,25,31,255, 27,28,33,255, 34,35,38,255, 19,22,28,255, 18,21,27,255, 27,28,33,255, 16,19,27,255, 223,226,226,255, 224,226,227,255, 219,220,221,255, 224,226,226,255, 219,222,223,255, 216,219,219,255, 234,235,235,255, 225,227,227,255, 219,221,221,255, 241,241,241,255, 214,216,216,255, 220,222,223,255, 228,229,230,255, 212,215,215,255, 216,218,218,255, 226,228,228,255, 231,133,31,255, 231,138,40,255, 226,130,33,255, 222,125,28,255, 228,130,30,255, 222,122,22,255, 223,122,21,255, 225,122,19,255, 226,134,41,255, 233,140,41,255, 216,124,31,255, 224,127,27,255, 230,130,28,255, 228,147,52,255, 223,126,30,255, 227,127,25,255, 195,83,187,255, 183,70,174,255, 184,74,175,255, 178,69,170,255, 199,91,191,255, 192,83,182,255, 199,94,193,255, 202,95,195,255, 178,70,170,255, 184,70,175,255, 184,85,176,255, 195,89,187,255, 193,78,183,255, 185,80,178,255, 184,74,175,255, 196,85,187,255, 66,174,212,255, 62,164,206,255, 72,180,211,255, 57,155,199,255, 76,184,215,255, 59,161,204,255, 73,179,212,255, 69,176,212,255, 87,191,214,255, 83,193,219,255, 72,172,201,255, 63,165,206,255, 78,190,220,255, 74,180,209,255, 74,181,210,255, 89,199,223,255, 236,201,54,255, 232,198,52,255, 233,206,65,255, 227,191,48,255, 234,196,48,255, 233,206,66,255, 233,198,52,255, 233,193,44,255, 224,184,43,255, 233,193,44,255, 223,198,67,255, 230,192,48,255, 237,199,50,255, 227,191,48,255, 227,191,48,255, 234,196,47,255, 122,189,41,255, 124,188,40,255, 142,199,47,255, 140,198,47,255, 120,186,41,255, 132,194,41,255, 121,186,40,255, 126,190,41,255, 128,188,38,255, 116,183,41,255, 127,184,38,255, 128,191,41,255, 127,193,43,255, 111,175,40,255, 111,176,40,255, 131,195,43,255, 237,169,193,255, 234,170,194,255, 226,145,174,255, 228,156,181,255, 223,133,168,255, 232,165,187,255, 223,136,170,255, 233,156,184,255, 224,148,174,255, 226,139,171,255, 221,159,180,255, 230,156,182,255, 238,176,198,255, 228,171,192,255, 230,178,197,255, 232,153,181,255, 76,77,81,255, 76,80,82,255, 77,81,85,255, 70,74,78,255, 76,78,83,255, 77,81,85,255, 76,81,83,255, 78,81,86,255, 72,76,78,255, 76,78,82,255, 69,72,76,255, 81,87,91,255, 78,82,86,255, 73,76,81,255, 72,76,80,255, 83,91,95,255, 171,171,167,255, 165,165,159,255, 191,190,182,255, 146,146,139,255, 146,146,138,255, 151,152,145,255, 159,159,153,255, 153,153,146,255, 154,154,148,255, 171,171,167,255, 140,140,133,255, 158,158,153,255, 159,159,154,255, 165,165,161,255, 142,142,136,255, 161,162,155,255, 38,164,166,255, 37,138,153,255, 35,138,152,255, 35,140,152,255, 37,140,154,255, 35,156,161,255, 37,154,158,255, 37,148,158,255, 35,139,149,255, 37,140,154,255, 34,138,145,255, 35,141,153,255, 37,146,157,255, 35,136,148,255, 35,153,156,255, 37,144,155,255, 127,54,177,255, 121,50,171,255, 128,52,174,255, 122,51,169,255, 139,59,183,255, 137,58,180,255, 132,55,178,255, 144,62,186,255, 118,48,164,255, 145,63,187,255, 127,54,167,255, 142,62,182,255, 142,61,186,255, 122,50,168,255, 130,54,174,255, 128,54,177,255, 82,89,184,255, 77,81,175,255, 77,81,174,255, 67,70,161,255, 66,67,163,255, 74,78,170,255, 69,73,166,255, 73,77,170,255, 66,69,158,255, 74,77,171,255, 70,74,162,255, 66,67,159,255, 73,77,171,255, 62,65,156,255, 76,81,171,255, 77,81,175,255, 134,91,58,255, 124,82,52,255, 124,82,52,255, 134,91,61,255, 124,82,52,255, 115,78,47,255, 120,81,50,255, 130,87,55,255, 140,96,65,255, 125,85,54,255, 108,74,45,255, 130,87,57,255, 119,81,50,255, 124,82,54,255, 114,78,48,255, 148,104,67,255, 91,111,51,255, 94,115,45,255, 103,126,38,255, 91,111,45,255, 99,122,44,255, 94,113,47,255, 111,139,37,255, 95,115,50,255, 98,121,37,255, 94,114,48,255, 101,127,34,255, 107,133,37,255, 95,115,51,255, 96,119,40,255, 107,134,35,255, 94,116,48,255, 162,51,50,255, 174,57,52,255, 157,48,48,255, 159,51,48,255, 179,58,52,255, 166,52,48,255, 166,52,50,255, 165,52,51,255, 167,55,48,255, 185,63,57,255, 162,52,47,255, 167,54,48,255, 178,58,52,255, 163,51,48,255, 157,50,48,255, 169,54,51,255, 16,19,25,255, 18,18,25,255, 15,16,24,255, 24,24,30,255, 19,22,28,255, 30,30,35,255, 28,30,34,255, 28,30,34,255, 34,35,38,255, 38,40,44,255, 19,19,25,255, 24,25,30,255, 19,22,28,255, 18,19,25,255, 25,27,31,255, 33,34,37,255, 223,225,225,255, 225,227,228,255, 225,227,227,255, 212,215,215,255, 241,243,243,255, 233,234,234,255, 212,214,214,255, 228,230,230,255, 223,225,226,255, 228,230,231,255, 215,218,218,255, 222,223,224,255, 223,225,226,255, 220,223,224,255, 230,231,232,255, 211,213,213,255, 229,136,38,255, 228,126,24,255, 233,177,77,255, 224,140,47,255, 240,138,25,255, 228,132,31,255, 222,128,34,255, 231,130,25,255, 229,134,37,255, 235,136,30,255, 220,122,24,255, 224,122,21,255, 231,136,37,255, 232,139,41,255, 222,124,22,255, 213,115,18,255, 197,91,188,255, 199,90,191,255, 183,73,175,255, 192,93,185,255, 216,103,208,255, 191,80,183,255, 198,99,192,255, 199,87,193,255, 196,87,187,255, 208,98,200,255, 184,76,177,255, 200,94,193,255, 215,118,211,255, 196,89,188,255, 189,81,181,255, 176,69,168,255, 69,174,209,255, 57,157,207,255, 80,189,215,255, 66,169,202,255, 87,205,232,255, 76,183,215,255, 69,171,204,255, 74,185,220,255, 78,187,215,255, 61,168,215,255, 63,167,205,255, 73,180,213,255, 63,168,209,255, 69,175,210,255, 80,189,215,255, 58,157,198,255, 230,196,51,255, 234,193,44,255, 228,189,43,255, 223,189,50,255, 249,228,78,255, 235,206,62,255, 226,195,55,255, 239,202,50,255, 234,206,63,255, 240,201,48,255, 228,191,47,255, 233,194,47,255, 237,215,77,255, 235,209,67,255, 228,187,41,255, 223,186,44,255, 114,179,40,255, 126,191,41,255, 119,183,40,255, 108,169,38,255, 139,207,45,255, 122,188,40,255, 131,190,40,255, 136,199,44,255, 122,187,40,255, 130,196,44,255, 120,183,40,255, 125,190,40,255, 122,187,41,255, 145,202,50,255, 116,181,40,255, 111,175,38,255, 221,136,168,255, 234,161,186,255, 227,147,175,255, 220,144,169,255, 237,147,184,255, 221,133,168,255, 223,147,172,255, 241,195,212,255, 234,163,187,255, 239,162,191,255, 225,144,172,255, 235,190,206,255, 231,153,181,255, 220,131,168,255, 231,158,183,255, 213,128,161,255, 76,78,83,255, 77,80,82,255, 76,80,85,255, 72,76,80,255, 87,93,96,255, 74,77,82,255, 74,78,81,255, 77,80,83,255, 80,85,89,255, 81,87,91,255, 74,78,82,255, 76,80,83,255, 73,76,80,255, 77,80,83,255, 82,89,93,255, 82,90,93,255, 157,157,153,255, 151,151,142,255, 147,147,139,255, 148,148,142,255, 176,176,168,255, 145,145,136,255, 140,140,133,255, 167,167,161,255, 152,152,144,255, 159,159,152,255, 142,144,134,255, 153,153,145,255, 153,153,146,255, 159,159,155,255, 154,154,147,255, 163,163,158,255, 35,146,154,255, 37,141,155,255, 35,151,156,255, 35,140,148,255, 41,180,181,255, 38,164,165,255, 34,130,145,255, 38,153,163,255, 37,153,159,255, 38,158,166,255, 35,156,159,255, 37,144,155,255, 37,146,156,255, 37,155,161,255, 35,138,152,255, 35,146,152,255, 136,58,179,255, 142,61,186,255, 125,51,171,255, 116,47,162,255, 144,59,193,255, 125,51,174,255, 130,54,172,255, 148,65,192,255, 144,63,186,255, 132,55,182,255, 133,57,176,255, 133,55,178,255, 140,59,183,255, 131,55,177,255, 122,50,170,255, 124,51,167,255, 73,77,169,255, 70,73,168,255, 65,66,157,255, 73,77,165,255, 83,87,189,255, 70,73,167,255, 63,65,154,255, 74,77,176,255, 67,70,163,255, 72,74,171,255, 73,74,167,255, 65,66,161,255, 67,70,164,255, 65,67,161,255, 69,70,163,255, 66,67,158,255, 127,86,55,255, 139,95,61,255, 124,83,54,255, 132,90,59,255, 142,96,61,255, 140,96,63,255, 131,89,58,255, 140,96,62,255, 115,78,48,255, 122,81,50,255, 125,83,54,255, 118,80,48,255, 130,86,54,255, 131,87,57,255, 118,80,50,255, 118,80,51,255, 94,115,45,255, 103,127,41,255, 105,128,37,255, 89,109,43,255, 101,121,57,255, 93,111,50,255, 93,115,41,255, 100,122,47,255, 104,131,37,255, 110,136,41,255, 87,107,48,255, 95,115,48,255, 111,140,37,255, 98,121,44,255, 95,116,44,255, 99,122,37,255, 167,54,48,255, 165,52,51,255, 163,51,48,255, 151,48,45,255, 179,58,57,255, 183,62,55,255, 155,48,47,255, 167,52,51,255, 164,51,50,255, 172,55,52,255, 169,55,50,255, 159,50,50,255, 161,50,50,255, 170,55,50,255, 171,57,50,255, 170,57,50,255, 28,30,34,255, 16,19,25,255, 22,24,30,255, 15,18,22,255, 27,28,34,255, 31,33,37,255, 18,21,25,255, 19,22,27,255, 16,18,25,255, 28,30,34,255, 27,28,33,255, 30,30,34,255, 18,19,27,255, 18,18,25,255, 24,25,30,255, 19,21,25,255, 202,208,209,255, 222,227,228,255, 237,239,240,255, 222,227,227,255, 202,208,209,255, 220,225,226,255, 237,239,240,255, 222,227,228,255, 202,208,209,255, 222,227,228,255, 237,239,240,255, 222,227,228,255, 202,208,209,255, 222,227,227,255, 237,239,240,255, 213,218,219,255, 213,102,15,255, 234,112,16,255, 250,118,17,255, 234,112,16,255, 213,102,15,255, 232,111,16,255, 250,118,17,255, 234,112,16,255, 213,102,15,255, 234,112,16,255, 250,118,17,255, 234,112,16,255, 213,102,15,255, 234,112,16,255, 250,118,17,255, 224,107,16,255, 163,57,156,255, 179,62,170,255, 191,65,179,255, 179,62,170,255, 163,57,156,255, 177,61,169,255, 191,65,179,255, 179,62,170,255, 163,57,156,255, 179,62,170,255, 191,65,179,255, 179,62,170,255, 163,57,156,255, 179,62,170,255, 191,65,179,255, 172,59,164,255, 51,160,194,255, 56,175,211,255, 60,184,223,255, 56,175,210,255, 51,160,194,255, 56,173,210,255, 60,184,223,255, 56,175,211,255, 51,160,194,255, 56,175,211,255, 60,184,223,255, 56,175,211,255, 51,160,194,255, 56,175,210,255, 60,184,223,255, 54,168,203,255, 218,177,33,255, 240,193,36,255, 255,203,38,255, 240,193,36,255, 218,177,33,255, 238,191,36,255, 255,203,38,255, 240,193,36,255, 218,177,33,255, 240,193,36,255, 255,203,38,255, 240,193,36,255, 218,177,33,255, 240,193,36,255, 255,203,38,255, 230,185,35,255, 99,167,20,255, 108,182,22,255, 116,192,23,255, 108,182,22,255, 99,167,20,255, 107,180,22,255, 116,192,23,255, 108,182,22,255, 99,167,20,255, 108,182,22,255, 116,192,23,255, 108,182,22,255, 99,167,20,255, 108,182,22,255, 116,192,23,255, 104,175,21,255, 212,124,150,255, 233,136,164,255, 249,143,173,255, 233,136,163,255, 212,124,150,255, 231,135,163,255, 249,143,173,255, 233,136,164,255, 212,124,150,255, 233,136,164,255, 249,143,173,255, 233,136,164,255, 212,124,150,255, 233,136,163,255, 249,143,173,255, 223,130,158,255, 53,58,62,255, 59,64,67,255, 63,67,71,255, 59,64,67,255, 53,58,62,255, 58,63,67,255, 63,67,71,255, 59,64,67,255, 53,58,62,255, 59,64,67,255, 63,67,71,255, 59,64,67,255, 53,58,62,255, 59,64,67,255, 63,67,71,255, 56,61,65,255, 121,124,117,255, 134,136,127,255, 143,143,134,255, 134,136,127,255, 121,124,117,255, 132,135,126,255, 143,143,134,255, 134,136,127,255, 121,124,117,255, 134,136,127,255, 143,143,134,255, 134,136,127,255, 121,124,117,255, 134,136,127,255, 143,143,134,255, 128,130,122,255, 19,119,128,255, 20,130,140,255, 22,137,147,255, 20,130,139,255, 19,119,128,255, 20,129,139,255, 22,137,147,255, 20,130,140,255, 19,119,128,255, 20,130,140,255, 22,137,147,255, 20,130,140,255, 19,119,128,255, 20,130,139,255, 22,137,147,255, 20,125,134,255, 130,94,133,255, 143,103,145,255, 153,108,153,255, 143,103,145,255, 130,94,133,255, 142,102,144,255, 153,108,153,255, 143,103,145,255, 130,94,133,255, 143,103,145,255, 153,108,153,255, 143,103,145,255, 130,94,133,255, 143,103,145,255, 153,108,153,255, 137,99,139,255, 45,47,137,255, 49,51,150,255, 52,54,158,255, 49,51,149,255, 45,47,137,255, 49,51,148,255, 52,54,158,255, 49,51,150,255, 45,47,137,255, 49,51,150,255, 52,54,158,255, 49,51,150,255, 45,47,137,255, 49,51,149,255, 52,54,158,255, 47,49,144,255, 100,63,36,255, 110,69,39,255, 118,73,41,255, 110,69,39,255, 100,63,36,255, 109,68,38,255, 118,73,41,255, 110,69,39,255, 100,63,36,255, 110,69,39,255, 118,73,41,255, 110,69,39,255, 100,63,36,255, 110,69,39,255, 118,73,41,255, 106,66,37,255, 73,97,23,255, 80,105,25,255, 86,111,27,255, 80,105,25,255, 73,97,23,255, 80,105,25,255, 86,111,27,255, 80,105,25,255, 73,97,23,255, 80,105,25,255, 86,111,27,255, 80,105,25,255, 73,97,23,255, 80,105,25,255, 86,111,27,255, 77,101,24,255, 137,33,29,255, 150,36,32,255, 160,38,33,255, 150,36,32,255, 137,33,29,255, 149,36,31,255, 160,38,33,255, 150,36,32,255, 137,33,29,255, 150,36,32,255, 160,38,33,255, 150,36,32,255, 137,33,29,255, 150,36,32,255, 160,38,33,255, 144,35,30,255, 27,27,31,255, 30,30,33,255, 32,31,35,255, 30,30,33,255, 27,27,31,255, 30,30,33,255, 32,31,35,255, 30,30,33,255, 27,27,31,255, 30,30,33,255, 32,31,35,255, 30,30,33,255, 27,27,31,255, 30,30,33,255, 32,31,35,255, 29,29,32,255, 222,227,228,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 186,192,193,255, 213,218,219,255, 182,188,189,255, 234,112,16,255, 200,96,14,255, 224,107,16,255, 200,96,14,255, 224,107,16,255, 200,96,14,255, 224,107,16,255, 200,96,14,255, 224,107,16,255, 200,96,14,255, 224,107,16,255, 200,96,14,255, 224,107,16,255, 196,94,14,255, 224,107,16,255, 191,92,14,255, 179,62,170,255, 153,53,147,255, 172,59,164,255, 153,53,147,255, 172,59,164,255, 153,53,147,255, 172,59,164,255, 153,53,147,255, 172,59,164,255, 153,53,147,255, 172,59,164,255, 153,53,147,255, 172,59,164,255, 150,52,144,255, 172,59,164,255, 147,51,141,255, 56,175,211,255, 48,151,183,255, 54,168,203,255, 48,151,183,255, 54,168,203,255, 48,151,183,255, 54,168,203,255, 48,151,183,255, 54,168,203,255, 48,151,183,255, 54,168,203,255, 48,151,183,255, 54,168,203,255, 47,148,179,255, 54,168,203,255, 46,145,175,255, 240,193,36,255, 205,166,31,255, 230,185,35,255, 205,166,31,255, 230,185,35,255, 205,166,31,255, 230,185,35,255, 205,166,31,255, 230,185,35,255, 205,166,31,255, 230,185,35,255, 205,166,31,255, 230,185,35,255, 201,163,31,255, 230,185,35,255, 196,159,30,255, 108,182,22,255, 93,157,19,255, 104,175,21,255, 93,157,19,255, 104,175,21,255, 93,157,19,255, 104,175,21,255, 93,157,19,255, 104,175,21,255, 93,157,19,255, 104,175,21,255, 93,157,19,255, 104,175,21,255, 91,154,18,255, 104,175,21,255, 89,151,18,255, 233,136,164,255, 199,117,142,255, 223,130,158,255, 199,117,142,255, 223,130,158,255, 199,117,142,255, 223,130,158,255, 199,117,142,255, 223,130,158,255, 199,117,142,255, 223,130,158,255, 199,117,142,255, 223,130,158,255, 195,115,139,255, 223,130,158,255, 191,112,136,255, 59,64,67,255, 50,55,58,255, 56,61,65,255, 50,55,58,255, 56,61,65,255, 50,55,58,255, 56,61,65,255, 50,55,58,255, 56,61,65,255, 50,55,58,255, 56,61,65,255, 50,55,58,255, 56,61,65,255, 49,54,57,255, 56,61,65,255, 48,53,56,255, 134,136,127,255, 114,117,110,255, 128,130,122,255, 114,117,110,255, 128,130,122,255, 114,117,110,255, 128,130,122,255, 114,117,110,255, 128,130,122,255, 114,117,110,255, 128,130,122,255, 114,117,110,255, 128,130,122,255, 112,115,108,255, 128,130,122,255, 109,112,105,255, 20,130,140,255, 17,112,121,255, 20,125,134,255, 17,112,121,255, 20,125,134,255, 17,112,121,255, 20,125,134,255, 17,112,121,255, 20,125,134,255, 17,112,121,255, 20,125,134,255, 17,112,121,255, 20,125,134,255, 17,110,118,255, 20,125,134,255, 17,108,116,255, 143,103,145,255, 122,89,125,255, 137,99,139,255, 122,89,125,255, 137,99,139,255, 122,89,125,255, 137,99,139,255, 122,89,125,255, 137,99,139,255, 122,89,125,255, 137,99,139,255, 122,89,125,255, 137,99,139,255, 120,87,123,255, 137,99,139,255, 117,85,120,255, 49,51,150,255, 42,44,129,255, 47,49,144,255, 42,44,129,255, 47,49,144,255, 42,44,129,255, 47,49,144,255, 42,44,129,255, 47,49,144,255, 42,44,129,255, 47,49,144,255, 42,44,129,255, 47,49,144,255, 41,43,127,255, 47,49,144,255, 40,42,124,255, 110,69,39,255, 94,59,33,255, 106,66,37,255, 94,59,33,255, 106,66,37,255, 94,59,33,255, 106,66,37,255, 94,59,33,255, 106,66,37,255, 94,59,33,255, 106,66,37,255, 94,59,33,255, 106,66,37,255, 92,58,33,255, 106,66,37,255, 90,57,32,255, 80,105,25,255, 69,91,22,255, 77,101,24,255, 69,91,22,255, 77,101,24,255, 69,91,22,255, 77,101,24,255, 69,91,22,255, 77,101,24,255, 69,91,22,255, 77,101,24,255, 69,91,22,255, 77,101,24,255, 67,89,21,255, 77,101,24,255, 66,87,21,255, 150,36,32,255, 128,31,27,255, 144,35,30,255, 128,31,27,255, 144,35,30,255, 128,31,27,255, 144,35,30,255, 128,31,27,255, 144,35,30,255, 128,31,27,255, 144,35,30,255, 128,31,27,255, 144,35,30,255, 126,30,27,255, 144,35,30,255, 123,30,26,255, 30,30,33,255, 26,26,29,255, 29,29,32,255, 26,26,29,255, 29,29,32,255, 26,26,29,255, 29,29,32,255, 26,26,29,255, 29,29,32,255, 26,26,29,255, 29,29,32,255, 26,26,29,255, 29,29,32,255, 25,25,28,255, 29,29,32,255, 24,25,28,255, 237,239,240,255, 213,218,219,255, 187,193,194,255, 212,217,218,255, 228,233,233,255, 212,217,218,255, 187,193,194,255, 213,218,219,255, 230,234,234,255, 213,218,219,255, 190,196,197,255, 212,217,218,255, 230,234,234,255, 213,218,219,255, 190,196,197,255, 202,208,209,255, 250,118,17,255, 224,107,16,255, 197,95,14,255, 223,107,16,255, 240,115,17,255, 223,107,16,255, 197,95,14,255, 224,107,16,255, 242,115,17,255, 224,107,16,255, 200,96,14,255, 223,107,16,255, 242,115,17,255, 224,107,16,255, 200,96,14,255, 213,102,15,255, 191,65,179,255, 172,59,164,255, 151,52,145,255, 171,59,163,255, 184,63,174,255, 171,59,163,255, 151,52,145,255, 172,59,164,255, 185,64,175,255, 172,59,164,255, 153,53,147,255, 171,59,163,255, 185,64,175,255, 172,59,164,255, 153,53,147,255, 163,57,156,255, 60,184,223,255, 54,168,203,255, 47,149,180,255, 54,167,202,255, 58,180,216,255, 54,167,202,255, 47,149,180,255, 54,168,203,255, 58,180,217,255, 54,168,203,255, 48,151,183,255, 54,167,202,255, 58,180,217,255, 54,168,203,255, 48,151,183,255, 51,160,194,255, 255,203,38,255, 230,185,35,255, 202,164,31,255, 229,184,35,255, 246,198,37,255, 229,184,35,255, 202,164,31,255, 230,185,35,255, 248,199,37,255, 230,185,35,255, 205,166,31,255, 229,184,35,255, 248,199,37,255, 230,185,35,255, 205,166,31,255, 218,177,33,255, 116,192,23,255, 104,175,21,255, 91,155,19,255, 103,174,21,255, 111,187,22,255, 103,174,21,255, 91,155,19,255, 104,175,21,255, 112,188,22,255, 104,175,21,255, 93,157,19,255, 103,174,21,255, 112,188,22,255, 104,175,21,255, 93,157,19,255, 99,167,20,255, 249,143,173,255, 223,130,158,255, 196,115,139,255, 222,130,157,255, 239,139,168,255, 222,130,157,255, 196,115,139,255, 223,130,158,255, 241,140,168,255, 223,130,158,255, 199,117,142,255, 222,130,157,255, 241,140,168,255, 223,130,158,255, 199,117,142,255, 212,124,150,255, 63,67,71,255, 56,61,65,255, 49,54,57,255, 56,61,64,255, 60,65,69,255, 56,61,64,255, 49,54,57,255, 56,61,65,255, 61,66,69,255, 56,61,65,255, 50,55,58,255, 56,61,64,255, 61,66,69,255, 56,61,65,255, 50,55,58,255, 53,58,62,255, 143,143,134,255, 128,130,122,255, 112,115,108,255, 128,130,122,255, 137,139,130,255, 128,130,122,255, 112,115,108,255, 128,130,122,255, 138,140,131,255, 128,130,122,255, 114,117,110,255, 128,130,122,255, 138,140,131,255, 128,130,122,255, 114,117,110,255, 121,124,117,255, 22,137,147,255, 20,125,134,255, 17,111,119,255, 19,125,134,255, 21,134,143,255, 19,125,134,255, 17,111,119,255, 20,125,134,255, 21,134,144,255, 20,125,134,255, 17,112,121,255, 19,125,134,255, 21,134,144,255, 20,125,134,255, 17,112,121,255, 19,119,128,255, 153,108,153,255, 137,99,139,255, 121,87,124,255, 137,98,139,255, 147,105,148,255, 137,98,139,255, 121,87,124,255, 137,99,139,255, 148,106,149,255, 137,99,139,255, 122,89,125,255, 137,98,139,255, 148,106,149,255, 137,99,139,255, 122,89,125,255, 130,94,133,255, 52,54,158,255, 47,49,144,255, 41,43,127,255, 47,49,143,255, 50,52,153,255, 47,49,143,255, 41,43,127,255, 47,49,144,255, 51,53,154,255, 47,49,144,255, 42,44,129,255, 47,49,143,255, 51,53,154,255, 47,49,144,255, 42,44,129,255, 45,47,137,255, 118,73,41,255, 106,66,37,255, 93,59,33,255, 105,66,37,255, 113,71,40,255, 105,66,37,255, 93,59,33,255, 106,66,37,255, 114,71,40,255, 106,66,37,255, 94,59,33,255, 105,66,37,255, 114,71,40,255, 106,66,37,255, 94,59,33,255, 100,63,36,255, 86,111,27,255, 77,101,24,255, 68,90,22,255, 77,101,24,255, 83,108,26,255, 77,101,24,255, 68,90,22,255, 77,101,24,255, 83,109,26,255, 77,101,24,255, 69,91,22,255, 77,101,24,255, 83,109,26,255, 77,101,24,255, 69,91,22,255, 73,97,23,255, 160,38,33,255, 144,35,30,255, 126,31,27,255, 143,34,30,255, 154,37,32,255, 143,34,30,255, 126,31,27,255, 144,35,30,255, 156,37,33,255, 144,35,30,255, 128,31,27,255, 143,34,30,255, 156,37,33,255, 144,35,30,255, 128,31,27,255, 137,33,29,255, 32,31,35,255, 29,29,32,255, 25,25,28,255, 29,28,32,255, 31,31,34,255, 29,28,32,255, 25,25,28,255, 29,29,32,255, 31,31,34,255, 29,29,32,255, 26,26,29,255, 29,28,32,255, 31,31,34,255, 29,29,32,255, 26,26,29,255, 27,27,31,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 226,231,231,255, 228,233,233,255, 228,233,233,255, 226,231,231,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 213,218,219,255, 182,188,189,255, 234,112,16,255, 200,96,14,255, 224,107,16,255, 238,114,17,255, 240,115,17,255, 240,115,17,255, 238,114,17,255, 242,115,17,255, 238,114,17,255, 242,115,17,255, 238,114,17,255, 242,115,17,255, 242,115,17,255, 240,115,17,255, 224,107,16,255, 191,92,14,255, 179,62,170,255, 153,53,147,255, 172,59,164,255, 182,63,173,255, 184,63,174,255, 184,63,174,255, 182,63,173,255, 185,64,175,255, 182,63,173,255, 185,64,175,255, 182,63,173,255, 185,64,175,255, 185,64,175,255, 184,63,174,255, 172,59,164,255, 147,51,141,255, 56,175,210,255, 48,151,183,255, 54,168,203,255, 57,178,214,255, 58,180,216,255, 58,180,216,255, 57,178,214,255, 58,180,217,255, 57,178,214,255, 58,180,217,255, 57,178,214,255, 58,180,217,255, 58,180,217,255, 58,180,216,255, 54,168,203,255, 46,145,175,255, 240,193,36,255, 205,166,31,255, 230,185,35,255, 244,196,37,255, 246,198,37,255, 246,198,37,255, 244,196,37,255, 248,199,37,255, 244,196,37,255, 248,199,37,255, 244,196,37,255, 248,199,37,255, 248,199,37,255, 246,198,37,255, 230,185,35,255, 196,159,30,255, 108,182,22,255, 93,157,19,255, 104,175,21,255, 110,185,22,255, 111,187,22,255, 111,187,22,255, 110,185,22,255, 112,188,22,255, 110,185,22,255, 112,188,22,255, 110,185,22,255, 112,188,22,255, 112,188,22,255, 111,187,22,255, 104,175,21,255, 89,151,18,255, 233,136,163,255, 199,117,142,255, 223,130,158,255, 237,138,166,255, 239,139,168,255, 239,139,168,255, 237,138,166,255, 241,140,168,255, 237,138,166,255, 241,140,168,255, 237,138,166,255, 241,140,168,255, 241,140,168,255, 239,139,168,255, 223,130,158,255, 191,112,136,255, 59,64,67,255, 50,55,58,255, 56,61,65,255, 60,65,68,255, 60,65,69,255, 60,65,69,255, 60,65,68,255, 61,66,69,255, 60,65,68,255, 61,66,69,255, 60,65,68,255, 61,66,69,255, 61,66,69,255, 60,65,69,255, 56,61,65,255, 48,53,56,255, 134,136,127,255, 114,117,110,255, 128,130,122,255, 136,138,129,255, 137,139,130,255, 137,139,130,255, 136,138,129,255, 138,140,131,255, 136,138,129,255, 138,140,131,255, 136,138,129,255, 138,140,131,255, 138,140,131,255, 137,139,130,255, 128,130,122,255, 109,112,105,255, 20,130,139,255, 17,112,121,255, 20,125,134,255, 21,133,142,255, 21,134,143,255, 21,134,143,255, 21,133,142,255, 21,134,144,255, 21,133,142,255, 21,134,144,255, 21,133,142,255, 21,134,144,255, 21,134,144,255, 21,134,143,255, 20,125,134,255, 17,108,116,255, 143,103,145,255, 122,89,125,255, 137,99,139,255, 146,105,147,255, 147,105,148,255, 147,105,148,255, 146,105,147,255, 148,106,149,255, 146,105,147,255, 148,106,149,255, 146,105,147,255, 148,106,149,255, 148,106,149,255, 147,105,148,255, 137,99,139,255, 117,85,120,255, 49,51,149,255, 42,44,129,255, 47,49,144,255, 50,52,152,255, 50,52,153,255, 50,52,153,255, 50,52,152,255, 51,53,154,255, 50,52,152,255, 51,53,154,255, 50,52,152,255, 51,53,154,255, 51,53,154,255, 50,52,153,255, 47,49,144,255, 40,42,124,255, 110,69,39,255, 94,59,33,255, 106,66,37,255, 112,70,39,255, 113,71,40,255, 113,71,40,255, 112,70,39,255, 114,71,40,255, 112,70,39,255, 114,71,40,255, 112,70,39,255, 114,71,40,255, 114,71,40,255, 113,71,40,255, 106,66,37,255, 90,57,32,255, 80,105,25,255, 69,91,22,255, 77,101,24,255, 82,107,26,255, 83,108,26,255, 83,108,26,255, 82,107,26,255, 83,109,26,255, 82,107,26,255, 83,109,26,255, 82,107,26,255, 83,109,26,255, 83,109,26,255, 83,108,26,255, 77,101,24,255, 66,87,21,255, 150,36,32,255, 128,31,27,255, 144,35,30,255, 153,37,32,255, 154,37,32,255, 154,37,32,255, 153,37,32,255, 156,37,33,255, 153,37,32,255, 156,37,33,255, 153,37,32,255, 156,37,33,255, 156,37,33,255, 154,37,32,255, 144,35,30,255, 123,30,26,255, 30,30,33,255, 26,26,29,255, 29,29,32,255, 31,30,34,255, 31,31,34,255, 31,31,34,255, 31,30,34,255, 31,31,34,255, 31,30,34,255, 31,31,34,255, 31,30,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 29,29,32,255, 24,25,28,255, 202,208,209,255, 212,217,218,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 190,196,197,255, 197,204,205,255, 213,102,15,255, 223,107,16,255, 242,115,17,255, 240,115,17,255, 242,115,17,255, 238,114,17,255, 242,115,17,255, 242,115,17,255, 242,115,17,255, 240,115,17,255, 242,115,17,255, 240,115,17,255, 240,115,17,255, 224,107,16,255, 200,96,14,255, 207,100,15,255, 163,57,156,255, 171,59,163,255, 185,64,175,255, 184,63,174,255, 185,64,175,255, 182,63,173,255, 185,64,175,255, 185,64,175,255, 185,64,175,255, 184,63,174,255, 185,64,175,255, 184,63,174,255, 184,63,174,255, 172,59,164,255, 153,53,147,255, 159,56,153,255, 51,160,194,255, 54,167,202,255, 58,180,217,255, 58,180,216,255, 58,180,217,255, 57,178,214,255, 58,180,217,255, 58,180,217,255, 58,180,217,255, 58,180,216,255, 58,180,217,255, 58,180,216,255, 58,180,216,255, 54,168,203,255, 48,151,183,255, 50,157,190,255, 218,177,33,255, 229,184,35,255, 248,199,37,255, 246,198,37,255, 248,199,37,255, 244,196,37,255, 248,199,37,255, 248,199,37,255, 248,199,37,255, 246,198,37,255, 248,199,37,255, 246,198,37,255, 246,198,37,255, 230,185,35,255, 205,166,31,255, 213,173,32,255, 99,167,20,255, 103,174,21,255, 112,188,22,255, 111,187,22,255, 112,188,22,255, 110,185,22,255, 112,188,22,255, 112,188,22,255, 112,188,22,255, 111,187,22,255, 112,188,22,255, 111,187,22,255, 111,187,22,255, 104,175,21,255, 93,157,19,255, 96,164,20,255, 212,124,150,255, 222,130,157,255, 241,140,168,255, 239,139,168,255, 241,140,168,255, 237,138,166,255, 241,140,168,255, 241,140,168,255, 241,140,168,255, 239,139,168,255, 241,140,168,255, 239,139,168,255, 239,139,168,255, 223,130,158,255, 199,117,142,255, 207,122,147,255, 53,58,62,255, 56,61,64,255, 61,66,69,255, 60,65,69,255, 61,66,69,255, 60,65,68,255, 61,66,69,255, 61,66,69,255, 61,66,69,255, 60,65,69,255, 61,66,69,255, 60,65,69,255, 60,65,69,255, 56,61,65,255, 50,55,58,255, 52,57,61,255, 121,124,117,255, 128,130,122,255, 138,140,131,255, 137,139,130,255, 138,140,131,255, 136,138,129,255, 138,140,131,255, 138,140,131,255, 138,140,131,255, 137,139,130,255, 138,140,131,255, 137,139,130,255, 137,139,130,255, 128,130,122,255, 114,117,110,255, 118,122,114,255, 19,119,128,255, 19,125,134,255, 21,134,144,255, 21,134,143,255, 21,134,144,255, 21,133,142,255, 21,134,144,255, 21,134,144,255, 21,134,144,255, 21,134,143,255, 21,134,144,255, 21,134,143,255, 21,134,143,255, 20,125,134,255, 17,112,121,255, 18,117,126,255, 130,94,133,255, 137,98,139,255, 148,106,149,255, 147,105,148,255, 148,106,149,255, 146,105,147,255, 148,106,149,255, 148,106,149,255, 148,106,149,255, 147,105,148,255, 148,106,149,255, 147,105,148,255, 147,105,148,255, 137,99,139,255, 122,89,125,255, 127,92,131,255, 45,47,137,255, 47,49,143,255, 51,53,154,255, 50,52,153,255, 51,53,154,255, 50,52,152,255, 51,53,154,255, 51,53,154,255, 51,53,154,255, 50,52,153,255, 51,53,154,255, 50,52,153,255, 50,52,153,255, 47,49,144,255, 42,44,129,255, 44,46,135,255, 100,63,36,255, 105,66,37,255, 114,71,40,255, 113,71,40,255, 114,71,40,255, 112,70,39,255, 114,71,40,255, 114,71,40,255, 114,71,40,255, 113,71,40,255, 114,71,40,255, 113,71,40,255, 113,71,40,255, 106,66,37,255, 94,59,33,255, 98,62,35,255, 73,97,23,255, 77,101,24,255, 83,109,26,255, 83,108,26,255, 83,109,26,255, 82,107,26,255, 83,109,26,255, 83,109,26,255, 83,109,26,255, 83,108,26,255, 83,109,26,255, 83,108,26,255, 83,108,26,255, 77,101,24,255, 69,91,22,255, 71,95,23,255, 137,33,29,255, 143,34,30,255, 156,37,33,255, 154,37,32,255, 156,37,33,255, 153,37,32,255, 156,37,33,255, 156,37,33,255, 156,37,33,255, 154,37,32,255, 156,37,33,255, 154,37,32,255, 154,37,32,255, 144,35,30,255, 128,31,27,255, 133,32,28,255, 27,27,31,255, 29,28,32,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,30,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 29,29,32,255, 26,26,29,255, 27,27,30,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 232,235,236,255, 226,231,231,255, 230,234,234,255, 190,196,197,255, 213,218,219,255, 220,225,226,255, 234,112,16,255, 200,96,14,255, 224,107,16,255, 242,115,17,255, 238,114,17,255, 242,115,17,255, 242,115,17,255, 242,115,17,255, 242,115,17,255, 240,115,17,255, 244,116,17,255, 238,114,17,255, 242,115,17,255, 200,96,14,255, 224,107,16,255, 232,111,16,255, 179,62,170,255, 153,53,147,255, 172,59,164,255, 185,64,175,255, 182,63,173,255, 185,64,175,255, 185,64,175,255, 185,64,175,255, 185,64,175,255, 184,63,174,255, 187,64,176,255, 182,63,173,255, 185,64,175,255, 153,53,147,255, 172,59,164,255, 177,61,169,255, 56,175,210,255, 48,151,183,255, 54,168,203,255, 58,180,217,255, 57,178,214,255, 58,180,217,255, 58,180,217,255, 58,180,217,255, 58,180,217,255, 58,180,216,255, 59,181,219,255, 57,178,214,255, 58,180,217,255, 48,151,183,255, 54,168,203,255, 56,173,210,255, 240,193,36,255, 205,166,31,255, 230,185,35,255, 248,199,37,255, 244,196,37,255, 248,199,37,255, 248,199,37,255, 248,199,37,255, 248,199,37,255, 246,198,37,255, 251,199,37,255, 244,196,37,255, 248,199,37,255, 205,166,31,255, 230,185,35,255, 238,191,36,255, 108,182,22,255, 93,157,19,255, 104,175,21,255, 112,188,22,255, 110,185,22,255, 112,188,22,255, 112,188,22,255, 112,188,22,255, 112,188,22,255, 111,187,22,255, 113,188,23,255, 110,185,22,255, 112,188,22,255, 93,157,19,255, 104,175,21,255, 107,180,22,255, 233,136,163,255, 199,117,142,255, 223,130,158,255, 241,140,168,255, 237,138,166,255, 241,140,168,255, 241,140,168,255, 241,140,168,255, 241,140,168,255, 239,139,168,255, 243,141,170,255, 237,138,166,255, 241,140,168,255, 199,117,142,255, 223,130,158,255, 231,135,163,255, 59,64,67,255, 50,55,58,255, 56,61,65,255, 61,66,69,255, 60,65,68,255, 61,66,69,255, 61,66,69,255, 61,66,69,255, 61,66,69,255, 60,65,69,255, 61,66,70,255, 60,65,68,255, 61,66,69,255, 50,55,58,255, 56,61,65,255, 58,63,67,255, 134,136,127,255, 114,117,110,255, 128,130,122,255, 138,140,131,255, 136,138,129,255, 138,140,131,255, 138,140,131,255, 138,140,131,255, 138,140,131,255, 137,139,130,255, 140,141,132,255, 136,138,129,255, 138,140,131,255, 114,117,110,255, 128,130,122,255, 132,135,126,255, 20,130,139,255, 17,112,121,255, 20,125,134,255, 21,134,144,255, 21,133,142,255, 21,134,144,255, 21,134,144,255, 21,134,144,255, 21,134,144,255, 21,134,143,255, 21,135,145,255, 21,133,142,255, 21,134,144,255, 17,112,121,255, 20,125,134,255, 20,129,139,255, 143,103,145,255, 122,89,125,255, 137,99,139,255, 148,106,149,255, 146,105,147,255, 148,106,149,255, 148,106,149,255, 148,106,149,255, 148,106,149,255, 147,105,148,255, 150,106,150,255, 146,105,147,255, 148,106,149,255, 122,89,125,255, 137,99,139,255, 142,102,144,255, 49,51,149,255, 42,44,129,255, 47,49,144,255, 51,53,154,255, 50,52,152,255, 51,53,154,255, 51,53,154,255, 51,53,154,255, 51,53,154,255, 50,52,153,255, 51,53,155,255, 50,52,152,255, 51,53,154,255, 42,44,129,255, 47,49,144,255, 49,51,148,255, 110,69,39,255, 94,59,33,255, 106,66,37,255, 114,71,40,255, 112,70,39,255, 114,71,40,255, 114,71,40,255, 114,71,40,255, 114,71,40,255, 113,71,40,255, 115,71,40,255, 112,70,39,255, 114,71,40,255, 94,59,33,255, 106,66,37,255, 109,68,38,255, 80,105,25,255, 69,91,22,255, 77,101,24,255, 83,109,26,255, 82,107,26,255, 83,109,26,255, 83,109,26,255, 83,109,26,255, 83,109,26,255, 83,108,26,255, 84,109,26,255, 82,107,26,255, 83,109,26,255, 69,91,22,255, 77,101,24,255, 80,105,25,255, 150,36,32,255, 128,31,27,255, 144,35,30,255, 156,37,33,255, 153,37,32,255, 156,37,33,255, 156,37,33,255, 156,37,33,255, 156,37,33,255, 154,37,32,255, 157,37,33,255, 153,37,32,255, 156,37,33,255, 128,31,27,255, 144,35,30,255, 149,36,31,255, 30,30,33,255, 26,26,29,255, 29,29,32,255, 31,31,34,255, 31,30,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,35,255, 31,30,34,255, 31,31,34,255, 26,26,29,255, 29,29,32,255, 30,30,33,255, 237,239,240,255, 213,218,219,255, 190,196,197,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 232,235,236,255, 228,233,233,255, 232,235,236,255, 228,233,233,255, 228,233,233,255, 230,234,234,255, 213,218,219,255, 190,196,197,255, 201,207,208,255, 250,118,17,255, 224,107,16,255, 200,96,14,255, 242,115,17,255, 242,115,17,255, 242,115,17,255, 242,115,17,255, 244,116,17,255, 240,115,17,255, 244,116,17,255, 240,115,17,255, 240,115,17,255, 242,115,17,255, 224,107,16,255, 200,96,14,255, 212,102,15,255, 191,65,179,255, 172,59,164,255, 153,53,147,255, 185,64,175,255, 185,64,175,255, 185,64,175,255, 185,64,175,255, 187,64,176,255, 184,63,174,255, 187,64,176,255, 184,63,174,255, 184,63,174,255, 185,64,175,255, 172,59,164,255, 153,53,147,255, 162,56,155,255, 60,184,223,255, 54,168,203,255, 48,151,183,255, 58,180,217,255, 58,180,217,255, 58,180,217,255, 58,180,217,255, 59,181,219,255, 58,180,216,255, 59,181,219,255, 58,180,216,255, 58,180,216,255, 58,180,217,255, 54,168,203,255, 48,151,183,255, 51,159,193,255, 255,203,38,255, 230,185,35,255, 205,166,31,255, 248,199,37,255, 248,199,37,255, 248,199,37,255, 248,199,37,255, 251,199,37,255, 246,198,37,255, 251,199,37,255, 246,198,37,255, 246,198,37,255, 248,199,37,255, 230,185,35,255, 205,166,31,255, 217,176,33,255, 116,192,23,255, 104,175,21,255, 93,157,19,255, 112,188,22,255, 112,188,22,255, 112,188,22,255, 112,188,22,255, 113,188,23,255, 111,187,22,255, 113,188,23,255, 111,187,22,255, 111,187,22,255, 112,188,22,255, 104,175,21,255, 93,157,19,255, 98,166,20,255, 249,143,173,255, 223,130,158,255, 199,117,142,255, 241,140,168,255, 241,140,168,255, 241,140,168,255, 241,140,168,255, 243,141,170,255, 239,139,168,255, 243,141,170,255, 239,139,168,255, 239,139,168,255, 241,140,168,255, 223,130,158,255, 199,117,142,255, 211,124,150,255, 63,67,71,255, 56,61,65,255, 50,55,58,255, 61,66,69,255, 61,66,69,255, 61,66,69,255, 61,66,69,255, 61,66,70,255, 60,65,69,255, 61,66,70,255, 60,65,69,255, 60,65,69,255, 61,66,69,255, 56,61,65,255, 50,55,58,255, 53,58,61,255, 143,143,134,255, 128,130,122,255, 114,117,110,255, 138,140,131,255, 138,140,131,255, 138,140,131,255, 138,140,131,255, 140,141,132,255, 137,139,130,255, 140,141,132,255, 137,139,130,255, 137,139,130,255, 138,140,131,255, 128,130,122,255, 114,117,110,255, 121,124,116,255, 22,137,147,255, 20,125,134,255, 17,112,121,255, 21,134,144,255, 21,134,144,255, 21,134,144,255, 21,134,144,255, 21,135,145,255, 21,134,143,255, 21,135,145,255, 21,134,143,255, 21,134,143,255, 21,134,144,255, 20,125,134,255, 17,112,121,255, 18,119,128,255, 153,108,153,255, 137,99,139,255, 122,89,125,255, 148,106,149,255, 148,106,149,255, 148,106,149,255, 148,106,149,255, 150,106,150,255, 147,105,148,255, 150,106,150,255, 147,105,148,255, 147,105,148,255, 148,106,149,255, 137,99,139,255, 122,89,125,255, 130,94,132,255, 52,54,158,255, 47,49,144,255, 42,44,129,255, 51,53,154,255, 51,53,154,255, 51,53,154,255, 51,53,154,255, 51,53,155,255, 50,52,153,255, 51,53,155,255, 50,52,153,255, 50,52,153,255, 51,53,154,255, 47,49,144,255, 42,44,129,255, 44,47,137,255, 118,73,41,255, 106,66,37,255, 94,59,33,255, 114,71,40,255, 114,71,40,255, 114,71,40,255, 114,71,40,255, 115,71,40,255, 113,71,40,255, 115,71,40,255, 113,71,40,255, 113,71,40,255, 114,71,40,255, 106,66,37,255, 94,59,33,255, 100,63,35,255, 86,111,27,255, 77,101,24,255, 69,91,22,255, 83,109,26,255, 83,109,26,255, 83,109,26,255, 83,109,26,255, 84,109,26,255, 83,108,26,255, 84,109,26,255, 83,108,26,255, 83,108,26,255, 83,109,26,255, 77,101,24,255, 69,91,22,255, 73,96,23,255, 160,38,33,255, 144,35,30,255, 128,31,27,255, 156,37,33,255, 156,37,33,255, 156,37,33,255, 156,37,33,255, 157,37,33,255, 154,37,32,255, 157,37,33,255, 154,37,32,255, 154,37,32,255, 156,37,33,255, 144,35,30,255, 128,31,27,255, 136,33,29,255, 32,31,35,255, 29,29,32,255, 26,26,29,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 31,31,35,255, 31,31,34,255, 31,31,35,255, 31,31,34,255, 31,31,34,255, 31,31,34,255, 29,29,32,255, 26,26,29,255, 27,27,30,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 220,225,226,255, 218,223,224,255, 220,225,226,255, 220,225,226,255, 220,225,226,255, 218,223,224,255, 220,225,226,255, 220,225,226,255, 220,225,226,255, 230,234,234,255, 230,234,234,255, 213,218,219,255, 182,188,189,255, 234,112,16,255, 200,96,14,255, 224,107,16,255, 232,111,16,255, 229,110,16,255, 232,111,16,255, 232,111,16,255, 232,111,16,255, 229,110,16,255, 232,111,16,255, 232,111,16,255, 232,111,16,255, 242,115,17,255, 242,115,17,255, 224,107,16,255, 191,92,14,255, 179,62,170,255, 153,53,147,255, 172,59,164,255, 177,61,169,255, 176,61,167,255, 177,61,169,255, 177,61,169,255, 177,61,169,255, 176,61,167,255, 177,61,169,255, 177,61,169,255, 177,61,169,255, 185,64,175,255, 185,64,175,255, 172,59,164,255, 147,51,141,255, 56,175,210,255, 48,151,183,255, 54,168,203,255, 56,173,210,255, 55,172,208,255, 56,173,210,255, 56,173,210,255, 56,173,210,255, 55,172,208,255, 56,173,210,255, 56,173,210,255, 56,173,210,255, 58,180,217,255, 58,180,217,255, 54,168,203,255, 46,145,175,255, 240,193,36,255, 205,166,31,255, 230,185,35,255, 238,191,36,255, 235,189,36,255, 238,191,36,255, 238,191,36,255, 238,191,36,255, 235,189,36,255, 238,191,36,255, 238,191,36,255, 238,191,36,255, 248,199,37,255, 248,199,37,255, 230,185,35,255, 196,159,30,255, 108,182,22,255, 93,157,19,255, 104,175,21,255, 107,180,22,255, 106,179,21,255, 107,180,22,255, 107,180,22,255, 107,180,22,255, 106,179,21,255, 107,180,22,255, 107,180,22,255, 107,180,22,255, 112,188,22,255, 112,188,22,255, 104,175,21,255, 89,151,18,255, 233,136,163,255, 199,117,142,255, 223,130,158,255, 231,135,163,255, 229,133,161,255, 231,135,163,255, 231,135,163,255, 231,135,163,255, 229,133,161,255, 231,135,163,255, 231,135,163,255, 231,135,163,255, 241,140,168,255, 241,140,168,255, 223,130,158,255, 191,112,136,255, 59,64,67,255, 50,55,58,255, 56,61,65,255, 58,63,67,255, 58,62,66,255, 58,63,67,255, 58,63,67,255, 58,63,67,255, 58,62,66,255, 58,63,67,255, 58,63,67,255, 58,63,67,255, 61,66,69,255, 61,66,69,255, 56,61,65,255, 48,53,56,255, 134,136,127,255, 114,117,110,255, 128,130,122,255, 132,135,126,255, 131,133,125,255, 132,135,126,255, 132,135,126,255, 132,135,126,255, 131,133,125,255, 132,135,126,255, 132,135,126,255, 132,135,126,255, 138,140,131,255, 138,140,131,255, 128,130,122,255, 109,112,105,255, 20,130,139,255, 17,112,121,255, 20,125,134,255, 20,129,139,255, 20,128,137,255, 20,129,139,255, 20,129,139,255, 20,129,139,255, 20,128,137,255, 20,129,139,255, 20,129,139,255, 20,129,139,255, 21,134,144,255, 21,134,144,255, 20,125,134,255, 17,108,116,255, 143,103,145,255, 122,89,125,255, 137,99,139,255, 142,102,144,255, 141,101,143,255, 142,102,144,255, 142,102,144,255, 142,102,144,255, 141,101,143,255, 142,102,144,255, 142,102,144,255, 142,102,144,255, 148,106,149,255, 148,106,149,255, 137,99,139,255, 117,85,120,255, 49,51,149,255, 42,44,129,255, 47,49,144,255, 49,51,148,255, 48,50,147,255, 49,51,148,255, 49,51,148,255, 49,51,148,255, 48,50,147,255, 49,51,148,255, 49,51,148,255, 49,51,148,255, 51,53,154,255, 51,53,154,255, 47,49,144,255, 40,42,124,255, 110,69,39,255, 94,59,33,255, 106,66,37,255, 109,68,38,255, 108,68,38,255, 109,68,38,255, 109,68,38,255, 109,68,38,255, 108,68,38,255, 109,68,38,255, 109,68,38,255, 109,68,38,255, 114,71,40,255, 114,71,40,255, 106,66,37,255, 90,57,32,255, 80,105,25,255, 69,91,22,255, 77,101,24,255, 80,105,25,255, 79,104,25,255, 80,105,25,255, 80,105,25,255, 80,105,25,255, 79,104,25,255, 80,105,25,255, 80,105,25,255, 80,105,25,255, 83,109,26,255, 83,109,26,255, 77,101,24,255, 66,87,21,255, 150,36,32,255, 128,31,27,255, 144,35,30,255, 149,36,31,255, 147,35,31,255, 149,36,31,255, 149,36,31,255, 149,36,31,255, 147,35,31,255, 149,36,31,255, 149,36,31,255, 149,36,31,255, 156,37,33,255, 156,37,33,255, 144,35,30,255, 123,30,26,255, 30,30,33,255, 26,26,29,255, 29,29,32,255, 30,30,33,255, 29,29,33,255, 30,30,33,255, 30,30,33,255, 30,30,33,255, 29,29,33,255, 30,30,33,255, 30,30,33,255, 30,30,33,255, 31,31,34,255, 31,31,34,255, 29,29,32,255, 24,25,28,255, 207,213,214,255, 212,217,218,255, 230,234,234,255, 218,223,224,255, 201,207,208,255, 202,208,209,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 237,239,240,255, 213,218,219,255, 190,196,197,255, 201,207,208,255, 218,105,15,255, 223,107,16,255, 242,115,17,255, 229,110,16,255, 212,102,15,255, 213,102,15,255, 212,102,15,255, 212,102,15,255, 212,102,15,255, 212,102,15,255, 212,102,15,255, 212,102,15,255, 250,118,17,255, 224,107,16,255, 200,96,14,255, 212,102,15,255, 167,58,160,255, 171,59,163,255, 185,64,175,255, 176,61,167,255, 162,56,155,255, 163,57,156,255, 162,56,155,255, 162,56,155,255, 162,56,155,255, 162,56,155,255, 162,56,155,255, 162,56,155,255, 191,65,179,255, 172,59,164,255, 153,53,147,255, 162,56,155,255, 52,164,198,255, 54,167,202,255, 58,180,217,255, 55,172,208,255, 51,159,193,255, 51,160,194,255, 51,159,193,255, 51,159,193,255, 51,159,193,255, 51,159,193,255, 51,159,193,255, 51,159,193,255, 60,184,223,255, 54,168,203,255, 48,151,183,255, 51,159,193,255, 224,181,34,255, 229,184,35,255, 248,199,37,255, 235,189,36,255, 217,176,33,255, 218,177,33,255, 217,176,33,255, 217,176,33,255, 217,176,33,255, 217,176,33,255, 217,176,33,255, 217,176,33,255, 255,203,38,255, 230,185,35,255, 205,166,31,255, 217,176,33,255, 101,171,20,255, 103,174,21,255, 112,188,22,255, 106,179,21,255, 98,166,20,255, 99,167,20,255, 98,166,20,255, 98,166,20,255, 98,166,20,255, 98,166,20,255, 98,166,20,255, 98,166,20,255, 116,192,23,255, 104,175,21,255, 93,157,19,255, 98,166,20,255, 217,127,154,255, 222,130,157,255, 241,140,168,255, 229,133,161,255, 211,124,150,255, 212,124,150,255, 211,124,150,255, 211,124,150,255, 211,124,150,255, 211,124,150,255, 211,124,150,255, 211,124,150,255, 249,143,173,255, 223,130,158,255, 199,117,142,255, 211,124,150,255, 55,60,63,255, 56,61,64,255, 61,66,69,255, 58,62,66,255, 53,58,61,255, 53,58,62,255, 53,58,61,255, 53,58,61,255, 53,58,61,255, 53,58,61,255, 53,58,61,255, 53,58,61,255, 63,67,71,255, 56,61,65,255, 50,55,58,255, 53,58,61,255, 125,127,120,255, 128,130,122,255, 138,140,131,255, 131,133,125,255, 121,124,116,255, 121,124,117,255, 121,124,116,255, 121,124,116,255, 121,124,116,255, 121,124,116,255, 121,124,116,255, 121,124,116,255, 143,143,134,255, 128,130,122,255, 114,117,110,255, 121,124,116,255, 19,122,131,255, 19,125,134,255, 21,134,144,255, 20,128,137,255, 18,119,128,255, 19,119,128,255, 18,119,128,255, 18,119,128,255, 18,119,128,255, 18,119,128,255, 18,119,128,255, 18,119,128,255, 22,137,147,255, 20,125,134,255, 17,112,121,255, 18,119,128,255, 133,96,136,255, 137,98,139,255, 148,106,149,255, 141,101,143,255, 130,94,132,255, 130,94,133,255, 130,94,132,255, 130,94,132,255, 130,94,132,255, 130,94,132,255, 130,94,132,255, 130,94,132,255, 153,108,153,255, 137,99,139,255, 122,89,125,255, 130,94,132,255, 46,48,140,255, 47,49,143,255, 51,53,154,255, 48,50,147,255, 44,47,137,255, 45,47,137,255, 44,47,137,255, 44,47,137,255, 44,47,137,255, 44,47,137,255, 44,47,137,255, 44,47,137,255, 52,54,158,255, 47,49,144,255, 42,44,129,255, 44,47,137,255, 103,65,36,255, 105,66,37,255, 114,71,40,255, 108,68,38,255, 100,63,35,255, 100,63,36,255, 100,63,35,255, 100,63,35,255, 100,63,35,255, 100,63,35,255, 100,63,35,255, 100,63,35,255, 118,73,41,255, 106,66,37,255, 94,59,33,255, 100,63,35,255, 75,99,24,255, 77,101,24,255, 83,109,26,255, 79,104,25,255, 73,96,23,255, 73,97,23,255, 73,96,23,255, 73,96,23,255, 73,96,23,255, 73,96,23,255, 73,96,23,255, 73,96,23,255, 86,111,27,255, 77,101,24,255, 69,91,22,255, 73,96,23,255, 140,34,30,255, 143,34,30,255, 156,37,33,255, 147,35,31,255, 136,33,29,255, 137,33,29,255, 136,33,29,255, 136,33,29,255, 136,33,29,255, 136,33,29,255, 136,33,29,255, 136,33,29,255, 160,38,33,255, 144,35,30,255, 128,31,27,255, 136,33,29,255, 28,28,31,255, 29,28,32,255, 31,31,34,255, 29,29,33,255, 27,27,30,255, 27,27,31,255, 27,27,30,255, 27,27,30,255, 27,27,30,255, 27,27,30,255, 27,27,30,255, 27,27,30,255, 32,31,35,255, 29,29,32,255, 26,26,29,255, 27,27,30,255, 213,218,219,255, 190,196,197,255, 212,217,218,255, 220,225,226,255, 201,207,208,255, 190,196,197,255, 187,193,194,255, 190,196,197,255, 190,196,197,255, 187,193,194,255, 187,193,194,255, 180,186,187,255, 237,239,240,255, 190,196,197,255, 210,216,217,255, 218,223,224,255, 224,107,16,255, 200,96,14,255, 223,107,16,255, 232,111,16,255, 212,102,15,255, 200,96,14,255, 197,95,14,255, 200,96,14,255, 200,96,14,255, 197,95,14,255, 197,95,14,255, 189,91,13,255, 250,118,17,255, 200,96,14,255, 221,106,16,255, 229,110,16,255, 172,59,164,255, 153,53,147,255, 171,59,163,255, 177,61,169,255, 162,56,155,255, 153,53,147,255, 151,52,145,255, 153,53,147,255, 153,53,147,255, 151,52,145,255, 151,52,145,255, 145,51,140,255, 191,65,179,255, 153,53,147,255, 169,59,162,255, 176,61,167,255, 54,168,203,255, 48,151,183,255, 54,167,202,255, 56,173,210,255, 51,159,193,255, 48,151,183,255, 47,149,180,255, 48,151,183,255, 48,151,183,255, 47,149,180,255, 47,149,180,255, 45,143,173,255, 60,184,223,255, 48,151,183,255, 53,166,201,255, 55,172,208,255, 230,185,35,255, 205,166,31,255, 229,184,35,255, 238,191,36,255, 217,176,33,255, 205,166,31,255, 202,164,31,255, 205,166,31,255, 205,166,31,255, 202,164,31,255, 202,164,31,255, 194,158,30,255, 255,203,38,255, 205,166,31,255, 227,183,34,255, 235,189,36,255, 104,175,21,255, 93,157,19,255, 103,174,21,255, 107,180,22,255, 98,166,20,255, 93,157,19,255, 91,155,19,255, 93,157,19,255, 93,157,19,255, 91,155,19,255, 91,155,19,255, 88,149,18,255, 116,192,23,255, 93,157,19,255, 102,173,21,255, 106,179,21,255, 223,130,158,255, 199,117,142,255, 222,130,157,255, 231,135,163,255, 211,124,150,255, 199,117,142,255, 196,115,139,255, 199,117,142,255, 199,117,142,255, 196,115,139,255, 196,115,139,255, 189,111,134,255, 249,143,173,255, 199,117,142,255, 220,129,156,255, 229,133,161,255, 56,61,65,255, 50,55,58,255, 56,61,64,255, 58,63,67,255, 53,58,61,255, 50,55,58,255, 49,54,57,255, 50,55,58,255, 50,55,58,255, 49,54,57,255, 49,54,57,255, 48,52,55,255, 63,67,71,255, 50,55,58,255, 56,60,64,255, 58,62,66,255, 128,130,122,255, 114,117,110,255, 128,130,122,255, 132,135,126,255, 121,124,116,255, 114,117,110,255, 112,115,108,255, 114,117,110,255, 114,117,110,255, 112,115,108,255, 112,115,108,255, 108,111,104,255, 143,143,134,255, 114,117,110,255, 126,129,121,255, 131,133,125,255, 20,125,134,255, 17,112,121,255, 19,125,134,255, 20,129,139,255, 18,119,128,255, 17,112,121,255, 17,111,119,255, 17,112,121,255, 17,112,121,255, 17,111,119,255, 17,111,119,255, 16,107,115,255, 22,137,147,255, 17,112,121,255, 19,124,133,255, 20,128,137,255, 137,99,139,255, 122,89,125,255, 137,98,139,255, 142,102,144,255, 130,94,132,255, 122,89,125,255, 121,87,124,255, 122,89,125,255, 122,89,125,255, 121,87,124,255, 121,87,124,255, 116,84,119,255, 153,108,153,255, 122,89,125,255, 135,98,138,255, 141,101,143,255, 47,49,144,255, 42,44,129,255, 47,49,143,255, 49,51,148,255, 44,47,137,255, 42,44,129,255, 41,43,127,255, 42,44,129,255, 42,44,129,255, 41,43,127,255, 41,43,127,255, 40,42,123,255, 52,54,158,255, 42,44,129,255, 46,49,142,255, 48,50,147,255, 106,66,37,255, 94,59,33,255, 105,66,37,255, 109,68,38,255, 100,63,35,255, 94,59,33,255, 93,59,33,255, 94,59,33,255, 94,59,33,255, 93,59,33,255, 93,59,33,255, 89,56,32,255, 118,73,41,255, 94,59,33,255, 104,66,37,255, 108,68,38,255, 77,101,24,255, 69,91,22,255, 77,101,24,255, 80,105,25,255, 73,96,23,255, 69,91,22,255, 68,90,22,255, 69,91,22,255, 69,91,22,255, 68,90,22,255, 68,90,22,255, 65,86,21,255, 86,111,27,255, 69,91,22,255, 76,100,24,255, 79,104,25,255, 144,35,30,255, 128,31,27,255, 143,34,30,255, 149,36,31,255, 136,33,29,255, 128,31,27,255, 126,31,27,255, 128,31,27,255, 128,31,27,255, 126,31,27,255, 126,31,27,255, 122,29,26,255, 160,38,33,255, 128,31,27,255, 142,34,30,255, 147,35,31,255, 29,29,32,255, 26,26,29,255, 29,28,32,255, 30,30,33,255, 27,27,30,255, 26,26,29,255, 25,25,28,255, 26,26,29,255, 26,26,29,255, 25,25,28,255, 25,25,28,255, 24,24,27,255, 32,31,35,255, 26,26,29,255, 28,28,32,255, 29,29,33,255, 237,239,240,255, 212,217,218,255, 190,196,197,255, 220,225,226,255, 202,208,209,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 186,192,193,255, 178,184,185,255, 238,241,241,255, 210,216,217,255, 190,196,197,255, 201,207,208,255, 250,118,17,255, 223,107,16,255, 200,96,14,255, 232,111,16,255, 213,102,15,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 196,94,14,255, 187,90,13,255, 251,119,17,255, 221,106,16,255, 200,96,14,255, 212,102,15,255, 191,65,179,255, 171,59,163,255, 153,53,147,255, 177,61,169,255, 163,57,156,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 150,52,144,255, 143,50,138,255, 192,66,180,255, 169,59,162,255, 153,53,147,255, 162,56,155,255, 60,184,223,255, 54,167,202,255, 48,151,183,255, 56,173,210,255, 51,160,194,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 47,148,179,255, 45,142,171,255, 60,186,223,255, 53,166,201,255, 48,151,183,255, 51,159,193,255, 255,203,38,255, 229,184,35,255, 205,166,31,255, 238,191,36,255, 218,177,33,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 201,163,31,255, 192,156,29,255, 255,205,38,255, 227,183,34,255, 205,166,31,255, 217,176,33,255, 116,192,23,255, 103,174,21,255, 93,157,19,255, 107,180,22,255, 99,167,20,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 91,154,18,255, 87,147,18,255, 116,193,23,255, 102,173,21,255, 93,157,19,255, 98,166,20,255, 249,143,173,255, 222,130,157,255, 199,117,142,255, 231,135,163,255, 212,124,150,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 195,115,139,255, 187,110,133,255, 250,144,173,255, 220,129,156,255, 199,117,142,255, 211,124,150,255, 63,67,71,255, 56,61,64,255, 50,55,58,255, 58,63,67,255, 53,58,62,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 49,54,57,255, 47,51,55,255, 63,68,71,255, 56,60,64,255, 50,55,58,255, 53,58,61,255, 143,143,134,255, 128,130,122,255, 114,117,110,255, 132,135,126,255, 121,124,117,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 112,115,108,255, 107,110,103,255, 143,144,135,255, 126,129,121,255, 114,117,110,255, 121,124,116,255, 22,137,147,255, 19,125,134,255, 17,112,121,255, 20,129,139,255, 19,119,128,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 17,110,118,255, 16,106,113,255, 22,138,148,255, 19,124,133,255, 17,112,121,255, 18,119,128,255, 153,108,153,255, 137,98,139,255, 122,89,125,255, 142,102,144,255, 130,94,133,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 120,87,123,255, 115,83,118,255, 154,109,154,255, 135,98,138,255, 122,89,125,255, 130,94,132,255, 52,54,158,255, 47,49,143,255, 42,44,129,255, 49,51,148,255, 45,47,137,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 41,43,127,255, 39,41,121,255, 53,54,158,255, 46,49,142,255, 42,44,129,255, 44,47,137,255, 118,73,41,255, 105,66,37,255, 94,59,33,255, 109,68,38,255, 100,63,36,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 92,58,33,255, 88,56,31,255, 118,73,41,255, 104,66,37,255, 94,59,33,255, 100,63,35,255, 86,111,27,255, 77,101,24,255, 69,91,22,255, 80,105,25,255, 73,97,23,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 67,89,21,255, 64,85,21,255, 86,112,27,255, 76,100,24,255, 69,91,22,255, 73,96,23,255, 160,38,33,255, 143,34,30,255, 128,31,27,255, 149,36,31,255, 137,33,29,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 126,30,27,255, 120,29,26,255, 161,38,34,255, 142,34,30,255, 128,31,27,255, 136,33,29,255, 32,31,35,255, 29,28,32,255, 26,26,29,255, 30,30,33,255, 27,27,31,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 25,25,28,255, 24,24,27,255, 32,32,35,255, 28,28,32,255, 26,26,29,255, 27,27,30,255, 216,221,222,255, 190,196,197,255, 202,208,209,255, 220,225,226,255, 201,207,208,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 187,193,194,255, 190,196,197,255, 190,196,197,255, 180,186,187,255, 237,239,240,255, 218,223,224,255, 207,213,214,255, 182,188,189,255, 227,109,16,255, 200,96,14,255, 213,102,15,255, 232,111,16,255, 212,102,15,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 197,95,14,255, 200,96,14,255, 200,96,14,255, 189,91,13,255, 250,118,17,255, 229,110,16,255, 218,105,15,255, 191,92,14,255, 174,60,166,255, 153,53,147,255, 163,57,156,255, 177,61,169,255, 162,56,155,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 151,52,145,255, 153,53,147,255, 153,53,147,255, 145,51,140,255, 191,65,179,255, 176,61,167,255, 167,58,160,255, 147,51,141,255, 55,170,206,255, 48,151,183,255, 51,160,194,255, 56,173,210,255, 51,159,193,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 47,149,180,255, 48,151,183,255, 48,151,183,255, 45,143,173,255, 60,184,223,255, 55,172,208,255, 52,164,198,255, 46,145,175,255, 233,188,35,255, 205,166,31,255, 218,177,33,255, 238,191,36,255, 217,176,33,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 202,164,31,255, 205,166,31,255, 205,166,31,255, 194,158,30,255, 255,203,38,255, 235,189,36,255, 224,181,34,255, 196,159,30,255, 105,177,21,255, 93,157,19,255, 99,167,20,255, 107,180,22,255, 98,166,20,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 91,155,19,255, 93,157,19,255, 93,157,19,255, 88,149,18,255, 116,192,23,255, 106,179,21,255, 101,171,20,255, 89,151,18,255, 227,132,160,255, 199,117,142,255, 212,124,150,255, 231,135,163,255, 211,124,150,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 196,115,139,255, 199,117,142,255, 199,117,142,255, 189,111,134,255, 249,143,173,255, 229,133,161,255, 217,127,154,255, 191,112,136,255, 57,62,66,255, 50,55,58,255, 53,58,62,255, 58,63,67,255, 53,58,61,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 49,54,57,255, 50,55,58,255, 50,55,58,255, 48,52,55,255, 63,67,71,255, 58,62,66,255, 55,60,63,255, 48,53,56,255, 130,132,124,255, 114,117,110,255, 121,124,117,255, 132,135,126,255, 121,124,116,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 112,115,108,255, 114,117,110,255, 114,117,110,255, 108,111,104,255, 143,143,134,255, 131,133,125,255, 125,127,120,255, 109,112,105,255, 20,127,136,255, 17,112,121,255, 19,119,128,255, 20,129,139,255, 18,119,128,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 17,111,119,255, 17,112,121,255, 17,112,121,255, 16,107,115,255, 22,137,147,255, 20,128,137,255, 19,122,131,255, 17,108,116,255, 139,100,141,255, 122,89,125,255, 130,94,133,255, 142,102,144,255, 130,94,132,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 121,87,124,255, 122,89,125,255, 122,89,125,255, 116,84,119,255, 153,108,153,255, 141,101,143,255, 133,96,136,255, 117,85,120,255, 48,50,146,255, 42,44,129,255, 45,47,137,255, 49,51,148,255, 44,47,137,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 41,43,127,255, 42,44,129,255, 42,44,129,255, 40,42,123,255, 52,54,158,255, 48,50,147,255, 46,48,140,255, 40,42,124,255, 107,67,38,255, 94,59,33,255, 100,63,36,255, 109,68,38,255, 100,63,35,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 93,59,33,255, 94,59,33,255, 94,59,33,255, 89,56,32,255, 118,73,41,255, 108,68,38,255, 103,65,36,255, 90,57,32,255, 78,103,25,255, 69,91,22,255, 73,97,23,255, 80,105,25,255, 73,96,23,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 68,90,22,255, 69,91,22,255, 69,91,22,255, 65,86,21,255, 86,111,27,255, 79,104,25,255, 75,99,24,255, 66,87,21,255, 146,35,31,255, 128,31,27,255, 137,33,29,255, 149,36,31,255, 136,33,29,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 126,31,27,255, 128,31,27,255, 128,31,27,255, 122,29,26,255, 160,38,33,255, 147,35,31,255, 140,34,30,255, 123,30,26,255, 29,29,33,255, 26,26,29,255, 27,27,31,255, 30,30,33,255, 27,27,30,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 25,25,28,255, 26,26,29,255, 26,26,29,255, 24,24,27,255, 32,31,35,255, 29,29,33,255, 28,28,31,255, 24,25,28,255, 171,176,177,255, 183,189,190,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 186,192,193,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 207,213,214,255, 182,188,189,255, 171,176,177,255, 172,177,178,255, 180,86,13,255, 193,93,14,255, 212,102,15,255, 212,102,15,255, 212,102,15,255, 196,94,14,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 200,96,14,255, 218,105,15,255, 191,92,14,255, 180,86,13,255, 181,87,13,255, 138,48,132,255, 147,51,142,255, 162,56,155,255, 162,56,155,255, 162,56,155,255, 150,52,144,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 153,53,147,255, 167,58,160,255, 147,51,141,255, 138,48,132,255, 138,48,133,255, 43,135,164,255, 46,146,176,255, 51,159,193,255, 51,159,193,255, 51,159,193,255, 47,148,179,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 48,151,183,255, 52,164,198,255, 46,145,175,255, 43,135,164,255, 43,136,165,255, 185,149,28,255, 198,160,30,255, 217,176,33,255, 217,176,33,255, 217,176,33,255, 201,163,31,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 205,166,31,255, 224,181,34,255, 196,159,30,255, 185,149,28,255, 186,150,28,255, 83,141,17,255, 89,151,18,255, 98,166,20,255, 98,166,20,255, 98,166,20,255, 91,154,18,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 93,157,19,255, 101,171,20,255, 89,151,18,255, 83,141,17,255, 84,142,17,255, 179,105,127,255, 192,113,137,255, 211,124,150,255, 211,124,150,255, 211,124,150,255, 195,115,139,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 199,117,142,255, 217,127,154,255, 191,112,136,255, 179,105,127,255, 180,106,128,255, 45,49,52,255, 48,53,56,255, 53,58,61,255, 53,58,61,255, 53,58,61,255, 49,54,57,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 50,55,58,255, 55,60,63,255, 48,53,56,255, 45,49,52,255, 45,49,53,255, 103,105,99,255, 110,113,106,255, 121,124,116,255, 121,124,116,255, 121,124,116,255, 112,115,108,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 114,117,110,255, 125,127,120,255, 109,112,105,255, 103,105,99,255, 103,106,99,255, 16,101,108,255, 17,108,116,255, 18,119,128,255, 18,119,128,255, 18,119,128,255, 17,110,118,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 17,112,121,255, 19,122,131,255, 17,108,116,255, 16,101,108,255, 16,102,109,255, 110,80,113,255, 118,85,121,255, 130,94,132,255, 130,94,132,255, 130,94,132,255, 120,87,123,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 122,89,125,255, 133,96,136,255, 117,85,120,255, 110,80,113,255, 111,80,113,255, 38,40,116,255, 40,42,125,255, 44,47,137,255, 44,47,137,255, 44,47,137,255, 41,43,127,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 42,44,129,255, 46,48,140,255, 40,42,124,255, 38,40,116,255, 38,40,117,255, 85,53,30,255, 91,57,32,255, 100,63,35,255, 100,63,35,255, 100,63,35,255, 92,58,33,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 94,59,33,255, 103,65,36,255, 90,57,32,255, 85,53,30,255, 85,54,30,255, 62,82,20,255, 66,88,21,255, 73,96,23,255, 73,96,23,255, 73,96,23,255, 67,89,21,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 69,91,22,255, 75,99,24,255, 66,87,21,255, 62,82,20,255, 62,82,20,255, 116,28,24,255, 124,30,26,255, 136,33,29,255, 136,33,29,255, 136,33,29,255, 126,30,27,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 128,31,27,255, 140,34,30,255, 123,30,26,255, 116,28,24,255, 116,28,25,255, 23,23,26,255, 25,25,28,255, 27,27,30,255, 27,27,30,255, 27,27,30,255, 25,25,28,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 26,26,29,255, 28,28,31,255, 24,25,28,255, 23,23,26,255, 23,23,26,255, 182,188,189,255, 168,174,174,255, 172,177,178,255, 190,196,197,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 190,196,197,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 186,192,193,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 178,184,185,255, 191,92,14,255, 177,85,12,255, 181,87,13,255, 200,96,14,255, 181,87,13,255, 176,84,12,255, 181,87,13,255, 200,96,14,255, 181,87,13,255, 176,84,12,255, 181,87,13,255, 196,94,14,255, 181,87,13,255, 176,84,12,255, 181,87,13,255, 187,90,13,255, 147,51,141,255, 135,47,130,255, 138,48,133,255, 153,53,147,255, 138,48,133,255, 134,47,129,255, 138,48,133,255, 153,53,147,255, 138,48,133,255, 134,47,129,255, 138,48,133,255, 150,52,144,255, 138,48,133,255, 134,47,129,255, 138,48,133,255, 143,50,138,255, 46,145,175,255, 42,134,161,255, 43,136,165,255, 48,151,183,255, 43,136,165,255, 42,132,160,255, 43,136,165,255, 48,151,183,255, 43,136,165,255, 42,132,160,255, 43,136,165,255, 47,148,179,255, 43,136,165,255, 42,132,160,255, 43,136,165,255, 45,142,171,255, 196,159,30,255, 181,148,27,255, 186,150,28,255, 205,166,31,255, 186,150,28,255, 180,146,27,255, 186,150,28,255, 205,166,31,255, 186,150,28,255, 180,146,27,255, 186,150,28,255, 201,163,31,255, 186,150,28,255, 180,146,27,255, 186,150,28,255, 192,156,29,255, 89,151,18,255, 82,139,17,255, 84,142,17,255, 93,157,19,255, 84,142,17,255, 81,138,16,255, 84,142,17,255, 93,157,19,255, 84,142,17,255, 81,138,16,255, 84,142,17,255, 91,154,18,255, 84,142,17,255, 81,138,16,255, 84,142,17,255, 87,147,18,255, 191,112,136,255, 176,104,125,255, 180,106,128,255, 199,117,142,255, 180,106,128,255, 175,103,124,255, 180,106,128,255, 199,117,142,255, 180,106,128,255, 175,103,124,255, 180,106,128,255, 195,115,139,255, 180,106,128,255, 175,103,124,255, 180,106,128,255, 187,110,133,255, 48,53,56,255, 44,49,51,255, 45,49,53,255, 50,55,58,255, 45,49,53,255, 44,48,51,255, 45,49,53,255, 50,55,58,255, 45,49,53,255, 44,48,51,255, 45,49,53,255, 49,54,57,255, 45,49,53,255, 44,48,51,255, 45,49,53,255, 47,51,55,255, 109,112,105,255, 101,104,97,255, 103,106,99,255, 114,117,110,255, 103,106,99,255, 100,103,97,255, 103,106,99,255, 114,117,110,255, 103,106,99,255, 100,103,97,255, 103,106,99,255, 112,115,108,255, 103,106,99,255, 100,103,97,255, 103,106,99,255, 107,110,103,255, 17,108,116,255, 15,100,107,255, 16,102,109,255, 17,112,121,255, 16,102,109,255, 15,99,106,255, 16,102,109,255, 17,112,121,255, 16,102,109,255, 15,99,106,255, 16,102,109,255, 17,110,118,255, 16,102,109,255, 15,99,106,255, 16,102,109,255, 16,106,113,255, 117,85,120,255, 108,79,111,255, 111,80,113,255, 122,89,125,255, 111,80,113,255, 108,78,110,255, 111,80,113,255, 122,89,125,255, 111,80,113,255, 108,78,110,255, 111,80,113,255, 120,87,123,255, 111,80,113,255, 108,78,110,255, 111,80,113,255, 115,83,118,255, 40,42,124,255, 37,39,114,255, 38,40,117,255, 42,44,129,255, 38,40,117,255, 37,39,113,255, 38,40,117,255, 42,44,129,255, 38,40,117,255, 37,39,113,255, 38,40,117,255, 41,43,127,255, 38,40,117,255, 37,39,113,255, 38,40,117,255, 39,41,121,255, 90,57,32,255, 83,53,30,255, 85,54,30,255, 94,59,33,255, 85,54,30,255, 83,52,29,255, 85,54,30,255, 94,59,33,255, 85,54,30,255, 83,52,29,255, 85,54,30,255, 92,58,33,255, 85,54,30,255, 83,52,29,255, 85,54,30,255, 88,56,31,255, 66,87,21,255, 61,81,19,255, 62,82,20,255, 69,91,22,255, 62,82,20,255, 60,80,19,255, 62,82,20,255, 69,91,22,255, 62,82,20,255, 60,80,19,255, 62,82,20,255, 67,89,21,255, 62,82,20,255, 60,80,19,255, 62,82,20,255, 64,85,21,255, 123,30,26,255, 113,27,24,255, 116,28,25,255, 128,31,27,255, 116,28,25,255, 113,27,24,255, 116,28,25,255, 128,31,27,255, 116,28,25,255, 113,27,24,255, 116,28,25,255, 126,30,27,255, 116,28,25,255, 113,27,24,255, 116,28,25,255, 120,29,26,255, 24,25,28,255, 23,23,25,255, 23,23,26,255, 26,26,29,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 26,26,29,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 25,25,28,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 24,24,27,255, 171,176,177,255, 172,177,178,255, 166,171,172,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 166,171,172,255, 172,177,178,255, 167,172,173,255, 174,180,181,255, 168,174,174,255, 172,177,178,255, 168,174,174,255, 171,176,177,255, 180,86,13,255, 181,87,13,255, 175,84,12,255, 181,87,13,255, 176,84,12,255, 181,87,13,255, 176,84,12,255, 181,87,13,255, 175,84,12,255, 181,87,13,255, 176,84,12,255, 183,88,13,255, 177,85,12,255, 181,87,13,255, 177,85,12,255, 180,86,13,255, 138,48,132,255, 138,48,133,255, 134,46,128,255, 138,48,133,255, 134,47,129,255, 138,48,133,255, 134,47,129,255, 138,48,133,255, 134,46,128,255, 138,48,133,255, 134,47,129,255, 140,49,135,255, 135,47,130,255, 138,48,133,255, 135,47,130,255, 138,48,132,255, 43,135,164,255, 43,136,165,255, 42,132,159,255, 43,136,165,255, 42,132,160,255, 43,136,165,255, 42,132,160,255, 43,136,165,255, 42,132,159,255, 43,136,165,255, 42,132,160,255, 44,139,168,255, 42,134,161,255, 43,136,165,255, 42,134,161,255, 43,135,164,255, 185,149,28,255, 186,150,28,255, 179,145,27,255, 186,150,28,255, 180,146,27,255, 186,150,28,255, 180,146,27,255, 186,150,28,255, 179,145,27,255, 186,150,28,255, 180,146,27,255, 188,153,29,255, 181,148,27,255, 186,150,28,255, 181,148,27,255, 185,149,28,255, 83,141,17,255, 84,142,17,255, 81,137,16,255, 84,142,17,255, 81,138,16,255, 84,142,17,255, 81,138,16,255, 84,142,17,255, 81,137,16,255, 84,142,17,255, 81,138,16,255, 85,144,17,255, 82,139,17,255, 84,142,17,255, 82,139,17,255, 83,141,17,255, 179,105,127,255, 180,106,128,255, 174,102,124,255, 180,106,128,255, 175,103,124,255, 180,106,128,255, 175,103,124,255, 180,106,128,255, 174,102,124,255, 180,106,128,255, 175,103,124,255, 182,108,130,255, 176,104,125,255, 180,106,128,255, 176,104,125,255, 179,105,127,255, 45,49,52,255, 45,49,53,255, 44,48,51,255, 45,49,53,255, 44,48,51,255, 45,49,53,255, 44,48,51,255, 45,49,53,255, 44,48,51,255, 45,49,53,255, 44,48,51,255, 46,50,53,255, 44,49,51,255, 45,49,53,255, 44,49,51,255, 45,49,52,255, 103,105,99,255, 103,106,99,255, 100,102,96,255, 103,106,99,255, 100,103,97,255, 103,106,99,255, 100,103,97,255, 103,106,99,255, 100,102,96,255, 103,106,99,255, 100,103,97,255, 105,108,101,255, 101,104,97,255, 103,106,99,255, 101,104,97,255, 103,105,99,255, 16,101,108,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,99,106,255, 16,102,109,255, 15,99,106,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,99,106,255, 16,103,111,255, 15,100,107,255, 16,102,109,255, 15,100,107,255, 16,101,108,255, 110,80,113,255, 111,80,113,255, 107,77,109,255, 111,80,113,255, 108,78,110,255, 111,80,113,255, 108,78,110,255, 111,80,113,255, 107,77,109,255, 111,80,113,255, 108,78,110,255, 112,81,115,255, 108,79,111,255, 111,80,113,255, 108,79,111,255, 110,80,113,255, 38,40,116,255, 38,40,117,255, 37,38,113,255, 38,40,117,255, 37,39,113,255, 38,40,117,255, 37,39,113,255, 38,40,117,255, 37,38,113,255, 38,40,117,255, 37,39,113,255, 38,40,119,255, 37,39,114,255, 38,40,117,255, 37,39,114,255, 38,40,116,255, 85,53,30,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 83,52,29,255, 85,54,30,255, 83,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 83,52,29,255, 86,55,31,255, 83,53,30,255, 85,54,30,255, 83,53,30,255, 85,53,30,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,80,19,255, 62,82,20,255, 60,80,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,80,19,255, 63,84,20,255, 61,81,19,255, 62,82,20,255, 61,81,19,255, 62,82,20,255, 116,28,24,255, 116,28,25,255, 112,27,24,255, 116,28,25,255, 113,27,24,255, 116,28,25,255, 113,27,24,255, 116,28,25,255, 112,27,24,255, 116,28,25,255, 113,27,24,255, 118,28,25,255, 113,27,24,255, 116,28,25,255, 113,27,24,255, 116,28,24,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,24,26,255, 23,23,25,255, 23,23,26,255, 23,23,25,255, 23,23,26,255, 183,189,190,255, 180,186,187,255, 170,175,176,255, 165,170,171,255, 171,176,177,255, 180,186,187,255, 171,176,177,255, 165,170,171,255, 170,175,176,255, 180,186,187,255, 171,176,177,255, 165,170,171,255, 171,176,177,255, 180,186,187,255, 170,175,176,255, 165,170,171,255, 193,93,14,255, 189,91,13,255, 179,86,13,255, 174,84,12,255, 180,86,13,255, 189,91,13,255, 180,86,13,255, 174,84,12,255, 179,86,13,255, 189,91,13,255, 180,86,13,255, 174,84,12,255, 180,86,13,255, 189,91,13,255, 179,86,13,255, 174,84,12,255, 147,51,142,255, 145,51,140,255, 137,48,131,255, 133,46,128,255, 138,48,132,255, 145,51,140,255, 138,48,132,255, 133,46,128,255, 137,48,131,255, 145,51,140,255, 138,48,132,255, 133,46,128,255, 138,48,132,255, 145,51,140,255, 137,48,131,255, 133,46,128,255, 46,146,176,255, 45,143,173,255, 43,135,163,255, 42,131,158,255, 43,135,164,255, 45,143,173,255, 43,135,164,255, 42,131,158,255, 43,135,163,255, 45,143,173,255, 43,135,164,255, 42,131,158,255, 43,135,164,255, 45,143,173,255, 43,135,163,255, 42,131,158,255, 198,160,30,255, 194,158,30,255, 184,148,28,255, 178,144,27,255, 185,149,28,255, 194,158,30,255, 185,149,28,255, 178,144,27,255, 184,148,28,255, 194,158,30,255, 185,149,28,255, 178,144,27,255, 185,149,28,255, 194,158,30,255, 184,148,28,255, 178,144,27,255, 89,151,18,255, 88,149,18,255, 83,140,17,255, 80,136,16,255, 83,141,17,255, 88,149,18,255, 83,141,17,255, 80,136,16,255, 83,140,17,255, 88,149,18,255, 83,141,17,255, 80,136,16,255, 83,141,17,255, 88,149,18,255, 83,140,17,255, 80,136,16,255, 192,113,137,255, 189,111,134,255, 178,105,126,255, 173,102,123,255, 179,105,127,255, 189,111,134,255, 179,105,127,255, 173,102,123,255, 178,105,126,255, 189,111,134,255, 179,105,127,255, 173,102,123,255, 179,105,127,255, 189,111,134,255, 178,105,126,255, 173,102,123,255, 48,53,56,255, 48,52,55,255, 45,49,52,255, 44,48,50,255, 45,49,52,255, 48,52,55,255, 45,49,52,255, 44,48,50,255, 45,49,52,255, 48,52,55,255, 45,49,52,255, 44,48,50,255, 45,49,52,255, 48,52,55,255, 45,49,52,255, 44,48,50,255, 110,113,106,255, 108,111,104,255, 102,105,98,255, 99,102,95,255, 103,105,99,255, 108,111,104,255, 103,105,99,255, 99,102,95,255, 102,105,98,255, 108,111,104,255, 103,105,99,255, 99,102,95,255, 103,105,99,255, 108,111,104,255, 102,105,98,255, 99,102,95,255, 17,108,116,255, 16,107,115,255, 16,100,108,255, 15,98,105,255, 16,101,108,255, 16,107,115,255, 16,101,108,255, 15,98,105,255, 16,100,108,255, 16,107,115,255, 16,101,108,255, 15,98,105,255, 16,101,108,255, 16,107,115,255, 16,100,108,255, 15,98,105,255, 118,85,121,255, 116,84,119,255, 110,79,112,255, 106,77,109,255, 110,80,113,255, 116,84,119,255, 110,80,113,255, 106,77,109,255, 110,79,112,255, 116,84,119,255, 110,80,113,255, 106,77,109,255, 110,80,113,255, 116,84,119,255, 110,79,112,255, 106,77,109,255, 40,42,125,255, 40,42,123,255, 38,39,115,255, 36,38,112,255, 38,40,116,255, 40,42,123,255, 38,40,116,255, 36,38,112,255, 38,39,115,255, 40,42,123,255, 38,40,116,255, 36,38,112,255, 38,40,116,255, 40,42,123,255, 38,39,115,255, 36,38,112,255, 91,57,32,255, 89,56,32,255, 84,53,30,255, 82,52,29,255, 85,53,30,255, 89,56,32,255, 85,53,30,255, 82,52,29,255, 84,53,30,255, 89,56,32,255, 85,53,30,255, 82,52,29,255, 85,53,30,255, 89,56,32,255, 84,53,30,255, 82,52,29,255, 66,88,21,255, 65,86,21,255, 62,81,20,255, 60,79,19,255, 62,82,20,255, 65,86,21,255, 62,82,20,255, 60,79,19,255, 62,81,20,255, 65,86,21,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 65,86,21,255, 62,81,20,255, 60,79,19,255, 124,30,26,255, 122,29,26,255, 115,28,24,255, 111,27,24,255, 116,28,24,255, 122,29,26,255, 116,28,24,255, 111,27,24,255, 115,28,24,255, 122,29,26,255, 116,28,24,255, 111,27,24,255, 116,28,24,255, 122,29,26,255, 115,28,24,255, 111,27,24,255, 25,25,28,255, 24,24,27,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 24,24,27,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 24,24,27,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 24,24,27,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 174,180,181,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 180,87,13,255, 181,87,13,255, 181,87,13,255, 183,88,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 140,49,135,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 44,139,168,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 185,150,28,255, 186,150,28,255, 186,150,28,255, 188,153,29,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 83,142,17,255, 84,142,17,255, 84,142,17,255, 85,144,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 179,106,128,255, 180,106,128,255, 180,106,128,255, 182,108,130,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 46,50,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 105,108,101,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,103,111,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 110,80,113,255, 111,80,113,255, 111,80,113,255, 112,81,115,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,119,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 86,55,31,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 63,84,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 118,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,24,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 171,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 180,87,13,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 185,150,28,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 83,142,17,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 179,106,128,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 110,80,113,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 180,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 185,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 83,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 179,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 110,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 171,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 180,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 185,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 83,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 179,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 110,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 171,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 180,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 185,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 83,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 179,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 110,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 174,180,181,255, 165,170,171,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 183,88,13,255, 174,84,12,255, 181,87,13,255, 180,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 180,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 140,49,135,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 44,139,168,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 188,153,29,255, 178,144,27,255, 186,150,28,255, 185,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 185,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 85,144,17,255, 80,136,16,255, 84,142,17,255, 83,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 83,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 182,108,130,255, 173,102,123,255, 180,106,128,255, 179,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 179,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 46,50,53,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 105,108,101,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,103,111,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 112,81,115,255, 106,77,109,255, 111,80,113,255, 110,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 110,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,119,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 86,55,31,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 63,84,20,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 118,28,25,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,24,26,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 174,84,12,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 181,87,13,255, 174,84,12,255, 133,46,128,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 138,48,133,255, 133,46,128,255, 42,131,158,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 43,136,165,255, 42,131,158,255, 178,144,27,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 186,150,28,255, 178,144,27,255, 80,136,16,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 84,142,17,255, 80,136,16,255, 173,102,123,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 180,106,128,255, 173,102,123,255, 44,48,50,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 45,49,53,255, 44,48,50,255, 99,102,95,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 103,106,99,255, 99,102,95,255, 15,98,105,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 16,102,109,255, 15,98,105,255, 106,77,109,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 111,80,113,255, 106,77,109,255, 36,38,112,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 38,40,117,255, 36,38,112,255, 82,52,29,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 85,54,30,255, 82,52,29,255, 60,79,19,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 62,82,20,255, 60,79,19,255, 111,27,24,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 116,28,25,255, 111,27,24,255, 22,22,25,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 23,23,26,255, 22,22,25,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 174,84,12,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 133,46,128,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 42,131,158,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 178,144,27,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 80,136,16,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 173,102,123,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 44,48,50,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 99,102,95,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 15,98,105,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 106,77,109,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 36,38,112,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 82,52,29,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 60,79,19,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 111,27,24,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 22,22,25,255, 50,50,50,255, 54,54,54,255, 39,39,39,255, 45,45,45,255, 53,53,53,255, 56,56,56,255, 59,59,59,255, 36,36,36,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 48,48,48,255, 51,51,51,255, 53,53,53,255, 53,53,53,255, 56,56,56,255, 50,50,50,255, 54,54,54,255, 39,39,39,255, 45,45,45,255, 53,53,53,255, 56,56,56,255, 59,59,59,255, 36,36,36,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 48,48,48,255, 51,51,51,255, 53,53,53,255, 53,53,53,255, 56,56,56,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 50,50,50,255, 54,54,54,255, 39,39,39,255, 45,45,45,255, 53,53,53,255, 56,56,56,255, 59,59,59,255, 36,36,36,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 48,48,48,255, 51,51,51,255, 53,53,53,255, 53,53,53,255, 56,56,56,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 202,208,209,255, 222,227,228,255, 237,239,240,255, 222,227,227,255, 202,208,209,255, 220,225,226,255, 237,239,240,255, 222,227,228,255, 202,208,209,255, 222,227,228,255, 237,239,240,255, 222,227,228,255, 202,208,209,255, 222,227,227,255, 237,239,240,255, 213,218,219,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,50,50,255, 86,86,86,255, 69,69,69,255, 87,87,87,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 76,76,76,255, 114,114,114,255, 114,114,114,255, 87,87,87,255, 71,71,71,255, 97,97,97,255, 90,90,90,255, 108,108,108,255, 56,56,56,255, 50,50,50,255, 86,86,86,255, 69,69,69,255, 87,87,87,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 76,76,76,255, 114,114,114,255, 114,114,114,255, 87,87,87,255, 71,71,71,255, 97,97,97,255, 90,90,90,255, 108,108,108,255, 56,56,56,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 50,50,50,255, 86,86,86,255, 69,69,69,255, 87,87,87,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 76,76,76,255, 114,114,114,255, 114,114,114,255, 87,87,87,255, 71,71,71,255, 97,97,97,255, 90,90,90,255, 108,108,108,255, 56,56,56,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 222,227,228,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 190,196,197,255, 213,218,219,255, 186,192,193,255, 213,218,219,255, 182,188,189,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 174,180,181,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 41,41,41,255, 82,82,82,255, 120,120,120,255, 85,85,85,255, 98,98,98,255, 143,143,143,255, 143,143,143,255, 122,122,122,255, 101,101,101,255, 81,81,81,255, 132,132,132,255, 127,127,127,255, 95,95,95,255, 120,120,120,255, 80,80,80,255, 48,48,48,255, 237,239,240,255, 213,218,219,255, 187,193,194,255, 212,217,218,255, 228,233,233,255, 212,217,218,255, 187,193,194,255, 213,218,219,255, 230,234,234,255, 213,218,219,255, 190,196,197,255, 212,217,218,255, 230,234,234,255, 213,218,219,255, 190,196,197,255, 202,208,209,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 171,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 45,45,45,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 41,41,41,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 56,56,56,255, 50,50,50,255, 56,56,56,255, 51,51,51,255, 50,50,50,255, 45,45,45,255, 80,80,80,255, 92,92,92,255, 111,111,111,255, 152,152,152,255, 103,103,103,255, 136,136,136,255, 163,163,163,255, 95,95,95,255, 110,110,110,255, 89,89,89,255, 91,91,91,255, 105,105,105,255, 139,139,139,255, 105,105,105,255, 41,41,41,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 226,231,231,255, 228,233,233,255, 228,233,233,255, 226,231,231,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 213,218,219,255, 182,188,189,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 55,52,52,255, 60,56,56,255, 70,66,66,255, 60,56,56,255, 60,56,56,255, 60,56,56,255, 54,54,54,255, 123,123,123,255, 129,129,129,255, 53,53,53,255, 67,63,63,255, 63,59,59,255, 68,64,64,255, 58,54,54,255, 74,70,70,255, 63,59,59,255, 55,52,52,255, 60,56,56,255, 70,66,66,255, 60,56,56,255, 60,56,56,255, 60,56,56,255, 54,54,54,255, 123,123,123,255, 129,129,129,255, 53,53,53,255, 67,63,63,255, 63,59,59,255, 68,64,64,255, 58,54,54,255, 74,70,70,255, 63,59,59,255, 55,52,52,255, 35,32,32,255, 35,32,32,255, 33,30,30,255, 35,32,32,255, 36,33,33,255, 33,30,30,255, 41,38,38,255, 33,30,30,255, 37,34,34,255, 38,35,35,255, 35,32,32,255, 39,35,35,255, 38,35,35,255, 38,35,35,255, 63,59,59,255, 55,52,52,255, 35,32,32,255, 35,32,32,255, 33,30,30,255, 35,32,32,255, 36,33,33,255, 33,30,30,255, 41,38,38,255, 33,30,30,255, 37,34,34,255, 38,35,35,255, 35,32,32,255, 39,35,35,255, 38,35,35,255, 38,35,35,255, 63,59,59,255, 56,56,56,255, 114,114,114,255, 120,120,120,255, 105,105,105,255, 143,143,143,255, 123,123,123,255, 163,163,163,255, 138,138,138,255, 116,116,116,255, 95,95,95,255, 149,149,149,255, 148,148,148,255, 115,115,115,255, 134,134,134,255, 112,112,112,255, 36,36,36,255, 202,208,209,255, 212,217,218,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 230,234,234,255, 228,233,233,255, 228,233,233,255, 213,218,219,255, 190,196,197,255, 197,204,205,255, 165,170,171,255, 171,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,66,66,255, 60,56,56,255, 70,66,66,255, 60,56,56,255, 64,60,60,255, 80,80,80,255, 69,69,69,255, 80,80,80,255, 80,80,80,255, 69,69,69,255, 63,63,63,255, 63,59,59,255, 58,55,55,255, 63,59,59,255, 74,70,70,255, 68,64,64,255, 70,66,66,255, 60,56,56,255, 70,66,66,255, 60,56,56,255, 64,60,60,255, 80,80,80,255, 81,62,61,255, 91,72,71,255, 91,72,71,255, 81,62,61,255, 63,63,63,255, 63,59,59,255, 58,55,55,255, 63,59,59,255, 74,70,70,255, 68,64,64,255, 70,66,66,255, 60,56,56,255, 64,60,60,255, 64,60,60,255, 68,64,64,255, 68,64,64,255, 68,64,64,255, 58,55,55,255, 58,55,55,255, 68,64,64,255, 64,60,60,255, 58,55,55,255, 58,55,55,255, 63,59,59,255, 74,70,70,255, 68,64,64,255, 70,66,66,255, 60,56,56,255, 70,66,66,255, 60,56,56,255, 64,60,60,255, 66,62,62,255, 56,52,52,255, 56,52,52,255, 57,54,52,255, 57,54,54,255, 59,55,55,255, 59,55,55,255, 54,51,51,255, 63,59,59,255, 74,70,70,255, 68,64,64,255, 43,43,43,255, 89,89,89,255, 126,126,126,255, 111,111,111,255, 124,124,124,255, 125,125,125,255, 163,163,163,255, 138,138,138,255, 122,122,122,255, 75,75,75,255, 124,124,124,255, 131,131,131,255, 123,123,123,255, 104,104,104,255, 56,56,56,255, 36,36,36,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 230,234,234,255, 226,231,231,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 228,233,233,255, 232,235,236,255, 226,231,231,255, 230,234,234,255, 190,196,197,255, 213,218,219,255, 220,225,226,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 70,66,66,255, 59,55,55,255, 64,60,60,255, 59,55,55,255, 64,60,60,255, 63,63,63,255, 157,157,157,255, 35,35,35,255, 33,33,33,255, 157,157,157,255, 69,69,69,255, 63,59,58,255, 67,63,63,255, 63,59,59,255, 64,60,60,255, 74,70,70,255, 70,66,66,255, 59,55,55,255, 64,60,60,255, 59,55,55,255, 64,60,60,255, 76,56,56,255, 162,120,119,255, 69,27,27,255, 67,26,25,255, 162,120,119,255, 81,62,61,255, 63,59,58,255, 67,63,63,255, 63,59,59,255, 64,60,60,255, 74,70,70,255, 70,66,66,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 197,197,197,255, 175,175,175,255, 175,175,175,255, 175,175,175,255, 197,197,197,255, 197,197,197,255, 175,175,175,255, 197,197,197,255, 175,175,175,255, 175,175,175,255, 74,70,70,255, 70,66,66,255, 59,55,55,255, 64,60,60,255, 59,55,55,255, 59,55,55,255, 66,62,62,255, 56,52,52,255, 61,57,57,255, 57,54,54,255, 68,63,63,255, 57,54,54,255, 59,55,54,255, 62,59,59,255, 63,59,59,255, 64,60,60,255, 74,70,70,255, 50,50,50,255, 97,97,97,255, 127,127,127,255, 111,111,111,255, 116,116,116,255, 163,163,163,255, 141,141,141,255, 131,131,131,255, 131,131,131,255, 99,99,99,255, 75,75,75,255, 127,127,127,255, 130,130,130,255, 135,135,135,255, 97,97,97,255, 35,35,35,255, 237,239,240,255, 213,218,219,255, 190,196,197,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 230,234,234,255, 232,235,236,255, 228,233,233,255, 232,235,236,255, 228,233,233,255, 228,233,233,255, 230,234,234,255, 213,218,219,255, 190,196,197,255, 201,207,208,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 171,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,59,59,255, 59,55,55,255, 59,55,55,255, 59,55,55,255, 64,60,60,255, 69,69,69,255, 33,33,33,255, 83,2,0,255, 57,2,0,255, 33,33,33,255, 80,80,80,255, 62,58,58,255, 73,69,69,255, 63,59,59,255, 64,60,60,255, 75,71,71,255, 63,59,59,255, 59,55,55,255, 59,55,55,255, 59,55,55,255, 64,60,60,255, 81,62,61,255, 67,26,25,255, 255,0,3,255, 212,1,2,255, 67,26,25,255, 91,72,71,255, 62,58,58,255, 73,69,69,255, 63,59,59,255, 64,60,60,255, 75,71,71,255, 63,59,59,255, 197,197,197,255, 176,176,176,255, 176,176,176,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 142,142,142,255, 75,71,71,255, 63,59,59,255, 59,55,55,255, 59,55,55,255, 56,52,52,255, 59,55,55,255, 56,52,52,255, 61,57,57,255, 61,57,57,255, 57,54,54,255, 67,63,63,255, 59,55,55,255, 57,54,54,255, 68,63,63,255, 63,59,59,255, 64,60,60,255, 75,71,71,255, 47,47,47,255, 92,92,92,255, 91,91,91,255, 101,101,101,255, 140,140,140,255, 163,163,163,255, 141,141,141,255, 126,126,126,255, 126,126,126,255, 116,116,116,255, 75,75,75,255, 124,124,124,255, 135,135,135,255, 89,89,89,255, 97,97,97,255, 58,58,58,255, 222,227,227,255, 190,196,197,255, 213,218,219,255, 220,225,226,255, 218,223,224,255, 220,225,226,255, 220,225,226,255, 220,225,226,255, 218,223,224,255, 220,225,226,255, 220,225,226,255, 220,225,226,255, 230,234,234,255, 230,234,234,255, 213,218,219,255, 182,188,189,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 63,59,59,255, 63,59,59,255, 59,54,55,255, 70,66,66,255, 71,67,67,255, 80,80,80,255, 33,33,33,255, 74,1,2,255, 37,1,3,255, 33,33,33,255, 80,80,80,255, 62,58,58,255, 67,63,63,255, 74,70,70,255, 64,60,60,255, 58,55,55,255, 63,59,59,255, 63,59,59,255, 59,54,55,255, 70,66,66,255, 71,67,67,255, 91,72,71,255, 67,26,25,255, 212,1,2,255, 177,3,0,255, 67,26,25,255, 91,72,71,255, 62,58,58,255, 67,63,63,255, 74,70,70,255, 64,60,60,255, 58,55,55,255, 63,59,59,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 176,176,176,255, 157,157,157,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 101,101,101,255, 58,55,55,255, 63,59,59,255, 63,59,59,255, 59,54,55,255, 59,55,55,255, 66,62,62,255, 51,48,48,255, 51,48,48,255, 61,57,57,255, 57,54,54,255, 62,59,59,255, 62,59,59,255, 57,54,54,255, 62,59,59,255, 74,70,70,255, 64,60,60,255, 58,55,55,255, 47,47,47,255, 68,68,68,255, 112,112,112,255, 139,139,139,255, 163,163,163,255, 141,141,141,255, 126,126,126,255, 126,126,126,255, 136,136,136,255, 122,122,122,255, 95,95,95,255, 100,100,100,255, 93,93,93,255, 75,75,75,255, 120,120,120,255, 59,59,59,255, 207,213,214,255, 212,217,218,255, 230,234,234,255, 218,223,224,255, 201,207,208,255, 202,208,209,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 237,239,240,255, 213,218,219,255, 190,196,197,255, 201,207,208,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,60,60,255, 63,59,59,255, 59,55,55,255, 70,66,66,255, 71,67,67,255, 80,80,80,255, 157,157,157,255, 19,19,19,255, 19,19,19,255, 200,200,200,255, 69,69,69,255, 63,59,59,255, 67,63,63,255, 63,59,59,255, 74,70,70,255, 74,70,70,255, 64,60,60,255, 63,59,59,255, 59,55,55,255, 70,66,66,255, 71,67,67,255, 91,72,71,255, 162,120,119,255, 57,15,14,255, 57,15,14,255, 194,153,152,255, 81,62,61,255, 63,59,59,255, 67,63,63,255, 63,59,59,255, 74,70,70,255, 74,70,70,255, 64,60,60,255, 142,142,142,255, 197,197,197,255, 0,0,0,255, 0,0,0,255, 157,157,157,255, 176,176,176,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 0,0,0,255, 0,0,0,255, 176,176,176,255, 142,142,142,255, 74,70,70,255, 64,60,60,255, 63,59,59,255, 59,55,55,255, 70,66,66,255, 66,62,62,255, 55,51,51,255, 60,56,56,255, 68,63,63,255, 52,48,48,255, 61,59,59,255, 52,50,50,255, 59,55,55,255, 62,59,59,255, 63,59,59,255, 74,70,70,255, 74,70,70,255, 41,41,41,255, 82,82,82,255, 144,144,144,255, 146,146,146,255, 163,163,163,255, 141,141,141,255, 126,126,126,255, 131,131,131,255, 137,137,137,255, 126,126,126,255, 116,116,116,255, 75,75,75,255, 107,107,107,255, 151,151,151,255, 80,80,80,255, 48,48,48,255, 213,218,219,255, 190,196,197,255, 212,217,218,255, 220,225,226,255, 201,207,208,255, 190,196,197,255, 187,193,194,255, 190,196,197,255, 190,196,197,255, 187,193,194,255, 187,193,194,255, 180,186,187,255, 237,239,240,255, 190,196,197,255, 210,216,217,255, 218,223,224,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 64,60,59,255, 69,65,65,255, 54,51,51,255, 60,56,56,255, 64,60,60,255, 80,80,80,255, 80,80,80,255, 80,80,80,255, 63,63,63,255, 69,69,69,255, 80,80,80,255, 74,69,69,255, 63,59,59,255, 68,63,64,255, 74,70,70,255, 67,63,63,255, 64,60,59,255, 69,65,65,255, 54,51,51,255, 60,56,56,255, 64,60,60,255, 80,80,80,255, 91,72,71,255, 91,72,71,255, 76,56,56,255, 81,62,61,255, 80,80,80,255, 74,69,69,255, 63,59,59,255, 68,63,64,255, 74,70,70,255, 67,63,63,255, 64,60,59,255, 121,121,121,255, 176,176,176,255, 0,0,0,255, 0,0,0,255, 197,197,197,255, 176,176,176,255, 157,157,157,255, 176,176,176,255, 157,157,157,255, 157,157,157,255, 0,0,0,255, 0,0,0,255, 197,197,197,255, 121,121,121,255, 67,63,63,255, 64,60,59,255, 69,65,65,255, 54,51,51,255, 60,56,56,255, 64,60,60,255, 66,62,62,255, 60,56,56,255, 66,62,62,255, 56,51,52,255, 61,57,57,255, 62,59,59,255, 68,63,63,255, 59,55,55,255, 68,63,64,255, 74,70,70,255, 67,63,63,255, 45,45,45,255, 80,80,80,255, 119,119,119,255, 122,122,122,255, 163,163,163,255, 138,138,138,255, 126,126,126,255, 126,126,126,255, 128,128,128,255, 126,126,126,255, 116,116,116,255, 75,75,75,255, 107,107,107,255, 106,106,106,255, 105,105,105,255, 41,41,41,255, 237,239,240,255, 212,217,218,255, 190,196,197,255, 220,225,226,255, 202,208,209,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 186,192,193,255, 178,184,185,255, 238,241,241,255, 210,216,217,255, 190,196,197,255, 201,207,208,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 59,55,55,255, 70,66,66,255, 59,55,55,255, 60,56,56,255, 64,60,60,255, 71,67,67,255, 53,53,53,255, 129,129,129,255, 123,123,123,255, 54,54,54,255, 67,63,63,255, 73,69,69,255, 62,58,58,255, 67,63,63,255, 73,69,69,255, 63,59,59,255, 59,55,55,255, 70,66,66,255, 59,55,55,255, 60,56,56,255, 64,60,60,255, 71,67,67,255, 53,53,53,255, 129,129,129,255, 123,123,123,255, 54,54,54,255, 67,63,63,255, 73,69,69,255, 62,58,58,255, 67,63,63,255, 73,69,69,255, 63,59,59,255, 59,55,55,255, 127,127,127,255, 168,168,168,255, 197,197,197,255, 197,197,197,255, 176,176,176,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 157,157,157,255, 197,197,197,255, 197,197,197,255, 163,163,163,255, 118,118,118,255, 63,59,59,255, 59,55,55,255, 41,38,38,255, 41,38,38,255, 36,33,33,255, 36,33,33,255, 35,32,32,255, 36,33,33,255, 41,38,38,255, 32,29,29,255, 37,34,34,255, 38,35,35,255, 43,39,39,255, 34,31,31,255, 35,32,32,255, 35,32,32,255, 63,59,59,255, 56,56,56,255, 114,114,114,255, 136,136,136,255, 163,163,163,255, 149,149,149,255, 137,137,137,255, 126,126,126,255, 126,126,126,255, 130,130,130,255, 120,120,120,255, 122,122,122,255, 95,95,95,255, 75,75,75,255, 106,106,106,255, 112,112,112,255, 36,36,36,255, 216,221,222,255, 190,196,197,255, 202,208,209,255, 220,225,226,255, 201,207,208,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 187,193,194,255, 190,196,197,255, 190,196,197,255, 180,186,187,255, 237,239,240,255, 218,223,224,255, 207,213,214,255, 182,188,189,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,50,50,255, 54,54,54,255, 39,39,39,255, 45,45,45,255, 53,53,53,255, 56,56,56,255, 59,59,59,255, 36,36,36,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 48,48,48,255, 51,51,51,255, 53,53,53,255, 53,53,53,255, 56,56,56,255, 50,50,50,255, 54,54,54,255, 39,39,39,255, 45,45,45,255, 53,53,53,255, 56,56,56,255, 59,59,59,255, 36,36,36,255, 45,45,45,255, 45,45,45,255, 47,47,47,255, 48,48,48,255, 51,51,51,255, 53,53,53,255, 53,53,53,255, 56,56,56,255, 43,43,43,255, 127,127,127,255, 176,176,176,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 157,157,157,255, 101,101,101,255, 101,101,101,255, 163,163,163,255, 176,176,176,255, 176,176,176,255, 168,168,168,255, 176,176,176,255, 127,127,127,255, 36,36,36,255, 50,50,50,255, 54,54,54,255, 39,39,39,255, 45,45,45,255, 53,53,53,255, 56,56,56,255, 59,59,59,255, 36,36,36,255, 45,45,45,255, 45,45,45,255, 56,56,56,255, 45,45,45,255, 45,45,45,255, 51,51,51,255, 71,71,71,255, 56,56,56,255, 43,43,43,255, 89,89,89,255, 89,89,89,255, 163,163,163,255, 137,137,137,255, 138,138,138,255, 124,124,124,255, 126,126,126,255, 120,120,120,255, 120,120,120,255, 122,122,122,255, 122,122,122,255, 56,56,56,255, 122,122,122,255, 56,56,56,255, 36,36,36,255, 171,176,177,255, 183,189,190,255, 201,207,208,255, 201,207,208,255, 201,207,208,255, 186,192,193,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 190,196,197,255, 207,213,214,255, 182,188,189,255, 171,176,177,255, 172,177,178,255, 165,170,171,255, 174,180,181,255, 165,170,171,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 171,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 50,50,50,255, 86,86,86,255, 69,69,69,255, 87,87,87,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 76,76,76,255, 114,114,114,255, 114,114,114,255, 87,87,87,255, 71,71,71,255, 97,97,97,255, 90,90,90,255, 108,108,108,255, 56,56,56,255, 50,50,50,255, 86,86,86,255, 69,69,69,255, 87,87,87,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 76,76,76,255, 114,114,114,255, 114,114,114,255, 87,87,87,255, 71,71,71,255, 97,97,97,255, 90,90,90,255, 108,108,108,255, 56,56,56,255, 50,50,50,255, 118,118,118,255, 176,176,176,255, 176,176,176,255, 175,175,175,255, 175,175,175,255, 175,175,175,255, 168,168,168,255, 168,168,168,255, 168,168,168,255, 163,163,163,255, 163,163,163,255, 176,176,176,255, 168,168,168,255, 113,113,113,255, 35,35,35,255, 50,50,50,255, 86,86,86,255, 69,69,69,255, 87,87,87,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 76,76,76,255, 114,114,114,255, 114,114,114,255, 87,87,87,255, 71,71,71,255, 97,97,97,255, 90,90,90,255, 108,108,108,255, 56,56,56,255, 50,50,50,255, 97,97,97,255, 115,115,115,255, 163,163,163,255, 115,115,115,255, 115,115,115,255, 95,95,95,255, 95,95,95,255, 95,95,95,255, 75,75,75,255, 75,75,75,255, 75,75,75,255, 56,56,56,255, 122,122,122,255, 97,97,97,255, 35,35,35,255, 182,188,189,255, 168,174,174,255, 172,177,178,255, 190,196,197,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 190,196,197,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 186,192,193,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 178,184,185,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 127,127,127,255, 121,121,121,255, 121,121,121,255, 121,121,121,255, 113,113,113,255, 113,113,113,255, 121,121,121,255, 121,121,121,255, 113,113,113,255, 113,113,113,255, 113,113,113,255, 121,121,121,255, 121,121,121,255, 127,127,127,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 56,56,56,255, 108,108,108,255, 90,90,90,255, 97,97,97,255, 71,71,71,255, 87,87,87,255, 114,114,114,255, 114,114,114,255, 76,76,76,255, 97,97,97,255, 100,100,100,255, 97,97,97,255, 87,87,87,255, 69,69,69,255, 86,86,86,255, 50,50,50,255, 171,176,177,255, 172,177,178,255, 166,171,172,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 167,172,173,255, 172,177,178,255, 166,171,172,255, 172,177,178,255, 167,172,173,255, 174,180,181,255, 168,174,174,255, 172,177,178,255, 168,174,174,255, 171,176,177,255, 165,170,171,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 172,177,178,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 56,56,56,255, 53,53,53,255, 53,53,53,255, 51,51,51,255, 48,48,48,255, 47,47,47,255, 45,45,45,255, 45,45,45,255, 36,36,36,255, 59,59,59,255, 56,56,56,255, 53,53,53,255, 45,45,45,255, 39,39,39,255, 54,54,54,255, 50,50,50,255, 183,189,190,255, 180,186,187,255, 170,175,176,255, 165,170,171,255, 171,176,177,255, 180,186,187,255, 171,176,177,255, 165,170,171,255, 170,175,176,255, 180,186,187,255, 171,176,177,255, 165,170,171,255, 171,176,177,255, 180,186,187,255, 170,175,176,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 165,170,171,255, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 };
[ "erich@acm.org" ]
erich@acm.org
8a713dd98fe7df58c3006b8383c7430c24f0ad89
9185e2aefea655690f26571848cccd12a4145d2a
/analysis/calibration/Th_calibScript_Int.cpp
a04a6ee8133e5e6052bfedea7d6bb006aab95a32
[]
no_license
yannmu/Gator_2020
f7460509f8df984bf3b895f0adc1e1964b16351f
8042371ec8d8ca63fe6b0fa75cf1ad6a90572ac4
refs/heads/master
2023-04-19T02:13:53.520283
2021-05-04T14:53:35
2021-05-04T14:53:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,016
cpp
//========This script should be used as the first part of a wider script for each data taking========// // For this script is required the header: header_Th_lines.h // // To run this script are required the functions contained in the following libraries: // - myFuncs.cpp // - myFitFunctions.c { TCanvas* c1 = new TCanvas("Canv1","228Th source Calibration"); gROOT -> ProcessLine(".L myFuncs.cpp");//All the functions used here gROOT -> ProcessLine(".L myFitFunctions.c");//for the function "peakFitFunc" and "initFitFunc" //Creation of an histogram with the ASCII data of the Th228 source. Draw it in the second pad. Double_t time = 0; //Acquisition time in seconds of the source string filename("228Th-TF656_20120316_FT.txt"); TH1F* h = histogen(filename,time); TF1* ff = new TF1("ff",peakFitFunc,(Double_t)h->GetXaxis()->GetFirst(),(Double_t)h->GetXaxis()->GetLast(),8); ff->SetParNames("Mean","Ampl","A","Sigma","Beta","S","Slope","Intercept"); ff->SetLineColor(2); //Vectors where I'll put all the parameters I want from the peaks vector<Double_t>* ADCcenters = new vector<Double_t>; vector<Double_t>* ADCcenters_err = new vector<Double_t>; vector<Double_t>* ADCwidths = new vector<Double_t>; vector<Double_t>* ADCwidths_err = new vector<Double_t>; vector<Double_t>* ADCresol = new vector<Double_t>; //vector<Double_t>* ADCresol_err = new vector<Double_t>; vector<Double_t>* ENRresol = new vector<Double_t>; //vector<Double_t>* ENRresol_err = new vector<Double_t>; //The lines to be searched for the calibration are (in ascending energy order): //===Pb239=== Range (1360,1440)// //===Tl277=== Range (1610,1670)// //===Pb300=== Range (1745,1800)// //===Tl583=== Range (3380,3500)// //===Bi727=== Range (4200,4340)// //===Tl763=== Range (4350,4500) ==> NO// //===Bi785=== Range (4500,4650) ==> NO// //===Tl861=== Range (5000,5200)// //===Bi1621=== Range (9340,9480)// //===Tl2615=== Range (15200,15600)// //Here follow the array of the litterature e corresponding energy lines (in KeV): Double_t ENR_litt[] = {238.632,277.37,300.089,583.187,727.33,860.53,1620.738,2614.511}; Double_t ENR_litt_err[] = {0.002,0.02,0.012,0.002,0.01,0.02,0.010,0.010}; Int_t nlines = sizeof(ENR_litt)/sizeof(Double_t); TFitResultPtr resFit; h -> GetXaxis() -> SetRangeUser(1360,1490); //ff -> SetRange(1360,1490); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); h -> GetXaxis() -> SetRangeUser(1610,1670); //ff -> SetRange(1610,1670); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); h -> GetXaxis() -> SetRangeUser(1745,1800); //ff -> SetRange(1745,1800); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); //===ee511===// //Range (2850,3050) --> Use line analisys functions..... //h2->SetAxisRange(2220,2320); //ff->SetParameters(2274,5,4500,150,-0.01); //ff->SetRange(2220,2320); //h2->Fit(ff,"R+"); //linesADC[ee511]=ff->GetParameter(0); //linesADCerr[ee511]=ff->GetParError(0); h -> GetXaxis() -> SetRangeUser(3380,3500); //ff->SetRange(3380,3500); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); h -> GetXaxis() -> SetRangeUser(4200,4340); //ff->SetRange(4200,4340); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); h -> GetXaxis() -> SetRangeUser(5000,5200); //ff->SetRange(5000,5200); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); h -> GetXaxis() -> SetRangeUser(9300,9500); //ff->SetRange(9300,9500); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); h -> GetXaxis() -> SetRangeUser(15200,15600); //ff->SetRange(15200,15600); initFitFunc(h,ff); resFit = h -> Fit(ff,"BS+"); ADCcenters -> push_back(ff->GetParameter(0)); ADCcenters_err -> push_back(ff->GetParError(0)); ADCwidths -> push_back(ff->GetParameter(3)); ADCwidths_err -> push_back(ff->GetParError(3)); ADCresol -> push_back((ff->GetParameter(3))/(ff->GetParameter(0))); //ADCresol_err -> push_back(resolError(ff,resFit)); TF1* gausFunc = new TF1("gausFunc",gausFunc,(Double_t)h->GetXaxis()->GetFirst(),(Double_t)h->GetXaxis()->GetLast(),3); gausFunc -> SetRange(15200,15600); gausFunc -> SetLineColor(3); gausFunc -> SetLineWidth(1); gausFunc -> SetParameters(ff->GetParameter(0),ff->GetParameter(3),ff->GetParameter(1)*(1-ff->GetParameter(2))); gausFunc -> Draw("same"); TF1* tailFunc = new TF1("tailFunc",tailFunc,(Double_t)h->GetXaxis()->GetFirst(),(Double_t)h->GetXaxis()->GetLast(),4); tailFunc -> SetRange(15200,15600); tailFunc -> SetLineColor(4); tailFunc -> SetLineWidth(1); tailFunc -> SetParameters(ff->GetParameter(0),ff->GetParameter(3),ff->GetParameter(4),ff->GetParameter(1)*ff->GetParameter(2)); tailFunc -> Draw("same"); TF1* stepFunc = new TF1("stepFunc",tailFunc,(Double_t)h->GetXaxis()->GetFirst(),(Double_t)h->GetXaxis()->GetLast(),3); stepFunc -> SetRange(15200,15600); stepFunc -> SetLineColor(6); stepFunc -> SetLineWidth(1); stepFunc -> SetParameters(ff->GetParameter(0),ff->GetParameter(3),ff->GetParameter(5)); stepFunc -> Draw("same"); TF1* linFunc = new TF1("linFunc","pol1"); linFunc -> SetRange(15200,15600); linFunc -> SetLineColor(7); linFunc -> SetLineWidth(1); linFunc -> SetParameters(ff->GetParameter(7),ff->GetParameter(6)); linFunc -> Draw("same"); h -> GetXaxis()->SetTitle("ADC channel"); h -> GetYaxis()->SetTitle("Entries"); // ADC => Energy conversion TCanvas* c2 = new TCanvas("c2","ADC -> Energy conversion"); c2 -> cd(); TGraphErrors* gr_cal_fw = new TGraphErrors(nlines,&(ADCcenters->at(0)),ENR_litt,&(ADCcenters_err->at(0)),ENR_litt_err); gr_cal_fw -> Draw("AP"); TF1* calib_fcn_fw = new TF1("calib_fcn_fw","pol2"); calib_fcn_fw -> SetLineColor(2); calib_fcn_fw -> SetLineWidth(1); gr_cal_fw -> Fit(calib_fcn_fw,"F"); gr_cal_fw -> GetXaxis()->SetTitle("ADC channel"); gr_cal_fw -> GetYaxis()->SetTitle("Energy [KeV]"); //Creating an "inverse calibration" from Energy to ADC (can be usefull). TCanvas* c3 = new TCanvas("c3","Energy -> ADC conversion"); c3 -> cd(); TGraphErrors* gr_cal_bw = new TGraphErrors(nlines,ENR_litt,&(ADCcenters->at(0)),ENR_litt_err,&(ADCcenters_err->at(0))); gr_cal_bw -> Draw("AP"); TF1* calib_fcn_bw = new TF1("calib_fcn_bw","pol2"); calib_fcn_bw -> SetLineColor(2); calib_fcn_bw -> SetLineWidth(1); gr_cal_bw -> Fit(calib_fcn_bw,"F"); gr_cal_bw -> GetXaxis()->SetTitle("Energy [KeV]"); gr_cal_bw -> GetYaxis()->SetTitle("ADC channel"); /* // Contruction of the ADC resolution function (errors still missing) TCanvas* c3 = new TCanvas("c3","ADC line resolution"); c3 -> cd(); TGraphErrors* gr_resol_ADC = new TGraphErrors(nlines,&(ADCcenters->at(0)),&(ADCresol->at(0)),&(ADCcenters_err->at(0)),&(ADCresol_err->at(0))); gr_resol_ADC -> SetMarkerStyle(7); gr_resol_ADC -> Draw("AP"); TF1* resol_ADC_fnc = new TF1("resol_ADC_fnc","pol2"); resol_ADC_fnc -> SetRange(1500,16000); resol_ADC_fnc -> SetLineColor(2); resol_ADC_fnc -> SetLineWidth(1); gr_resol_ADC -> Fit(resol_ADC_fnc,"M"); gr_resol_ADC -> GetXaxis()->SetTitle("ADC channel"); gr_resol_ADC -> GetYaxis()->SetTitle("Resolution"); */ //====== Here a new Canvas with the scatter plot of the residuals is generated ======// //====== Here the errors for the poins are not taken in account and a manual ========// //====== manual procedure is required ===============================================// /* TCanvas* canv3 = new TCanvas("Canv3","Calibration residuals",1); canv3 -> cd(); Double_t residuals[NLINES]; //Double_t* xbins = new Double_t[1+h2 -> GetNbinsX()]; for (i=0; i<NLINES; i++){ residuals[i] = linesThEn[i] - (ff2->Eval(linesADC[i])); } for(i = 0; i < h2 -> GetNbinsX(); i++){ xbins[i] = 0; } for(i = 0; i < h2 -> GetNbinsX(); i++){ xbins[i] = (Double_t)((ff2 -> GetParameter(0)) + i*(ff2 -> GetParameter(1)))-(ff2 -> GetParameter(1))/2; } */ /* TGraph* gr2 = new TGraph(NLINES,linesADC,residuals); gr2 -> Draw("AP"); TF1* zeroln = new TF1("ZeroLine",linearFit,0,h2->GetNbinsX(),2); zeroln -> SetParameters(0,0); zeroln -> SetLineColor(2); zeroln -> Draw("SAME"); */ /* TH1F* hcal = new TH1F(h2->GetNbinsX()); hcal -> SetName("hcal"); hcal -> SetNameTitle("Calibrated Histogram"); //hcal -> SetBins(h2 -> GetNbinsX(),xbins); cout << "ch" << "\t" << "xbins[i]" << "\t" << "BinCenter" << "\t" << "BinContent\t" << "BinContent (cal)" << endl; for(i = 0; i < h2 -> GetNbinsX(); i++){ hcal -> SetBinContent(i,h2->GetBinContent(i)); if (i < 16 || i > h2 -> GetNbinsX()-16) { cout << i << "\t" << xbins[i] << "\t" << hcal->GetBinCenter(i) << "\t" << h2->GetBinContent(i) << "\t" << hcal->GetBinContent(i) << endl; } } TCanvas* canv4 = new TCanvas("Canv4","Calibrated histogram"); canv4 -> cd(); //There is a problem in drawing the histogram //hcal -> Draw(); */ } //end of the script
[ "grodriguesaraujo@protonmail.com" ]
grodriguesaraujo@protonmail.com
b3c3027d358768cc23e59e2d09847d060d025635
dc3b1b231ee872d5d4d2e2433ed8a2d8fb740307
/chapter17/ex04.h
2326d355c3b333221f7f9e11b20f02b23e58387d
[]
no_license
coder-e1adbc/CppPrimer
d2b62b49f20892c5e53a78de0c807b168373bfc6
33ffd4fc39f4bccf4e107aec2d8dc6ed4e9d7447
refs/heads/master
2021-01-17T08:54:23.438341
2016-08-13T03:21:08
2016-08-13T03:21:08
61,343,967
0
0
null
2016-06-29T14:37:16
2016-06-17T03:49:23
C++
UTF-8
C++
false
false
601
h
#include <iostream> #include <initializer_list> #include <string> #include <tuple> #include <vector> #include "Sales_data.h" using matches = std::tuple<std::vector<Sales_data>::size_type, std::vector<Sales_data>::const_iterator, std::vector<Sales_data>::const_iterator>; std::vector<std::vector<Sales_data>> createFiles( std::initializer_list<std::string>); std::vector<matches> findBook(const std::vector<std::vector<Sales_data>> &, const std::string &); void reportResults(std::istream &, std::ostream &, const std::vector<std::vector<Sales_data>> &);
[ "mengxianghua1995+github@gmail.com" ]
mengxianghua1995+github@gmail.com
01fd495b91830655f7e1994b80ec1e28b4b117d5
da6863c90ee854ceba9ae4f4d75c2c04df394dfd
/emaxx/bjp.cpp
ef2b8796c6212c2080cf6f962f495e2a0cb1d3c3
[]
no_license
iamrakesh28/Competitve-Programming
a9db8df3d4a90ea34bad982a5c9ff90da4f9708e
c7aec676acfee8d506e5cfbbd010bdb913d880e4
refs/heads/master
2021-06-11T03:27:31.364670
2021-04-04T11:54:55
2021-04-04T11:54:55
180,629,170
1
0
null
null
null
null
UTF-8
C++
false
false
974
cpp
#include <bits/stdc++.h> using namespace std; long int ri[1000000], ci[1000000]; int main() { int t; scanf("%d", &t); while (t--) { long long r, c, sum1 = 0, sum2 = 0, mr = -1, mc = -1, mri, mci, a, b; cin>>r>>c; mri = r; mci = c; for (int i = 0; i < r; ++i) { cin>>a; ri[i] = a; sum1 += a; mr = max(mr, a); if (!a) mri--; } for (int i = 0; i < c; ++i) { cin>>b; ci[i] = b; sum2 += b; mc = max(mc, b); if (!b) mci--; } bool win = true; if (r * c <= 100000) { for (int i = 0; i < r; ++i) { int req = ri[i]; for (int j = 0; j < c; ++j) { if (req == 0) break; if (ci[j]) ci[j]--, req--; } if (req) { win = false; break; } } if(win) printf("YES\n"); else printf("NO\n"); continue; } if (mr > mci || mc > mri) win = false; if (sum1 != sum2) win = false; if(win) printf("YES\n"); else printf("NO\n"); } return 0; }
[ "root@localhost.localdomain" ]
root@localhost.localdomain
d5c3fecbdfe228beb318af03e7999703be03386c
8c0ad19e076ac6c96aadd18d1ecd748e950a3a4d
/prelude/prelude.cpp
bee47a328d17d8b4d7f5dfa3d4a8a9fa9db868b8
[ "LicenseRef-scancode-public-domain" ]
permissive
APTX/geordi
55be821b0387313f5ca2e59e28c93ba4f2c880a8
fb68f233bee8d0d5f2c794f4687a37ad1cbb4b8e
refs/heads/master
2021-01-16T22:05:59.132444
2015-10-18T15:14:38
2015-10-19T13:48:50
44,536,228
0
0
null
2015-10-19T13:21:33
2015-10-19T13:21:32
null
UTF-8
C++
false
false
5,901
cpp
#include <iostream> #include <algorithm> #include <iterator> #include <string> #include <fstream> #include <stdexcept> #include <vector> #include <cerrno> #include <cstring> #include <cstdlib> #include <cstdio> #include <ctime> #include <cassert> #include <ios> #include <set> #include <functional> #include <clocale> #include <stdlib.h> #include <regex> #include <cxxabi.h> #include <ext/malloc_allocator.h> #include <boost/noncopyable.hpp> #include "geordi.hpp" #include "bin_iomanip.hpp" template class std::basic_regex<char>; template std::string std::regex_replace<std::regex_traits<char>, char>( char const *, std::regex const &, char const *, std::regex_constants::match_flag_type); namespace geordi { namespace { bool is_prefix_of(char const * a, char const * b) { while(*a && *b == *a) { ++a; ++b; } return !*a; } void terminate_handler(bool const unexp) { // We use printf because cout/cerr may be dead. std::printf("%sterminated", parsep); if(std::type_info const * const t = abi::__cxa_current_exception_type()) { int status = 0; char const * const name = abi::__cxa_demangle(t->name(), 0, 0, &status); // In OOM conditions, the above call to __cxa_demangle will fail (and name will be 0). Supplying a preallocated buffer using __cxa_demangle's second and third parameters does not help, because it performs additional internal allocations. std::printf(" by "); if(unexp) std::printf("unexpected "); try { throw; } catch(std::exception const & e) { char const * const what = e.what(); if(!name) std::printf("exception: "); else if(!is_prefix_of(name, what)) std::printf("%s: ", name); std::printf("%s", what); } catch(char const * const s) { std::printf("exception: %s", s); } catch(int const i) { std::printf("exception: %d", i); } catch(...) { std::printf("exception"); if(name) std::printf(" of type %s", name); } } std::fclose(stdout); std::abort(); } void terminate_handler() { terminate_handler(false); } void unexpected_handler() { terminate_handler(true); } void maybe_show_asm() { std::ifstream f("0.s"); std::string line; while (std::getline(f, line) && line.find("unassembled") == std::string::npos); if (!f) return; while (std::getline(f, line) && line != "\t.cfi_startproc"); bool first = true; while (std::getline(f, line) && line != "\t.cfi_endproc") { if (line.find("\t.cfi") == 0) continue; std::replace(line.begin(), line.end(), '\t', ' '); if (line.substr(0, 1) == " ") line = line.substr(1); if (first) first = false; else std::cout << "; "; std::cout << line; } } struct initializer { initializer() { std::ios_base::Init const i; std::boolalpha(std::cout); std::boolalpha(std::wcout); std::boolalpha(std::cerr); std::boolalpha(std::wcerr); std::boolalpha(std::clog); std::boolalpha(std::wclog); std::unitbuf(std::cout); std::unitbuf(std::wcout); std::unitbuf(std::cerr); std::unitbuf(std::wcerr); std::unitbuf(std::clog); std::unitbuf(std::wclog); static bin_num_put<> bnp(1); static bin_num_put<wchar_t> wbnp(1); std::cout.imbue(std::locale(std::cout.getloc(), &bnp)); std::wcout.imbue(std::locale(std::wcout.getloc(), &wbnp)); std::cerr.imbue(std::locale(std::cerr.getloc(), &bnp)); std::wcerr.imbue(std::locale(std::wcerr.getloc(), &wbnp)); std::clog.imbue(std::locale(std::clog.getloc(), &bnp)); std::wclog.imbue(std::locale(std::wclog.getloc(), &wbnp)); // Having this compiled separately saves more than a full second per request. std::set_terminate(terminate_handler); std::set_unexpected(unexpected_handler); std::setlocale(LC_ALL, ""); maybe_show_asm(); } }; } utsname uname() { utsname r; if (uname(&r)) throw std::runtime_error(std::strerror(errno)); return r; } char const * demangle(char const * const name) { int st; char * const p = abi::__cxa_demangle(name, 0, 0, &st); switch (st) { case 0: return p; case -1: throw std::runtime_error("A memory allocation failure occurred."); case -2: throw std::runtime_error("Not a valid name under the GCC C++ ABI mangling rules."); case -3: throw std::runtime_error("One of the arguments is invalid."); default: assert(!"unexpected demangle status"); } // We could return a std::string and free p, but since deallocation is not a concern (and is even a no-op) in geordi anyway, we don't bother. } std::map<std::string, std::string> depersist() { std::ifstream f("data"); std::map<std::string, std::string> r; std::string k, v; while (getline(f, k) && getline(f, v)) r[k] = v; return r; } void persist(std::string const k, std::string const v) { auto m = depersist(); m[k] = v; std::ofstream f("data"); for (auto && p : m) f << p.first << '\n' << p.second << '\n'; } } // namespace geordi extern "C" { geordi::initializer geordi_init __attribute__((init_priority(102))); } std::ostream & operator<<(std::ostream & o, wchar_t const c) { char buf[MB_LEN_MAX]; int const i = wctomb(buf, c); if(i < 0) o << '?'; else std::copy(buf, buf + i, std::ostreambuf_iterator<char>(o)); return o; } std::ostream & operator<<(std::ostream & o, wchar_t const * s) { for(; *s; ++s) o << *s; return o; } std::ostream & operator<<(std::ostream & o, std::wstring const & s) { for(std::wstring::const_iterator i = s.begin(); i != s.end(); ++i) o << *i; return o; }
[ "eelis@eelis.net" ]
eelis@eelis.net
e6912e45621cd20efd85312fb49b4c0e0f6b8cf0
d4e96aa48ddff651558a3fe2212ebb3a3afe5ac3
/Modules/Filtering/ImageGrid/include/itkBSplineControlPointImageFilter.hxx
d3324b3483437a38e92f7065653127b9654eaf10
[ "SMLNJ", "BSD-3-Clause", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-warranty-disclaimer", "NTP", "IJG", "GPL-1.0-or-later", "libtiff", "BSD-4.3TAHOE", "...
permissive
nalinimsingh/ITK_4D
18e8929672df64df58a6446f047e6ec04d3c2616
95a2eacaeaffe572889832ef0894239f89e3f303
refs/heads/master
2020-03-17T18:58:50.953317
2018-10-01T20:46:43
2018-10-01T21:21:01
133,841,430
0
0
Apache-2.0
2018-05-17T16:34:54
2018-05-17T16:34:53
null
UTF-8
C++
false
false
20,835
hxx
/*========================================================================= * * Copyright Insight Software Consortium * * 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.txt * * 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 itkBSplineControlPointImageFilter_hxx #define itkBSplineControlPointImageFilter_hxx #include "itkBSplineControlPointImageFilter.h" #include "itkMath.h" #include "itkImageDuplicator.h" #include "itkImageRegionConstIteratorWithIndex.h" #include "itkImageRegionIterator.h" #include "itkImageRegionIteratorWithIndex.h" #include "itkMath.h" namespace itk { template<typename TInputImage, typename TOutputImage> BSplineControlPointImageFilter<TInputImage, TOutputImage> ::BSplineControlPointImageFilter() : m_DoMultilevel( false ), m_MaximumNumberOfLevels( 1 ), m_NumberOfLevels( 1 ), m_BSplineEpsilon( 1e-3 ) { this->m_Size.Fill( 0 ); this->m_Spacing.Fill( 1.0 ); this->m_Origin.Fill( 0.0 ); this->m_Direction.SetIdentity(); this->m_CloseDimension.Fill( 0 ); this->m_SplineOrder.Fill( 3 ); for( unsigned int i = 0; i < ImageDimension; i++ ) { this->m_NumberOfControlPoints[i] = ( this->m_SplineOrder[i] + 1 ); this->m_Kernel[i] = KernelType::New(); this->m_Kernel[i]->SetSplineOrder( this->m_SplineOrder[i] ); } this->m_KernelOrder0 = KernelOrder0Type::New(); this->m_KernelOrder1 = KernelOrder1Type::New(); this->m_KernelOrder2 = KernelOrder2Type::New(); this->m_KernelOrder3 = KernelOrder3Type::New(); } template<typename InputImage, typename TOutputImage> BSplineControlPointImageFilter<InputImage, TOutputImage> ::~BSplineControlPointImageFilter() { } template<typename TInputImage, typename TOutputImage> void BSplineControlPointImageFilter<TInputImage, TOutputImage> ::SetNumberOfLevels( ArrayType levels ) { this->m_NumberOfLevels = levels; this->m_MaximumNumberOfLevels = 1; for( unsigned int i = 0; i < ImageDimension; i++ ) { if( this->m_NumberOfLevels[i] == 0 ) { itkExceptionMacro( "The number of levels in each dimension must be greater than 0" ); } if( this->m_NumberOfLevels[i] > this->m_MaximumNumberOfLevels ) { this->m_MaximumNumberOfLevels = this->m_NumberOfLevels[i]; } } itkDebugMacro( "Setting m_NumberOfLevels to " << this->m_NumberOfLevels ); itkDebugMacro( "Setting m_MaximumNumberOfLevels to " << this-> m_MaximumNumberOfLevels ); if( this->m_MaximumNumberOfLevels > 1 ) { this->m_DoMultilevel = true; } else { this->m_DoMultilevel = false; } this->SetSplineOrder( this->m_SplineOrder ); this->Modified(); } template<typename TInputImage, typename TOutputImage> void BSplineControlPointImageFilter<TInputImage, TOutputImage> ::SetSplineOrder( unsigned int order ) { this->m_SplineOrder.Fill( order ); this->SetSplineOrder( this->m_SplineOrder ); } template<typename TInputImage, typename TOutputImage> void BSplineControlPointImageFilter<TInputImage, TOutputImage> ::SetSplineOrder( ArrayType order ) { itkDebugMacro( "Setting m_SplineOrder to " << order ); this->m_SplineOrder = order; for( unsigned int i = 0; i < ImageDimension; i++ ) { if( this->m_SplineOrder[i] == 0 ) { itkExceptionMacro( "The spline order in each dimension must be greater than 0" ); } this->m_Kernel[i] = KernelType::New(); this->m_Kernel[i]->SetSplineOrder( this->m_SplineOrder[i] ); if( this->m_DoMultilevel ) { typename KernelType::MatrixType C; C = this->m_Kernel[i]->GetShapeFunctionsInZeroToOneInterval(); vnl_matrix<RealType> R; vnl_matrix<RealType> S; R.set_size( C.rows(), C.cols() ); S.set_size( C.rows(), C.cols() ); for( unsigned int j = 0; j < C.rows(); j++ ) { for( unsigned int k = 0; k < C.cols(); k++ ) { R(j, k) = S(j, k) = static_cast<RealType>( C(j, k) ); } } for( unsigned int j = 0; j < C.cols(); j++ ) { RealType c = std::pow( static_cast<RealType>( 2.0 ), static_cast<RealType>( C.cols()-j-1 ) ); for( unsigned int k = 0; k < C.rows(); k++) { R(k, j) *= c; } } R = R.transpose(); R.flipud(); S = S.transpose(); S.flipud(); this->m_RefinedLatticeCoefficients[i] = ( vnl_svd<RealType>( R ).solve( S ) ).extract( 2, S.cols() ); } } this->Modified(); } template<typename TInputImage, typename TOutputImage> void BSplineControlPointImageFilter<TInputImage, TOutputImage> ::BeforeThreadedGenerateData() { const TInputImage *inputPtr = this->GetInput(); TOutputImage *outputPtr = this->GetOutput(); for( unsigned int i = 0; i < ImageDimension; i++) { if( this->m_Size[i] == 0 ) { itkExceptionMacro( "Size must be specified." ); } } outputPtr->SetOrigin( this->m_Origin ); outputPtr->SetSpacing( this->m_Spacing ); outputPtr->SetRegions( this->m_Size ); outputPtr->SetDirection( this->m_Direction ); outputPtr->Allocate(); for( unsigned int i = 0; i < ImageDimension; i++) { this->m_NumberOfControlPoints[i] = inputPtr->GetLargestPossibleRegion().GetSize()[i]; } } template<typename TInputImage, typename TOutputImage> void BSplineControlPointImageFilter<TInputImage, TOutputImage> ::ThreadedGenerateData( const OutputImageRegionType & region, ThreadIdType itkNotUsed( threadId ) ) { const TInputImage *inputPtr = this->GetInput(); TOutputImage *outputPtr = this->GetOutput(); typename PointDataImageType::Pointer collapsedPhiLattices[ImageDimension + 1]; for( unsigned int i = 0; i < ImageDimension; i++ ) { collapsedPhiLattices[i] = PointDataImageType::New(); collapsedPhiLattices[i]->CopyInformation( inputPtr ); typename PointDataImageType::SizeType size; size.Fill( 1 ); for( unsigned int j = 0; j < i; j++ ) { size[j] = inputPtr->GetLargestPossibleRegion().GetSize()[j]; } collapsedPhiLattices[i]->SetRegions( size ); collapsedPhiLattices[i]->Allocate(); } typedef ImageDuplicator<ControlPointLatticeType> ImageDuplicatorType; typename ImageDuplicatorType::Pointer duplicator = ImageDuplicatorType::New(); duplicator->SetInputImage( inputPtr ); duplicator->Update(); collapsedPhiLattices[ImageDimension] = duplicator->GetModifiableOutput(); ArrayType totalNumberOfSpans; for( unsigned int i = 0; i < ImageDimension; i++ ) { if( this->m_CloseDimension[i] ) { totalNumberOfSpans[i] = inputPtr->GetLargestPossibleRegion().GetSize()[i]; } else { totalNumberOfSpans[i] = inputPtr->GetLargestPossibleRegion().GetSize()[i] - this->m_SplineOrder[i]; } } FixedArray<RealType, ImageDimension> U; FixedArray<RealType, ImageDimension> currentU; currentU.Fill( -1 ); typename OutputImageType::IndexType startIndex = outputPtr->GetRequestedRegion().GetIndex(); typename PointDataImageType::IndexType startPhiIndex = inputPtr->GetLargestPossibleRegion().GetIndex(); RealArrayType epsilon; for( unsigned int i = 0; i < ImageDimension; i++ ) { RealType r = static_cast<RealType>( this->m_NumberOfControlPoints[i] - this->m_SplineOrder[i] ) / ( static_cast<RealType>( this->m_Size[i] - 1 ) * this->m_Spacing[i] ); epsilon[i] = r * this->m_Spacing[i] * this->m_BSplineEpsilon; } ImageRegionIteratorWithIndex<OutputImageType> It( outputPtr, region ); for( It.GoToBegin(); !It.IsAtEnd(); ++It ) { typename OutputImageType::IndexType idx = It.GetIndex(); for( unsigned int i = 0; i < ImageDimension; i++ ) { U[i] = static_cast<RealType>( totalNumberOfSpans[i] ) * static_cast<RealType>( idx[i] - startIndex[i] ) / static_cast<RealType>( this->m_Size[i] - 1 ); if( std::abs( U[i] - static_cast<RealType>( totalNumberOfSpans[i] ) ) <= epsilon[i] ) { U[i] = static_cast<RealType>( totalNumberOfSpans[i] ) - epsilon[i]; } if( U[i] < NumericTraits<RealType>::ZeroValue() && std::abs( U[i] ) <= epsilon[i] ) { U[i] = NumericTraits<RealType>::ZeroValue(); } if( U[i] < NumericTraits<RealType>::ZeroValue() || U[i] >= static_cast<RealType>( totalNumberOfSpans[i] ) ) { itkExceptionMacro( "The collapse point component " << U[i] << " is outside the corresponding parametric domain of [0, " << totalNumberOfSpans[i] << ")." ); } } for( int i = ImageDimension - 1; i >= 0; i-- ) { if( Math::NotExactlyEquals(U[i], currentU[i]) ) { for( int j = i; j >= 0; j-- ) { this->CollapsePhiLattice( collapsedPhiLattices[j + 1], collapsedPhiLattices[j], U[j], j ); currentU[j] = U[j]; } break; } } It.Set( collapsedPhiLattices[0]->GetPixel( startPhiIndex ) ); } } template<typename TInputImage, typename TOutputImage> void BSplineControlPointImageFilter<TInputImage, TOutputImage> ::CollapsePhiLattice( PointDataImageType *lattice, PointDataImageType *collapsedLattice, const RealType u, const unsigned int dimension ) { ImageRegionIteratorWithIndex< PointDataImageType > It( collapsedLattice, collapsedLattice->GetLargestPossibleRegion() ); for( It.GoToBegin(); !It.IsAtEnd(); ++It ) { PointDataType data; data.Fill( 0.0 ); typename PointDataImageType::IndexType idx = It.GetIndex(); for( unsigned int i = 0; i < this->m_SplineOrder[dimension] + 1; i++ ) { idx[dimension] = static_cast<unsigned int>( u ) + i; RealType v = u - idx[dimension] + 0.5 * static_cast<RealType>( this->m_SplineOrder[dimension] - 1 ); RealType B = 0.0; switch( this->m_SplineOrder[dimension] ) { case 0: { B = this->m_KernelOrder0->Evaluate( v ); break; } case 1: { B = this->m_KernelOrder1->Evaluate( v ); break; } case 2: { B = this->m_KernelOrder2->Evaluate( v ); break; } case 3: { B = this->m_KernelOrder3->Evaluate( v ); break; } default: { B = this->m_Kernel[dimension]->Evaluate( v ); break; } } if( this->m_CloseDimension[dimension] ) { idx[dimension] %= lattice->GetLargestPossibleRegion().GetSize()[dimension]; } data += ( lattice->GetPixel( idx ) * B ); } It.Set( data ); } } template<typename TInputImage, typename TOutputImage> unsigned int BSplineControlPointImageFilter<TInputImage, TOutputImage> ::SplitRequestedRegion( unsigned int i, unsigned int num, OutputImageRegionType &splitRegion ) { // Get the output pointer OutputImageType *outputPtr = this->GetOutput(); const SizeType requestedRegionSize = outputPtr->GetRequestedRegion().GetSize(); int splitAxis; typename TOutputImage::IndexType splitIndex; typename TOutputImage::SizeType splitSize; // Initialize the splitRegion to the output requested region splitRegion = outputPtr->GetRequestedRegion(); splitIndex = splitRegion.GetIndex(); splitSize = splitRegion.GetSize(); // split on the outermost dimension splitAxis = outputPtr->GetImageDimension() - 1; // determine the actual number of pieces that will be generated typename SizeType::SizeValueType range = requestedRegionSize[splitAxis]; unsigned int valuesPerThread = static_cast<unsigned int>( std::ceil( range / static_cast<double>( num ) ) ); unsigned int maxThreadIdUsed = static_cast<unsigned int>( std::ceil( range / static_cast<double>( valuesPerThread ) ) - 1 ); // Split the region if ( i < maxThreadIdUsed ) { splitIndex[splitAxis] += i * valuesPerThread; splitSize[splitAxis] = valuesPerThread; } if ( i == maxThreadIdUsed ) { splitIndex[splitAxis] += i * valuesPerThread; // last thread needs to process the "rest" dimension being split splitSize[splitAxis] = splitSize[splitAxis] - i * valuesPerThread; } // set the split region ivars splitRegion.SetIndex( splitIndex ); splitRegion.SetSize( splitSize ); itkDebugMacro( "Split piece: " << splitRegion ); return maxThreadIdUsed + 1; } template<typename TInputPointImage, typename TOutputImage> typename BSplineControlPointImageFilter<TInputPointImage, TOutputImage> ::ControlPointLatticeType::Pointer BSplineControlPointImageFilter<TInputPointImage, TOutputImage> ::RefineControlPointLattice( ArrayType numberOfLevels ) { this->SetNumberOfLevels( numberOfLevels ); typedef ImageDuplicator<ControlPointLatticeType> ImageDuplicatorType; typename ImageDuplicatorType::Pointer duplicator = ImageDuplicatorType::New(); duplicator->SetInputImage( this->GetInput() ); duplicator->Update(); typename ControlPointLatticeType::Pointer psiLattice = ControlPointLatticeType::New(); psiLattice = duplicator->GetModifiableOutput(); for( unsigned int m = 1; m < this->m_MaximumNumberOfLevels; m++ ) { ArrayType numberOfNewControlPoints; for( unsigned int i = 0; i < ImageDimension; i++ ) { numberOfNewControlPoints[i] = psiLattice->GetLargestPossibleRegion().GetSize()[i]; } for( unsigned int i = 0; i < ImageDimension; i++ ) { if( m < this->m_NumberOfLevels[i] ) { numberOfNewControlPoints[i] = 2 * numberOfNewControlPoints[i]-this->m_SplineOrder[i]; } } typename RealImageType::RegionType::SizeType size; for( unsigned int i = 0; i < ImageDimension; i++ ) { if( this->m_CloseDimension[i] ) { size[i] = numberOfNewControlPoints[i] - this->m_SplineOrder[i]; } else { size[i] = numberOfNewControlPoints[i]; } } typename ControlPointLatticeType::Pointer refinedLattice = ControlPointLatticeType::New(); refinedLattice->SetRegions( size ); refinedLattice->Allocate(); PixelType data; data.Fill( 0.0 ); refinedLattice->FillBuffer( data ); typename ControlPointLatticeType::IndexType idx; typename ControlPointLatticeType::IndexType idxPsi; typename ControlPointLatticeType::IndexType tmp; typename ControlPointLatticeType::IndexType tmpPsi; typename ControlPointLatticeType::IndexType off; typename ControlPointLatticeType::IndexType offPsi; typename ControlPointLatticeType::RegionType::SizeType sizePsi; size.Fill( 2 ); unsigned int N = 1; for( unsigned int i = 0; i < ImageDimension; i++ ) { N *= ( this->m_SplineOrder[i] + 1 ); sizePsi[i] = this->m_SplineOrder[i] + 1; } ImageRegionIteratorWithIndex<ControlPointLatticeType> It( refinedLattice, refinedLattice->GetLargestPossibleRegion() ); const TInputPointImage *input = this->GetInput(); It.GoToBegin(); while( !It.IsAtEnd() ) { idx = It.GetIndex(); for( unsigned int i = 0; i < ImageDimension; i++ ) { if( m < this->m_NumberOfLevels[i] ) { idxPsi[i] = static_cast<unsigned int>( 0.5 * idx[i] ); } else { idxPsi[i] = static_cast<unsigned int>( idx[i] ); } } for( unsigned int i = 0; i < ( 2 << ( ImageDimension - 1 ) ); i++ ) { PixelType sum( 0.0 ); PixelType val; off = this->NumberToIndex( i, size ); bool outOfBoundary = false; for( unsigned int j = 0; j < ImageDimension; j++ ) { tmp[j] = idx[j] + off[j]; if( tmp[j] >= static_cast<int>( numberOfNewControlPoints[j] ) && !this->m_CloseDimension[j] ) { outOfBoundary = true; break; } if( this->m_CloseDimension[j] ) { tmp[j] %= refinedLattice->GetLargestPossibleRegion().GetSize()[j]; } } if( outOfBoundary ) { continue; } for( unsigned int j = 0; j < N; j++ ) { offPsi = this->NumberToIndex( j, sizePsi ); bool outOfBoundary2 = false; for( unsigned int k = 0; k < ImageDimension; k++ ) { tmpPsi[k] = idxPsi[k] + offPsi[k]; if( tmpPsi[k] >= static_cast<int>( input->GetLargestPossibleRegion().GetSize()[k] ) && !this->m_CloseDimension[k] ) { outOfBoundary2 = true; break; } if( this->m_CloseDimension[k] ) { tmpPsi[k] %= psiLattice->GetLargestPossibleRegion().GetSize()[k]; } } if( outOfBoundary2 ) { continue; } RealType coeff = 1.0; for( unsigned int k = 0; k < ImageDimension; k++ ) { coeff *= this->m_RefinedLatticeCoefficients[k]( off[k], offPsi[k] ); } val = psiLattice->GetPixel( tmpPsi ); val *= coeff; sum += val; } refinedLattice->SetPixel( tmp, sum ); } bool IsEvenIndex = false; while( !IsEvenIndex && !It.IsAtEnd() ) { ++It; idx = It.GetIndex(); IsEvenIndex = true; for( unsigned int i = 0; i < ImageDimension; i++ ) { if( idx[i] % 2 ) { IsEvenIndex = false; } } } } typename ImageDuplicatorType::Pointer duplicator2 = ImageDuplicatorType::New(); duplicator2->SetInputImage( refinedLattice ); duplicator2->Update(); psiLattice = duplicator2->GetModifiableOutput(); } // Specify the pose parameters of the control point lattice typename PointDataImageType::PointType origin; typename PointDataImageType::SpacingType spacing; for( unsigned int i = 0; i < ImageDimension; i++ ) { RealType domain = this->m_Spacing[i] * static_cast<RealType>( this->m_Size[i] - 1 ); unsigned int totalNumberOfSpans = psiLattice->GetLargestPossibleRegion().GetSize()[i]; if( !this->m_CloseDimension[i] ) { totalNumberOfSpans -= this->m_SplineOrder[i]; } spacing[i] = domain / static_cast<RealType>( totalNumberOfSpans ); origin[i] = -0.5 * spacing[i] * ( this->m_SplineOrder[i] - 1 ); } origin = this->m_Direction * origin; psiLattice->SetOrigin( origin ); psiLattice->SetSpacing( spacing ); psiLattice->SetDirection( this->m_Direction ); return psiLattice; } template<typename TInputImage, typename TOutputImage> void BSplineControlPointImageFilter<TInputImage, TOutputImage> ::PrintSelf( std::ostream& os, Indent indent ) const { Superclass::PrintSelf( os, indent ); for( unsigned int i = 0; i < ImageDimension; i++ ) { this->m_Kernel[i]->Print( os, indent.GetNextIndent() ); } os << indent << "Spline order: " << this->m_SplineOrder << std::endl; os << indent << "Close dimension: " << this->m_CloseDimension << std::endl; os << indent << "Parametric domain" << std::endl; os << indent << " Origin: " << this->m_Origin << std::endl; os << indent << " Spacing: " << this->m_Spacing << std::endl; os << indent << " Size: " << this->m_Size << std::endl; os << indent << " Direction: " << this->m_Direction << std::endl; } } //end namespace itk #endif
[ "ruizhi@csail.mit.edu" ]
ruizhi@csail.mit.edu
47f9f3cb8aa74d084baa116bdf84d08579538bca
d5da09aff917eba8e85b9e4d9057ca1ace59d735
/tr69profile/hwst_diag_tuner.cpp
097328cda50e68106c10d09ae07ea1fccee10866
[ "Apache-2.0" ]
permissive
rdkcmf/rdk-hwselftest
68b8703161686f435dd18c09cee7a9d53aaf1f54
b0f104a5f24d74ac7187f10b609adb9c3765b677
refs/heads/master
2023-02-05T05:53:22.968221
2018-10-03T17:47:56
2018-10-03T17:48:43
106,031,597
0
2
null
null
null
null
UTF-8
C++
false
false
1,722
cpp
/* * If not stated otherwise in this file or this component's Licenses.txt file the * following copyright and licenses apply: * * Copyright 2017 RDK Management * * 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. */ #include <iostream> #include <memory> #include <sstream> #include "hwst_diag_tuner.hpp" #include "hwst_comm.hpp" #include "hwst_log.hpp" using hwst::Comm; namespace hwst { DiagTuner::DiagTuner(const std::string &params_): Diag("tuner_status", params_) { presentationResult.insert(std::pair<int, const std::string>(SI_CACHE_MISSING, "WARNING")); presentationResult.insert(std::pair<int, const std::string>(TUNER_NO_LOCK, "WARNING")); presentationResult.insert(std::pair<int, const std::string>(TUNER_BUSY, "WARNING")); presentationComment.insert(std::pair<int, const std::string>(SI_CACHE_MISSING, "Missing Channel Map")); presentationComment.insert(std::pair<int, const std::string>(TUNER_NO_LOCK, "Lock Failed - Check Cable")); presentationComment.insert(std::pair<int, const std::string>(TUNER_BUSY, "One or more tuners are busy. All tuners were not tested")); } std::string DiagTuner::getPresentationName() const { return "QAM Tuner"; }; } // namespace hwst
[ "jim.lawton@accenture.com" ]
jim.lawton@accenture.com
0f525144f5e68926e0163a89f013e59cecd21ed3
1ad60460a7c5b8cbf7b5a77746ac84274b0eed05
/cast_user.cpp
225944c6485c1474e70b745a725aa97186b70818
[]
no_license
ting2313/BallPool
e46c5632fe5a8a546ebde79653e5cf653a3e991d
d07ff004516a4fbd63ae36c37d096226e26feb18
refs/heads/master
2021-04-07T12:49:49.802766
2020-03-20T05:42:37
2020-03-20T05:42:37
248,677,033
0
0
null
null
null
null
UTF-8
C++
false
false
712
cpp
#include"cast_user.h" #include"ball_enemy.h" #include"mainwindow.h" #include<QGraphicsScene> extern Score *score; extern Text *text; cast_user::cast_user() { hp=1; QTimer *timer= new QTimer(this); connect(timer, SIGNAL(timeout()),this, SLOT(hurt())); timer->start(50); } void cast_user::hurt() { QList<QGraphicsItem *> colliding_items = collidingItems(); for (int i = 0, n = colliding_items.size(); i < n; ++i) { if (typeid(*(colliding_items[i])) == typeid(ball_enemy)) { if(hp>0){ hp--; text->protect(); score->cost(50); } if(hp<=0){ return ; } } } }
[ "ting2313@gmail.com" ]
ting2313@gmail.com
aa9c52c5e095cfec6d4ae020e0255b61d3ead41b
f31161880a35e558e1a90e8b78e6366e80a9db9e
/Track/track.h
931af4753cd174b8147b03328a8c195e0d4b6fcd
[]
no_license
Andrea269/playRacingBike
ba39dbfe903b69939d85c06e2111981bd5102fe8
5a38b41b4906cc62ef196aebf8e842e66acfbd62
refs/heads/master
2020-03-23T00:33:32.653338
2018-08-30T17:09:10
2018-08-30T17:09:10
140,870,082
0
0
null
null
null
null
UTF-8
C++
false
false
511
h
// // Created by andrea on 14/07/18. // #ifndef PLAYRACINGBIKE_TRACK_H #define PLAYRACINGBIKE_TRACK_H #endif //PLAYRACINGBIKE_TRACK_H class Track{ public: void InitTrack(float x, float z); void Render(); bool OnTrack(float x, float z); Track(){ positionOnY=0; positionOnX, positionOnZ=0; } float positionOnX, positionOnY, positionOnZ; const float scale = 10; private: void SetupRoadTexture(float minX, float maxX, float minZ, float maxZ, int numbertexture); };
[ "a.pascali2@studenti.uniba.it" ]
a.pascali2@studenti.uniba.it
6dd75cde621493623d158315b3170ed1867c98cf
bed0c5fdcf47f5eaf7f98fd48a0d6af81235094e
/ork.core/inc/ork/cvector3.hpp
ff38fd11dd94618a7b9b96bb1173c13101ec99b8
[ "CC-BY-4.0", "CC-BY-3.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
tweakoz/zed64
044aa4b10476031fcf615681db7f250abcc7603f
c0231444418999191182d53d9319bf7978422bfb
refs/heads/master
2021-05-04T18:02:05.510849
2019-03-03T09:21:27
2019-03-03T09:21:27
24,151,704
4
0
null
null
null
null
UTF-8
C++
false
false
13,628
hpp
/////////////////////////////////////////////////////////////////////////////// // MicroOrk (Orkid) // Copyright 1996-2013, Michael T. Mayers // Provided under the MIT License (see LICENSE.txt) /////////////////////////////////////////////////////////////////////////////// #include "cmatrix4.h" #include "cmatrix3.h" #include "cvector4.h" /////////////////////////////////////////////////////////////////////////////// namespace ork { /////////////////////////////////////////////////////////////////////////////// bool UsingOpenGl(); /////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T> TVector3<T>::Saturate( void ) const { TVector3<T> rval = *this; rval.m_x = (rval.m_x>1.0f) ? 1.0f : (rval.m_x<0.0f) ? 0.0f : rval.m_x; rval.m_y = (rval.m_y>1.0f) ? 1.0f : (rval.m_y<0.0f) ? 0.0f : rval.m_y; rval.m_z = (rval.m_z>1.0f) ? 1.0f : (rval.m_z<0.0f) ? 0.0f : rval.m_z; return rval; } template <typename T> const TVector3<T> & TVector3<T>::Black( void ) { static const TVector3<T> Black( T(0.0f), T(0.0f), T(0.0f) ); return Black; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::DarkGrey( void ) { static const TVector3<T> DarkGrey( T(0.250f), T(0.250f), T(0.250f) ); return DarkGrey; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::MediumGrey( void ) { static const TVector3<T> MediumGrey( T(0.50f), T(0.50f), T(0.50f) ); return MediumGrey; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::LightGrey( void ) { static const TVector3<T> LightGrey(T(0.75f), T(0.75f), T(0.75f) ); return LightGrey; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::White( void ) { static const TVector3<T> White( T(1.0f), T(1.0f), T(1.0f) ); return White; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::Red( void ) { static const TVector3<T> Red( T(1.0f), T(0.0f), T(0.0f) ); return Red; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::Green( void ) { static const TVector3<T> Green( T(0.0f), T(1.0f), T(0.0f) ); return Green; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::Blue( void ) { static const TVector3<T> Blue( T(0.0f), T(0.0f), T(1.0f) ); return Blue; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::Magenta( void ) { static const TVector3<T> Magenta( T(1.0f), T(0.0f), T(1.0f) ); return Magenta; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::Cyan( void ) { static const TVector3<T> Cyan( T(0.0f), T(1.0f), T(1.0f) ); return Cyan; } /////////////////////////////////////////////////////////////////////////////// template <typename T> const TVector3<T> & TVector3<T>::Yellow( void ) { static const TVector3<T> Yellow( T(1.0f), T(1.0f), T(0.0f) ); return Yellow; } /////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T>::TVector3() : m_x(T(0.0f)) , m_y(T(0.0f)) , m_z(T(0.0f)) { } /////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T>::TVector3( T x, T y, T z) : m_x(x) , m_y(y) , m_z(z) { } //////////////////////////////////////////////////////////////////////////////// template <typename T> u32 TVector3<T>::GetVtxColorAsU32( void ) const { u32 r = u32(GetX()*T(255.0f)); u32 g = u32(GetY()*T(255.0f)); u32 b = u32(GetZ()*T(255.0f)); u32 a = 255; if( ork::UsingOpenGl() ) return u32( (a<<24)|(b<<16)|(g<<8)|r ); else return u32( (a<<24)|(r<<16)|(g<<8)|b ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> u32 TVector3<T>::GetABGRU32( void ) const { u32 r = u32(GetX()*T(255.0f)); u32 g = u32(GetY()*T(255.0f)); u32 b = u32(GetZ()*T(255.0f)); u32 a = 255; return u32( (a<<24)|(b<<16)|(g<<8)|r ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> u32 TVector3<T>::GetARGBU32( void ) const { u32 r = u32(GetX()*T(255.0f)); u32 g = u32(GetY()*T(255.0f)); u32 b = u32(GetZ()*T(255.0f)); u32 a = 255; return u32( (a<<24)|(r<<16)|(g<<8)|b ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> u32 TVector3<T>::GetRGBAU32( void ) const { u32 r = u32(GetX()*T(255.0f)); u32 g = u32(GetY()*T(255.0f)); u32 b = u32(GetZ()*T(255.0f)); u32 a = 255; u32 rval = 0; #if defined(__sgi) rval = ( (b<<24)|(g<<16)|(r<<8)|a ); #else rval = ( (a<<24)|(r<<16)|(g<<8)|b ); #endif return rval; } /////////////////////////////////////////////////////////////////////////////// template <typename T> u32 TVector3<T>::GetBGRAU32( void ) const { u32 r = u32(GetX()*T(255.0f)); u32 g = u32(GetY()*T(255.0f)); u32 b = u32(GetZ()*T(255.0f)); u32 a = 255; return u32( (b<<24)|(g<<16)|(r<<8)|a ); } /////////////////////////////////////////////////////////////////////////////// template <typename T> u16 TVector3<T>::GetRGBU16() const { u32 r = u32(GetX() * T(31.0f)); u32 g = u32(GetY() * T(31.0f)); u32 b = u32(GetZ() * T(31.0f)); u16 rval = u16((b<<10)|(g<<5)|r); return rval; } /////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::SetRGBAU32(u32 uval) { u32 r = (uval>>24) & 0xff; u32 g = (uval>>16) & 0xff; u32 b = (uval>>8) & 0xff; static const T kfic(1.0f / 255.0f); SetX(kfic * T(int(r))); SetY(kfic * T(int(g))); SetZ(kfic * T(int(b))); } /////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::SetBGRAU32( u32 uval ) { u32 b = (uval>>24) & 0xff; u32 g = (uval>>16) & 0xff; u32 r = (uval>>8) & 0xff; static const T kfic(1.0f / 255.0f); SetX(kfic * T(int(r))); SetY(kfic * T(int(g))); SetZ(kfic * T(int(b))); } /////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::SetARGBU32(u32 uval) { u32 r = (uval>>16) & 0xff; u32 g = (uval>>8) & 0xff; u32 b = (uval) & 0xff; static const T kfic(1.0f / 255.0f); SetX(kfic * T(int(r))); SetY(kfic * T(int(g))); SetZ(kfic * T(int(b))); } /////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::SetABGRU32(u32 uval) { u32 b = (uval>>16) & 0xff; u32 g = (uval>>8) & 0xff; u32 r = (uval) & 0xff; static const T kfic(1.0f / 255.0f); SetX(kfic * T(int(r))); SetY(kfic * T(int(g))); SetZ(kfic * T(int(b))); } /////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::SetHSV( T h, T s, T v ) { } template <typename T> TVector3<T> TVector3<T>::Reflect( const TVector3 &N ) const { const TVector3<T>& I = *this; TVector3<T> R = I-(N*2.0f*N.Dot(I)); return R; } /////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T>::TVector3( const TVector3<T> &vec) { m_x = vec.m_x; m_y = vec.m_y; m_z = vec.m_z; } /////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T>::TVector3( const TVector4<T> &vec) { m_x = vec.GetX(); m_y = vec.GetY(); m_z = vec.GetZ(); } /////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T>::TVector3( const TVector2<T> &vec) { m_x = vec.GetX(); m_y = vec.GetY(); m_z = T(0); } /////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T>::TVector3( const TVector2<T> &vec, T w) { m_x = vec.GetX(); m_y = vec.GetY(); m_z = w; } //////////////////////////////////////////////////////////////////////////////// template <typename T> T TVector3<T>::Dot( const TVector3<T> &vec) const { #if defined WII return __fmadds(m_x,vec.m_x,__fmadds(m_y,vec.m_y,__fmadds(m_z,vec.m_z,0.0f))); #else return ( (m_x * vec.m_x) + (m_y * vec.m_y) + (m_z * vec.m_z) ); #endif } //////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T> TVector3<T>::Cross( const TVector3<T> &vec) const // c = this X vec { T vx = ((m_y * vec.GetZ()) - (m_z * vec.GetY())); T vy = ((m_z * vec.GetX()) - (m_x * vec.GetZ())); T vz = ((m_x * vec.GetY()) - (m_y * vec.GetX())); return ( TVector3<T>( vx, vy, vz ) ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::Normalize(void) { T mag = Mag(); if( mag > std::numeric_limits<T>::epsilon() ) { T distance = (T) 1.0f / mag ; m_x *= distance; m_y *= distance; m_z *= distance; } } //////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T> TVector3<T>::Normal() const { TVector3<T> vec(*this); vec.Normalize(); return vec; } //////////////////////////////////////////////////////////////////////////////// template <typename T> T TVector3<T>::Mag(void) const { return sqrt(m_x * m_x + m_y * m_y + m_z * m_z); } //////////////////////////////////////////////////////////////////////////////// template <typename T> T TVector3<T>::MagSquared(void) const { T mag = (m_x * m_x + m_y * m_y + m_z * m_z); return mag; } //////////////////////////////////////////////////////////////////////////////// template <typename T> TVector4<T> TVector3<T>::Transform( const TMatrix4<T> &matrix ) const { T tx,ty,tz,tw; T *mp = (T *) matrix.elements; T x = m_x; T y = m_y; T z = m_z; T w = T(1.0f); #if 0 //defined WII tx = __fmadds(m_x,vec.m_x,__fmadds(m_y,vec.m_y,__fmadds(m_z,vec.m_z,0.0f))); #else tx = x*mp[0] + y*mp[4] + z*mp[8] + w*mp[12]; ty = x*mp[1] + y*mp[5] + z*mp[9] + w*mp[13]; tz = x*mp[2] + y*mp[6] + z*mp[10] + w*mp[14]; tw = x*mp[3] + y*mp[7] + z*mp[11] + w*mp[15]; #endif return TVector4<T>( tx, ty, tz, tw ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T> TVector3<T>::Transform( const TMatrix3<T> &matrix ) const { T tx,ty,tz; T *mp = (T *) matrix.elements; T x = m_x; T y = m_y; T z = m_z; tx = x*mp[0] + y*mp[3] + z*mp[6]; ty = x*mp[1] + y*mp[4] + z*mp[7]; tz = x*mp[2] + y*mp[5] + z*mp[8]; return TVector3<T>( tx, ty, tz ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> TVector3<T> TVector3<T>::Transform3x3( const TMatrix4<T> &matrix ) const { T tx,ty,tz; T *mp = (T *) matrix.elements; T x = m_x; T y = m_y; T z = m_z; tx = x*mp[0] + y*mp[4] + z*mp[8]; ty = x*mp[1] + y*mp[5] + z*mp[9]; tz = x*mp[2] + y*mp[6] + z*mp[10]; return TVector3<T>( tx, ty, tz ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::Serp( const TVector3<T> & PA, const TVector3<T> & PB, const TVector3<T> & PC, const TVector3<T> & PD, T Par ) { TVector3<T> PAB, PCD; PAB.Lerp( PA, PB, Par ); PCD.Lerp( PC, PD, Par ); Lerp( PAB, PCD, Par ); } //////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::RotateX(T rad) { T oldY = m_y; T oldZ = m_z; m_y = (oldY * cos(rad) - oldZ * sin(rad)); m_z = (oldY * sin(rad) + oldZ * cos(rad)); } //////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::RotateY(T rad) { T oldX = m_x; T oldZ = m_z; m_x = (oldX * cos(rad) - oldZ * sin(rad)); m_z = (oldX * sin(rad) + oldZ * cos(rad)); } //////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::RotateZ(T rad) { T oldX = m_x; T oldY = m_y; m_x = (oldX * cos(rad) - oldY * sin(rad)); m_y = (oldX * sin(rad) + oldY * cos(rad)); } /////////////////////////////////////////////////////////////////////////////// template <typename T> void TVector3<T>::Lerp( const TVector3<T> &from, const TVector3<T> &to, T par ) { if( par < T(0.0f) ) par = T(0.0f); if( par > T(1.0f) ) par = T(1.0f); T ipar = T(1.0f) - par; m_x = (from.m_x*ipar) + (to.m_x*par); m_y = (from.m_y*ipar) + (to.m_y*par); m_z = (from.m_z*ipar) + (to.m_z*par); } //////////////////////////////////////////////////////////////////////////////// template <typename T> T TVector3<T>::CalcTriArea( const TVector3<T> &V, const TVector3<T> & N ) { return T(0); } }
[ "michael@tweakoz.com" ]
michael@tweakoz.com
ed90c80a66283d2e94388e476098342501e58628
09b4f7c41d68c433e99963d104fc8e9254202450
/tests/test_gurobi.cc
5e5152d7435ec0c317a203579c56877e506f242e
[ "MIT" ]
permissive
Jvanrhijn/lpinterface
3015cbd26b2fb9182203e0cc2e528428d778239b
49b038582aad2eebef129e2755736dfbdf79ec50
refs/heads/master
2020-06-18T07:12:48.291598
2019-10-20T07:28:14
2019-10-20T07:28:14
196,208,329
2
1
MIT
2019-09-16T13:22:36
2019-07-10T13:15:06
C++
UTF-8
C++
false
false
4,519
cc
#include <gtest/gtest.h> #include <rapidcheck/gtest.h> #include <fcntl.h> #include <sys/stat.h> #include <unistd.h> #include <iostream> #include "generators.hpp" #include "lpinterface.hpp" #include "lpinterface/gurobi/lpinterface_gurobi.hpp" #include "testutil.hpp" #include "test_common.hpp" using namespace lpint; using namespace testing; constexpr const std::size_t nrows = 50; constexpr const std::size_t ncols = 50; inline int configure_gurobi(const ILinearProgramHandle& lp, GRBenv** env, GRBmodel** model) { int saved_stdout = dup(1); close(1); int new_stdout = open("/dev/null", O_WRONLY); int error = GRBloadenv(env, ""); close(new_stdout); dup(saved_stdout); close(saved_stdout); if (error) { return error; } error = GRBnewmodel(*env, model, nullptr, 0, nullptr, nullptr, nullptr, nullptr, nullptr); if (error) { return error; } GRBsetintparam(GRBgetenv(*model), "outputflag", 0); // set objective sense error = GRBsetintattr(*model, GRB_INT_ATTR_MODELSENSE, lp.optimization_type() == OptimizationType::Maximize ? GRB_MAXIMIZE : GRB_MINIMIZE); if (error) { return error; } // add variables auto obj = lp.objective(); auto vars = lp.variables(); for (std::size_t i = 0; i < lp.num_vars(); i++) { error = GRBaddvar(*model, 0, nullptr, nullptr, obj.values[i], vars[i].lower(), vars[i].upper(), GRB_CONTINUOUS, nullptr); if (error) { return error; } } auto constraints = lp.constraints(); // add constraints std::size_t idx = 0; for (auto& constraint : constraints) { auto& row = constraint.row; error = GRBaddrangeconstr(*model, row.num_nonzero(), row.nonzero_indices().data(), row.values().data(), constraint.lower_bound, constraint.upper_bound, nullptr); if (error) { return error; } idx++; } return 0; } TEST(Gurobi, AddAndRetrieveObjective) { test_add_retrieve_objective<GurobiSolver>(ncols); } TEST(Gurobi, UnsolvedModelThrowsOnAccess) { test_model_not_solved_acces_throw<GurobiSolver>(); } TEST(Gurobi, SupportedParams) { test_supported_params<GurobiSolver>( { Param::Threads, Param::TimeLimit, Param::Verbosity, Param::IterationLimit, Param::PrimalOrDual, Param::Cutoff }, { Param::Infinity, Param::ObjectiveLowerLimit, Param::ObjectiveUpperLimit, } ); } RC_GTEST_PROP(Gurobi, SameResultAsBareGurobi, ()) { constexpr double TIME_LIMIT = 0.1; auto grb = rc::genLinearProgramSolver<GurobiSolver>( nrows, ncols); GRBenv* env = nullptr; GRBmodel* model = nullptr; int error; try { error = configure_gurobi(grb.linear_program(), &env, &model); GRBsetdblparam(env, GRB_DBL_PAR_TIMELIMIT, TIME_LIMIT); grb.set_parameter(Param::TimeLimit, TIME_LIMIT); grb.set_parameter(Param::Verbosity, 0); } catch (const GurobiException& e) { RC_ASSERT(e.code() == error); return; } // solve the lp Status status; try { error = GRBoptimize(model); status = grb.solve(); } catch (const GurobiException& e) { std::cout << e.what() << std::endl; RC_ASSERT(e.code() == error); return; } // retrieve solution info from gurobi int gurobi_status; do { error = GRBgetintattr(model, GRB_INT_ATTR_STATUS, &gurobi_status); } while (gurobi_status == GRB_INPROGRESS); if (error) { throw GurobiException(error, GRBgeterrormsg(env)); } // gurobi and interface should return same status RC_ASSERT(GurobiSolver::convert_gurobi_status(gurobi_status) == status); if (status == Status::Optimal) { const auto nvars = grb.linear_program().num_vars(); std::vector<double> solution(nvars); error = GRBgetdblattrarray(model, GRB_DBL_ATTR_X, 0, solution.size(), solution.data()); RC_ASSERT(solution == grb.get_solution().primal); auto nconstr = grb.linear_program().constraints().size(); std::vector<double> dual(nconstr); int err = GRBgetdblattrarray(model, GRB_DBL_ATTR_PI, 0, dual.size(), dual.data()); if (err != 10005) { RC_ASSERT(dual == grb.get_solution().dual); } double objval; GRBgetdblattr(model, GRB_DBL_ATTR_OBJVAL, &objval); RC_ASSERT(std::abs(objval - grb.get_solution().objective_value) < 1e-15); } GRBfreemodel(model); GRBfreeenv(env); }
[ "jesse.v.rhijn@gmail.com" ]
jesse.v.rhijn@gmail.com
3f5472004901004b2eb8c8d004676686d777ad22
0d60ce9b935b4e688b83bab3b89a1ded4725174c
/examples/allegro5_example/imgui_impl_allegro5.cpp
1c9165254183b6ca816b91b2365d8de172416dbf
[ "MIT", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference" ]
permissive
azsry/imgui
24f087030e576463bb83412e364c9c82bda7ff27
08e20ae4653a603ebc581c8900a4fe90f3101697
refs/heads/master
2020-03-18T20:27:45.169363
2018-01-05T14:33:24
2018-05-28T19:48:25
135,217,408
1
0
MIT
2018-05-28T23:14:18
2018-05-28T23:14:17
null
UTF-8
C++
false
false
12,517
cpp
// ImGui Allegro 5 bindings // Implemented features: // [X] User texture binding. Use 'ALLEGRO_BITMAP*' as ImTextureID. Read the FAQ about ImTextureID in imgui.cpp. // Missing features: // [ ] Clipboard support via al_set_clipboard_text/al_clipboard_has_text. // You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this. // If you use this binding you'll need to call 4 functions: ImGui_ImplXXXX_Init(), ImGui_ImplXXXX_NewFrame(), ImGui::Render() and ImGui_ImplXXXX_Shutdown(). // If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp. // https://github.com/ocornut/imgui, Original code by @birthggd // CHANGELOG // (minor and older changes stripped away, please see git history for details) // 2018-04-18: Misc: Renamed file from imgui_impl_a5.cpp to imgui_impl_allegro5.cpp. // 2018-04-18: Misc: Added support for 32-bits vertex indices to avoid conversion at runtime. Added imconfig_allegro5.h to enforce 32-bit indices when included from imgui.h. // 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplA5_RenderDrawData() in the .h file so you can call it yourself. // 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves. // 2018-02-06: Inputs: Added mapping for ImGuiKey_Space. #include <stdint.h> // uint64_t #include <cstring> // memcpy #include "imgui.h" #include "imgui_impl_allegro5.h" #include <allegro5/allegro.h> #include <allegro5/allegro_primitives.h> #ifdef _WIN32 #include <allegro5/allegro_windows.h> #endif // Data static ALLEGRO_DISPLAY* g_Display = NULL; static ALLEGRO_BITMAP* g_Texture = NULL; static double g_Time = 0.0; static ALLEGRO_MOUSE_CURSOR* g_MouseCursorInvisible = NULL; static ALLEGRO_VERTEX_DECL* g_VertexDecl = NULL; struct ImDrawVertAllegro { ImVec2 pos; ImVec2 uv; ALLEGRO_COLOR col; }; // Render function. // (this used to be set in io.RenderDrawListsFn and called by ImGui::Render(), but you can now call this directly from your main loop) void ImGui_ImplA5_RenderDrawData(ImDrawData* draw_data) { int op, src, dst; al_get_blender(&op, &src, &dst); al_set_blender(ALLEGRO_ADD, ALLEGRO_ALPHA, ALLEGRO_INVERSE_ALPHA); for (int n = 0; n < draw_data->CmdListsCount; n++) { const ImDrawList* cmd_list = draw_data->CmdLists[n]; // FIXME-OPT: Unfortunately Allegro doesn't support 32-bits packed colors so we have to convert them to 4 floats static ImVector<ImDrawVertAllegro> vertices; vertices.resize(cmd_list->VtxBuffer.Size); for (int i = 0; i < cmd_list->VtxBuffer.Size; ++i) { const ImDrawVert &dv = cmd_list->VtxBuffer[i]; ImDrawVertAllegro v; v.pos = dv.pos; v.uv = dv.uv; unsigned char *c = (unsigned char*)&dv.col; v.col = al_map_rgba(c[0], c[1], c[2], c[3]); vertices[i] = v; } const int* indices = NULL; if (sizeof(ImDrawIdx) == 2) { // FIXME-OPT: Unfortunately Allegro doesn't support 16-bit indices.. You can '#define ImDrawIdx int' in imconfig.h to request ImGui to output 32-bit indices. // Otherwise, we convert them from 16-bit to 32-bit at runtime here, which works perfectly but is a little wasteful. static ImVector<int> indices_converted; indices_converted.resize(cmd_list->IdxBuffer.Size); for (int i = 0; i < cmd_list->IdxBuffer.Size; ++i) indices_converted[i] = (int)cmd_list->IdxBuffer.Data[i]; indices = indices_converted.Data; } else if (sizeof(ImDrawIdx) == 4) { indices = (const int*)cmd_list->IdxBuffer.Data; } int idx_offset = 0; for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) { const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; if (pcmd->UserCallback) { pcmd->UserCallback(cmd_list, pcmd); } else { ALLEGRO_BITMAP* texture = (ALLEGRO_BITMAP*)pcmd->TextureId; al_set_clipping_rectangle(pcmd->ClipRect.x, pcmd->ClipRect.y, pcmd->ClipRect.z-pcmd->ClipRect.x, pcmd->ClipRect.w-pcmd->ClipRect.y); al_draw_indexed_prim(&vertices[0], g_VertexDecl, texture, &indices[idx_offset], pcmd->ElemCount, ALLEGRO_PRIM_TRIANGLE_LIST); } idx_offset += pcmd->ElemCount; } } // Restore modified state al_set_blender(op, src, dst); al_set_clipping_rectangle(0, 0, al_get_display_width(g_Display), al_get_display_height(g_Display)); } bool Imgui_ImplA5_CreateDeviceObjects() { // Build texture atlas ImGuiIO &io = ImGui::GetIO(); unsigned char *pixels; int width, height; io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); // Create texture int flags = al_get_new_bitmap_flags(); int fmt = al_get_new_bitmap_format(); al_set_new_bitmap_flags(ALLEGRO_MEMORY_BITMAP|ALLEGRO_MIN_LINEAR|ALLEGRO_MAG_LINEAR); al_set_new_bitmap_format(ALLEGRO_PIXEL_FORMAT_ABGR_8888_LE); ALLEGRO_BITMAP* img = al_create_bitmap(width, height); al_set_new_bitmap_flags(flags); al_set_new_bitmap_format(fmt); if (!img) return false; ALLEGRO_LOCKED_REGION *locked_img = al_lock_bitmap(img, al_get_bitmap_format(img), ALLEGRO_LOCK_WRITEONLY); if (!locked_img) { al_destroy_bitmap(img); return false; } memcpy(locked_img->data, pixels, sizeof(int)*width*height); al_unlock_bitmap(img); // Convert software texture to hardware texture. ALLEGRO_BITMAP* cloned_img = al_clone_bitmap(img); al_destroy_bitmap(img); if (!cloned_img) return false; // Store our identifier io.Fonts->TexID = (void*)cloned_img; g_Texture = cloned_img; // Create an invisible mouse cursor // Because al_hide_mouse_cursor() seems to mess up with the actual inputs.. ALLEGRO_BITMAP* mouse_cursor = al_create_bitmap(8,8); g_MouseCursorInvisible = al_create_mouse_cursor(mouse_cursor, 0, 0); al_destroy_bitmap(mouse_cursor); return true; } void ImGui_ImplA5_InvalidateDeviceObjects() { if (g_Texture) { al_destroy_bitmap(g_Texture); ImGui::GetIO().Fonts->TexID = NULL; g_Texture = NULL; } if (g_MouseCursorInvisible) { al_destroy_mouse_cursor(g_MouseCursorInvisible); g_MouseCursorInvisible = NULL; } } bool ImGui_ImplA5_Init(ALLEGRO_DISPLAY* display) { g_Display = display; // Create custom vertex declaration. // Unfortunately Allegro doesn't support 32-bits packed colors so we have to convert them to 4 floats. // We still use a custom declaration to use 'ALLEGRO_PRIM_TEX_COORD' instead of 'ALLEGRO_PRIM_TEX_COORD_PIXEL' else we can't do a reliable conversion. ALLEGRO_VERTEX_ELEMENT elems[] = { { ALLEGRO_PRIM_POSITION, ALLEGRO_PRIM_FLOAT_2, IM_OFFSETOF(ImDrawVertAllegro, pos) }, { ALLEGRO_PRIM_TEX_COORD, ALLEGRO_PRIM_FLOAT_2, IM_OFFSETOF(ImDrawVertAllegro, uv) }, { ALLEGRO_PRIM_COLOR_ATTR, 0, IM_OFFSETOF(ImDrawVertAllegro, col) }, { 0, 0, 0 } }; g_VertexDecl = al_create_vertex_decl(elems, sizeof(ImDrawVertAllegro)); ImGuiIO& io = ImGui::GetIO(); io.KeyMap[ImGuiKey_Tab] = ALLEGRO_KEY_TAB; io.KeyMap[ImGuiKey_LeftArrow] = ALLEGRO_KEY_LEFT; io.KeyMap[ImGuiKey_RightArrow] = ALLEGRO_KEY_RIGHT; io.KeyMap[ImGuiKey_UpArrow] = ALLEGRO_KEY_UP; io.KeyMap[ImGuiKey_DownArrow] = ALLEGRO_KEY_DOWN; io.KeyMap[ImGuiKey_PageUp] = ALLEGRO_KEY_PGUP; io.KeyMap[ImGuiKey_PageDown] = ALLEGRO_KEY_PGDN; io.KeyMap[ImGuiKey_Home] = ALLEGRO_KEY_HOME; io.KeyMap[ImGuiKey_End] = ALLEGRO_KEY_END; io.KeyMap[ImGuiKey_Insert] = ALLEGRO_KEY_INSERT; io.KeyMap[ImGuiKey_Delete] = ALLEGRO_KEY_DELETE; io.KeyMap[ImGuiKey_Backspace] = ALLEGRO_KEY_BACKSPACE; io.KeyMap[ImGuiKey_Space] = ALLEGRO_KEY_SPACE; io.KeyMap[ImGuiKey_Enter] = ALLEGRO_KEY_ENTER; io.KeyMap[ImGuiKey_Escape] = ALLEGRO_KEY_ESCAPE; io.KeyMap[ImGuiKey_A] = ALLEGRO_KEY_A; io.KeyMap[ImGuiKey_C] = ALLEGRO_KEY_C; io.KeyMap[ImGuiKey_V] = ALLEGRO_KEY_V; io.KeyMap[ImGuiKey_X] = ALLEGRO_KEY_X; io.KeyMap[ImGuiKey_Y] = ALLEGRO_KEY_Y; io.KeyMap[ImGuiKey_Z] = ALLEGRO_KEY_Z; #ifdef _WIN32 io.ImeWindowHandle = al_get_win_window_handle(g_Display); #endif return true; } void ImGui_ImplA5_Shutdown() { ImGui_ImplA5_InvalidateDeviceObjects(); } // You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs. // - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. // - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. // Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags. bool ImGui_ImplA5_ProcessEvent(ALLEGRO_EVENT *ev) { ImGuiIO &io = ImGui::GetIO(); switch (ev->type) { case ALLEGRO_EVENT_MOUSE_AXES: io.MouseWheel += ev->mouse.dz; io.MouseWheelH += ev->mouse.dw; return true; case ALLEGRO_EVENT_KEY_CHAR: if (ev->keyboard.display == g_Display) if (ev->keyboard.unichar > 0 && ev->keyboard.unichar < 0x10000) io.AddInputCharacter((unsigned short)ev->keyboard.unichar); return true; case ALLEGRO_EVENT_KEY_DOWN: case ALLEGRO_EVENT_KEY_UP: if (ev->keyboard.display == g_Display) io.KeysDown[ev->keyboard.keycode] = (ev->type == ALLEGRO_EVENT_KEY_DOWN); return true; } return false; } void ImGui_ImplA5_NewFrame() { if (!g_Texture) Imgui_ImplA5_CreateDeviceObjects(); ImGuiIO &io = ImGui::GetIO(); // Setup display size (every frame to accommodate for window resizing) int w, h; w = al_get_display_width(g_Display); h = al_get_display_height(g_Display); io.DisplaySize = ImVec2((float)w, (float)h); // Setup time step double current_time = al_get_time(); io.DeltaTime = g_Time > 0.0 ? (float)(current_time - g_Time) : (float)(1.0f/60.0f); g_Time = current_time; // Setup inputs ALLEGRO_KEYBOARD_STATE keys; al_get_keyboard_state(&keys); io.KeyCtrl = al_key_down(&keys, ALLEGRO_KEY_LCTRL) || al_key_down(&keys, ALLEGRO_KEY_RCTRL); io.KeyShift = al_key_down(&keys, ALLEGRO_KEY_LSHIFT) || al_key_down(&keys, ALLEGRO_KEY_RSHIFT); io.KeyAlt = al_key_down(&keys, ALLEGRO_KEY_ALT) || al_key_down(&keys, ALLEGRO_KEY_ALTGR); io.KeySuper = al_key_down(&keys, ALLEGRO_KEY_LWIN) || al_key_down(&keys, ALLEGRO_KEY_RWIN); ALLEGRO_MOUSE_STATE mouse; if (keys.display == g_Display) { al_get_mouse_state(&mouse); io.MousePos = ImVec2((float)mouse.x, (float)mouse.y); } else { io.MousePos = ImVec2(-FLT_MAX, -FLT_MAX); } al_get_mouse_state(&mouse); io.MouseDown[0] = mouse.buttons & (1 << 0); io.MouseDown[1] = mouse.buttons & (1 << 1); io.MouseDown[2] = mouse.buttons & (1 << 2); // Hide OS mouse cursor if ImGui is drawing it if (io.MouseDrawCursor) { al_set_mouse_cursor(g_Display, g_MouseCursorInvisible); } else { ALLEGRO_SYSTEM_MOUSE_CURSOR cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_DEFAULT; switch (ImGui::GetMouseCursor()) { case ImGuiMouseCursor_TextInput: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_EDIT; break; case ImGuiMouseCursor_ResizeAll: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_MOVE; break; case ImGuiMouseCursor_ResizeNS: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_N; break; case ImGuiMouseCursor_ResizeEW: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_E; break; case ImGuiMouseCursor_ResizeNESW: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NE; break; case ImGuiMouseCursor_ResizeNWSE: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NW; break; } al_set_system_mouse_cursor(g_Display, cursor_id); } // Start the frame. This call will update the io.WantCaptureMouse, io.WantCaptureKeyboard flag that you can use to dispatch inputs (or not) to your application. ImGui::NewFrame(); }
[ "omarcornut@gmail.com" ]
omarcornut@gmail.com
ec1d16d9a368a94efedea058b584489857c69c70
ca32936825c3cbae13e4db108ad97d670e0a9264
/oce-0.17/include/oce/Handle_Select3D_SensitiveTriangulation.hxx
eb08649fb03293c61c8dc062e2fd766e81ffc15e
[]
no_license
zqqiang/node-cad
7b783fb758dcacb5b1e1b8276c73dfe0942adfbb
739ff348b4d2c77b275c3a0fe87682c14ffd8181
refs/heads/master
2021-01-14T08:03:53.991041
2016-12-23T19:07:33
2016-12-23T19:07:33
46,592,925
5
0
null
null
null
null
UTF-8
C++
false
false
776
hxx
// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _Handle_Select3D_SensitiveTriangulation_HeaderFile #define _Handle_Select3D_SensitiveTriangulation_HeaderFile #include <Standard.hxx> #include <Standard_DefineHandle.hxx> #include <Handle_Select3D_SensitiveEntity.hxx> class Standard_Transient; class Handle(Standard_Type); class Handle(Select3D_SensitiveEntity); class Select3D_SensitiveTriangulation; DEFINE_STANDARD_HANDLE(Select3D_SensitiveTriangulation, Select3D_SensitiveEntity) #endif // _Handle_Select3D_SensitiveTriangulation_HeaderFile
[ "qiangzhaoqing@gmail.com" ]
qiangzhaoqing@gmail.com